@pulumi/pulumi 3.183.0-alpha.xd9ff9a3 → 3.183.0-alpha.xef4e57b
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/resource_pb.d.ts +0 -6
- package/proto/resource_pb.js +1 -52
- package/version.js +1 -1
package/package.json
CHANGED
package/proto/resource_pb.d.ts
CHANGED
|
@@ -687,11 +687,6 @@ export class TransformResourceOptions extends jspb.Message {
|
|
|
687
687
|
getPluginChecksumsMap(): jspb.Map<string, Uint8Array | string>;
|
|
688
688
|
clearPluginChecksumsMap(): void;
|
|
689
689
|
|
|
690
|
-
hasHooks(): boolean;
|
|
691
|
-
clearHooks(): void;
|
|
692
|
-
getHooks(): RegisterResourceRequest.ResourceHooksBinding | undefined;
|
|
693
|
-
setHooks(value?: RegisterResourceRequest.ResourceHooksBinding): TransformResourceOptions;
|
|
694
|
-
|
|
695
690
|
serializeBinary(): Uint8Array;
|
|
696
691
|
toObject(includeInstance?: boolean): TransformResourceOptions.AsObject;
|
|
697
692
|
static toObject(includeInstance: boolean, msg: TransformResourceOptions): TransformResourceOptions.AsObject;
|
|
@@ -721,7 +716,6 @@ export namespace TransformResourceOptions {
|
|
|
721
716
|
providersMap: Array<[string, string]>,
|
|
722
717
|
|
|
723
718
|
pluginChecksumsMap: Array<[string, Uint8Array | string]>,
|
|
724
|
-
hooks?: RegisterResourceRequest.ResourceHooksBinding.AsObject,
|
|
725
719
|
}
|
|
726
720
|
}
|
|
727
721
|
|
package/proto/resource_pb.js
CHANGED
|
@@ -5565,8 +5565,7 @@ proto.pulumirpc.TransformResourceOptions.toObject = function(includeInstance, ms
|
|
|
5565
5565
|
deleteBeforeReplace: jspb.Message.getBooleanFieldWithDefault(msg, 12, false),
|
|
5566
5566
|
additionalSecretOutputsList: (f = jspb.Message.getRepeatedField(msg, 13)) == null ? undefined : f,
|
|
5567
5567
|
providersMap: (f = msg.getProvidersMap()) ? f.toObject(includeInstance, undefined) : [],
|
|
5568
|
-
pluginChecksumsMap: (f = msg.getPluginChecksumsMap()) ? f.toObject(includeInstance, undefined) : []
|
|
5569
|
-
hooks: (f = msg.getHooks()) && proto.pulumirpc.RegisterResourceRequest.ResourceHooksBinding.toObject(includeInstance, f)
|
|
5568
|
+
pluginChecksumsMap: (f = msg.getPluginChecksumsMap()) ? f.toObject(includeInstance, undefined) : []
|
|
5570
5569
|
};
|
|
5571
5570
|
|
|
5572
5571
|
if (includeInstance) {
|
|
@@ -5669,11 +5668,6 @@ proto.pulumirpc.TransformResourceOptions.deserializeBinaryFromReader = function(
|
|
|
5669
5668
|
jspb.Map.deserializeBinary(message, reader, jspb.BinaryReader.prototype.readString, jspb.BinaryReader.prototype.readBytes, null, "", "");
|
|
5670
5669
|
});
|
|
5671
5670
|
break;
|
|
5672
|
-
case 16:
|
|
5673
|
-
var value = new proto.pulumirpc.RegisterResourceRequest.ResourceHooksBinding;
|
|
5674
|
-
reader.readMessage(value,proto.pulumirpc.RegisterResourceRequest.ResourceHooksBinding.deserializeBinaryFromReader);
|
|
5675
|
-
msg.setHooks(value);
|
|
5676
|
-
break;
|
|
5677
5671
|
default:
|
|
5678
5672
|
reader.skipField();
|
|
5679
5673
|
break;
|
|
@@ -5804,14 +5798,6 @@ proto.pulumirpc.TransformResourceOptions.serializeBinaryToWriter = function(mess
|
|
|
5804
5798
|
if (f && f.getLength() > 0) {
|
|
5805
5799
|
f.serializeBinary(15, writer, jspb.BinaryWriter.prototype.writeString, jspb.BinaryWriter.prototype.writeBytes);
|
|
5806
5800
|
}
|
|
5807
|
-
f = message.getHooks();
|
|
5808
|
-
if (f != null) {
|
|
5809
|
-
writer.writeMessage(
|
|
5810
|
-
16,
|
|
5811
|
-
f,
|
|
5812
|
-
proto.pulumirpc.RegisterResourceRequest.ResourceHooksBinding.serializeBinaryToWriter
|
|
5813
|
-
);
|
|
5814
|
-
}
|
|
5815
5801
|
};
|
|
5816
5802
|
|
|
5817
5803
|
|
|
@@ -6262,43 +6248,6 @@ proto.pulumirpc.TransformResourceOptions.prototype.clearPluginChecksumsMap = fun
|
|
|
6262
6248
|
return this;};
|
|
6263
6249
|
|
|
6264
6250
|
|
|
6265
|
-
/**
|
|
6266
|
-
* optional RegisterResourceRequest.ResourceHooksBinding hooks = 16;
|
|
6267
|
-
* @return {?proto.pulumirpc.RegisterResourceRequest.ResourceHooksBinding}
|
|
6268
|
-
*/
|
|
6269
|
-
proto.pulumirpc.TransformResourceOptions.prototype.getHooks = function() {
|
|
6270
|
-
return /** @type{?proto.pulumirpc.RegisterResourceRequest.ResourceHooksBinding} */ (
|
|
6271
|
-
jspb.Message.getWrapperField(this, proto.pulumirpc.RegisterResourceRequest.ResourceHooksBinding, 16));
|
|
6272
|
-
};
|
|
6273
|
-
|
|
6274
|
-
|
|
6275
|
-
/**
|
|
6276
|
-
* @param {?proto.pulumirpc.RegisterResourceRequest.ResourceHooksBinding|undefined} value
|
|
6277
|
-
* @return {!proto.pulumirpc.TransformResourceOptions} returns this
|
|
6278
|
-
*/
|
|
6279
|
-
proto.pulumirpc.TransformResourceOptions.prototype.setHooks = function(value) {
|
|
6280
|
-
return jspb.Message.setWrapperField(this, 16, value);
|
|
6281
|
-
};
|
|
6282
|
-
|
|
6283
|
-
|
|
6284
|
-
/**
|
|
6285
|
-
* Clears the message field making it undefined.
|
|
6286
|
-
* @return {!proto.pulumirpc.TransformResourceOptions} returns this
|
|
6287
|
-
*/
|
|
6288
|
-
proto.pulumirpc.TransformResourceOptions.prototype.clearHooks = function() {
|
|
6289
|
-
return this.setHooks(undefined);
|
|
6290
|
-
};
|
|
6291
|
-
|
|
6292
|
-
|
|
6293
|
-
/**
|
|
6294
|
-
* Returns whether this field is set.
|
|
6295
|
-
* @return {boolean}
|
|
6296
|
-
*/
|
|
6297
|
-
proto.pulumirpc.TransformResourceOptions.prototype.hasHooks = function() {
|
|
6298
|
-
return jspb.Message.getField(this, 16) != null;
|
|
6299
|
-
};
|
|
6300
|
-
|
|
6301
|
-
|
|
6302
6251
|
|
|
6303
6252
|
|
|
6304
6253
|
|
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.183.0-alpha.
|
|
16
|
+
exports.version = "3.183.0-alpha.xef4e57b";
|
|
17
17
|
//# sourceMappingURL=version.js.map
|