@pulumi/pulumi 3.74.0 → 3.75.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/dynamic/index.js CHANGED
@@ -20,14 +20,11 @@ var __importStar = (this && this.__importStar) || function (mod) {
20
20
  return result;
21
21
  };
22
22
  Object.defineProperty(exports, "__esModule", { value: true });
23
+ const output_1 = require("../output");
23
24
  const resource = __importStar(require("../resource"));
24
25
  const settings = __importStar(require("../runtime/settings"));
25
26
  const providerCache = new WeakMap();
26
27
  function serializeProvider(provider) {
27
- // Load runtime/closure on demand, as its dependencies are slow to load.
28
- //
29
- // See https://www.typescriptlang.org/docs/handbook/modules.html#optional-module-loading-and-other-advanced-loading-scenarios
30
- const sc = require("../runtime/closure/serializeClosure");
31
28
  let result;
32
29
  // caching is enabled by default as of 3.0
33
30
  if (settings.cacheDynamicProviders()) {
@@ -36,15 +33,24 @@ function serializeProvider(provider) {
36
33
  result = cachedProvider;
37
34
  }
38
35
  else {
39
- result = sc.serializeFunction(() => provider).then((sf) => sf.text);
36
+ result = serializeFunctionMaybeSecret(provider);
40
37
  providerCache.set(provider, result);
41
38
  }
42
39
  }
43
40
  else {
44
- result = sc.serializeFunction(() => provider).then((sf) => sf.text);
41
+ result = serializeFunctionMaybeSecret(provider);
45
42
  }
46
43
  return result;
47
44
  }
45
+ function serializeFunctionMaybeSecret(provider) {
46
+ // Load runtime/closure on demand, as its dependencies are slow to load.
47
+ //
48
+ // See https://www.typescriptlang.org/docs/handbook/modules.html#optional-module-loading-and-other-advanced-loading-scenarios
49
+ const sc = require("../runtime/closure/serializeClosure");
50
+ const sfPromise = sc.serializeFunction(() => provider, { allowSecrets: true });
51
+ // Create an Output from the promise's text and containsSecrets properties. Uses the internal API since we don't provide a public interface for this.
52
+ return new output_1.Output([], sfPromise.then((sf) => sf.text), new Promise((resolve) => resolve(true)), sfPromise.then((sf) => sf.containsSecrets), new Promise((resolve) => resolve([])));
53
+ }
48
54
  /**
49
55
  * Resource represents a Pulumi Resource that incorporates an inline implementation of the Resource's CRUD operations.
50
56
  */
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../dynamic/index.ts"],"names":[],"mappings":";AAAA,2CAA2C;AAC3C,EAAE;AACF,kEAAkE;AAClE,mEAAmE;AACnE,0CAA0C;AAC1C,EAAE;AACF,iDAAiD;AACjD,EAAE;AACF,sEAAsE;AACtE,oEAAoE;AACpE,2EAA2E;AAC3E,sEAAsE;AACtE,iCAAiC;;;;;;;;;AAGjC,sDAAwC;AACxC,8DAAgD;AAoJhD,MAAM,aAAa,GAAG,IAAI,OAAO,EAAqC,CAAC;AAEvE,SAAS,iBAAiB,CAAC,QAA0B;IACjD,wEAAwE;IACxE,EAAE;IACF,6HAA6H;IAC7H,MAAM,EAAE,GAA4B,OAAO,CAAC,qCAAqC,CAAC,CAAC;IAEnF,IAAI,MAAuB,CAAC;IAC5B,0CAA0C;IAC1C,IAAI,QAAQ,CAAC,qBAAqB,EAAE,EAAE;QAClC,MAAM,cAAc,GAAG,aAAa,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;QACnD,IAAI,cAAc,EAAE;YAChB,MAAM,GAAG,cAAc,CAAC;SAC3B;aAAM;YACH,MAAM,GAAG,EAAE,CAAC,iBAAiB,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,IAAI,CAAC,CAAC;YACpE,aAAa,CAAC,GAAG,CAAC,QAAQ,EAAE,MAAM,CAAC,CAAC;SACvC;KACJ;SAAM;QACH,MAAM,GAAG,EAAE,CAAC,iBAAiB,CAAC,GAAG,EAAE,CAAC,QAAQ,CAAC,CAAC,IAAI,CAAC,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,IAAI,CAAC,CAAC;KACvE;IACD,OAAO,MAAM,CAAC;AAClB,CAAC;AAED;;GAEG;AACH,MAAsB,QAAS,SAAQ,QAAQ,CAAC,cAAc;IAC1D;;;;;;;;;;OAUG;IACH,YACI,QAA0B,EAC1B,IAAY,EACZ,KAAa,EACb,IAAqC,EACrC,MAAe,EACf,OAAe,UAAU;QAEzB,MAAM,WAAW,GAAW,YAAY,CAAC;QACzC,IAAI,KAAK,CAAC,WAAW,CAAC,EAAE;YACpB,MAAM,IAAI,KAAK,CAAC,uDAAuD,CAAC,CAAC;SAC5E;QACD,KAAK,CAAC,WAAW,CAAC,GAAG,iBAAiB,CAAC,QAAQ,CAAC,CAAC;QAEjD,KAAK,CAAC,wBAAwB,MAAM,CAAC,CAAC,CAAC,IAAI,MAAM,EAAE,CAAC,CAAC,CAAC,EAAE,IAAI,IAAI,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC;IAC3F,CAAC;CACJ;AA5BD,4BA4BC"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../dynamic/index.ts"],"names":[],"mappings":";AAAA,2CAA2C;AAC3C,EAAE;AACF,kEAAkE;AAClE,mEAAmE;AACnE,0CAA0C;AAC1C,EAAE;AACF,iDAAiD;AACjD,EAAE;AACF,sEAAsE;AACtE,oEAAoE;AACpE,2EAA2E;AAC3E,sEAAsE;AACtE,iCAAiC;;;;;;;;;AAEjC,sCAAkD;AAClD,sDAAwC;AACxC,8DAAgD;AAoJhD,MAAM,aAAa,GAAG,IAAI,OAAO,EAAmC,CAAC;AAErE,SAAS,iBAAiB,CAAC,QAA0B;IACjD,IAAI,MAAqB,CAAC;IAC1B,0CAA0C;IAC1C,IAAI,QAAQ,CAAC,qBAAqB,EAAE,EAAE;QAClC,MAAM,cAAc,GAAG,aAAa,CAAC,GAAG,CAAC,QAAQ,CAAC,CAAC;QACnD,IAAI,cAAc,EAAE;YAChB,MAAM,GAAG,cAAc,CAAC;SAC3B;aAAM;YACH,MAAM,GAAG,4BAA4B,CAAC,QAAQ,CAAC,CAAC;YAChD,aAAa,CAAC,GAAG,CAAC,QAAQ,EAAE,MAAM,CAAC,CAAC;SACvC;KACJ;SAAM;QACH,MAAM,GAAG,4BAA4B,CAAC,QAAQ,CAAC,CAAC;KACnD;IACD,OAAO,MAAM,CAAC;AAClB,CAAC;AAED,SAAS,4BAA4B,CAAC,QAA0B;IAC5D,wEAAwE;IACxE,EAAE;IACF,6HAA6H;IAC7H,MAAM,EAAE,GAA4B,OAAO,CAAC,qCAAqC,CAAC,CAAC;IAEnF,MAAM,SAAS,GAAG,EAAE,CAAC,iBAAiB,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,CAAC;IAE/E,sJAAsJ;IACtJ,OAAO,IAAI,eAAM,CACb,EAAE,EACF,SAAS,CAAC,IAAI,CAAC,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,IAAI,CAAC,EAC/B,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,EACvC,SAAS,CAAC,IAAI,CAAC,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,eAAe,CAAC,EAC1C,IAAI,OAAO,CAAC,CAAC,OAAO,EAAE,EAAE,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC,CACxC,CAAC;AACN,CAAC;AAED;;GAEG;AACH,MAAsB,QAAS,SAAQ,QAAQ,CAAC,cAAc;IAC1D;;;;;;;;;;OAUG;IACH,YACI,QAA0B,EAC1B,IAAY,EACZ,KAAa,EACb,IAAqC,EACrC,MAAe,EACf,OAAe,UAAU;QAEzB,MAAM,WAAW,GAAW,YAAY,CAAC;QACzC,IAAI,KAAK,CAAC,WAAW,CAAC,EAAE;YACpB,MAAM,IAAI,KAAK,CAAC,uDAAuD,CAAC,CAAC;SAC5E;QACD,KAAK,CAAC,WAAW,CAAC,GAAG,iBAAiB,CAAC,QAAQ,CAAC,CAAC;QAEjD,KAAK,CAAC,wBAAwB,MAAM,CAAC,CAAC,CAAC,IAAI,MAAM,EAAE,CAAC,CAAC,CAAC,EAAE,IAAI,IAAI,EAAE,EAAE,IAAI,EAAE,KAAK,EAAE,IAAI,CAAC,CAAC;IAC3F,CAAC;CACJ;AA5BD,4BA4BC"}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pulumi/pulumi",
3
- "version": "3.74.0",
3
+ "version": "3.75.0",
4
4
  "description": "Pulumi's Node.js SDK",
5
5
  "license": "Apache-2.0",
6
6
  "repository": {
@@ -13,6 +13,7 @@
13
13
  "@logdna/tail-file": "^2.0.6",
14
14
  "@opentelemetry/api": "^1.2.0",
15
15
  "@opentelemetry/exporter-zipkin": "^1.6.0",
16
+ "@opentelemetry/instrumentation": "^0.32.0",
16
17
  "@opentelemetry/instrumentation-grpc": "^0.32.0",
17
18
  "@opentelemetry/resources": "^1.6.0",
18
19
  "@opentelemetry/sdk-trace-base": "^1.6.0",
@@ -21,6 +21,7 @@ var pulumi_provider_pb = require('./provider_pb.js');
21
21
  var pulumi_plugin_pb = require('./plugin_pb.js');
22
22
  var google_protobuf_empty_pb = require('google-protobuf/google/protobuf/empty_pb.js');
23
23
  var google_protobuf_struct_pb = require('google-protobuf/google/protobuf/struct_pb.js');
24
+ var pulumi_source_pb = require('./source_pb.js');
24
25
 
25
26
  function serialize_google_protobuf_Empty(arg) {
26
27
  if (!(arg instanceof google_protobuf_empty_pb.Empty)) {
@@ -21,6 +21,8 @@ var google_protobuf_empty_pb = require('google-protobuf/google/protobuf/empty_pb
21
21
  goog.object.extend(proto, google_protobuf_empty_pb);
22
22
  var google_protobuf_struct_pb = require('google-protobuf/google/protobuf/struct_pb.js');
23
23
  goog.object.extend(proto, google_protobuf_struct_pb);
24
+ var pulumi_source_pb = require('./source_pb.js');
25
+ goog.object.extend(proto, pulumi_source_pb);
24
26
  goog.exportSymbol('proto.pulumirpc.CallRequest', null, global);
25
27
  goog.exportSymbol('proto.pulumirpc.CallRequest.ArgumentDependencies', null, global);
26
28
  goog.exportSymbol('proto.pulumirpc.CallResponse', null, global);
@@ -2267,7 +2269,8 @@ proto.pulumirpc.CallRequest.toObject = function(includeInstance, msg) {
2267
2269
  dryrun: jspb.Message.getBooleanFieldWithDefault(msg, 10, false),
2268
2270
  parallel: jspb.Message.getFieldWithDefault(msg, 11, 0),
2269
2271
  monitorendpoint: jspb.Message.getFieldWithDefault(msg, 12, ""),
2270
- organization: jspb.Message.getFieldWithDefault(msg, 14, "")
2272
+ organization: jspb.Message.getFieldWithDefault(msg, 14, ""),
2273
+ sourceposition: (f = msg.getSourceposition()) && pulumi_source_pb.SourcePosition.toObject(includeInstance, f)
2271
2274
  };
2272
2275
 
2273
2276
  if (includeInstance) {
@@ -2365,6 +2368,11 @@ proto.pulumirpc.CallRequest.deserializeBinaryFromReader = function(msg, reader)
2365
2368
  var value = /** @type {string} */ (reader.readString());
2366
2369
  msg.setOrganization(value);
2367
2370
  break;
2371
+ case 15:
2372
+ var value = new pulumi_source_pb.SourcePosition;
2373
+ reader.readMessage(value,pulumi_source_pb.SourcePosition.deserializeBinaryFromReader);
2374
+ msg.setSourceposition(value);
2375
+ break;
2368
2376
  default:
2369
2377
  reader.skipField();
2370
2378
  break;
@@ -2487,6 +2495,14 @@ proto.pulumirpc.CallRequest.serializeBinaryToWriter = function(message, writer)
2487
2495
  f
2488
2496
  );
2489
2497
  }
2498
+ f = message.getSourceposition();
2499
+ if (f != null) {
2500
+ writer.writeMessage(
2501
+ 15,
2502
+ f,
2503
+ pulumi_source_pb.SourcePosition.serializeBinaryToWriter
2504
+ );
2505
+ }
2490
2506
  };
2491
2507
 
2492
2508
 
@@ -2944,6 +2960,43 @@ proto.pulumirpc.CallRequest.prototype.setOrganization = function(value) {
2944
2960
  };
2945
2961
 
2946
2962
 
2963
+ /**
2964
+ * optional SourcePosition sourcePosition = 15;
2965
+ * @return {?proto.pulumirpc.SourcePosition}
2966
+ */
2967
+ proto.pulumirpc.CallRequest.prototype.getSourceposition = function() {
2968
+ return /** @type{?proto.pulumirpc.SourcePosition} */ (
2969
+ jspb.Message.getWrapperField(this, pulumi_source_pb.SourcePosition, 15));
2970
+ };
2971
+
2972
+
2973
+ /**
2974
+ * @param {?proto.pulumirpc.SourcePosition|undefined} value
2975
+ * @return {!proto.pulumirpc.CallRequest} returns this
2976
+ */
2977
+ proto.pulumirpc.CallRequest.prototype.setSourceposition = function(value) {
2978
+ return jspb.Message.setWrapperField(this, 15, value);
2979
+ };
2980
+
2981
+
2982
+ /**
2983
+ * Clears the message field making it undefined.
2984
+ * @return {!proto.pulumirpc.CallRequest} returns this
2985
+ */
2986
+ proto.pulumirpc.CallRequest.prototype.clearSourceposition = function() {
2987
+ return this.setSourceposition(undefined);
2988
+ };
2989
+
2990
+
2991
+ /**
2992
+ * Returns whether this field is set.
2993
+ * @return {boolean}
2994
+ */
2995
+ proto.pulumirpc.CallRequest.prototype.hasSourceposition = function() {
2996
+ return jspb.Message.getField(this, 15) != null;
2997
+ };
2998
+
2999
+
2947
3000
 
2948
3001
  /**
2949
3002
  * List of repeated fields within this message type.
@@ -22,6 +22,7 @@ var google_protobuf_empty_pb = require('google-protobuf/google/protobuf/empty_pb
22
22
  var google_protobuf_struct_pb = require('google-protobuf/google/protobuf/struct_pb.js');
23
23
  var pulumi_provider_pb = require('./provider_pb.js');
24
24
  var pulumi_alias_pb = require('./alias_pb.js');
25
+ var pulumi_source_pb = require('./source_pb.js');
25
26
 
26
27
  function serialize_google_protobuf_Empty(arg) {
27
28
  if (!(arg instanceof google_protobuf_empty_pb.Empty)) {
@@ -23,6 +23,8 @@ var pulumi_provider_pb = require('./provider_pb.js');
23
23
  goog.object.extend(proto, pulumi_provider_pb);
24
24
  var pulumi_alias_pb = require('./alias_pb.js');
25
25
  goog.object.extend(proto, pulumi_alias_pb);
26
+ var pulumi_source_pb = require('./source_pb.js');
27
+ goog.object.extend(proto, pulumi_source_pb);
26
28
  goog.exportSymbol('proto.pulumirpc.ReadResourceRequest', null, global);
27
29
  goog.exportSymbol('proto.pulumirpc.ReadResourceResponse', null, global);
28
30
  goog.exportSymbol('proto.pulumirpc.RegisterResourceOutputsRequest', null, global);
@@ -575,7 +577,8 @@ proto.pulumirpc.ReadResourceRequest.toObject = function(includeInstance, msg) {
575
577
  acceptsecrets: jspb.Message.getBooleanFieldWithDefault(msg, 9, false),
576
578
  additionalsecretoutputsList: (f = jspb.Message.getRepeatedField(msg, 10)) == null ? undefined : f,
577
579
  acceptresources: jspb.Message.getBooleanFieldWithDefault(msg, 12, false),
578
- plugindownloadurl: jspb.Message.getFieldWithDefault(msg, 13, "")
580
+ plugindownloadurl: jspb.Message.getFieldWithDefault(msg, 13, ""),
581
+ sourceposition: (f = msg.getSourceposition()) && pulumi_source_pb.SourcePosition.toObject(includeInstance, f)
579
582
  };
580
583
 
581
584
  if (includeInstance) {
@@ -661,6 +664,11 @@ proto.pulumirpc.ReadResourceRequest.deserializeBinaryFromReader = function(msg,
661
664
  var value = /** @type {string} */ (reader.readString());
662
665
  msg.setPlugindownloadurl(value);
663
666
  break;
667
+ case 14:
668
+ var value = new pulumi_source_pb.SourcePosition;
669
+ reader.readMessage(value,pulumi_source_pb.SourcePosition.deserializeBinaryFromReader);
670
+ msg.setSourceposition(value);
671
+ break;
664
672
  default:
665
673
  reader.skipField();
666
674
  break;
@@ -775,6 +783,14 @@ proto.pulumirpc.ReadResourceRequest.serializeBinaryToWriter = function(message,
775
783
  f
776
784
  );
777
785
  }
786
+ f = message.getSourceposition();
787
+ if (f != null) {
788
+ writer.writeMessage(
789
+ 14,
790
+ f,
791
+ pulumi_source_pb.SourcePosition.serializeBinaryToWriter
792
+ );
793
+ }
778
794
  };
779
795
 
780
796
 
@@ -1051,6 +1067,43 @@ proto.pulumirpc.ReadResourceRequest.prototype.setPlugindownloadurl = function(va
1051
1067
  };
1052
1068
 
1053
1069
 
1070
+ /**
1071
+ * optional SourcePosition sourcePosition = 14;
1072
+ * @return {?proto.pulumirpc.SourcePosition}
1073
+ */
1074
+ proto.pulumirpc.ReadResourceRequest.prototype.getSourceposition = function() {
1075
+ return /** @type{?proto.pulumirpc.SourcePosition} */ (
1076
+ jspb.Message.getWrapperField(this, pulumi_source_pb.SourcePosition, 14));
1077
+ };
1078
+
1079
+
1080
+ /**
1081
+ * @param {?proto.pulumirpc.SourcePosition|undefined} value
1082
+ * @return {!proto.pulumirpc.ReadResourceRequest} returns this
1083
+ */
1084
+ proto.pulumirpc.ReadResourceRequest.prototype.setSourceposition = function(value) {
1085
+ return jspb.Message.setWrapperField(this, 14, value);
1086
+ };
1087
+
1088
+
1089
+ /**
1090
+ * Clears the message field making it undefined.
1091
+ * @return {!proto.pulumirpc.ReadResourceRequest} returns this
1092
+ */
1093
+ proto.pulumirpc.ReadResourceRequest.prototype.clearSourceposition = function() {
1094
+ return this.setSourceposition(undefined);
1095
+ };
1096
+
1097
+
1098
+ /**
1099
+ * Returns whether this field is set.
1100
+ * @return {boolean}
1101
+ */
1102
+ proto.pulumirpc.ReadResourceRequest.prototype.hasSourceposition = function() {
1103
+ return jspb.Message.getField(this, 14) != null;
1104
+ };
1105
+
1106
+
1054
1107
 
1055
1108
 
1056
1109
 
@@ -1299,7 +1352,8 @@ proto.pulumirpc.RegisterResourceRequest.toObject = function(includeInstance, msg
1299
1352
  aliasesList: jspb.Message.toObjectList(msg.getAliasesList(),
1300
1353
  pulumi_alias_pb.Alias.toObject, includeInstance),
1301
1354
  deletedwith: jspb.Message.getFieldWithDefault(msg, 27, ""),
1302
- aliasspecs: jspb.Message.getBooleanFieldWithDefault(msg, 28, false)
1355
+ aliasspecs: jspb.Message.getBooleanFieldWithDefault(msg, 28, false),
1356
+ sourceposition: (f = msg.getSourceposition()) && pulumi_source_pb.SourcePosition.toObject(includeInstance, f)
1303
1357
  };
1304
1358
 
1305
1359
  if (includeInstance) {
@@ -1455,6 +1509,11 @@ proto.pulumirpc.RegisterResourceRequest.deserializeBinaryFromReader = function(m
1455
1509
  var value = /** @type {boolean} */ (reader.readBool());
1456
1510
  msg.setAliasspecs(value);
1457
1511
  break;
1512
+ case 29:
1513
+ var value = new pulumi_source_pb.SourcePosition;
1514
+ reader.readMessage(value,pulumi_source_pb.SourcePosition.deserializeBinaryFromReader);
1515
+ msg.setSourceposition(value);
1516
+ break;
1458
1517
  default:
1459
1518
  reader.skipField();
1460
1519
  break;
@@ -1677,6 +1736,14 @@ proto.pulumirpc.RegisterResourceRequest.serializeBinaryToWriter = function(messa
1677
1736
  f
1678
1737
  );
1679
1738
  }
1739
+ f = message.getSourceposition();
1740
+ if (f != null) {
1741
+ writer.writeMessage(
1742
+ 29,
1743
+ f,
1744
+ pulumi_source_pb.SourcePosition.serializeBinaryToWriter
1745
+ );
1746
+ }
1680
1747
  };
1681
1748
 
1682
1749
 
@@ -2691,6 +2758,43 @@ proto.pulumirpc.RegisterResourceRequest.prototype.setAliasspecs = function(value
2691
2758
  };
2692
2759
 
2693
2760
 
2761
+ /**
2762
+ * optional SourcePosition sourcePosition = 29;
2763
+ * @return {?proto.pulumirpc.SourcePosition}
2764
+ */
2765
+ proto.pulumirpc.RegisterResourceRequest.prototype.getSourceposition = function() {
2766
+ return /** @type{?proto.pulumirpc.SourcePosition} */ (
2767
+ jspb.Message.getWrapperField(this, pulumi_source_pb.SourcePosition, 29));
2768
+ };
2769
+
2770
+
2771
+ /**
2772
+ * @param {?proto.pulumirpc.SourcePosition|undefined} value
2773
+ * @return {!proto.pulumirpc.RegisterResourceRequest} returns this
2774
+ */
2775
+ proto.pulumirpc.RegisterResourceRequest.prototype.setSourceposition = function(value) {
2776
+ return jspb.Message.setWrapperField(this, 29, value);
2777
+ };
2778
+
2779
+
2780
+ /**
2781
+ * Clears the message field making it undefined.
2782
+ * @return {!proto.pulumirpc.RegisterResourceRequest} returns this
2783
+ */
2784
+ proto.pulumirpc.RegisterResourceRequest.prototype.clearSourceposition = function() {
2785
+ return this.setSourceposition(undefined);
2786
+ };
2787
+
2788
+
2789
+ /**
2790
+ * Returns whether this field is set.
2791
+ * @return {boolean}
2792
+ */
2793
+ proto.pulumirpc.RegisterResourceRequest.prototype.hasSourceposition = function() {
2794
+ return jspb.Message.getField(this, 29) != null;
2795
+ };
2796
+
2797
+
2694
2798
 
2695
2799
  /**
2696
2800
  * List of repeated fields within this message type.
@@ -3395,7 +3499,8 @@ proto.pulumirpc.ResourceInvokeRequest.toObject = function(includeInstance, msg)
3395
3499
  provider: jspb.Message.getFieldWithDefault(msg, 3, ""),
3396
3500
  version: jspb.Message.getFieldWithDefault(msg, 4, ""),
3397
3501
  acceptresources: jspb.Message.getBooleanFieldWithDefault(msg, 5, false),
3398
- plugindownloadurl: jspb.Message.getFieldWithDefault(msg, 6, "")
3502
+ plugindownloadurl: jspb.Message.getFieldWithDefault(msg, 6, ""),
3503
+ sourceposition: (f = msg.getSourceposition()) && pulumi_source_pb.SourcePosition.toObject(includeInstance, f)
3399
3504
  };
3400
3505
 
3401
3506
  if (includeInstance) {
@@ -3457,6 +3562,11 @@ proto.pulumirpc.ResourceInvokeRequest.deserializeBinaryFromReader = function(msg
3457
3562
  var value = /** @type {string} */ (reader.readString());
3458
3563
  msg.setPlugindownloadurl(value);
3459
3564
  break;
3565
+ case 7:
3566
+ var value = new pulumi_source_pb.SourcePosition;
3567
+ reader.readMessage(value,pulumi_source_pb.SourcePosition.deserializeBinaryFromReader);
3568
+ msg.setSourceposition(value);
3569
+ break;
3460
3570
  default:
3461
3571
  reader.skipField();
3462
3572
  break;
@@ -3529,6 +3639,14 @@ proto.pulumirpc.ResourceInvokeRequest.serializeBinaryToWriter = function(message
3529
3639
  f
3530
3640
  );
3531
3641
  }
3642
+ f = message.getSourceposition();
3643
+ if (f != null) {
3644
+ writer.writeMessage(
3645
+ 7,
3646
+ f,
3647
+ pulumi_source_pb.SourcePosition.serializeBinaryToWriter
3648
+ );
3649
+ }
3532
3650
  };
3533
3651
 
3534
3652
 
@@ -3659,4 +3777,41 @@ proto.pulumirpc.ResourceInvokeRequest.prototype.setPlugindownloadurl = function(
3659
3777
  };
3660
3778
 
3661
3779
 
3780
+ /**
3781
+ * optional SourcePosition sourcePosition = 7;
3782
+ * @return {?proto.pulumirpc.SourcePosition}
3783
+ */
3784
+ proto.pulumirpc.ResourceInvokeRequest.prototype.getSourceposition = function() {
3785
+ return /** @type{?proto.pulumirpc.SourcePosition} */ (
3786
+ jspb.Message.getWrapperField(this, pulumi_source_pb.SourcePosition, 7));
3787
+ };
3788
+
3789
+
3790
+ /**
3791
+ * @param {?proto.pulumirpc.SourcePosition|undefined} value
3792
+ * @return {!proto.pulumirpc.ResourceInvokeRequest} returns this
3793
+ */
3794
+ proto.pulumirpc.ResourceInvokeRequest.prototype.setSourceposition = function(value) {
3795
+ return jspb.Message.setWrapperField(this, 7, value);
3796
+ };
3797
+
3798
+
3799
+ /**
3800
+ * Clears the message field making it undefined.
3801
+ * @return {!proto.pulumirpc.ResourceInvokeRequest} returns this
3802
+ */
3803
+ proto.pulumirpc.ResourceInvokeRequest.prototype.clearSourceposition = function() {
3804
+ return this.setSourceposition(undefined);
3805
+ };
3806
+
3807
+
3808
+ /**
3809
+ * Returns whether this field is set.
3810
+ * @return {boolean}
3811
+ */
3812
+ proto.pulumirpc.ResourceInvokeRequest.prototype.hasSourceposition = function() {
3813
+ return jspb.Message.getField(this, 7) != null;
3814
+ };
3815
+
3816
+
3662
3817
  goog.object.extend(exports, proto.pulumirpc);
@@ -0,0 +1 @@
1
+ // GENERATED CODE -- NO SERVICES IN PROTO
@@ -0,0 +1,230 @@
1
+ // source: pulumi/source.proto
2
+ /**
3
+ * @fileoverview
4
+ * @enhanceable
5
+ * @suppress {missingRequire} reports error on implicit type usages.
6
+ * @suppress {messageConventions} JS Compiler reports an error if a variable or
7
+ * field starts with 'MSG_' and isn't a translatable message.
8
+ * @public
9
+ */
10
+ // GENERATED CODE -- DO NOT EDIT!
11
+ /* eslint-disable */
12
+ // @ts-nocheck
13
+
14
+ var jspb = require('google-protobuf');
15
+ var goog = jspb;
16
+ var proto = { pulumirpc: {} }, global = proto;
17
+
18
+ goog.exportSymbol('proto.pulumirpc.SourcePosition', null, global);
19
+ /**
20
+ * Generated by JsPbCodeGenerator.
21
+ * @param {Array=} opt_data Optional initial data array, typically from a
22
+ * server response, or constructed directly in Javascript. The array is used
23
+ * in place and becomes part of the constructed object. It is not cloned.
24
+ * If no data is provided, the constructed object will be empty, but still
25
+ * valid.
26
+ * @extends {jspb.Message}
27
+ * @constructor
28
+ */
29
+ proto.pulumirpc.SourcePosition = function(opt_data) {
30
+ jspb.Message.initialize(this, opt_data, 0, -1, null, null);
31
+ };
32
+ goog.inherits(proto.pulumirpc.SourcePosition, jspb.Message);
33
+ if (goog.DEBUG && !COMPILED) {
34
+ /**
35
+ * @public
36
+ * @override
37
+ */
38
+ proto.pulumirpc.SourcePosition.displayName = 'proto.pulumirpc.SourcePosition';
39
+ }
40
+
41
+
42
+
43
+ if (jspb.Message.GENERATE_TO_OBJECT) {
44
+ /**
45
+ * Creates an object representation of this proto.
46
+ * Field names that are reserved in JavaScript and will be renamed to pb_name.
47
+ * Optional fields that are not set will be set to undefined.
48
+ * To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
49
+ * For the list of reserved names please see:
50
+ * net/proto2/compiler/js/internal/generator.cc#kKeyword.
51
+ * @param {boolean=} opt_includeInstance Deprecated. whether to include the
52
+ * JSPB instance for transitional soy proto support:
53
+ * http://goto/soy-param-migration
54
+ * @return {!Object}
55
+ */
56
+ proto.pulumirpc.SourcePosition.prototype.toObject = function(opt_includeInstance) {
57
+ return proto.pulumirpc.SourcePosition.toObject(opt_includeInstance, this);
58
+ };
59
+
60
+
61
+ /**
62
+ * Static version of the {@see toObject} method.
63
+ * @param {boolean|undefined} includeInstance Deprecated. Whether to include
64
+ * the JSPB instance for transitional soy proto support:
65
+ * http://goto/soy-param-migration
66
+ * @param {!proto.pulumirpc.SourcePosition} msg The msg instance to transform.
67
+ * @return {!Object}
68
+ * @suppress {unusedLocalVariables} f is only used for nested messages
69
+ */
70
+ proto.pulumirpc.SourcePosition.toObject = function(includeInstance, msg) {
71
+ var f, obj = {
72
+ uri: jspb.Message.getFieldWithDefault(msg, 1, ""),
73
+ line: jspb.Message.getFieldWithDefault(msg, 2, 0),
74
+ column: jspb.Message.getFieldWithDefault(msg, 3, 0)
75
+ };
76
+
77
+ if (includeInstance) {
78
+ obj.$jspbMessageInstance = msg;
79
+ }
80
+ return obj;
81
+ };
82
+ }
83
+
84
+
85
+ /**
86
+ * Deserializes binary data (in protobuf wire format).
87
+ * @param {jspb.ByteSource} bytes The bytes to deserialize.
88
+ * @return {!proto.pulumirpc.SourcePosition}
89
+ */
90
+ proto.pulumirpc.SourcePosition.deserializeBinary = function(bytes) {
91
+ var reader = new jspb.BinaryReader(bytes);
92
+ var msg = new proto.pulumirpc.SourcePosition;
93
+ return proto.pulumirpc.SourcePosition.deserializeBinaryFromReader(msg, reader);
94
+ };
95
+
96
+
97
+ /**
98
+ * Deserializes binary data (in protobuf wire format) from the
99
+ * given reader into the given message object.
100
+ * @param {!proto.pulumirpc.SourcePosition} msg The message object to deserialize into.
101
+ * @param {!jspb.BinaryReader} reader The BinaryReader to use.
102
+ * @return {!proto.pulumirpc.SourcePosition}
103
+ */
104
+ proto.pulumirpc.SourcePosition.deserializeBinaryFromReader = function(msg, reader) {
105
+ while (reader.nextField()) {
106
+ if (reader.isEndGroup()) {
107
+ break;
108
+ }
109
+ var field = reader.getFieldNumber();
110
+ switch (field) {
111
+ case 1:
112
+ var value = /** @type {string} */ (reader.readString());
113
+ msg.setUri(value);
114
+ break;
115
+ case 2:
116
+ var value = /** @type {number} */ (reader.readInt32());
117
+ msg.setLine(value);
118
+ break;
119
+ case 3:
120
+ var value = /** @type {number} */ (reader.readInt32());
121
+ msg.setColumn(value);
122
+ break;
123
+ default:
124
+ reader.skipField();
125
+ break;
126
+ }
127
+ }
128
+ return msg;
129
+ };
130
+
131
+
132
+ /**
133
+ * Serializes the message to binary data (in protobuf wire format).
134
+ * @return {!Uint8Array}
135
+ */
136
+ proto.pulumirpc.SourcePosition.prototype.serializeBinary = function() {
137
+ var writer = new jspb.BinaryWriter();
138
+ proto.pulumirpc.SourcePosition.serializeBinaryToWriter(this, writer);
139
+ return writer.getResultBuffer();
140
+ };
141
+
142
+
143
+ /**
144
+ * Serializes the given message to binary data (in protobuf wire
145
+ * format), writing to the given BinaryWriter.
146
+ * @param {!proto.pulumirpc.SourcePosition} message
147
+ * @param {!jspb.BinaryWriter} writer
148
+ * @suppress {unusedLocalVariables} f is only used for nested messages
149
+ */
150
+ proto.pulumirpc.SourcePosition.serializeBinaryToWriter = function(message, writer) {
151
+ var f = undefined;
152
+ f = message.getUri();
153
+ if (f.length > 0) {
154
+ writer.writeString(
155
+ 1,
156
+ f
157
+ );
158
+ }
159
+ f = message.getLine();
160
+ if (f !== 0) {
161
+ writer.writeInt32(
162
+ 2,
163
+ f
164
+ );
165
+ }
166
+ f = message.getColumn();
167
+ if (f !== 0) {
168
+ writer.writeInt32(
169
+ 3,
170
+ f
171
+ );
172
+ }
173
+ };
174
+
175
+
176
+ /**
177
+ * optional string uri = 1;
178
+ * @return {string}
179
+ */
180
+ proto.pulumirpc.SourcePosition.prototype.getUri = function() {
181
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
182
+ };
183
+
184
+
185
+ /**
186
+ * @param {string} value
187
+ * @return {!proto.pulumirpc.SourcePosition} returns this
188
+ */
189
+ proto.pulumirpc.SourcePosition.prototype.setUri = function(value) {
190
+ return jspb.Message.setProto3StringField(this, 1, value);
191
+ };
192
+
193
+
194
+ /**
195
+ * optional int32 line = 2;
196
+ * @return {number}
197
+ */
198
+ proto.pulumirpc.SourcePosition.prototype.getLine = function() {
199
+ return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 2, 0));
200
+ };
201
+
202
+
203
+ /**
204
+ * @param {number} value
205
+ * @return {!proto.pulumirpc.SourcePosition} returns this
206
+ */
207
+ proto.pulumirpc.SourcePosition.prototype.setLine = function(value) {
208
+ return jspb.Message.setProto3IntField(this, 2, value);
209
+ };
210
+
211
+
212
+ /**
213
+ * optional int32 column = 3;
214
+ * @return {number}
215
+ */
216
+ proto.pulumirpc.SourcePosition.prototype.getColumn = function() {
217
+ return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 3, 0));
218
+ };
219
+
220
+
221
+ /**
222
+ * @param {number} value
223
+ * @return {!proto.pulumirpc.SourcePosition} returns this
224
+ */
225
+ proto.pulumirpc.SourcePosition.prototype.setColumn = function(value) {
226
+ return jspb.Message.setProto3IntField(this, 3, value);
227
+ };
228
+
229
+
230
+ goog.object.extend(exports, proto.pulumirpc);
@@ -20,8 +20,8 @@ require (
20
20
  github.com/go-git/go-git/v5 v5.6.0 // indirect
21
21
  github.com/gofrs/uuid v4.2.0+incompatible // indirect
22
22
  github.com/gogo/protobuf v1.3.2 // indirect
23
- github.com/golang/glog v1.0.0 // indirect
24
- github.com/golang/protobuf v1.5.2 // indirect
23
+ github.com/golang/glog v1.1.0 // indirect
24
+ github.com/golang/protobuf v1.5.3 // indirect
25
25
  github.com/grpc-ecosystem/grpc-opentracing v0.0.0-20180507213350-8e809c8a8645 // indirect
26
26
  github.com/hashicorp/errwrap v1.1.0 // indirect
27
27
  github.com/hashicorp/go-multierror v1.1.1 // indirect
@@ -54,13 +54,13 @@ require (
54
54
  github.com/xanzy/ssh-agent v0.3.3 // indirect
55
55
  go.uber.org/atomic v1.9.0 // indirect
56
56
  golang.org/x/crypto v0.3.1-0.20221117191849-2c476679df9a // indirect
57
- golang.org/x/net v0.7.0 // indirect
58
- golang.org/x/sys v0.5.0 // indirect
59
- golang.org/x/term v0.5.0 // indirect
60
- golang.org/x/text v0.7.0 // indirect
61
- google.golang.org/genproto v0.0.0-20220405205423-9d709892a2bf // indirect
62
- google.golang.org/grpc v1.49.0 // indirect
63
- google.golang.org/protobuf v1.28.1 // indirect
57
+ golang.org/x/net v0.9.0 // indirect
58
+ golang.org/x/sys v0.7.0 // indirect
59
+ golang.org/x/term v0.7.0 // indirect
60
+ golang.org/x/text v0.9.0 // indirect
61
+ google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 // indirect
62
+ google.golang.org/grpc v1.56.1 // indirect
63
+ google.golang.org/protobuf v1.30.0 // indirect
64
64
  gopkg.in/warnings.v0 v0.1.2 // indirect
65
65
  gopkg.in/yaml.v2 v2.4.0 // indirect
66
66
  gopkg.in/yaml.v3 v3.0.1 // indirect
@@ -1,7 +1,4 @@
1
- cloud.google.com/go v0.26.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
2
- cloud.google.com/go v0.34.0/go.mod h1:aQUYkXzVsufM+DwF1aE+0xfcU+56JwCaLick0ClmMTw=
3
1
  dmitri.shuralyov.com/gpu/mtl v0.0.0-20190408044501-666a987793e9/go.mod h1:H6x//7gZCb22OMCxBHrMx7a5I7Hp++hsVxbQ4BYO7hU=
4
- github.com/BurntSushi/toml v0.3.1/go.mod h1:xHWCNGjB5oqiDr8zfno3MHue2Ht5sIBksp03qcyfWMU=
5
2
  github.com/BurntSushi/xgb v0.0.0-20160522181843-27f122750802/go.mod h1:IVnqGOEym/WlBOVXweHU+Q+/VP0lqqI8lqeDx9IjBqo=
6
3
  github.com/HdrHistogram/hdrhistogram-go v1.1.2 h1:5IcZpTvzydCQeHzK4Ef/D5rrSqwxob0t8PQPMybUNFM=
7
4
  github.com/HdrHistogram/hdrhistogram-go v1.1.2/go.mod h1:yDgFjdqOqDEKOvasDdhWNXYg9BVp4O+o5f6V/ehm6Oo=
@@ -16,26 +13,16 @@ github.com/aead/chacha20 v0.0.0-20180709150244-8b13a72661da/go.mod h1:eHEWzANqSi
16
13
  github.com/ajstarks/svgo v0.0.0-20180226025133-644b8db467af/go.mod h1:K08gAheRH3/J6wwsYMMT4xOr94bZjxIelGM0+d/wbFw=
17
14
  github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be h1:9AeTilPcZAjCFIImctFaOjnTIavg87rW78vTPkQqLI8=
18
15
  github.com/anmitsu/go-shlex v0.0.0-20200514113438-38f4b401e2be/go.mod h1:ySMOLuWl6zY27l47sB3qLNK6tF2fkHG55UZxx8oIVo4=
19
- github.com/antihax/optional v1.0.0/go.mod h1:uupD/76wgC+ih3iEmQUL+0Ugr19nfwCT1kdvxnR2qWY=
20
16
  github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5 h1:0CwZNZbxp69SHPdPJAN/hZIm0C4OItdklCFmMRWYpio=
21
17
  github.com/armon/go-socks5 v0.0.0-20160902184237-e75332964ef5/go.mod h1:wHh0iHkYZB8zMSxRWpUBQtwG5a7fFgvEO+odwuTv2gs=
22
18
  github.com/blang/semver v3.5.1+incompatible h1:cQNTCjp13qL8KC3Nbxr/y2Bqb63oX6wdnnjpJbkM4JQ=
23
19
  github.com/blang/semver v3.5.1+incompatible/go.mod h1:kRBLl5iJ+tD4TcOOxsy/0fnwebNt5EWlYSAyrTnjyyk=
24
20
  github.com/bwesterb/go-ristretto v1.2.0/go.mod h1:fUIoIZaG73pV5biE2Blr2xEzDoMj7NFEuV9ekS419A0=
25
- github.com/census-instrumentation/opencensus-proto v0.2.1/go.mod h1:f6KPmirojxKA12rnyqOA5BBL4O983OfeGPqjHWSTneU=
26
- github.com/cespare/xxhash/v2 v2.1.1/go.mod h1:VGX0DQ3Q6kWi7AoAeZDth3/j3BFtOZR5XLFGgcrjCOs=
27
21
  github.com/cheggaaa/pb v1.0.29 h1:FckUN5ngEk2LpvuG0fw1GEFx6LtyY2pWI/Z2QgCnEYo=
28
22
  github.com/cheggaaa/pb v1.0.29/go.mod h1:W40334L7FMC5JKWldsTWbdGjLo0RxUKK73K+TuPxX30=
29
- github.com/client9/misspell v0.3.4/go.mod h1:qj6jICC3Q7zFZvVWo7KLAzC3yx5G7kyvSDkc90ppPyw=
30
23
  github.com/cloudflare/circl v1.1.0/go.mod h1:prBCrKB9DV4poKZY1l9zBXg2QJY7mvgRvtMxxK7fi4I=
31
24
  github.com/cloudflare/circl v1.3.3 h1:fE/Qz0QdIGqeWfnwq0RE0R7MI51s0M2E4Ga9kq5AEMs=
32
25
  github.com/cloudflare/circl v1.3.3/go.mod h1:5XYMA4rFBvNIrhs50XuiBJ15vF2pZn4nnUKZrLbUZFA=
33
- github.com/cncf/udpa/go v0.0.0-20191209042840-269d4d468f6f/go.mod h1:M8M6+tZqaGXZJjfX53e64911xZQV5JYwmTeXPW+k8Sc=
34
- github.com/cncf/udpa/go v0.0.0-20201120205902-5459f2c99403/go.mod h1:WmhPx2Nbnhtbo57+VJT5O0JRkEi1Wbu0z5j0R8u5Hbk=
35
- github.com/cncf/udpa/go v0.0.0-20210930031921-04548b0d99d4/go.mod h1:6pvJx4me5XPnfI9Z40ddWsdw2W/uZgQLFXToKeRcDiI=
36
- github.com/cncf/xds/go v0.0.0-20210805033703-aa0b78936158/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs=
37
- github.com/cncf/xds/go v0.0.0-20210922020428-25de7278fc84/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs=
38
- github.com/cncf/xds/go v0.0.0-20211011173535-cb28da3451f1/go.mod h1:eXthEFrGJvWHgFFCl3hGmgk+/aYT6PnTQLykKQRLhEs=
39
26
  github.com/cpuguy83/go-md2man/v2 v2.0.2/go.mod h1:tgQtvFlXSQOSOSIRvRPT7W67SCa46tRHOmNcaadrF8o=
40
27
  github.com/creack/pty v1.1.9/go.mod h1:oKZEueFk5CKHvIhNR5MUki03XCEU+Q6VDXinZuGJ33E=
41
28
  github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
@@ -45,16 +32,9 @@ github.com/djherbis/times v1.5.0 h1:79myA211VwPhFTqUk8xehWrsEO+zcIZj0zT8mXPVARU=
45
32
  github.com/djherbis/times v1.5.0/go.mod h1:5q7FDLvbNg1L/KaBmPcWlVR9NmoKo3+ucqUA3ijQhA0=
46
33
  github.com/emirpasic/gods v1.18.1 h1:FXtiHYKDGKCW2KzwZKx0iC0PQmdlorYgdFG9jPXJ1Bc=
47
34
  github.com/emirpasic/gods v1.18.1/go.mod h1:8tpGGwCnJ5H4r6BWwaV6OrWmMoPhUl5jm/FMNAnJvWQ=
48
- github.com/envoyproxy/go-control-plane v0.9.0/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4=
49
- github.com/envoyproxy/go-control-plane v0.9.1-0.20191026205805-5f8ba28d4473/go.mod h1:YTl/9mNaCwkRvm6d1a2C3ymFceY/DCBVvsKhRF0iEA4=
50
- github.com/envoyproxy/go-control-plane v0.9.4/go.mod h1:6rpuAdCZL397s3pYoYcLgu1mIlRU8Am5FuJP05cCM98=
51
- github.com/envoyproxy/go-control-plane v0.9.9-0.20201210154907-fd9021fe5dad/go.mod h1:cXg6YxExXjJnVBQHBLXeUAgxn2UodCpnH306RInaBQk=
52
- github.com/envoyproxy/go-control-plane v0.9.10-0.20210907150352-cf90f659a021/go.mod h1:AFq3mo9L8Lqqiid3OhADV3RfLJnjiw63cSpi+fDTRC0=
53
- github.com/envoyproxy/protoc-gen-validate v0.1.0/go.mod h1:iSmxcyjqTsJpI2R4NaDN7+kN2VEUnK/pcBlmesArF7c=
54
35
  github.com/fatih/color v1.9.0 h1:8xPHl4/q1VyqGIPif1F+1V3Y3lSmrq01EabUW3CoW5s=
55
36
  github.com/fatih/color v1.9.0/go.mod h1:eQcE1qtQxscV5RaZvpXrrb8Drkc3/DdQ+uUYCNjL+zU=
56
37
  github.com/fogleman/gg v1.2.1-0.20190220221249-0403632d5b90/go.mod h1:R/bRT+9gY/C5z7JzPU0zXsXHKM4/ayA+zqcVNZzPa1k=
57
- github.com/ghodss/yaml v1.0.0/go.mod h1:4dBDuWmgqj2HViK6kFavaiC9ZROes6MMH2rRYeMEF04=
58
38
  github.com/gliderlabs/ssh v0.3.5 h1:OcaySEmAQJgyYcArR+gGGTHCyE7nvhEMTlYY+Dp8CpY=
59
39
  github.com/gliderlabs/ssh v0.3.5/go.mod h1:8XB4KraRrX39qHhT6yxPsHedjA08I/uBVwj4xC+/+z4=
60
40
  github.com/go-git/gcfg v1.5.0 h1:Q5ViNfGF8zFgyJWPqYwA7qGFoMTEiBmdlkcfRmpIMa4=
@@ -73,35 +53,15 @@ github.com/gogo/protobuf v1.3.1/go.mod h1:SlYgWuQ5SjCEi6WLHjHCa1yvBfUnHcTbrrZtXP
73
53
  github.com/gogo/protobuf v1.3.2 h1:Ov1cvc58UF3b5XjBnZv7+opcTcQFZebYjWzi34vdm4Q=
74
54
  github.com/gogo/protobuf v1.3.2/go.mod h1:P1XiOD3dCwIKUDQYPy72D8LYyHL2YPYrpS2s69NZV8Q=
75
55
  github.com/golang/freetype v0.0.0-20170609003504-e2365dfdc4a0/go.mod h1:E/TSTwGwJL78qG/PmXZO1EjYhfJinVAhrmmHX6Z8B9k=
76
- github.com/golang/glog v0.0.0-20160126235308-23def4e6c14b/go.mod h1:SBH7ygxi8pfUlaOkMMuAQtPIUF8ecWP5IEl/CR7VP2Q=
77
- github.com/golang/glog v1.0.0 h1:nfP3RFugxnNRyKgeWd4oI1nYvXpxrx8ck8ZrcizshdQ=
78
- github.com/golang/glog v1.0.0/go.mod h1:EWib/APOK0SL3dFbYqvxE3UYd8E6s1ouQ7iEp/0LWV4=
79
- github.com/golang/mock v1.1.1/go.mod h1:oTYuIxOrZwtPieC+H1uAHpcLFnEyAGVDL/k47Jfbm0A=
80
- github.com/golang/protobuf v1.2.0/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
81
- github.com/golang/protobuf v1.3.2/go.mod h1:6lQm79b+lXiMfvg/cZm0SGofjICqVBUtrP5yJMmIC1U=
82
- github.com/golang/protobuf v1.3.3/go.mod h1:vzj43D7+SQXF/4pzW/hwtAqwc6iTitCiVSaWz5lYuqw=
83
- github.com/golang/protobuf v1.4.0-rc.1/go.mod h1:ceaxUfeHdC40wWswd/P6IGgMaK3YpKi5j83Wpe3EHw8=
84
- github.com/golang/protobuf v1.4.0-rc.1.0.20200221234624-67d41d38c208/go.mod h1:xKAWHe0F5eneWXFV3EuXVDTCmh+JuBKY0li0aMyXATA=
85
- github.com/golang/protobuf v1.4.0-rc.2/go.mod h1:LlEzMj4AhA7rCAGe4KMBDvJI+AwstrUpVNzEA03Pprs=
86
- github.com/golang/protobuf v1.4.0-rc.4.0.20200313231945-b860323f09d0/go.mod h1:WU3c8KckQ9AFe+yFwt9sWVRKCVIyN9cPHBJSNnbL67w=
87
- github.com/golang/protobuf v1.4.0/go.mod h1:jodUvKwWbYaEsadDk5Fwe5c77LiNKVO9IDvqG2KuDX0=
88
- github.com/golang/protobuf v1.4.1/go.mod h1:U8fpvMrcmy5pZrNK1lt4xCsGvpyWQ/VVv6QDs8UjoX8=
89
- github.com/golang/protobuf v1.4.2/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI=
90
- github.com/golang/protobuf v1.4.3/go.mod h1:oDoupMAO8OvCJWAcko0GGGIgR6R6ocIYbsSw735rRwI=
56
+ github.com/golang/glog v1.1.0 h1:/d3pCKDPWNnvIWe0vVUpNP32qc8U3PDVxySP/y360qE=
57
+ github.com/golang/glog v1.1.0/go.mod h1:pfYeQZ3JWZoXTV5sFc986z3HTpwQs9At6P4ImfuP3NQ=
91
58
  github.com/golang/protobuf v1.5.0/go.mod h1:FsONVRAS9T7sI+LIUmWTfcYkHO4aIWwzhcaSAoJOfIk=
92
- github.com/golang/protobuf v1.5.2 h1:ROPKBNFfQgOUMifHyP+KYbvpjbdoFNs+aK7DXlji0Tw=
93
- github.com/golang/protobuf v1.5.2/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY=
94
- github.com/google/go-cmp v0.2.0/go.mod h1:oXzfMopK8JAjlY9xF4vHSVASa0yLyX7SntLO5aqRK0M=
95
- github.com/google/go-cmp v0.3.0/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU=
96
- github.com/google/go-cmp v0.3.1/go.mod h1:8QqcDgzrUqlUb/G2PQTWiueGozuR1884gddMywk6iLU=
97
- github.com/google/go-cmp v0.4.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
98
- github.com/google/go-cmp v0.5.0/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
59
+ github.com/golang/protobuf v1.5.3 h1:KhyjKVUg7Usr/dYsdSqoFveMYd5ko72D+zANwlG1mmg=
60
+ github.com/golang/protobuf v1.5.3/go.mod h1:XVQd3VNwM+JqD3oG2Ue2ip4fOMUkwXdXDdiuN0vRsmY=
99
61
  github.com/google/go-cmp v0.5.4/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
100
62
  github.com/google/go-cmp v0.5.5/go.mod h1:v8dTdLbMG2kIc/vJvl+f65V22dbkXbowE6jgT/gNBxE=
101
63
  github.com/google/go-cmp v0.5.9 h1:O2Tfq5qg4qc4AmwVlvv0oLiVAGB7enBSJ2x2DqQFi38=
102
64
  github.com/google/go-cmp v0.5.9/go.mod h1:17dUlkBOakJ0+DkrSSNjCkIjxS6bF9zb3elmeNGIjoY=
103
- github.com/google/uuid v1.1.2/go.mod h1:TIyPZe4MgqvfeYDBFedMoGGpEw/LqOeaOT+nhxU+yHo=
104
- github.com/grpc-ecosystem/grpc-gateway v1.16.0/go.mod h1:BDjrQk3hbvj6Nolgz8mAMFbcEtjT1g+wF4CSlocrBnw=
105
65
  github.com/grpc-ecosystem/grpc-opentracing v0.0.0-20180507213350-8e809c8a8645 h1:MJG/KsmcqMwFAkh8mTnAwhyKoB+sTAnY4CACC110tbU=
106
66
  github.com/grpc-ecosystem/grpc-opentracing v0.0.0-20180507213350-8e809c8a8645/go.mod h1:6iZfnjpejD4L/4DwD7NryNaJyCQdzwWwH2MWhCA90Kw=
107
67
  github.com/hashicorp/errwrap v1.0.0/go.mod h1:YH+1FKiLXxHSkmPseP+kNlulaMuP3n2brvKWEqk/Jc4=
@@ -159,12 +119,10 @@ github.com/pkg/term v1.1.0 h1:xIAAdCMh3QIAy+5FrE8Ad8XoDhEU4ufwbaSozViP9kk=
159
119
  github.com/pkg/term v1.1.0/go.mod h1:E25nymQcrSllhX42Ok8MRm1+hyBdHY0dCeiKZ9jpNGw=
160
120
  github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
161
121
  github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
162
- github.com/prometheus/client_model v0.0.0-20190812154241-14fe0d1b01d4/go.mod h1:xMI15A0UPsDsEKsMN9yxemIoYk6Tm2C1GtYGdfGttqA=
163
122
  github.com/pulumi/pulumi/sdk/v3 v3.40.1 h1:PLKYHyRffrO9nNfidDGGr2xkf8G0wjtSZx1Zj7OwyyA=
164
123
  github.com/pulumi/pulumi/sdk/v3 v3.40.1/go.mod h1:tSNA8Z+GnEjMxH+qtrfcwpmOQj7mTPTAmJUhwvuox5I=
165
124
  github.com/rivo/uniseg v0.2.0 h1:S1pD9weZBuJdFmowNwbpi7BJ8TNftyUImj/0WQi72jY=
166
125
  github.com/rivo/uniseg v0.2.0/go.mod h1:J6wj4VEh+S6ZtnVlnTBMWIodfgj8LQOQFoIToxlJtxc=
167
- github.com/rogpeppe/fastuuid v1.2.0/go.mod h1:jVj6XXZzXRy/MSR5jhDC/2q6DgLz+nrA6LYCDYWNEvQ=
168
126
  github.com/rogpeppe/go-internal v1.8.1 h1:geMPLpDpQOgVyCg5z5GoRwLHepNdb71NXb67XFkP+Eg=
169
127
  github.com/rogpeppe/go-internal v1.8.1/go.mod h1:JeRgkft04UBgHMgCIwADu4Pn6Mtm5d4nPKWu0nJ5d+o=
170
128
  github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM=
@@ -209,7 +167,6 @@ github.com/xanzy/ssh-agent v0.3.3/go.mod h1:6dzNDKs0J9rVPHPhaGCukekBHKqfl+L3KghI
209
167
  github.com/yuin/goldmark v1.1.27/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
210
168
  github.com/yuin/goldmark v1.2.1/go.mod h1:3hX8gzYuyVAZsxl0MRgGTJEmQBFcNTphYh9decYSb74=
211
169
  github.com/yuin/goldmark v1.4.13/go.mod h1:6yULJ656Px+3vBD8DxQVa3kxgyrAnzto9xy5taEt/CY=
212
- go.opentelemetry.io/proto/otlp v0.7.0/go.mod h1:PqfVotwruBrMGOCsRd/89rSnXhoiJIqeYNgFYFoEGnI=
213
170
  go.uber.org/atomic v1.9.0 h1:ECmE8Bn/WFTYwEW/bpKD3M8VtR/zQVbavAoalC1PYyE=
214
171
  go.uber.org/atomic v1.9.0/go.mod h1:fEN4uk6kAWBTFdckzkM89CLk9XfWZrxpCo0nPH17wJc=
215
172
  golang.org/x/arch v0.1.0/go.mod h1:5om86z9Hs0C8fWVUuoMHwpExlXzs5Tkyp9hOrfG7pp8=
@@ -227,16 +184,12 @@ golang.org/x/crypto v0.3.1-0.20221117191849-2c476679df9a h1:diz9pEYuTIuLMJLs3rGD
227
184
  golang.org/x/crypto v0.3.1-0.20221117191849-2c476679df9a/go.mod h1:hebNnKkNXi2UzZN1eVRvBB7co0a+JxK6XbPiWVs/3J4=
228
185
  golang.org/x/exp v0.0.0-20180321215751-8460e604b9de/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
229
186
  golang.org/x/exp v0.0.0-20180807140117-3d87b88a115f/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
230
- golang.org/x/exp v0.0.0-20190121172915-509febef88a4/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
231
187
  golang.org/x/exp v0.0.0-20190125153040-c74c464bbbf2/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
232
188
  golang.org/x/exp v0.0.0-20190306152737-a1d7652674e8/go.mod h1:CJ0aWSM057203Lf6IL+f9T1iT9GByDxfZKAQTCR3kQA=
233
189
  golang.org/x/exp v0.0.0-20191030013958-a1ab85dbe136/go.mod h1:JXzH8nQsPlswgeRAPE3MuO9GYsAcnJvJ4vnMwN/5qkY=
234
190
  golang.org/x/image v0.0.0-20180708004352-c73c2afc3b81/go.mod h1:ux5Hcp/YLpHSI86hEcLt0YII63i6oz57MZXIpbrjZUs=
235
191
  golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js=
236
192
  golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0=
237
- golang.org/x/lint v0.0.0-20181026193005-c67002cb31c3/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE=
238
- golang.org/x/lint v0.0.0-20190227174305-5b3e6a55c961/go.mod h1:wehouNa3lNwaWXcvxsM5YxQ5yQlVC4a0KAMCusXpPoU=
239
- golang.org/x/lint v0.0.0-20190313153728-d0100b6bd8b3/go.mod h1:6SW0HCj/g11FgYtHlgUYUwCkIfeOF89ocIRzGO/8vkc=
240
193
  golang.org/x/lint v0.0.0-20200302205851-738671d3881b/go.mod h1:3xt1FjdF8hUf6vQPIChWIBhFzV8gjjsPE/fR3IyQdNY=
241
194
  golang.org/x/mobile v0.0.0-20190719004257-d2bd2a29d028/go.mod h1:E/iHnbuqvinMTCcRqshq8CkpyQDoeVncDDYHnLhea+o=
242
195
  golang.org/x/mod v0.1.0/go.mod h1:0QHyrYULN0/3qlju5TqG8bIK38QM8yzMo5ekMj3DlcY=
@@ -245,36 +198,23 @@ golang.org/x/mod v0.2.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
245
198
  golang.org/x/mod v0.3.0/go.mod h1:s0Qsj1ACt9ePp/hMypM3fl4fZqREWJwdYDEqhRiZZUA=
246
199
  golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4/go.mod h1:jJ57K6gSWd91VN4djpZkiMVwK6gcyfeH4XE8wZrZaV4=
247
200
  golang.org/x/mod v0.6.0/go.mod h1:4mET923SAdbXp2ki8ey+zGs1SLqsuM2Y0uvdZR/fUNI=
248
- golang.org/x/net v0.0.0-20180724234803-3673e40ba225/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
249
- golang.org/x/net v0.0.0-20180826012351-8a410e7b638d/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
250
- golang.org/x/net v0.0.0-20190108225652-1e06a53dbb7e/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
251
- golang.org/x/net v0.0.0-20190213061140-3a22650c66bd/go.mod h1:mL1N/T3taQHkDXs73rZJwtUhF3w3ftmwwsq0BUmARs4=
252
- golang.org/x/net v0.0.0-20190311183353-d8887717615a/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
253
201
  golang.org/x/net v0.0.0-20190404232315-eb5bcb51f2a3/go.mod h1:t9HGtf8HONx5eT2rtn7q6eTqICYqUVnKs3thJo3Qplg=
254
202
  golang.org/x/net v0.0.0-20190620200207-3b0461eec859/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
255
203
  golang.org/x/net v0.0.0-20200226121028-0de0cce0169b/go.mod h1:z5CRVTTTmAJ677TzLLGU+0bjPO0LkuOLi4/5GtJWs/s=
256
204
  golang.org/x/net v0.0.0-20200421231249-e086a090c8fd/go.mod h1:qpuaurCH72eLCgpAm/N6yyVIVM9cpaDIP3A8BGJEC5A=
257
- golang.org/x/net v0.0.0-20200822124328-c89045814202/go.mod h1:/O7V0waA8r7cgGh81Ro3o1hOxt32SMVPicZroKQ2sZA=
258
205
  golang.org/x/net v0.0.0-20201021035429-f5854403a974/go.mod h1:sp8m0HH+o8qH0wwXwYZr8TS3Oi6o0r6Gce1SSxlDquU=
259
206
  golang.org/x/net v0.0.0-20210226172049-e18ecbb05110/go.mod h1:m0MpNAwzfU5UDzcl9v0D8zg8gWTRqZa9RBIspLL5mdg=
260
- golang.org/x/net v0.0.0-20210405180319-a5a99cb37ef4/go.mod h1:p54w0d4576C0XHj96bSt6lcn1PtDYWL6XObtHCRCNQM=
261
207
  golang.org/x/net v0.0.0-20211112202133-69e39bad7dc2/go.mod h1:9nx3DQGgdP8bBQD5qxJ1jj9UTztislL4KSBs9R2vV5Y=
262
208
  golang.org/x/net v0.0.0-20220722155237-a158d28d115b/go.mod h1:XRhObCWvk6IyKnWLug+ECip1KBveYUHfp+8e9klMJ9c=
263
209
  golang.org/x/net v0.0.0-20220826154423-83b083e8dc8b/go.mod h1:YDH+HFinaLZZlnHAfSS6ZXJJ9M9t4Dl22yv3iI2vPwk=
264
210
  golang.org/x/net v0.1.0/go.mod h1:Cx3nUiGt4eDBEyega/BKRp+/AlGL8hYe7U9odMt2Cco=
265
211
  golang.org/x/net v0.2.0/go.mod h1:KqCZLdyyvdV855qA2rE3GC2aiw5xGR5TEjj8smXukLY=
266
- golang.org/x/net v0.7.0 h1:rJrUqqhjsgNp7KqAIc25s9pZnjU7TUcSY7HcVZjdn1g=
267
- golang.org/x/net v0.7.0/go.mod h1:2Tu9+aMcznHK/AK1HMvgo6xiTLG5rD5rZLDS+rp2Bjs=
268
- golang.org/x/oauth2 v0.0.0-20180821212333-d2e6202438be/go.mod h1:N/0e6XlmueqKjAGxoOufVs8QHGRruUQn6yWY3a++T0U=
269
- golang.org/x/oauth2 v0.0.0-20200107190931-bf48bf16ab8d/go.mod h1:gOpvHmFTYa4IltrdGE7lF6nIHvwfUNPOp7c8zoXwtLw=
270
- golang.org/x/sync v0.0.0-20180314180146-1d60e4601c6f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
271
- golang.org/x/sync v0.0.0-20181108010431-42b317875d0f/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
272
- golang.org/x/sync v0.0.0-20181221193216-37e7f081c4d4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
212
+ golang.org/x/net v0.9.0 h1:aWJ/m6xSmxWBx+V0XRHTlrYrPG56jKsLdTFmsSsCzOM=
213
+ golang.org/x/net v0.9.0/go.mod h1:d48xBJpPfHeWQsugry2m+kC02ZBRGRgulfHnEXEuWns=
273
214
  golang.org/x/sync v0.0.0-20190423024810-112230192c58/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
274
215
  golang.org/x/sync v0.0.0-20190911185100-cd5d95a43a6e/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
275
216
  golang.org/x/sync v0.0.0-20201020160332-67f06af15bc9/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
276
217
  golang.org/x/sync v0.0.0-20220722155255-886fb9371eb4/go.mod h1:RxMgew5VJxzue5/jJTE5uejpjVlOe/izrB70Jof72aM=
277
- golang.org/x/sys v0.0.0-20180830151530-49385e6e1522/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
278
218
  golang.org/x/sys v0.0.0-20190215142949-d0b11bdaac8a/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
279
219
  golang.org/x/sys v0.0.0-20190222072716-a9d3bda3a223/go.mod h1:STP8DvDyc/dI5b8T5hshtkjS+E42TnysNCUPdjciGhY=
280
220
  golang.org/x/sys v0.0.0-20190312061237-fead79001313/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
@@ -288,9 +228,7 @@ golang.org/x/sys v0.0.0-20200930185726-fdedc70b468f/go.mod h1:h1NjWce9XRLGQEsW7w
288
228
  golang.org/x/sys v0.0.0-20201119102817-f84b799fce68/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
289
229
  golang.org/x/sys v0.0.0-20210124154548-22da62e12c0c/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
290
230
  golang.org/x/sys v0.0.0-20210320140829-1e4c9ba3b0c4/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
291
- golang.org/x/sys v0.0.0-20210330210617-4fbd30eecc44/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
292
231
  golang.org/x/sys v0.0.0-20210423082822-04245dca01da/go.mod h1:h1NjWce9XRLGQEsW7wpKNCjG9DtNlClVuFLEZdDNbEs=
293
- golang.org/x/sys v0.0.0-20210510120138-977fb7262007/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
294
232
  golang.org/x/sys v0.0.0-20210615035016-665e8c7367d1/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
295
233
  golang.org/x/sys v0.0.0-20210630005230-0f9fa26af87c/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
296
234
  golang.org/x/sys v0.0.0-20210927094055-39ccf1dd6fa6/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
@@ -303,31 +241,26 @@ golang.org/x/sys v0.0.0-20220825204002-c680a09ffe64/go.mod h1:oPkhp1MJrh7nUepCBc
303
241
  golang.org/x/sys v0.1.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
304
242
  golang.org/x/sys v0.2.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
305
243
  golang.org/x/sys v0.3.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
306
- golang.org/x/sys v0.5.0 h1:MUK/U/4lj1t1oPg0HfuXDN/Z1wv31ZJ/YcPiGccS4DU=
307
- golang.org/x/sys v0.5.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
244
+ golang.org/x/sys v0.7.0 h1:3jlCCIQZPdOYu1h8BkNvLz8Kgwtae2cagcG/VamtZRU=
245
+ golang.org/x/sys v0.7.0/go.mod h1:oPkhp1MJrh7nUepCBck5+mAzfO9JrbApNNgaTdGDITg=
308
246
  golang.org/x/term v0.0.0-20201126162022-7de9c90e9dd1/go.mod h1:bj7SfCRtBDWHUb9snDiAeCFNEtKQo2Wmx5Cou7ajbmo=
309
247
  golang.org/x/term v0.0.0-20210927222741-03fcf44c2211/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
310
248
  golang.org/x/term v0.0.0-20220722155259-a9ba230a4035/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
311
249
  golang.org/x/term v0.1.0/go.mod h1:jbD1KX2456YbFQfuXm/mYQcufACuNUgVhRMnK/tPxf8=
312
250
  golang.org/x/term v0.2.0/go.mod h1:TVmDHMZPmdnySmBfhjOoOdhjzdE1h4u1VwSiw2l1Nuc=
313
- golang.org/x/term v0.5.0 h1:n2a8QNdAb0sZNpU9R1ALUXBbY+w51fCQDN+7EdxNBsY=
314
- golang.org/x/term v0.5.0/go.mod h1:jMB1sMXY+tzblOD4FWmEbocvup2/aLOaQEp7JmGp78k=
251
+ golang.org/x/term v0.7.0 h1:BEvjmm5fURWqcfbSKTdpkDXYBrUS1c0m8agp14W48vQ=
252
+ golang.org/x/term v0.7.0/go.mod h1:P32HKFT3hSsZrRxla30E9HqToFYAQPCMs/zFMBUFqPY=
315
253
  golang.org/x/text v0.3.0/go.mod h1:NqM8EUOU14njkJ3fqMW+pc6Ldnwhi/IjpwHt7yyuwOQ=
316
254
  golang.org/x/text v0.3.3/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
317
- golang.org/x/text v0.3.5/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
318
255
  golang.org/x/text v0.3.6/go.mod h1:5Zoc/QRtKVWzQhOtBMvqHzDpF6irO9z98xDceosuGiQ=
319
256
  golang.org/x/text v0.3.7/go.mod h1:u+2+/6zg+i71rQMx5EYifcz6MCKuco9NR6JIITiCfzQ=
320
257
  golang.org/x/text v0.4.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8=
321
- golang.org/x/text v0.7.0 h1:4BRB4x83lYWy72KwLD/qYDuTu7q9PjSagHvijDw7cLo=
322
- golang.org/x/text v0.7.0/go.mod h1:mrYo+phRRbMaCq/xk9113O4dZlRixOauAjOtrjsXDZ8=
258
+ golang.org/x/text v0.9.0 h1:2sjJmO8cDvYveuX97RDLsxlyUxLl+GHoLxBiRdHllBE=
259
+ golang.org/x/text v0.9.0/go.mod h1:e1OnstbJyHTd6l/uOt8jFFHp6TRDWZR/bV3emEE/zU8=
323
260
  golang.org/x/tools v0.0.0-20180525024113-a5b4c53f6e8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
324
261
  golang.org/x/tools v0.0.0-20180917221912-90fa682c2a6e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
325
262
  golang.org/x/tools v0.0.0-20181030221726-6c7e314b6563/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
326
- golang.org/x/tools v0.0.0-20190114222345-bf090417da8b/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
327
263
  golang.org/x/tools v0.0.0-20190206041539-40960b6deb8e/go.mod h1:n7NCudcB/nEzxVGmLbDWY5pfWTLqBcC2KZ6jyYvM4mQ=
328
- golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3HoIrodX9oNMXvdceNzlUR8zjMvY=
329
- golang.org/x/tools v0.0.0-20190311212946-11955173bddd/go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs=
330
- golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135/go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q=
331
264
  golang.org/x/tools v0.0.0-20191012152004-8de300cfc20a/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
332
265
  golang.org/x/tools v0.0.0-20191119224855-298f0cb1881e/go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo=
333
266
  golang.org/x/tools v0.0.0-20200130002326-2f3ba24bd6e7/go.mod h1:TB2adYChydJhpapKDTa4BR/hXlZSLoq2Wpct/0txZ28=
@@ -343,37 +276,14 @@ gonum.org/v1/gonum v0.0.0-20180816165407-929014505bf4/go.mod h1:Y+Yx5eoAFn32cQvJ
343
276
  gonum.org/v1/gonum v0.8.2/go.mod h1:oe/vMfY3deqTw+1EZJhuvEW2iwGF1bW9wwu7XCu0+v0=
344
277
  gonum.org/v1/netlib v0.0.0-20190313105609-8cb42192e0e0/go.mod h1:wa6Ws7BG/ESfp6dHfk7C6KdzKA7wR7u/rKwOGE66zvw=
345
278
  gonum.org/v1/plot v0.0.0-20190515093506-e2840ee46a6b/go.mod h1:Wt8AAjI+ypCyYX3nZBvf6cAIx93T+c/OS2HFAYskSZc=
346
- google.golang.org/appengine v1.1.0/go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM=
347
- google.golang.org/appengine v1.4.0/go.mod h1:xpcJRLb0r/rnEns0DIKYYv+WjYCduHsrkT7/EB5XEv4=
348
- google.golang.org/genproto v0.0.0-20180817151627-c66870c02cf8/go.mod h1:JiN7NxoALGmiZfu7CAH4rXhgtRTLTxftemlI0sWmxmc=
349
- google.golang.org/genproto v0.0.0-20190819201941-24fa4b261c55/go.mod h1:DMBHOl98Agz4BDEuKkezgsaosCRResVns1a3J2ZsMNc=
350
- google.golang.org/genproto v0.0.0-20200513103714-09dca8ec2884/go.mod h1:55QSHmfGQM9UVYDPBsyGGes0y52j32PQ3BqQfXhyH3c=
351
- google.golang.org/genproto v0.0.0-20200526211855-cb27e3aa2013/go.mod h1:NbSheEEYHJ7i3ixzK3sjbqSGDJWnxyFXZblF3eUsNvo=
352
- google.golang.org/genproto v0.0.0-20220405205423-9d709892a2bf h1:JTjwKJX9erVpsw17w+OIPP7iAgEkN/r8urhWSunEDTs=
353
- google.golang.org/genproto v0.0.0-20220405205423-9d709892a2bf/go.mod h1:8w6bsBMX6yCPbAVTeqQHvzxW0EIFigd5lZyahWgyfDo=
354
- google.golang.org/grpc v1.19.0/go.mod h1:mqu4LbDTu4XGKhr4mRzUsmM4RtVoemTSY81AxZiDr8c=
355
- google.golang.org/grpc v1.23.0/go.mod h1:Y5yQAOtifL1yxbo5wqy6BxZv8vAUGQwXBOALyacEbxg=
356
- google.golang.org/grpc v1.25.1/go.mod h1:c3i+UQWmh7LiEpx4sFZnkU36qjEYZ0imhYfXVyQciAY=
357
- google.golang.org/grpc v1.27.0/go.mod h1:qbnxyOmOxrQa7FizSgH+ReBfzJrCY1pSN7KXBS8abTk=
358
- google.golang.org/grpc v1.33.1/go.mod h1:fr5YgcSWrqhRRxogOsw7RzIpsmvOZ6IcH4kBYTpR3n0=
359
- google.golang.org/grpc v1.36.0/go.mod h1:qjiiYl8FncCW8feJPdyg3v6XW24KsRHe+dy9BAGRRjU=
360
- google.golang.org/grpc v1.45.0/go.mod h1:lN7owxKUQEqMfSyQikvvk5tf/6zMPsrK+ONuO11+0rQ=
361
- google.golang.org/grpc v1.49.0 h1:WTLtQzmQori5FUH25Pq4WT22oCsv8USpQ+F6rqtsmxw=
362
- google.golang.org/grpc v1.49.0/go.mod h1:ZgQEeidpAuNRZ8iRrlBKXZQP1ghovWIVhdJRyCDK+GI=
363
- google.golang.org/protobuf v0.0.0-20200109180630-ec00e32a8dfd/go.mod h1:DFci5gLYBciE7Vtevhsrf46CRTquxDuWsQurQQe4oz8=
364
- google.golang.org/protobuf v0.0.0-20200221191635-4d8936d0db64/go.mod h1:kwYJMbMJ01Woi6D6+Kah6886xMZcty6N08ah7+eCXa0=
365
- google.golang.org/protobuf v0.0.0-20200228230310-ab0ca4ff8a60/go.mod h1:cfTl7dwQJ+fmap5saPgwCLgHXTUD7jkjRqWcaiX5VyM=
366
- google.golang.org/protobuf v1.20.1-0.20200309200217-e05f789c0967/go.mod h1:A+miEFZTKqfCUM6K7xSMQL9OKL/b6hQv+e19PK+JZNE=
367
- google.golang.org/protobuf v1.21.0/go.mod h1:47Nbq4nVaFHyn7ilMalzfO3qCViNmqZ2kzikPIcrTAo=
368
- google.golang.org/protobuf v1.22.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU=
369
- google.golang.org/protobuf v1.23.0/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU=
370
- google.golang.org/protobuf v1.23.1-0.20200526195155-81db48ad09cc/go.mod h1:EGpADcykh3NcUnDUJcl1+ZksZNG86OlYog2l/sGQquU=
371
- google.golang.org/protobuf v1.25.0/go.mod h1:9JNX74DMeImyA3h4bdi1ymwjUzf21/xIlbajtzgsN7c=
279
+ google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1 h1:KpwkzHKEF7B9Zxg18WzOa7djJ+Ha5DzthMyZYQfEn2A=
280
+ google.golang.org/genproto v0.0.0-20230410155749-daa745c078e1/go.mod h1:nKE/iIaLqn2bQwXBg8f1g2Ylh6r5MN5CmZvuzZCgsCU=
281
+ google.golang.org/grpc v1.56.1 h1:z0dNfjIl0VpaZ9iSVjA6daGatAYwPGstTjt5vkRMFkQ=
282
+ google.golang.org/grpc v1.56.1/go.mod h1:I9bI3vqKfayGqPUAwGdOSu7kt6oIJLixfffKrpXqQ9s=
372
283
  google.golang.org/protobuf v1.26.0-rc.1/go.mod h1:jlhhOSvTdKEhbULTjvd4ARK9grFBp09yW+WbY/TyQbw=
373
284
  google.golang.org/protobuf v1.26.0/go.mod h1:9q0QmTI4eRPtz6boOQmLYwt+qCgq0jsYwAQnmE0givc=
374
- google.golang.org/protobuf v1.28.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I=
375
- google.golang.org/protobuf v1.28.1 h1:d0NfwRgPtno5B1Wa6L2DAG+KivqkdutMf1UhdNx175w=
376
- google.golang.org/protobuf v1.28.1/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I=
285
+ google.golang.org/protobuf v1.30.0 h1:kPPoIgf3TsEvrm0PFe15JQ+570QVxYzEvvHqChK+cng=
286
+ google.golang.org/protobuf v1.30.0/go.mod h1:HV8QOd/L58Z+nl8r43ehVNZIU/HEI6OcFqwMG9pJV4I=
377
287
  gopkg.in/check.v1 v0.0.0-20161208181325-20d25e280405/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
378
288
  gopkg.in/check.v1 v1.0.0-20180628173108-788fd7840127/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
379
289
  gopkg.in/check.v1 v1.0.0-20190902080502-41f04d3bba15/go.mod h1:Co6ibVJAznAaIkqp8huTwlJQCZ016jof/cbN4VW5Yz0=
@@ -384,7 +294,6 @@ gopkg.in/errgo.v2 v2.1.0/go.mod h1:hNsd1EY+bozCKY1Ytp96fpM3vjJbqLJn88ws8XvfDNI=
384
294
  gopkg.in/warnings.v0 v0.1.2 h1:wFXVbFY8DY5/xOe1ECiWdKCzZlxgshcYVNkBHstARME=
385
295
  gopkg.in/warnings.v0 v0.1.2/go.mod h1:jksf8JmL6Qr/oQM2OXTHunEvvTAsrWBLb6OOjuVWRNI=
386
296
  gopkg.in/yaml.v2 v2.2.2/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
387
- gopkg.in/yaml.v2 v2.2.3/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
388
297
  gopkg.in/yaml.v2 v2.2.4/go.mod h1:hI93XBmqTisBFMUTm0b8Fm+jr3Dg1NNxqwp+5A1VGuI=
389
298
  gopkg.in/yaml.v2 v2.4.0 h1:D8xgwECY7CYvx+Y2n4sBz93Jn9JRvxdiyyo8CTfuKaY=
390
299
  gopkg.in/yaml.v2 v2.4.0/go.mod h1:RDklbk79AGWmwhnvt/jBztapEOGDOx6ZbXqjP6csGnQ=
@@ -392,8 +301,6 @@ gopkg.in/yaml.v3 v3.0.0-20200313102051-9f266ea9e77c/go.mod h1:K4uyk7z7BCEPqu6E+C
392
301
  gopkg.in/yaml.v3 v3.0.0/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
393
302
  gopkg.in/yaml.v3 v3.0.1 h1:fxVm/GzAzEWqLHuvctI91KS9hhNmmWOoWu0XTYJS7CA=
394
303
  gopkg.in/yaml.v3 v3.0.1/go.mod h1:K4uyk7z7BCEPqu6E+C64Yfv1cQ7kz7rIZviUmN+EgEM=
395
- honnef.co/go/tools v0.0.0-20190102054323-c2f93a96b099/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
396
- honnef.co/go/tools v0.0.0-20190523083050-ea95bdfd59fc/go.mod h1:rf3lG4BRIbNafJWhAfAdb/ePZxsR/4RtNHQocxwk9r4=
397
304
  lukechampine.com/frand v1.4.2 h1:RzFIpOvkMXuPMBb9maa4ND4wjBn71E1Jpf8BzJHMaVw=
398
305
  lukechampine.com/frand v1.4.2/go.mod h1:4S/TM2ZgrKejMcKMbeLjISpJMO+/eZ1zu3vYX9dtj3s=
399
306
  pgregory.net/rapid v0.4.7 h1:MTNRktPuv5FNqOO151TM9mDTa+XHcX6ypYeISDVD14g=
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.74.0";
16
+ exports.version = "3.75.0";
17
17
  //# sourceMappingURL=version.js.map