@pulumi/pulumi 3.80.0 → 3.81.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 +1 -1
- package/proto/converter_pb.js +58 -2
- package/version.js +1 -1
package/package.json
CHANGED
package/proto/converter_pb.js
CHANGED
|
@@ -39,7 +39,7 @@ goog.exportSymbol('proto.pulumirpc.ResourceImport', null, global);
|
|
|
39
39
|
* @constructor
|
|
40
40
|
*/
|
|
41
41
|
proto.pulumirpc.ConvertStateRequest = function(opt_data) {
|
|
42
|
-
jspb.Message.initialize(this, opt_data, 0, -1,
|
|
42
|
+
jspb.Message.initialize(this, opt_data, 0, -1, proto.pulumirpc.ConvertStateRequest.repeatedFields_, null);
|
|
43
43
|
};
|
|
44
44
|
goog.inherits(proto.pulumirpc.ConvertStateRequest, jspb.Message);
|
|
45
45
|
if (goog.DEBUG && !COMPILED) {
|
|
@@ -134,6 +134,13 @@ if (goog.DEBUG && !COMPILED) {
|
|
|
134
134
|
proto.pulumirpc.ConvertProgramResponse.displayName = 'proto.pulumirpc.ConvertProgramResponse';
|
|
135
135
|
}
|
|
136
136
|
|
|
137
|
+
/**
|
|
138
|
+
* List of repeated fields within this message type.
|
|
139
|
+
* @private {!Array<number>}
|
|
140
|
+
* @const
|
|
141
|
+
*/
|
|
142
|
+
proto.pulumirpc.ConvertStateRequest.repeatedFields_ = [2];
|
|
143
|
+
|
|
137
144
|
|
|
138
145
|
|
|
139
146
|
if (jspb.Message.GENERATE_TO_OBJECT) {
|
|
@@ -165,7 +172,8 @@ proto.pulumirpc.ConvertStateRequest.prototype.toObject = function(opt_includeIns
|
|
|
165
172
|
*/
|
|
166
173
|
proto.pulumirpc.ConvertStateRequest.toObject = function(includeInstance, msg) {
|
|
167
174
|
var f, obj = {
|
|
168
|
-
mapperTarget: jspb.Message.getFieldWithDefault(msg, 1, "")
|
|
175
|
+
mapperTarget: jspb.Message.getFieldWithDefault(msg, 1, ""),
|
|
176
|
+
argsList: (f = jspb.Message.getRepeatedField(msg, 2)) == null ? undefined : f
|
|
169
177
|
};
|
|
170
178
|
|
|
171
179
|
if (includeInstance) {
|
|
@@ -206,6 +214,10 @@ proto.pulumirpc.ConvertStateRequest.deserializeBinaryFromReader = function(msg,
|
|
|
206
214
|
var value = /** @type {string} */ (reader.readString());
|
|
207
215
|
msg.setMapperTarget(value);
|
|
208
216
|
break;
|
|
217
|
+
case 2:
|
|
218
|
+
var value = /** @type {string} */ (reader.readString());
|
|
219
|
+
msg.addArgs(value);
|
|
220
|
+
break;
|
|
209
221
|
default:
|
|
210
222
|
reader.skipField();
|
|
211
223
|
break;
|
|
@@ -242,6 +254,13 @@ proto.pulumirpc.ConvertStateRequest.serializeBinaryToWriter = function(message,
|
|
|
242
254
|
f
|
|
243
255
|
);
|
|
244
256
|
}
|
|
257
|
+
f = message.getArgsList();
|
|
258
|
+
if (f.length > 0) {
|
|
259
|
+
writer.writeRepeatedString(
|
|
260
|
+
2,
|
|
261
|
+
f
|
|
262
|
+
);
|
|
263
|
+
}
|
|
245
264
|
};
|
|
246
265
|
|
|
247
266
|
|
|
@@ -263,6 +282,43 @@ proto.pulumirpc.ConvertStateRequest.prototype.setMapperTarget = function(value)
|
|
|
263
282
|
};
|
|
264
283
|
|
|
265
284
|
|
|
285
|
+
/**
|
|
286
|
+
* repeated string args = 2;
|
|
287
|
+
* @return {!Array<string>}
|
|
288
|
+
*/
|
|
289
|
+
proto.pulumirpc.ConvertStateRequest.prototype.getArgsList = function() {
|
|
290
|
+
return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 2));
|
|
291
|
+
};
|
|
292
|
+
|
|
293
|
+
|
|
294
|
+
/**
|
|
295
|
+
* @param {!Array<string>} value
|
|
296
|
+
* @return {!proto.pulumirpc.ConvertStateRequest} returns this
|
|
297
|
+
*/
|
|
298
|
+
proto.pulumirpc.ConvertStateRequest.prototype.setArgsList = function(value) {
|
|
299
|
+
return jspb.Message.setField(this, 2, value || []);
|
|
300
|
+
};
|
|
301
|
+
|
|
302
|
+
|
|
303
|
+
/**
|
|
304
|
+
* @param {string} value
|
|
305
|
+
* @param {number=} opt_index
|
|
306
|
+
* @return {!proto.pulumirpc.ConvertStateRequest} returns this
|
|
307
|
+
*/
|
|
308
|
+
proto.pulumirpc.ConvertStateRequest.prototype.addArgs = function(value, opt_index) {
|
|
309
|
+
return jspb.Message.addToRepeatedField(this, 2, value, opt_index);
|
|
310
|
+
};
|
|
311
|
+
|
|
312
|
+
|
|
313
|
+
/**
|
|
314
|
+
* Clears the list making it empty but non-null.
|
|
315
|
+
* @return {!proto.pulumirpc.ConvertStateRequest} returns this
|
|
316
|
+
*/
|
|
317
|
+
proto.pulumirpc.ConvertStateRequest.prototype.clearArgsList = function() {
|
|
318
|
+
return this.setArgsList([]);
|
|
319
|
+
};
|
|
320
|
+
|
|
321
|
+
|
|
266
322
|
|
|
267
323
|
|
|
268
324
|
|
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.81.0";
|
|
17
17
|
//# sourceMappingURL=version.js.map
|