@pulumi/pulumi 3.253.0 → 3.254.0-alpha.x54ac04d

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 CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/pulumi",
3
- "version": "3.253.0",
3
+ "version": "3.254.0-alpha.x54ac04d",
4
4
  "description": "Pulumi's Node.js SDK",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -60,6 +60,12 @@ export class ResourceImport extends jspb.Message {
60
60
  clearExtension$(): void;
61
61
  getExtension$(): ResourceExtension | undefined;
62
62
  setExtension$(value?: ResourceExtension): ResourceImport;
63
+ getParent(): string;
64
+ setParent(value: string): ResourceImport;
65
+ clearPropertiesList(): void;
66
+ getPropertiesList(): Array<string>;
67
+ setPropertiesList(value: Array<string>): ResourceImport;
68
+ addProperties(value: string, index?: number): string;
63
69
 
64
70
  serializeBinary(): Uint8Array;
65
71
  toObject(includeInstance?: boolean): ResourceImport.AsObject;
@@ -83,6 +89,8 @@ export namespace ResourceImport {
83
89
  isRemote: boolean,
84
90
  parameterization?: ResourceParameterization.AsObject,
85
91
  extension?: ResourceExtension.AsObject,
92
+ parent: string,
93
+ propertiesList: Array<string>,
86
94
  }
87
95
  }
88
96
 
@@ -60,7 +60,7 @@ if (goog.DEBUG && !COMPILED) {
60
60
  * @constructor
61
61
  */
62
62
  proto.pulumirpc.ResourceImport = function(opt_data) {
63
- jspb.Message.initialize(this, opt_data, 0, -1, null, null);
63
+ jspb.Message.initialize(this, opt_data, 0, -1, proto.pulumirpc.ResourceImport.repeatedFields_, null);
64
64
  };
65
65
  goog.inherits(proto.pulumirpc.ResourceImport, jspb.Message);
66
66
  if (goog.DEBUG && !COMPILED) {
@@ -404,6 +404,13 @@ proto.pulumirpc.ConvertStateRequest.prototype.clearArgsList = function() {
404
404
 
405
405
 
406
406
 
407
+ /**
408
+ * List of repeated fields within this message type.
409
+ * @private {!Array<number>}
410
+ * @const
411
+ */
412
+ proto.pulumirpc.ResourceImport.repeatedFields_ = [12];
413
+
407
414
 
408
415
 
409
416
  if (jspb.Message.GENERATE_TO_OBJECT) {
@@ -444,7 +451,9 @@ logicalName: jspb.Message.getFieldWithDefault(msg, 6, ""),
444
451
  isComponent: jspb.Message.getBooleanFieldWithDefault(msg, 7, false),
445
452
  isRemote: jspb.Message.getBooleanFieldWithDefault(msg, 8, false),
446
453
  parameterization: (f = msg.getParameterization()) && proto.pulumirpc.ResourceParameterization.toObject(includeInstance, f),
447
- extension: (f = msg.getExtension$()) && proto.pulumirpc.ResourceExtension.toObject(includeInstance, f)
454
+ extension: (f = msg.getExtension$()) && proto.pulumirpc.ResourceExtension.toObject(includeInstance, f),
455
+ parent: jspb.Message.getFieldWithDefault(msg, 11, ""),
456
+ propertiesList: (f = jspb.Message.getRepeatedField(msg, 12)) == null ? undefined : f
448
457
  };
449
458
 
450
459
  if (includeInstance) {
@@ -523,6 +532,14 @@ proto.pulumirpc.ResourceImport.deserializeBinaryFromReader = function(msg, reade
523
532
  reader.readMessage(value,proto.pulumirpc.ResourceExtension.deserializeBinaryFromReader);
524
533
  msg.setExtension$(value);
525
534
  break;
535
+ case 11:
536
+ var value = /** @type {string} */ (reader.readString());
537
+ msg.setParent(value);
538
+ break;
539
+ case 12:
540
+ var value = /** @type {string} */ (reader.readString());
541
+ msg.addProperties(value);
542
+ break;
526
543
  default:
527
544
  reader.skipField();
528
545
  break;
@@ -624,6 +641,20 @@ proto.pulumirpc.ResourceImport.serializeBinaryToWriter = function(message, write
624
641
  proto.pulumirpc.ResourceExtension.serializeBinaryToWriter
625
642
  );
626
643
  }
644
+ f = message.getParent();
645
+ if (f.length > 0) {
646
+ writer.writeString(
647
+ 11,
648
+ f
649
+ );
650
+ }
651
+ f = message.getPropertiesList();
652
+ if (f.length > 0) {
653
+ writer.writeRepeatedString(
654
+ 12,
655
+ f
656
+ );
657
+ }
627
658
  };
628
659
 
629
660
 
@@ -845,6 +876,61 @@ proto.pulumirpc.ResourceImport.prototype.hasExtension$ = function() {
845
876
  };
846
877
 
847
878
 
879
+ /**
880
+ * optional string parent = 11;
881
+ * @return {string}
882
+ */
883
+ proto.pulumirpc.ResourceImport.prototype.getParent = function() {
884
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 11, ""));
885
+ };
886
+
887
+
888
+ /**
889
+ * @param {string} value
890
+ * @return {!proto.pulumirpc.ResourceImport} returns this
891
+ */
892
+ proto.pulumirpc.ResourceImport.prototype.setParent = function(value) {
893
+ return jspb.Message.setProto3StringField(this, 11, value);
894
+ };
895
+
896
+
897
+ /**
898
+ * repeated string properties = 12;
899
+ * @return {!Array<string>}
900
+ */
901
+ proto.pulumirpc.ResourceImport.prototype.getPropertiesList = function() {
902
+ return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 12));
903
+ };
904
+
905
+
906
+ /**
907
+ * @param {!Array<string>} value
908
+ * @return {!proto.pulumirpc.ResourceImport} returns this
909
+ */
910
+ proto.pulumirpc.ResourceImport.prototype.setPropertiesList = function(value) {
911
+ return jspb.Message.setField(this, 12, value || []);
912
+ };
913
+
914
+
915
+ /**
916
+ * @param {string} value
917
+ * @param {number=} opt_index
918
+ * @return {!proto.pulumirpc.ResourceImport} returns this
919
+ */
920
+ proto.pulumirpc.ResourceImport.prototype.addProperties = function(value, opt_index) {
921
+ return jspb.Message.addToRepeatedField(this, 12, value, opt_index);
922
+ };
923
+
924
+
925
+ /**
926
+ * Clears the list making it empty but non-null.
927
+ * @return {!proto.pulumirpc.ResourceImport} returns this
928
+ */
929
+ proto.pulumirpc.ResourceImport.prototype.clearPropertiesList = function() {
930
+ return this.setPropertiesList([]);
931
+ };
932
+
933
+
848
934
 
849
935
 
850
936
 
package/version.d.ts CHANGED
@@ -1 +1 @@
1
- export declare const version = "3.253.0";
1
+ export declare const version = "3.254.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.253.0";
16
+ exports.version = "3.254.0-alpha.x54ac04d";
17
17
  //# sourceMappingURL=version.js.map