@pulumi/pulumi 3.204.0-alpha.x2c9c08e → 3.204.0-alpha.x8650393

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.204.0-alpha.x2c9c08e",
3
+ "version": "3.204.0-alpha.x8650393",
4
4
  "description": "Pulumi's Node.js SDK",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -416,6 +416,8 @@ export class AnalyzeDiagnostic extends jspb.Message {
416
416
  setEnforcementlevel(value: EnforcementLevel): AnalyzeDiagnostic;
417
417
  getUrn(): string;
418
418
  setUrn(value: string): AnalyzeDiagnostic;
419
+ getSeverity(): PolicySeverity;
420
+ setSeverity(value: PolicySeverity): AnalyzeDiagnostic;
419
421
 
420
422
  serializeBinary(): Uint8Array;
421
423
  toObject(includeInstance?: boolean): AnalyzeDiagnostic.AsObject;
@@ -436,6 +438,7 @@ export namespace AnalyzeDiagnostic {
436
438
  message: string,
437
439
  enforcementlevel: EnforcementLevel,
438
440
  urn: string,
441
+ severity: PolicySeverity,
439
442
  }
440
443
  }
441
444
 
@@ -3515,7 +3515,8 @@ policypackversion: jspb.Message.getFieldWithDefault(msg, 3, ""),
3515
3515
  description: jspb.Message.getFieldWithDefault(msg, 4, ""),
3516
3516
  message: jspb.Message.getFieldWithDefault(msg, 5, ""),
3517
3517
  enforcementlevel: jspb.Message.getFieldWithDefault(msg, 7, 0),
3518
- urn: jspb.Message.getFieldWithDefault(msg, 8, "")
3518
+ urn: jspb.Message.getFieldWithDefault(msg, 8, ""),
3519
+ severity: jspb.Message.getFieldWithDefault(msg, 9, 0)
3519
3520
  };
3520
3521
 
3521
3522
  if (includeInstance) {
@@ -3580,6 +3581,10 @@ proto.pulumirpc.AnalyzeDiagnostic.deserializeBinaryFromReader = function(msg, re
3580
3581
  var value = /** @type {string} */ (reader.readString());
3581
3582
  msg.setUrn(value);
3582
3583
  break;
3584
+ case 9:
3585
+ var value = /** @type {!proto.pulumirpc.PolicySeverity} */ (reader.readEnum());
3586
+ msg.setSeverity(value);
3587
+ break;
3583
3588
  default:
3584
3589
  reader.skipField();
3585
3590
  break;
@@ -3658,6 +3663,13 @@ proto.pulumirpc.AnalyzeDiagnostic.serializeBinaryToWriter = function(message, wr
3658
3663
  f
3659
3664
  );
3660
3665
  }
3666
+ f = message.getSeverity();
3667
+ if (f !== 0.0) {
3668
+ writer.writeEnum(
3669
+ 9,
3670
+ f
3671
+ );
3672
+ }
3661
3673
  };
3662
3674
 
3663
3675
 
@@ -3787,6 +3799,24 @@ proto.pulumirpc.AnalyzeDiagnostic.prototype.setUrn = function(value) {
3787
3799
  };
3788
3800
 
3789
3801
 
3802
+ /**
3803
+ * optional PolicySeverity severity = 9;
3804
+ * @return {!proto.pulumirpc.PolicySeverity}
3805
+ */
3806
+ proto.pulumirpc.AnalyzeDiagnostic.prototype.getSeverity = function() {
3807
+ return /** @type {!proto.pulumirpc.PolicySeverity} */ (jspb.Message.getFieldWithDefault(this, 9, 0));
3808
+ };
3809
+
3810
+
3811
+ /**
3812
+ * @param {!proto.pulumirpc.PolicySeverity} value
3813
+ * @return {!proto.pulumirpc.AnalyzeDiagnostic} returns this
3814
+ */
3815
+ proto.pulumirpc.AnalyzeDiagnostic.prototype.setSeverity = function(value) {
3816
+ return jspb.Message.setProto3EnumField(this, 9, value);
3817
+ };
3818
+
3819
+
3790
3820
 
3791
3821
 
3792
3822
 
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.204.0-alpha.x2c9c08e";
16
+ exports.version = "3.204.0-alpha.x8650393";
17
17
  //# sourceMappingURL=version.js.map