@pulumi/pulumi 3.174.0-alpha.x321bd9e → 3.174.0-alpha.x82f2264

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.174.0-alpha.x321bd9e",
3
+ "version": "3.174.0-alpha.x82f2264",
4
4
  "description": "Pulumi's Node.js SDK",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -398,10 +398,6 @@ export class AnalyzeDiagnostic extends jspb.Message {
398
398
  setDescription(value: string): AnalyzeDiagnostic;
399
399
  getMessage(): string;
400
400
  setMessage(value: string): AnalyzeDiagnostic;
401
- clearTagsList(): void;
402
- getTagsList(): Array<string>;
403
- setTagsList(value: Array<string>): AnalyzeDiagnostic;
404
- addTags(value: string, index?: number): string;
405
401
  getEnforcementlevel(): EnforcementLevel;
406
402
  setEnforcementlevel(value: EnforcementLevel): AnalyzeDiagnostic;
407
403
  getUrn(): string;
@@ -424,7 +420,6 @@ export namespace AnalyzeDiagnostic {
424
420
  policypackversion: string,
425
421
  description: string,
426
422
  message: string,
427
- tagsList: Array<string>,
428
423
  enforcementlevel: EnforcementLevel,
429
424
  urn: string,
430
425
  }
@@ -305,7 +305,7 @@ if (goog.DEBUG && !COMPILED) {
305
305
  * @constructor
306
306
  */
307
307
  proto.pulumirpc.AnalyzeDiagnostic = function(opt_data) {
308
- jspb.Message.initialize(this, opt_data, 0, -1, proto.pulumirpc.AnalyzeDiagnostic.repeatedFields_, null);
308
+ jspb.Message.initialize(this, opt_data, 0, -1, null, null);
309
309
  };
310
310
  goog.inherits(proto.pulumirpc.AnalyzeDiagnostic, jspb.Message);
311
311
  if (goog.DEBUG && !COMPILED) {
@@ -3299,13 +3299,6 @@ proto.pulumirpc.AnalyzeResponse.prototype.clearDiagnosticsList = function() {
3299
3299
 
3300
3300
 
3301
3301
 
3302
- /**
3303
- * List of repeated fields within this message type.
3304
- * @private {!Array<number>}
3305
- * @const
3306
- */
3307
- proto.pulumirpc.AnalyzeDiagnostic.repeatedFields_ = [6];
3308
-
3309
3302
 
3310
3303
 
3311
3304
  if (jspb.Message.GENERATE_TO_OBJECT) {
@@ -3342,7 +3335,6 @@ proto.pulumirpc.AnalyzeDiagnostic.toObject = function(includeInstance, msg) {
3342
3335
  policypackversion: jspb.Message.getFieldWithDefault(msg, 3, ""),
3343
3336
  description: jspb.Message.getFieldWithDefault(msg, 4, ""),
3344
3337
  message: jspb.Message.getFieldWithDefault(msg, 5, ""),
3345
- tagsList: (f = jspb.Message.getRepeatedField(msg, 6)) == null ? undefined : f,
3346
3338
  enforcementlevel: jspb.Message.getFieldWithDefault(msg, 7, 0),
3347
3339
  urn: jspb.Message.getFieldWithDefault(msg, 8, "")
3348
3340
  };
@@ -3401,10 +3393,6 @@ proto.pulumirpc.AnalyzeDiagnostic.deserializeBinaryFromReader = function(msg, re
3401
3393
  var value = /** @type {string} */ (reader.readString());
3402
3394
  msg.setMessage(value);
3403
3395
  break;
3404
- case 6:
3405
- var value = /** @type {string} */ (reader.readString());
3406
- msg.addTags(value);
3407
- break;
3408
3396
  case 7:
3409
3397
  var value = /** @type {!proto.pulumirpc.EnforcementLevel} */ (reader.readEnum());
3410
3398
  msg.setEnforcementlevel(value);
@@ -3477,13 +3465,6 @@ proto.pulumirpc.AnalyzeDiagnostic.serializeBinaryToWriter = function(message, wr
3477
3465
  f
3478
3466
  );
3479
3467
  }
3480
- f = message.getTagsList();
3481
- if (f.length > 0) {
3482
- writer.writeRepeatedString(
3483
- 6,
3484
- f
3485
- );
3486
- }
3487
3468
  f = message.getEnforcementlevel();
3488
3469
  if (f !== 0.0) {
3489
3470
  writer.writeEnum(
@@ -3591,43 +3572,6 @@ proto.pulumirpc.AnalyzeDiagnostic.prototype.setMessage = function(value) {
3591
3572
  };
3592
3573
 
3593
3574
 
3594
- /**
3595
- * repeated string tags = 6;
3596
- * @return {!Array<string>}
3597
- */
3598
- proto.pulumirpc.AnalyzeDiagnostic.prototype.getTagsList = function() {
3599
- return /** @type {!Array<string>} */ (jspb.Message.getRepeatedField(this, 6));
3600
- };
3601
-
3602
-
3603
- /**
3604
- * @param {!Array<string>} value
3605
- * @return {!proto.pulumirpc.AnalyzeDiagnostic} returns this
3606
- */
3607
- proto.pulumirpc.AnalyzeDiagnostic.prototype.setTagsList = function(value) {
3608
- return jspb.Message.setField(this, 6, value || []);
3609
- };
3610
-
3611
-
3612
- /**
3613
- * @param {string} value
3614
- * @param {number=} opt_index
3615
- * @return {!proto.pulumirpc.AnalyzeDiagnostic} returns this
3616
- */
3617
- proto.pulumirpc.AnalyzeDiagnostic.prototype.addTags = function(value, opt_index) {
3618
- return jspb.Message.addToRepeatedField(this, 6, value, opt_index);
3619
- };
3620
-
3621
-
3622
- /**
3623
- * Clears the list making it empty but non-null.
3624
- * @return {!proto.pulumirpc.AnalyzeDiagnostic} returns this
3625
- */
3626
- proto.pulumirpc.AnalyzeDiagnostic.prototype.clearTagsList = function() {
3627
- return this.setTagsList([]);
3628
- };
3629
-
3630
-
3631
3575
  /**
3632
3576
  * optional EnforcementLevel enforcementLevel = 7;
3633
3577
  * @return {!proto.pulumirpc.EnforcementLevel}
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.174.0-alpha.x321bd9e";
16
+ exports.version = "3.174.0-alpha.x82f2264";
17
17
  //# sourceMappingURL=version.js.map