@pulumi/pulumi 3.83.0 → 3.84.0

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.83.0",
3
+ "version": "3.84.0",
4
4
  "description": "Pulumi's Node.js SDK",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -102,7 +102,7 @@ if (goog.DEBUG && !COMPILED) {
102
102
  * @constructor
103
103
  */
104
104
  proto.pulumirpc.ConvertProgramRequest = function(opt_data) {
105
- jspb.Message.initialize(this, opt_data, 0, -1, null, null);
105
+ jspb.Message.initialize(this, opt_data, 0, -1, proto.pulumirpc.ConvertProgramRequest.repeatedFields_, null);
106
106
  };
107
107
  goog.inherits(proto.pulumirpc.ConvertProgramRequest, jspb.Message);
108
108
  if (goog.DEBUG && !COMPILED) {
@@ -730,6 +730,13 @@ proto.pulumirpc.ConvertStateResponse.prototype.clearResourcesList = function() {
730
730
 
731
731
 
732
732
 
733
+ /**
734
+ * List of repeated fields within this message type.
735
+ * @private {!Array<number>}
736
+ * @const
737
+ */
738
+ proto.pulumirpc.ConvertProgramRequest.repeatedFields_ = [5];
739
+
733
740
 
734
741
 
735
742
  if (jspb.Message.GENERATE_TO_OBJECT) {
@@ -764,7 +771,8 @@ proto.pulumirpc.ConvertProgramRequest.toObject = function(includeInstance, msg)
764
771
  sourceDirectory: jspb.Message.getFieldWithDefault(msg, 1, ""),
765
772
  targetDirectory: jspb.Message.getFieldWithDefault(msg, 2, ""),
766
773
  mapperTarget: jspb.Message.getFieldWithDefault(msg, 3, ""),
767
- loaderTarget: jspb.Message.getFieldWithDefault(msg, 4, "")
774
+ loaderTarget: jspb.Message.getFieldWithDefault(msg, 4, ""),
775
+ argsList: (f = jspb.Message.getRepeatedField(msg, 5)) == null ? undefined : f
768
776
  };
769
777
 
770
778
  if (includeInstance) {
@@ -817,6 +825,10 @@ proto.pulumirpc.ConvertProgramRequest.deserializeBinaryFromReader = function(msg
817
825
  var value = /** @type {string} */ (reader.readString());
818
826
  msg.setLoaderTarget(value);
819
827
  break;
828
+ case 5:
829
+ var value = /** @type {string} */ (reader.readString());
830
+ msg.addArgs(value);
831
+ break;
820
832
  default:
821
833
  reader.skipField();
822
834
  break;
@@ -874,6 +886,13 @@ proto.pulumirpc.ConvertProgramRequest.serializeBinaryToWriter = function(message
874
886
  f
875
887
  );
876
888
  }
889
+ f = message.getArgsList();
890
+ if (f.length > 0) {
891
+ writer.writeRepeatedString(
892
+ 5,
893
+ f
894
+ );
895
+ }
877
896
  };
878
897
 
879
898
 
@@ -949,6 +968,43 @@ proto.pulumirpc.ConvertProgramRequest.prototype.setLoaderTarget = function(value
949
968
  };
950
969
 
951
970
 
971
+ /**
972
+ * repeated string args = 5;
973
+ * @return {!Array<string>}
974
+ */
975
+ proto.pulumirpc.ConvertProgramRequest.prototype.getArgsList = function() {
976
+ return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 5));
977
+ };
978
+
979
+
980
+ /**
981
+ * @param {!Array<string>} value
982
+ * @return {!proto.pulumirpc.ConvertProgramRequest} returns this
983
+ */
984
+ proto.pulumirpc.ConvertProgramRequest.prototype.setArgsList = function(value) {
985
+ return jspb.Message.setField(this, 5, value || []);
986
+ };
987
+
988
+
989
+ /**
990
+ * @param {string} value
991
+ * @param {number=} opt_index
992
+ * @return {!proto.pulumirpc.ConvertProgramRequest} returns this
993
+ */
994
+ proto.pulumirpc.ConvertProgramRequest.prototype.addArgs = function(value, opt_index) {
995
+ return jspb.Message.addToRepeatedField(this, 5, value, opt_index);
996
+ };
997
+
998
+
999
+ /**
1000
+ * Clears the list making it empty but non-null.
1001
+ * @return {!proto.pulumirpc.ConvertProgramRequest} returns this
1002
+ */
1003
+ proto.pulumirpc.ConvertProgramRequest.prototype.clearArgsList = function() {
1004
+ return this.setArgsList([]);
1005
+ };
1006
+
1007
+
952
1008
 
953
1009
  /**
954
1010
  * List of repeated fields within this message type.
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.83.0";
16
+ exports.version = "3.84.0";
17
17
  //# sourceMappingURL=version.js.map