@pulumi/pulumi 3.143.1-alpha.xf26ccd4 → 3.144.0-alpha.x1a991f2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/proto/provider_grpc_pb.js +4 -0
- package/version.d.ts +1 -1
- package/version.js +1 -1
package/package.json
CHANGED
|
@@ -485,6 +485,8 @@ checkConfig: {
|
|
|
485
485
|
// thus be reserved for changes to configuration properties that are guaranteed to make old resources unmanageable.
|
|
486
486
|
// Changes to an AWS region, for example, will almost certainly require a provider replacement, but changes to an
|
|
487
487
|
// AWS access key, should almost certainly not.
|
|
488
|
+
//
|
|
489
|
+
// Implementations must satisfy the invariants documented on `DiffResponse`.
|
|
488
490
|
diffConfig: {
|
|
489
491
|
path: '/pulumirpc.ResourceProvider/DiffConfig',
|
|
490
492
|
requestStream: false,
|
|
@@ -595,6 +597,8 @@ check: {
|
|
|
595
597
|
// `Diff` compares an existing ("old") set of resource properties with a new set of properties and computes the
|
|
596
598
|
// difference (if any) between them. `Diff` should only be called with values that have at some point been validated
|
|
597
599
|
// by a [](pulumirpc.ResourceProvider.Check) call.
|
|
600
|
+
//
|
|
601
|
+
// Implementations must satisfy the invariants documented on `DiffResponse`.
|
|
598
602
|
diff: {
|
|
599
603
|
path: '/pulumirpc.ResourceProvider/Diff',
|
|
600
604
|
requestStream: false,
|
package/version.d.ts
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
export declare const version = "3.
|
|
1
|
+
export declare const version = "3.144.0";
|
package/version.js
CHANGED
|
@@ -13,5 +13,5 @@
|
|
|
13
13
|
// See the License for the specific language governing permissions and
|
|
14
14
|
// limitations under the License.
|
|
15
15
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
16
|
-
exports.version = "3.
|
|
16
|
+
exports.version = "3.144.0-alpha.x1a991f2";
|
|
17
17
|
//# sourceMappingURL=version.js.map
|