@gitpod/supervisor-api-grpc 0.1.5-prs-core-dev-kubeconfig.3 → 0.1.5-prs-test-dazzle-rewrite.22

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.
@@ -9,6 +9,7 @@ import * as control_pb from "./control_pb";
9
9
 
10
10
  interface IControlServiceService extends grpc.ServiceDefinition<grpc.UntypedServiceImplementation> {
11
11
  exposePort: IControlServiceService_IExposePort;
12
+ createSSHKeyPair: IControlServiceService_ICreateSSHKeyPair;
12
13
  }
13
14
 
14
15
  interface IControlServiceService_IExposePort extends grpc.MethodDefinition<control_pb.ExposePortRequest, control_pb.ExposePortResponse> {
@@ -20,17 +21,30 @@ interface IControlServiceService_IExposePort extends grpc.MethodDefinition<contr
20
21
  responseSerialize: grpc.serialize<control_pb.ExposePortResponse>;
21
22
  responseDeserialize: grpc.deserialize<control_pb.ExposePortResponse>;
22
23
  }
24
+ interface IControlServiceService_ICreateSSHKeyPair extends grpc.MethodDefinition<control_pb.CreateSSHKeyPairRequest, control_pb.CreateSSHKeyPairResponse> {
25
+ path: "/supervisor.ControlService/CreateSSHKeyPair";
26
+ requestStream: false;
27
+ responseStream: false;
28
+ requestSerialize: grpc.serialize<control_pb.CreateSSHKeyPairRequest>;
29
+ requestDeserialize: grpc.deserialize<control_pb.CreateSSHKeyPairRequest>;
30
+ responseSerialize: grpc.serialize<control_pb.CreateSSHKeyPairResponse>;
31
+ responseDeserialize: grpc.deserialize<control_pb.CreateSSHKeyPairResponse>;
32
+ }
23
33
 
24
34
  export const ControlServiceService: IControlServiceService;
25
35
 
26
36
  export interface IControlServiceServer extends grpc.UntypedServiceImplementation {
27
37
  exposePort: grpc.handleUnaryCall<control_pb.ExposePortRequest, control_pb.ExposePortResponse>;
38
+ createSSHKeyPair: grpc.handleUnaryCall<control_pb.CreateSSHKeyPairRequest, control_pb.CreateSSHKeyPairResponse>;
28
39
  }
29
40
 
30
41
  export interface IControlServiceClient {
31
42
  exposePort(request: control_pb.ExposePortRequest, callback: (error: grpc.ServiceError | null, response: control_pb.ExposePortResponse) => void): grpc.ClientUnaryCall;
32
43
  exposePort(request: control_pb.ExposePortRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: control_pb.ExposePortResponse) => void): grpc.ClientUnaryCall;
33
44
  exposePort(request: control_pb.ExposePortRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: control_pb.ExposePortResponse) => void): grpc.ClientUnaryCall;
45
+ createSSHKeyPair(request: control_pb.CreateSSHKeyPairRequest, callback: (error: grpc.ServiceError | null, response: control_pb.CreateSSHKeyPairResponse) => void): grpc.ClientUnaryCall;
46
+ createSSHKeyPair(request: control_pb.CreateSSHKeyPairRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: control_pb.CreateSSHKeyPairResponse) => void): grpc.ClientUnaryCall;
47
+ createSSHKeyPair(request: control_pb.CreateSSHKeyPairRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: control_pb.CreateSSHKeyPairResponse) => void): grpc.ClientUnaryCall;
34
48
  }
35
49
 
36
50
  export class ControlServiceClient extends grpc.Client implements IControlServiceClient {
@@ -38,4 +52,7 @@ export class ControlServiceClient extends grpc.Client implements IControlService
38
52
  public exposePort(request: control_pb.ExposePortRequest, callback: (error: grpc.ServiceError | null, response: control_pb.ExposePortResponse) => void): grpc.ClientUnaryCall;
39
53
  public exposePort(request: control_pb.ExposePortRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: control_pb.ExposePortResponse) => void): grpc.ClientUnaryCall;
40
54
  public exposePort(request: control_pb.ExposePortRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: control_pb.ExposePortResponse) => void): grpc.ClientUnaryCall;
55
+ public createSSHKeyPair(request: control_pb.CreateSSHKeyPairRequest, callback: (error: grpc.ServiceError | null, response: control_pb.CreateSSHKeyPairResponse) => void): grpc.ClientUnaryCall;
56
+ public createSSHKeyPair(request: control_pb.CreateSSHKeyPairRequest, metadata: grpc.Metadata, callback: (error: grpc.ServiceError | null, response: control_pb.CreateSSHKeyPairResponse) => void): grpc.ClientUnaryCall;
57
+ public createSSHKeyPair(request: control_pb.CreateSSHKeyPairRequest, metadata: grpc.Metadata, options: Partial<grpc.CallOptions>, callback: (error: grpc.ServiceError | null, response: control_pb.CreateSSHKeyPairResponse) => void): grpc.ClientUnaryCall;
41
58
  }
@@ -9,6 +9,28 @@
9
9
  var grpc = require('@grpc/grpc-js');
10
10
  var control_pb = require('./control_pb.js');
11
11
 
12
+ function serialize_supervisor_CreateSSHKeyPairRequest(arg) {
13
+ if (!(arg instanceof control_pb.CreateSSHKeyPairRequest)) {
14
+ throw new Error('Expected argument of type supervisor.CreateSSHKeyPairRequest');
15
+ }
16
+ return Buffer.from(arg.serializeBinary());
17
+ }
18
+
19
+ function deserialize_supervisor_CreateSSHKeyPairRequest(buffer_arg) {
20
+ return control_pb.CreateSSHKeyPairRequest.deserializeBinary(new Uint8Array(buffer_arg));
21
+ }
22
+
23
+ function serialize_supervisor_CreateSSHKeyPairResponse(arg) {
24
+ if (!(arg instanceof control_pb.CreateSSHKeyPairResponse)) {
25
+ throw new Error('Expected argument of type supervisor.CreateSSHKeyPairResponse');
26
+ }
27
+ return Buffer.from(arg.serializeBinary());
28
+ }
29
+
30
+ function deserialize_supervisor_CreateSSHKeyPairResponse(buffer_arg) {
31
+ return control_pb.CreateSSHKeyPairResponse.deserializeBinary(new Uint8Array(buffer_arg));
32
+ }
33
+
12
34
  function serialize_supervisor_ExposePortRequest(arg) {
13
35
  if (!(arg instanceof control_pb.ExposePortRequest)) {
14
36
  throw new Error('Expected argument of type supervisor.ExposePortRequest');
@@ -46,6 +68,18 @@ exposePort: {
46
68
  responseSerialize: serialize_supervisor_ExposePortResponse,
47
69
  responseDeserialize: deserialize_supervisor_ExposePortResponse,
48
70
  },
71
+ // CreateSSHKeyPair Create a pair of SSH Keys and put them in ~/.ssh/authorized_keys, this will only be generated once in the entire workspace lifecycle
72
+ createSSHKeyPair: {
73
+ path: '/supervisor.ControlService/CreateSSHKeyPair',
74
+ requestStream: false,
75
+ responseStream: false,
76
+ requestType: control_pb.CreateSSHKeyPairRequest,
77
+ responseType: control_pb.CreateSSHKeyPairResponse,
78
+ requestSerialize: serialize_supervisor_CreateSSHKeyPairRequest,
79
+ requestDeserialize: deserialize_supervisor_CreateSSHKeyPairRequest,
80
+ responseSerialize: serialize_supervisor_CreateSSHKeyPairResponse,
81
+ responseDeserialize: deserialize_supervisor_CreateSSHKeyPairResponse,
82
+ },
49
83
  };
50
84
 
51
85
  exports.ControlServiceClient = grpc.makeGenericClientConstructor(ControlServiceService);
@@ -9,8 +9,6 @@ import * as jspb from "google-protobuf";
9
9
  export class ExposePortRequest extends jspb.Message {
10
10
  getPort(): number;
11
11
  setPort(value: number): ExposePortRequest;
12
- getTargetPort(): number;
13
- setTargetPort(value: number): ExposePortRequest;
14
12
 
15
13
  serializeBinary(): Uint8Array;
16
14
  toObject(includeInstance?: boolean): ExposePortRequest.AsObject;
@@ -25,7 +23,6 @@ export class ExposePortRequest extends jspb.Message {
25
23
  export namespace ExposePortRequest {
26
24
  export type AsObject = {
27
25
  port: number,
28
- targetPort: number,
29
26
  }
30
27
  }
31
28
 
@@ -45,3 +42,40 @@ export namespace ExposePortResponse {
45
42
  export type AsObject = {
46
43
  }
47
44
  }
45
+
46
+ export class CreateSSHKeyPairRequest extends jspb.Message {
47
+
48
+ serializeBinary(): Uint8Array;
49
+ toObject(includeInstance?: boolean): CreateSSHKeyPairRequest.AsObject;
50
+ static toObject(includeInstance: boolean, msg: CreateSSHKeyPairRequest): CreateSSHKeyPairRequest.AsObject;
51
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
52
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
53
+ static serializeBinaryToWriter(message: CreateSSHKeyPairRequest, writer: jspb.BinaryWriter): void;
54
+ static deserializeBinary(bytes: Uint8Array): CreateSSHKeyPairRequest;
55
+ static deserializeBinaryFromReader(message: CreateSSHKeyPairRequest, reader: jspb.BinaryReader): CreateSSHKeyPairRequest;
56
+ }
57
+
58
+ export namespace CreateSSHKeyPairRequest {
59
+ export type AsObject = {
60
+ }
61
+ }
62
+
63
+ export class CreateSSHKeyPairResponse extends jspb.Message {
64
+ getPrivateKey(): string;
65
+ setPrivateKey(value: string): CreateSSHKeyPairResponse;
66
+
67
+ serializeBinary(): Uint8Array;
68
+ toObject(includeInstance?: boolean): CreateSSHKeyPairResponse.AsObject;
69
+ static toObject(includeInstance: boolean, msg: CreateSSHKeyPairResponse): CreateSSHKeyPairResponse.AsObject;
70
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
71
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
72
+ static serializeBinaryToWriter(message: CreateSSHKeyPairResponse, writer: jspb.BinaryWriter): void;
73
+ static deserializeBinary(bytes: Uint8Array): CreateSSHKeyPairResponse;
74
+ static deserializeBinaryFromReader(message: CreateSSHKeyPairResponse, reader: jspb.BinaryReader): CreateSSHKeyPairResponse;
75
+ }
76
+
77
+ export namespace CreateSSHKeyPairResponse {
78
+ export type AsObject = {
79
+ privateKey: string,
80
+ }
81
+ }
package/lib/control_pb.js CHANGED
@@ -13,8 +13,16 @@
13
13
 
14
14
  var jspb = require('google-protobuf');
15
15
  var goog = jspb;
16
- var global = Function('return this')();
17
-
16
+ var global = (function() {
17
+ if (this) { return this; }
18
+ if (typeof window !== 'undefined') { return window; }
19
+ if (typeof global !== 'undefined') { return global; }
20
+ if (typeof self !== 'undefined') { return self; }
21
+ return Function('return this')();
22
+ }.call(null));
23
+
24
+ goog.exportSymbol('proto.supervisor.CreateSSHKeyPairRequest', null, global);
25
+ goog.exportSymbol('proto.supervisor.CreateSSHKeyPairResponse', null, global);
18
26
  goog.exportSymbol('proto.supervisor.ExposePortRequest', null, global);
19
27
  goog.exportSymbol('proto.supervisor.ExposePortResponse', null, global);
20
28
  /**
@@ -59,6 +67,48 @@ if (goog.DEBUG && !COMPILED) {
59
67
  */
60
68
  proto.supervisor.ExposePortResponse.displayName = 'proto.supervisor.ExposePortResponse';
61
69
  }
70
+ /**
71
+ * Generated by JsPbCodeGenerator.
72
+ * @param {Array=} opt_data Optional initial data array, typically from a
73
+ * server response, or constructed directly in Javascript. The array is used
74
+ * in place and becomes part of the constructed object. It is not cloned.
75
+ * If no data is provided, the constructed object will be empty, but still
76
+ * valid.
77
+ * @extends {jspb.Message}
78
+ * @constructor
79
+ */
80
+ proto.supervisor.CreateSSHKeyPairRequest = function(opt_data) {
81
+ jspb.Message.initialize(this, opt_data, 0, -1, null, null);
82
+ };
83
+ goog.inherits(proto.supervisor.CreateSSHKeyPairRequest, jspb.Message);
84
+ if (goog.DEBUG && !COMPILED) {
85
+ /**
86
+ * @public
87
+ * @override
88
+ */
89
+ proto.supervisor.CreateSSHKeyPairRequest.displayName = 'proto.supervisor.CreateSSHKeyPairRequest';
90
+ }
91
+ /**
92
+ * Generated by JsPbCodeGenerator.
93
+ * @param {Array=} opt_data Optional initial data array, typically from a
94
+ * server response, or constructed directly in Javascript. The array is used
95
+ * in place and becomes part of the constructed object. It is not cloned.
96
+ * If no data is provided, the constructed object will be empty, but still
97
+ * valid.
98
+ * @extends {jspb.Message}
99
+ * @constructor
100
+ */
101
+ proto.supervisor.CreateSSHKeyPairResponse = function(opt_data) {
102
+ jspb.Message.initialize(this, opt_data, 0, -1, null, null);
103
+ };
104
+ goog.inherits(proto.supervisor.CreateSSHKeyPairResponse, jspb.Message);
105
+ if (goog.DEBUG && !COMPILED) {
106
+ /**
107
+ * @public
108
+ * @override
109
+ */
110
+ proto.supervisor.CreateSSHKeyPairResponse.displayName = 'proto.supervisor.CreateSSHKeyPairResponse';
111
+ }
62
112
 
63
113
 
64
114
 
@@ -91,8 +141,7 @@ proto.supervisor.ExposePortRequest.prototype.toObject = function(opt_includeInst
91
141
  */
92
142
  proto.supervisor.ExposePortRequest.toObject = function(includeInstance, msg) {
93
143
  var f, obj = {
94
- port: jspb.Message.getFieldWithDefault(msg, 1, 0),
95
- targetPort: jspb.Message.getFieldWithDefault(msg, 2, 0)
144
+ port: jspb.Message.getFieldWithDefault(msg, 1, 0)
96
145
  };
97
146
 
98
147
  if (includeInstance) {
@@ -133,10 +182,6 @@ proto.supervisor.ExposePortRequest.deserializeBinaryFromReader = function(msg, r
133
182
  var value = /** @type {number} */ (reader.readUint32());
134
183
  msg.setPort(value);
135
184
  break;
136
- case 2:
137
- var value = /** @type {number} */ (reader.readUint32());
138
- msg.setTargetPort(value);
139
- break;
140
185
  default:
141
186
  reader.skipField();
142
187
  break;
@@ -173,13 +218,6 @@ proto.supervisor.ExposePortRequest.serializeBinaryToWriter = function(message, w
173
218
  f
174
219
  );
175
220
  }
176
- f = message.getTargetPort();
177
- if (f !== 0) {
178
- writer.writeUint32(
179
- 2,
180
- f
181
- );
182
- }
183
221
  };
184
222
 
185
223
 
@@ -201,24 +239,6 @@ proto.supervisor.ExposePortRequest.prototype.setPort = function(value) {
201
239
  };
202
240
 
203
241
 
204
- /**
205
- * optional uint32 target_port = 2;
206
- * @return {number}
207
- */
208
- proto.supervisor.ExposePortRequest.prototype.getTargetPort = function() {
209
- return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 2, 0));
210
- };
211
-
212
-
213
- /**
214
- * @param {number} value
215
- * @return {!proto.supervisor.ExposePortRequest} returns this
216
- */
217
- proto.supervisor.ExposePortRequest.prototype.setTargetPort = function(value) {
218
- return jspb.Message.setProto3IntField(this, 2, value);
219
- };
220
-
221
-
222
242
 
223
243
 
224
244
 
@@ -320,4 +340,235 @@ proto.supervisor.ExposePortResponse.serializeBinaryToWriter = function(message,
320
340
  };
321
341
 
322
342
 
343
+
344
+
345
+
346
+ if (jspb.Message.GENERATE_TO_OBJECT) {
347
+ /**
348
+ * Creates an object representation of this proto.
349
+ * Field names that are reserved in JavaScript and will be renamed to pb_name.
350
+ * Optional fields that are not set will be set to undefined.
351
+ * To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
352
+ * For the list of reserved names please see:
353
+ * net/proto2/compiler/js/internal/generator.cc#kKeyword.
354
+ * @param {boolean=} opt_includeInstance Deprecated. whether to include the
355
+ * JSPB instance for transitional soy proto support:
356
+ * http://goto/soy-param-migration
357
+ * @return {!Object}
358
+ */
359
+ proto.supervisor.CreateSSHKeyPairRequest.prototype.toObject = function(opt_includeInstance) {
360
+ return proto.supervisor.CreateSSHKeyPairRequest.toObject(opt_includeInstance, this);
361
+ };
362
+
363
+
364
+ /**
365
+ * Static version of the {@see toObject} method.
366
+ * @param {boolean|undefined} includeInstance Deprecated. Whether to include
367
+ * the JSPB instance for transitional soy proto support:
368
+ * http://goto/soy-param-migration
369
+ * @param {!proto.supervisor.CreateSSHKeyPairRequest} msg The msg instance to transform.
370
+ * @return {!Object}
371
+ * @suppress {unusedLocalVariables} f is only used for nested messages
372
+ */
373
+ proto.supervisor.CreateSSHKeyPairRequest.toObject = function(includeInstance, msg) {
374
+ var f, obj = {
375
+
376
+ };
377
+
378
+ if (includeInstance) {
379
+ obj.$jspbMessageInstance = msg;
380
+ }
381
+ return obj;
382
+ };
383
+ }
384
+
385
+
386
+ /**
387
+ * Deserializes binary data (in protobuf wire format).
388
+ * @param {jspb.ByteSource} bytes The bytes to deserialize.
389
+ * @return {!proto.supervisor.CreateSSHKeyPairRequest}
390
+ */
391
+ proto.supervisor.CreateSSHKeyPairRequest.deserializeBinary = function(bytes) {
392
+ var reader = new jspb.BinaryReader(bytes);
393
+ var msg = new proto.supervisor.CreateSSHKeyPairRequest;
394
+ return proto.supervisor.CreateSSHKeyPairRequest.deserializeBinaryFromReader(msg, reader);
395
+ };
396
+
397
+
398
+ /**
399
+ * Deserializes binary data (in protobuf wire format) from the
400
+ * given reader into the given message object.
401
+ * @param {!proto.supervisor.CreateSSHKeyPairRequest} msg The message object to deserialize into.
402
+ * @param {!jspb.BinaryReader} reader The BinaryReader to use.
403
+ * @return {!proto.supervisor.CreateSSHKeyPairRequest}
404
+ */
405
+ proto.supervisor.CreateSSHKeyPairRequest.deserializeBinaryFromReader = function(msg, reader) {
406
+ while (reader.nextField()) {
407
+ if (reader.isEndGroup()) {
408
+ break;
409
+ }
410
+ var field = reader.getFieldNumber();
411
+ switch (field) {
412
+ default:
413
+ reader.skipField();
414
+ break;
415
+ }
416
+ }
417
+ return msg;
418
+ };
419
+
420
+
421
+ /**
422
+ * Serializes the message to binary data (in protobuf wire format).
423
+ * @return {!Uint8Array}
424
+ */
425
+ proto.supervisor.CreateSSHKeyPairRequest.prototype.serializeBinary = function() {
426
+ var writer = new jspb.BinaryWriter();
427
+ proto.supervisor.CreateSSHKeyPairRequest.serializeBinaryToWriter(this, writer);
428
+ return writer.getResultBuffer();
429
+ };
430
+
431
+
432
+ /**
433
+ * Serializes the given message to binary data (in protobuf wire
434
+ * format), writing to the given BinaryWriter.
435
+ * @param {!proto.supervisor.CreateSSHKeyPairRequest} message
436
+ * @param {!jspb.BinaryWriter} writer
437
+ * @suppress {unusedLocalVariables} f is only used for nested messages
438
+ */
439
+ proto.supervisor.CreateSSHKeyPairRequest.serializeBinaryToWriter = function(message, writer) {
440
+ var f = undefined;
441
+ };
442
+
443
+
444
+
445
+
446
+
447
+ if (jspb.Message.GENERATE_TO_OBJECT) {
448
+ /**
449
+ * Creates an object representation of this proto.
450
+ * Field names that are reserved in JavaScript and will be renamed to pb_name.
451
+ * Optional fields that are not set will be set to undefined.
452
+ * To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
453
+ * For the list of reserved names please see:
454
+ * net/proto2/compiler/js/internal/generator.cc#kKeyword.
455
+ * @param {boolean=} opt_includeInstance Deprecated. whether to include the
456
+ * JSPB instance for transitional soy proto support:
457
+ * http://goto/soy-param-migration
458
+ * @return {!Object}
459
+ */
460
+ proto.supervisor.CreateSSHKeyPairResponse.prototype.toObject = function(opt_includeInstance) {
461
+ return proto.supervisor.CreateSSHKeyPairResponse.toObject(opt_includeInstance, this);
462
+ };
463
+
464
+
465
+ /**
466
+ * Static version of the {@see toObject} method.
467
+ * @param {boolean|undefined} includeInstance Deprecated. Whether to include
468
+ * the JSPB instance for transitional soy proto support:
469
+ * http://goto/soy-param-migration
470
+ * @param {!proto.supervisor.CreateSSHKeyPairResponse} msg The msg instance to transform.
471
+ * @return {!Object}
472
+ * @suppress {unusedLocalVariables} f is only used for nested messages
473
+ */
474
+ proto.supervisor.CreateSSHKeyPairResponse.toObject = function(includeInstance, msg) {
475
+ var f, obj = {
476
+ privateKey: jspb.Message.getFieldWithDefault(msg, 1, "")
477
+ };
478
+
479
+ if (includeInstance) {
480
+ obj.$jspbMessageInstance = msg;
481
+ }
482
+ return obj;
483
+ };
484
+ }
485
+
486
+
487
+ /**
488
+ * Deserializes binary data (in protobuf wire format).
489
+ * @param {jspb.ByteSource} bytes The bytes to deserialize.
490
+ * @return {!proto.supervisor.CreateSSHKeyPairResponse}
491
+ */
492
+ proto.supervisor.CreateSSHKeyPairResponse.deserializeBinary = function(bytes) {
493
+ var reader = new jspb.BinaryReader(bytes);
494
+ var msg = new proto.supervisor.CreateSSHKeyPairResponse;
495
+ return proto.supervisor.CreateSSHKeyPairResponse.deserializeBinaryFromReader(msg, reader);
496
+ };
497
+
498
+
499
+ /**
500
+ * Deserializes binary data (in protobuf wire format) from the
501
+ * given reader into the given message object.
502
+ * @param {!proto.supervisor.CreateSSHKeyPairResponse} msg The message object to deserialize into.
503
+ * @param {!jspb.BinaryReader} reader The BinaryReader to use.
504
+ * @return {!proto.supervisor.CreateSSHKeyPairResponse}
505
+ */
506
+ proto.supervisor.CreateSSHKeyPairResponse.deserializeBinaryFromReader = function(msg, reader) {
507
+ while (reader.nextField()) {
508
+ if (reader.isEndGroup()) {
509
+ break;
510
+ }
511
+ var field = reader.getFieldNumber();
512
+ switch (field) {
513
+ case 1:
514
+ var value = /** @type {string} */ (reader.readString());
515
+ msg.setPrivateKey(value);
516
+ break;
517
+ default:
518
+ reader.skipField();
519
+ break;
520
+ }
521
+ }
522
+ return msg;
523
+ };
524
+
525
+
526
+ /**
527
+ * Serializes the message to binary data (in protobuf wire format).
528
+ * @return {!Uint8Array}
529
+ */
530
+ proto.supervisor.CreateSSHKeyPairResponse.prototype.serializeBinary = function() {
531
+ var writer = new jspb.BinaryWriter();
532
+ proto.supervisor.CreateSSHKeyPairResponse.serializeBinaryToWriter(this, writer);
533
+ return writer.getResultBuffer();
534
+ };
535
+
536
+
537
+ /**
538
+ * Serializes the given message to binary data (in protobuf wire
539
+ * format), writing to the given BinaryWriter.
540
+ * @param {!proto.supervisor.CreateSSHKeyPairResponse} message
541
+ * @param {!jspb.BinaryWriter} writer
542
+ * @suppress {unusedLocalVariables} f is only used for nested messages
543
+ */
544
+ proto.supervisor.CreateSSHKeyPairResponse.serializeBinaryToWriter = function(message, writer) {
545
+ var f = undefined;
546
+ f = message.getPrivateKey();
547
+ if (f.length > 0) {
548
+ writer.writeString(
549
+ 1,
550
+ f
551
+ );
552
+ }
553
+ };
554
+
555
+
556
+ /**
557
+ * optional string private_key = 1;
558
+ * @return {string}
559
+ */
560
+ proto.supervisor.CreateSSHKeyPairResponse.prototype.getPrivateKey = function() {
561
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
562
+ };
563
+
564
+
565
+ /**
566
+ * @param {string} value
567
+ * @return {!proto.supervisor.CreateSSHKeyPairResponse} returns this
568
+ */
569
+ proto.supervisor.CreateSSHKeyPairResponse.prototype.setPrivateKey = function(value) {
570
+ return jspb.Message.setProto3StringField(this, 1, value);
571
+ };
572
+
573
+
323
574
  goog.object.extend(exports, proto.supervisor);
package/lib/info_pb.d.ts CHANGED
@@ -58,6 +58,12 @@ export class WorkspaceInfoResponse extends jspb.Message {
58
58
  setRepository(value?: WorkspaceInfoResponse.Repository): WorkspaceInfoResponse;
59
59
  getWorkspaceClusterHost(): string;
60
60
  setWorkspaceClusterHost(value: string): WorkspaceInfoResponse;
61
+ getWorkspaceUrl(): string;
62
+ setWorkspaceUrl(value: string): WorkspaceInfoResponse;
63
+ getIdeAlias(): string;
64
+ setIdeAlias(value: string): WorkspaceInfoResponse;
65
+ getIdePort(): number;
66
+ setIdePort(value: number): WorkspaceInfoResponse;
61
67
 
62
68
  getWorkspaceLocationCase(): WorkspaceInfoResponse.WorkspaceLocationCase;
63
69
 
@@ -84,6 +90,9 @@ export namespace WorkspaceInfoResponse {
84
90
  workspaceContextUrl: string,
85
91
  repository?: WorkspaceInfoResponse.Repository.AsObject,
86
92
  workspaceClusterHost: string,
93
+ workspaceUrl: string,
94
+ ideAlias: string,
95
+ idePort: number,
87
96
  }
88
97
 
89
98
 
package/lib/info_pb.js CHANGED
@@ -13,7 +13,13 @@
13
13
 
14
14
  var jspb = require('google-protobuf');
15
15
  var goog = jspb;
16
- var global = Function('return this')();
16
+ var global = (function() {
17
+ if (this) { return this; }
18
+ if (typeof window !== 'undefined') { return window; }
19
+ if (typeof global !== 'undefined') { return global; }
20
+ if (typeof self !== 'undefined') { return self; }
21
+ return Function('return this')();
22
+ }.call(null));
17
23
 
18
24
  goog.exportSymbol('proto.supervisor.WorkspaceInfoRequest', null, global);
19
25
  goog.exportSymbol('proto.supervisor.WorkspaceInfoResponse', null, global);
@@ -273,7 +279,10 @@ proto.supervisor.WorkspaceInfoResponse.toObject = function(includeInstance, msg)
273
279
  gitpodHost: jspb.Message.getFieldWithDefault(msg, 8, ""),
274
280
  workspaceContextUrl: jspb.Message.getFieldWithDefault(msg, 9, ""),
275
281
  repository: (f = msg.getRepository()) && proto.supervisor.WorkspaceInfoResponse.Repository.toObject(includeInstance, f),
276
- workspaceClusterHost: jspb.Message.getFieldWithDefault(msg, 11, "")
282
+ workspaceClusterHost: jspb.Message.getFieldWithDefault(msg, 11, ""),
283
+ workspaceUrl: jspb.Message.getFieldWithDefault(msg, 12, ""),
284
+ ideAlias: jspb.Message.getFieldWithDefault(msg, 13, ""),
285
+ idePort: jspb.Message.getFieldWithDefault(msg, 14, 0)
277
286
  };
278
287
 
279
288
  if (includeInstance) {
@@ -356,6 +365,18 @@ proto.supervisor.WorkspaceInfoResponse.deserializeBinaryFromReader = function(ms
356
365
  var value = /** @type {string} */ (reader.readString());
357
366
  msg.setWorkspaceClusterHost(value);
358
367
  break;
368
+ case 12:
369
+ var value = /** @type {string} */ (reader.readString());
370
+ msg.setWorkspaceUrl(value);
371
+ break;
372
+ case 13:
373
+ var value = /** @type {string} */ (reader.readString());
374
+ msg.setIdeAlias(value);
375
+ break;
376
+ case 14:
377
+ var value = /** @type {number} */ (reader.readUint32());
378
+ msg.setIdePort(value);
379
+ break;
359
380
  default:
360
381
  reader.skipField();
361
382
  break;
@@ -464,6 +485,27 @@ proto.supervisor.WorkspaceInfoResponse.serializeBinaryToWriter = function(messag
464
485
  f
465
486
  );
466
487
  }
488
+ f = message.getWorkspaceUrl();
489
+ if (f.length > 0) {
490
+ writer.writeString(
491
+ 12,
492
+ f
493
+ );
494
+ }
495
+ f = message.getIdeAlias();
496
+ if (f.length > 0) {
497
+ writer.writeString(
498
+ 13,
499
+ f
500
+ );
501
+ }
502
+ f = message.getIdePort();
503
+ if (f !== 0) {
504
+ writer.writeUint32(
505
+ 14,
506
+ f
507
+ );
508
+ }
467
509
  };
468
510
 
469
511
 
@@ -1059,4 +1101,58 @@ proto.supervisor.WorkspaceInfoResponse.prototype.setWorkspaceClusterHost = funct
1059
1101
  };
1060
1102
 
1061
1103
 
1104
+ /**
1105
+ * optional string workspace_url = 12;
1106
+ * @return {string}
1107
+ */
1108
+ proto.supervisor.WorkspaceInfoResponse.prototype.getWorkspaceUrl = function() {
1109
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 12, ""));
1110
+ };
1111
+
1112
+
1113
+ /**
1114
+ * @param {string} value
1115
+ * @return {!proto.supervisor.WorkspaceInfoResponse} returns this
1116
+ */
1117
+ proto.supervisor.WorkspaceInfoResponse.prototype.setWorkspaceUrl = function(value) {
1118
+ return jspb.Message.setProto3StringField(this, 12, value);
1119
+ };
1120
+
1121
+
1122
+ /**
1123
+ * optional string ide_alias = 13;
1124
+ * @return {string}
1125
+ */
1126
+ proto.supervisor.WorkspaceInfoResponse.prototype.getIdeAlias = function() {
1127
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 13, ""));
1128
+ };
1129
+
1130
+
1131
+ /**
1132
+ * @param {string} value
1133
+ * @return {!proto.supervisor.WorkspaceInfoResponse} returns this
1134
+ */
1135
+ proto.supervisor.WorkspaceInfoResponse.prototype.setIdeAlias = function(value) {
1136
+ return jspb.Message.setProto3StringField(this, 13, value);
1137
+ };
1138
+
1139
+
1140
+ /**
1141
+ * optional uint32 ide_port = 14;
1142
+ * @return {number}
1143
+ */
1144
+ proto.supervisor.WorkspaceInfoResponse.prototype.getIdePort = function() {
1145
+ return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 14, 0));
1146
+ };
1147
+
1148
+
1149
+ /**
1150
+ * @param {number} value
1151
+ * @return {!proto.supervisor.WorkspaceInfoResponse} returns this
1152
+ */
1153
+ proto.supervisor.WorkspaceInfoResponse.prototype.setIdePort = function(value) {
1154
+ return jspb.Message.setProto3IntField(this, 14, value);
1155
+ };
1156
+
1157
+
1062
1158
  goog.object.extend(exports, proto.supervisor);
@@ -13,7 +13,13 @@
13
13
 
14
14
  var jspb = require('google-protobuf');
15
15
  var goog = jspb;
16
- var global = Function('return this')();
16
+ var global = (function() {
17
+ if (this) { return this; }
18
+ if (typeof window !== 'undefined') { return window; }
19
+ if (typeof global !== 'undefined') { return global; }
20
+ if (typeof self !== 'undefined') { return self; }
21
+ return Function('return this')();
22
+ }.call(null));
17
23
 
18
24
  goog.exportSymbol('proto.supervisor.NotifyRequest', null, global);
19
25
  goog.exportSymbol('proto.supervisor.NotifyRequest.Level', null, global);
package/lib/port_pb.js CHANGED
@@ -13,7 +13,13 @@
13
13
 
14
14
  var jspb = require('google-protobuf');
15
15
  var goog = jspb;
16
- var global = Function('return this')();
16
+ var global = (function() {
17
+ if (this) { return this; }
18
+ if (typeof window !== 'undefined') { return window; }
19
+ if (typeof global !== 'undefined') { return global; }
20
+ if (typeof self !== 'undefined') { return self; }
21
+ return Function('return this')();
22
+ }.call(null));
17
23
 
18
24
  goog.exportSymbol('proto.supervisor.AutoTunnelRequest', null, global);
19
25
  goog.exportSymbol('proto.supervisor.AutoTunnelResponse', null, global);
@@ -68,6 +68,11 @@ export class IDEStatusResponse extends jspb.Message {
68
68
  getOk(): boolean;
69
69
  setOk(value: boolean): IDEStatusResponse;
70
70
 
71
+ hasDesktop(): boolean;
72
+ clearDesktop(): void;
73
+ getDesktop(): IDEStatusResponse.DesktopStatus | undefined;
74
+ setDesktop(value?: IDEStatusResponse.DesktopStatus): IDEStatusResponse;
75
+
71
76
  serializeBinary(): Uint8Array;
72
77
  toObject(includeInstance?: boolean): IDEStatusResponse.AsObject;
73
78
  static toObject(includeInstance: boolean, msg: IDEStatusResponse): IDEStatusResponse.AsObject;
@@ -81,7 +86,33 @@ export class IDEStatusResponse extends jspb.Message {
81
86
  export namespace IDEStatusResponse {
82
87
  export type AsObject = {
83
88
  ok: boolean,
89
+ desktop?: IDEStatusResponse.DesktopStatus.AsObject,
84
90
  }
91
+
92
+
93
+ export class DesktopStatus extends jspb.Message {
94
+ getLink(): string;
95
+ setLink(value: string): DesktopStatus;
96
+ getLabel(): string;
97
+ setLabel(value: string): DesktopStatus;
98
+
99
+ serializeBinary(): Uint8Array;
100
+ toObject(includeInstance?: boolean): DesktopStatus.AsObject;
101
+ static toObject(includeInstance: boolean, msg: DesktopStatus): DesktopStatus.AsObject;
102
+ static extensions: {[key: number]: jspb.ExtensionFieldInfo<jspb.Message>};
103
+ static extensionsBinary: {[key: number]: jspb.ExtensionFieldBinaryInfo<jspb.Message>};
104
+ static serializeBinaryToWriter(message: DesktopStatus, writer: jspb.BinaryWriter): void;
105
+ static deserializeBinary(bytes: Uint8Array): DesktopStatus;
106
+ static deserializeBinaryFromReader(message: DesktopStatus, reader: jspb.BinaryReader): DesktopStatus;
107
+ }
108
+
109
+ export namespace DesktopStatus {
110
+ export type AsObject = {
111
+ link: string,
112
+ label: string,
113
+ }
114
+ }
115
+
85
116
  }
86
117
 
87
118
  export class ContentStatusRequest extends jspb.Message {
@@ -263,8 +294,6 @@ export namespace TunneledPortInfo {
263
294
  export class PortsStatus extends jspb.Message {
264
295
  getLocalPort(): number;
265
296
  setLocalPort(value: number): PortsStatus;
266
- getGlobalPort(): number;
267
- setGlobalPort(value: number): PortsStatus;
268
297
  getServed(): boolean;
269
298
  setServed(value: boolean): PortsStatus;
270
299
 
@@ -279,6 +308,10 @@ export class PortsStatus extends jspb.Message {
279
308
  clearTunneled(): void;
280
309
  getTunneled(): TunneledPortInfo | undefined;
281
310
  setTunneled(value?: TunneledPortInfo): PortsStatus;
311
+ getDescription(): string;
312
+ setDescription(value: string): PortsStatus;
313
+ getName(): string;
314
+ setName(value: string): PortsStatus;
282
315
 
283
316
  serializeBinary(): Uint8Array;
284
317
  toObject(includeInstance?: boolean): PortsStatus.AsObject;
@@ -293,11 +326,12 @@ export class PortsStatus extends jspb.Message {
293
326
  export namespace PortsStatus {
294
327
  export type AsObject = {
295
328
  localPort: number,
296
- globalPort: number,
297
329
  served: boolean,
298
330
  exposed?: ExposedPortInfo.AsObject,
299
331
  autoExposure: PortAutoExposure,
300
332
  tunneled?: TunneledPortInfo.AsObject,
333
+ description: string,
334
+ name: string,
301
335
  }
302
336
  }
303
337
 
package/lib/status_pb.js CHANGED
@@ -13,7 +13,13 @@
13
13
 
14
14
  var jspb = require('google-protobuf');
15
15
  var goog = jspb;
16
- var global = Function('return this')();
16
+ var global = (function() {
17
+ if (this) { return this; }
18
+ if (typeof window !== 'undefined') { return window; }
19
+ if (typeof global !== 'undefined') { return global; }
20
+ if (typeof self !== 'undefined') { return self; }
21
+ return Function('return this')();
22
+ }.call(null));
17
23
 
18
24
  var port_pb = require('./port_pb.js');
19
25
  goog.object.extend(proto, port_pb);
@@ -25,6 +31,7 @@ goog.exportSymbol('proto.supervisor.ContentStatusResponse', null, global);
25
31
  goog.exportSymbol('proto.supervisor.ExposedPortInfo', null, global);
26
32
  goog.exportSymbol('proto.supervisor.IDEStatusRequest', null, global);
27
33
  goog.exportSymbol('proto.supervisor.IDEStatusResponse', null, global);
34
+ goog.exportSymbol('proto.supervisor.IDEStatusResponse.DesktopStatus', null, global);
28
35
  goog.exportSymbol('proto.supervisor.OnPortExposedAction', null, global);
29
36
  goog.exportSymbol('proto.supervisor.PortAutoExposure', null, global);
30
37
  goog.exportSymbol('proto.supervisor.PortVisibility', null, global);
@@ -123,6 +130,27 @@ if (goog.DEBUG && !COMPILED) {
123
130
  */
124
131
  proto.supervisor.IDEStatusResponse.displayName = 'proto.supervisor.IDEStatusResponse';
125
132
  }
133
+ /**
134
+ * Generated by JsPbCodeGenerator.
135
+ * @param {Array=} opt_data Optional initial data array, typically from a
136
+ * server response, or constructed directly in Javascript. The array is used
137
+ * in place and becomes part of the constructed object. It is not cloned.
138
+ * If no data is provided, the constructed object will be empty, but still
139
+ * valid.
140
+ * @extends {jspb.Message}
141
+ * @constructor
142
+ */
143
+ proto.supervisor.IDEStatusResponse.DesktopStatus = function(opt_data) {
144
+ jspb.Message.initialize(this, opt_data, 0, -1, null, null);
145
+ };
146
+ goog.inherits(proto.supervisor.IDEStatusResponse.DesktopStatus, jspb.Message);
147
+ if (goog.DEBUG && !COMPILED) {
148
+ /**
149
+ * @public
150
+ * @override
151
+ */
152
+ proto.supervisor.IDEStatusResponse.DesktopStatus.displayName = 'proto.supervisor.IDEStatusResponse.DesktopStatus';
153
+ }
126
154
  /**
127
155
  * Generated by JsPbCodeGenerator.
128
156
  * @param {Array=} opt_data Optional initial data array, typically from a
@@ -789,7 +817,8 @@ proto.supervisor.IDEStatusResponse.prototype.toObject = function(opt_includeInst
789
817
  */
790
818
  proto.supervisor.IDEStatusResponse.toObject = function(includeInstance, msg) {
791
819
  var f, obj = {
792
- ok: jspb.Message.getBooleanFieldWithDefault(msg, 1, false)
820
+ ok: jspb.Message.getBooleanFieldWithDefault(msg, 1, false),
821
+ desktop: (f = msg.getDesktop()) && proto.supervisor.IDEStatusResponse.DesktopStatus.toObject(includeInstance, f)
793
822
  };
794
823
 
795
824
  if (includeInstance) {
@@ -830,6 +859,11 @@ proto.supervisor.IDEStatusResponse.deserializeBinaryFromReader = function(msg, r
830
859
  var value = /** @type {boolean} */ (reader.readBool());
831
860
  msg.setOk(value);
832
861
  break;
862
+ case 2:
863
+ var value = new proto.supervisor.IDEStatusResponse.DesktopStatus;
864
+ reader.readMessage(value,proto.supervisor.IDEStatusResponse.DesktopStatus.deserializeBinaryFromReader);
865
+ msg.setDesktop(value);
866
+ break;
833
867
  default:
834
868
  reader.skipField();
835
869
  break;
@@ -866,6 +900,174 @@ proto.supervisor.IDEStatusResponse.serializeBinaryToWriter = function(message, w
866
900
  f
867
901
  );
868
902
  }
903
+ f = message.getDesktop();
904
+ if (f != null) {
905
+ writer.writeMessage(
906
+ 2,
907
+ f,
908
+ proto.supervisor.IDEStatusResponse.DesktopStatus.serializeBinaryToWriter
909
+ );
910
+ }
911
+ };
912
+
913
+
914
+
915
+
916
+
917
+ if (jspb.Message.GENERATE_TO_OBJECT) {
918
+ /**
919
+ * Creates an object representation of this proto.
920
+ * Field names that are reserved in JavaScript and will be renamed to pb_name.
921
+ * Optional fields that are not set will be set to undefined.
922
+ * To access a reserved field use, foo.pb_<name>, eg, foo.pb_default.
923
+ * For the list of reserved names please see:
924
+ * net/proto2/compiler/js/internal/generator.cc#kKeyword.
925
+ * @param {boolean=} opt_includeInstance Deprecated. whether to include the
926
+ * JSPB instance for transitional soy proto support:
927
+ * http://goto/soy-param-migration
928
+ * @return {!Object}
929
+ */
930
+ proto.supervisor.IDEStatusResponse.DesktopStatus.prototype.toObject = function(opt_includeInstance) {
931
+ return proto.supervisor.IDEStatusResponse.DesktopStatus.toObject(opt_includeInstance, this);
932
+ };
933
+
934
+
935
+ /**
936
+ * Static version of the {@see toObject} method.
937
+ * @param {boolean|undefined} includeInstance Deprecated. Whether to include
938
+ * the JSPB instance for transitional soy proto support:
939
+ * http://goto/soy-param-migration
940
+ * @param {!proto.supervisor.IDEStatusResponse.DesktopStatus} msg The msg instance to transform.
941
+ * @return {!Object}
942
+ * @suppress {unusedLocalVariables} f is only used for nested messages
943
+ */
944
+ proto.supervisor.IDEStatusResponse.DesktopStatus.toObject = function(includeInstance, msg) {
945
+ var f, obj = {
946
+ link: jspb.Message.getFieldWithDefault(msg, 1, ""),
947
+ label: jspb.Message.getFieldWithDefault(msg, 2, "")
948
+ };
949
+
950
+ if (includeInstance) {
951
+ obj.$jspbMessageInstance = msg;
952
+ }
953
+ return obj;
954
+ };
955
+ }
956
+
957
+
958
+ /**
959
+ * Deserializes binary data (in protobuf wire format).
960
+ * @param {jspb.ByteSource} bytes The bytes to deserialize.
961
+ * @return {!proto.supervisor.IDEStatusResponse.DesktopStatus}
962
+ */
963
+ proto.supervisor.IDEStatusResponse.DesktopStatus.deserializeBinary = function(bytes) {
964
+ var reader = new jspb.BinaryReader(bytes);
965
+ var msg = new proto.supervisor.IDEStatusResponse.DesktopStatus;
966
+ return proto.supervisor.IDEStatusResponse.DesktopStatus.deserializeBinaryFromReader(msg, reader);
967
+ };
968
+
969
+
970
+ /**
971
+ * Deserializes binary data (in protobuf wire format) from the
972
+ * given reader into the given message object.
973
+ * @param {!proto.supervisor.IDEStatusResponse.DesktopStatus} msg The message object to deserialize into.
974
+ * @param {!jspb.BinaryReader} reader The BinaryReader to use.
975
+ * @return {!proto.supervisor.IDEStatusResponse.DesktopStatus}
976
+ */
977
+ proto.supervisor.IDEStatusResponse.DesktopStatus.deserializeBinaryFromReader = function(msg, reader) {
978
+ while (reader.nextField()) {
979
+ if (reader.isEndGroup()) {
980
+ break;
981
+ }
982
+ var field = reader.getFieldNumber();
983
+ switch (field) {
984
+ case 1:
985
+ var value = /** @type {string} */ (reader.readString());
986
+ msg.setLink(value);
987
+ break;
988
+ case 2:
989
+ var value = /** @type {string} */ (reader.readString());
990
+ msg.setLabel(value);
991
+ break;
992
+ default:
993
+ reader.skipField();
994
+ break;
995
+ }
996
+ }
997
+ return msg;
998
+ };
999
+
1000
+
1001
+ /**
1002
+ * Serializes the message to binary data (in protobuf wire format).
1003
+ * @return {!Uint8Array}
1004
+ */
1005
+ proto.supervisor.IDEStatusResponse.DesktopStatus.prototype.serializeBinary = function() {
1006
+ var writer = new jspb.BinaryWriter();
1007
+ proto.supervisor.IDEStatusResponse.DesktopStatus.serializeBinaryToWriter(this, writer);
1008
+ return writer.getResultBuffer();
1009
+ };
1010
+
1011
+
1012
+ /**
1013
+ * Serializes the given message to binary data (in protobuf wire
1014
+ * format), writing to the given BinaryWriter.
1015
+ * @param {!proto.supervisor.IDEStatusResponse.DesktopStatus} message
1016
+ * @param {!jspb.BinaryWriter} writer
1017
+ * @suppress {unusedLocalVariables} f is only used for nested messages
1018
+ */
1019
+ proto.supervisor.IDEStatusResponse.DesktopStatus.serializeBinaryToWriter = function(message, writer) {
1020
+ var f = undefined;
1021
+ f = message.getLink();
1022
+ if (f.length > 0) {
1023
+ writer.writeString(
1024
+ 1,
1025
+ f
1026
+ );
1027
+ }
1028
+ f = message.getLabel();
1029
+ if (f.length > 0) {
1030
+ writer.writeString(
1031
+ 2,
1032
+ f
1033
+ );
1034
+ }
1035
+ };
1036
+
1037
+
1038
+ /**
1039
+ * optional string link = 1;
1040
+ * @return {string}
1041
+ */
1042
+ proto.supervisor.IDEStatusResponse.DesktopStatus.prototype.getLink = function() {
1043
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 1, ""));
1044
+ };
1045
+
1046
+
1047
+ /**
1048
+ * @param {string} value
1049
+ * @return {!proto.supervisor.IDEStatusResponse.DesktopStatus} returns this
1050
+ */
1051
+ proto.supervisor.IDEStatusResponse.DesktopStatus.prototype.setLink = function(value) {
1052
+ return jspb.Message.setProto3StringField(this, 1, value);
1053
+ };
1054
+
1055
+
1056
+ /**
1057
+ * optional string label = 2;
1058
+ * @return {string}
1059
+ */
1060
+ proto.supervisor.IDEStatusResponse.DesktopStatus.prototype.getLabel = function() {
1061
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 2, ""));
1062
+ };
1063
+
1064
+
1065
+ /**
1066
+ * @param {string} value
1067
+ * @return {!proto.supervisor.IDEStatusResponse.DesktopStatus} returns this
1068
+ */
1069
+ proto.supervisor.IDEStatusResponse.DesktopStatus.prototype.setLabel = function(value) {
1070
+ return jspb.Message.setProto3StringField(this, 2, value);
869
1071
  };
870
1072
 
871
1073
 
@@ -887,6 +1089,43 @@ proto.supervisor.IDEStatusResponse.prototype.setOk = function(value) {
887
1089
  };
888
1090
 
889
1091
 
1092
+ /**
1093
+ * optional DesktopStatus desktop = 2;
1094
+ * @return {?proto.supervisor.IDEStatusResponse.DesktopStatus}
1095
+ */
1096
+ proto.supervisor.IDEStatusResponse.prototype.getDesktop = function() {
1097
+ return /** @type{?proto.supervisor.IDEStatusResponse.DesktopStatus} */ (
1098
+ jspb.Message.getWrapperField(this, proto.supervisor.IDEStatusResponse.DesktopStatus, 2));
1099
+ };
1100
+
1101
+
1102
+ /**
1103
+ * @param {?proto.supervisor.IDEStatusResponse.DesktopStatus|undefined} value
1104
+ * @return {!proto.supervisor.IDEStatusResponse} returns this
1105
+ */
1106
+ proto.supervisor.IDEStatusResponse.prototype.setDesktop = function(value) {
1107
+ return jspb.Message.setWrapperField(this, 2, value);
1108
+ };
1109
+
1110
+
1111
+ /**
1112
+ * Clears the message field making it undefined.
1113
+ * @return {!proto.supervisor.IDEStatusResponse} returns this
1114
+ */
1115
+ proto.supervisor.IDEStatusResponse.prototype.clearDesktop = function() {
1116
+ return this.setDesktop(undefined);
1117
+ };
1118
+
1119
+
1120
+ /**
1121
+ * Returns whether this field is set.
1122
+ * @return {boolean}
1123
+ */
1124
+ proto.supervisor.IDEStatusResponse.prototype.hasDesktop = function() {
1125
+ return jspb.Message.getField(this, 2) != null;
1126
+ };
1127
+
1128
+
890
1129
 
891
1130
 
892
1131
 
@@ -2114,11 +2353,12 @@ proto.supervisor.PortsStatus.prototype.toObject = function(opt_includeInstance)
2114
2353
  proto.supervisor.PortsStatus.toObject = function(includeInstance, msg) {
2115
2354
  var f, obj = {
2116
2355
  localPort: jspb.Message.getFieldWithDefault(msg, 1, 0),
2117
- globalPort: jspb.Message.getFieldWithDefault(msg, 2, 0),
2118
2356
  served: jspb.Message.getBooleanFieldWithDefault(msg, 4, false),
2119
2357
  exposed: (f = msg.getExposed()) && proto.supervisor.ExposedPortInfo.toObject(includeInstance, f),
2120
2358
  autoExposure: jspb.Message.getFieldWithDefault(msg, 7, 0),
2121
- tunneled: (f = msg.getTunneled()) && proto.supervisor.TunneledPortInfo.toObject(includeInstance, f)
2359
+ tunneled: (f = msg.getTunneled()) && proto.supervisor.TunneledPortInfo.toObject(includeInstance, f),
2360
+ description: jspb.Message.getFieldWithDefault(msg, 8, ""),
2361
+ name: jspb.Message.getFieldWithDefault(msg, 9, "")
2122
2362
  };
2123
2363
 
2124
2364
  if (includeInstance) {
@@ -2159,10 +2399,6 @@ proto.supervisor.PortsStatus.deserializeBinaryFromReader = function(msg, reader)
2159
2399
  var value = /** @type {number} */ (reader.readUint32());
2160
2400
  msg.setLocalPort(value);
2161
2401
  break;
2162
- case 2:
2163
- var value = /** @type {number} */ (reader.readUint32());
2164
- msg.setGlobalPort(value);
2165
- break;
2166
2402
  case 4:
2167
2403
  var value = /** @type {boolean} */ (reader.readBool());
2168
2404
  msg.setServed(value);
@@ -2181,6 +2417,14 @@ proto.supervisor.PortsStatus.deserializeBinaryFromReader = function(msg, reader)
2181
2417
  reader.readMessage(value,proto.supervisor.TunneledPortInfo.deserializeBinaryFromReader);
2182
2418
  msg.setTunneled(value);
2183
2419
  break;
2420
+ case 8:
2421
+ var value = /** @type {string} */ (reader.readString());
2422
+ msg.setDescription(value);
2423
+ break;
2424
+ case 9:
2425
+ var value = /** @type {string} */ (reader.readString());
2426
+ msg.setName(value);
2427
+ break;
2184
2428
  default:
2185
2429
  reader.skipField();
2186
2430
  break;
@@ -2217,13 +2461,6 @@ proto.supervisor.PortsStatus.serializeBinaryToWriter = function(message, writer)
2217
2461
  f
2218
2462
  );
2219
2463
  }
2220
- f = message.getGlobalPort();
2221
- if (f !== 0) {
2222
- writer.writeUint32(
2223
- 2,
2224
- f
2225
- );
2226
- }
2227
2464
  f = message.getServed();
2228
2465
  if (f) {
2229
2466
  writer.writeBool(
@@ -2254,6 +2491,20 @@ proto.supervisor.PortsStatus.serializeBinaryToWriter = function(message, writer)
2254
2491
  proto.supervisor.TunneledPortInfo.serializeBinaryToWriter
2255
2492
  );
2256
2493
  }
2494
+ f = message.getDescription();
2495
+ if (f.length > 0) {
2496
+ writer.writeString(
2497
+ 8,
2498
+ f
2499
+ );
2500
+ }
2501
+ f = message.getName();
2502
+ if (f.length > 0) {
2503
+ writer.writeString(
2504
+ 9,
2505
+ f
2506
+ );
2507
+ }
2257
2508
  };
2258
2509
 
2259
2510
 
@@ -2275,24 +2526,6 @@ proto.supervisor.PortsStatus.prototype.setLocalPort = function(value) {
2275
2526
  };
2276
2527
 
2277
2528
 
2278
- /**
2279
- * optional uint32 global_port = 2;
2280
- * @return {number}
2281
- */
2282
- proto.supervisor.PortsStatus.prototype.getGlobalPort = function() {
2283
- return /** @type {number} */ (jspb.Message.getFieldWithDefault(this, 2, 0));
2284
- };
2285
-
2286
-
2287
- /**
2288
- * @param {number} value
2289
- * @return {!proto.supervisor.PortsStatus} returns this
2290
- */
2291
- proto.supervisor.PortsStatus.prototype.setGlobalPort = function(value) {
2292
- return jspb.Message.setProto3IntField(this, 2, value);
2293
- };
2294
-
2295
-
2296
2529
  /**
2297
2530
  * optional bool served = 4;
2298
2531
  * @return {boolean}
@@ -2403,6 +2636,42 @@ proto.supervisor.PortsStatus.prototype.hasTunneled = function() {
2403
2636
  };
2404
2637
 
2405
2638
 
2639
+ /**
2640
+ * optional string description = 8;
2641
+ * @return {string}
2642
+ */
2643
+ proto.supervisor.PortsStatus.prototype.getDescription = function() {
2644
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 8, ""));
2645
+ };
2646
+
2647
+
2648
+ /**
2649
+ * @param {string} value
2650
+ * @return {!proto.supervisor.PortsStatus} returns this
2651
+ */
2652
+ proto.supervisor.PortsStatus.prototype.setDescription = function(value) {
2653
+ return jspb.Message.setProto3StringField(this, 8, value);
2654
+ };
2655
+
2656
+
2657
+ /**
2658
+ * optional string name = 9;
2659
+ * @return {string}
2660
+ */
2661
+ proto.supervisor.PortsStatus.prototype.getName = function() {
2662
+ return /** @type {string} */ (jspb.Message.getFieldWithDefault(this, 9, ""));
2663
+ };
2664
+
2665
+
2666
+ /**
2667
+ * @param {string} value
2668
+ * @return {!proto.supervisor.PortsStatus} returns this
2669
+ */
2670
+ proto.supervisor.PortsStatus.prototype.setName = function(value) {
2671
+ return jspb.Message.setProto3StringField(this, 9, value);
2672
+ };
2673
+
2674
+
2406
2675
 
2407
2676
 
2408
2677
 
@@ -13,7 +13,13 @@
13
13
 
14
14
  var jspb = require('google-protobuf');
15
15
  var goog = jspb;
16
- var global = Function('return this')();
16
+ var global = (function() {
17
+ if (this) { return this; }
18
+ if (typeof window !== 'undefined') { return window; }
19
+ if (typeof global !== 'undefined') { return global; }
20
+ if (typeof self !== 'undefined') { return self; }
21
+ return Function('return this')();
22
+ }.call(null));
17
23
 
18
24
  goog.exportSymbol('proto.supervisor.GetTerminalRequest', null, global);
19
25
  goog.exportSymbol('proto.supervisor.ListTerminalsRequest', null, global);
package/lib/token_pb.js CHANGED
@@ -13,7 +13,13 @@
13
13
 
14
14
  var jspb = require('google-protobuf');
15
15
  var goog = jspb;
16
- var global = Function('return this')();
16
+ var global = (function() {
17
+ if (this) { return this; }
18
+ if (typeof window !== 'undefined') { return window; }
19
+ if (typeof global !== 'undefined') { return global; }
20
+ if (typeof self !== 'undefined') { return self; }
21
+ return Function('return this')();
22
+ }.call(null));
17
23
 
18
24
  var google_protobuf_timestamp_pb = require('google-protobuf/google/protobuf/timestamp_pb.js');
19
25
  goog.object.extend(proto, google_protobuf_timestamp_pb);
package/package.json CHANGED
@@ -1,22 +1,24 @@
1
1
  {
2
2
  "dependencies": {
3
- "@grpc/grpc-js": "^1.3.6",
4
- "google-protobuf": "^3.17.3"
3
+ "@grpc/grpc-js": "^1.3.7",
4
+ "google-protobuf": "^3.19.1"
5
5
  },
6
6
  "devDependencies": {
7
- "@types/google-protobuf": "^3.7.4",
7
+ "@types/google-protobuf": "^3.15.5",
8
8
  "grpc-tools": "^1.11.2",
9
- "grpc_tools_node_protoc_ts": "^5.3.1",
9
+ "grpc_tools_node_protoc_ts": "^5.3.2",
10
+ "typescript": "~4.4.2",
10
11
  "typescript-formatter": "^7.2.2"
11
12
  },
12
13
  "files": [
13
14
  "lib",
14
- "pkg-yarn.lock"
15
+ "pkg-yarn.lock",
16
+ "provenance-bundle.jsonl"
15
17
  ],
16
18
  "license": "UNLICENSED",
17
19
  "name": "@gitpod/supervisor-api-grpc",
18
20
  "scripts": {
19
21
  "build": "sh build.sh"
20
22
  },
21
- "version": "0.1.5-prs-core-dev-kubeconfig.3"
23
+ "version": "0.1.5-prs-test-dazzle-rewrite.22"
22
24
  }
package/pkg-yarn.lock CHANGED
@@ -4,8 +4,8 @@
4
4
 
5
5
  "@gitpod/supervisor-api-grpc@0.1.5":
6
6
  version "0.1.5"
7
- resolved "file:///tmp/cache/d68e8daf9d505d082bbf08c34d7a12452956a9ae.tar.gz"
7
+ resolved "file:///tmp/cache/a98444bde60324e5f6165e09023daea708a3db6c.tar.gz"
8
8
  dependencies:
9
- "@grpc/grpc-js" "^1.3.6"
10
- google-protobuf "^3.17.3"
9
+ "@grpc/grpc-js" "^1.3.7"
10
+ google-protobuf "^3.19.1"
11
11
 
@@ -0,0 +1,4 @@
1
+ {"payloadType":"application/vnd.in-toto+json","payload":"ewogICJfdHlwZSI6ICJodHRwczovL2luLXRvdG8uaW8vU3RhdGVtZW50L3YwLjEiLAogICJwcmVkaWNhdGVUeXBlIjogImh0dHBzOi8vc2xzYS5kZXYvcHJvdmVuYW5jZS92MC4xIiwKICAic3ViamVjdCI6IFtdLAogICJwcmVkaWNhdGUiOiB7CiAgICAiYnVpbGRlciI6IHsKICAgICAgImlkIjogImdpdGh1Yi5jb20vZ2l0cG9kLWlvL2xlZXdheTowLjIuMTYtYjdkMmI1NEBzaGEyNTY6OTUxMmFmMWFhNGFjYzA5NjBkZDVlOTdjNTBiN2NmMWE2NjcxM2E4MWEwOWY4MjQ1YWQ5NTExOGVlMTA3MGZiYyIKICAgIH0sCiAgICAicmVjaXBlIjogewogICAgICAidHlwZSI6ICJodHRwczovL2dpdGh1Yi5jb20vZ2l0cG9kLWlvL2xlZXdheS9idWlsZEBnZW5lcmljOjEiLAogICAgICAiZGVmaW5lZEluTWF0ZXJpYWwiOiAxMSwKICAgICAgImVudHJ5UG9pbnQiOiAiY29tcG9uZW50cy9zdXBlcnZpc29yLWFwaTpwcm90byIsCiAgICAgICJhcmd1bWVudHMiOiBbCiAgICAgICAgImxlZXdheSIsCiAgICAgICAgImJ1aWxkIiwKICAgICAgICAiLS1kb2NrZXItYnVpbGQtb3B0aW9ucyIsCiAgICAgICAgIm5ldHdvcms9aG9zdCIsCiAgICAgICAgIi0td2VyZnQ9dHJ1ZSIsCiAgICAgICAgIi1jIiwKICAgICAgICAicmVtb3RlIiwKICAgICAgICAiLS1kb250LXJldGFnIiwKICAgICAgICAiLS1jb3ZlcmFnZS1vdXRwdXQtcGF0aD0vdG1wL3RtcC50eHdjQWpYMnlzIiwKICAgICAgICAiLUR2ZXJzaW9uPXBycy10ZXN0LWRhenpsZS1yZXdyaXRlLjIyIiwKICAgICAgICAiLURyZW1vdmVTb3VyY2VzPWZhbHNlIiwKICAgICAgICAiLURpbWFnZVJlcG9CYXNlPWV1Lmdjci5pby9naXRwb2QtY29yZS1kZXYvYnVpbGQiLAogICAgICAgICItRGxvY2FsQXBwVmVyc2lvbj11bmtub3duIiwKICAgICAgICAiLURucG1QdWJsaXNoVHJpZ2dlcj1mYWxzZSIKICAgICAgXSwKICAgICAgImVudmlyb25tZW50IjogewogICAgICAgICJtYW5pZmVzdCI6IHsKICAgICAgICAgICJhcmNoIjogImFtZDY0IiwKICAgICAgICAgICJnbyI6ICJnbyB2ZXJzaW9uIGdvMS4xNy41IGxpbnV4L2FtZDY0IiwKICAgICAgICAgICJub2RlIjogInYxNi4xMy4wIiwKICAgICAgICAgICJvcyI6ICJsaW51eCIsCiAgICAgICAgICAieWFybiI6ICIxLjIyLjE3IgogICAgICAgIH0KICAgICAgfQogICAgfSwKICAgICJtZXRhZGF0YSI6IHsKICAgICAgImJ1aWxkU3RhcnRlZE9uIjogIjIwMjItMDEtMTJUMTY6MDY6MTEuMTg0NjU4MjkyWiIsCiAgICAgICJidWlsZEZpbmlzaGVkT24iOiAiMjAyMi0wMS0xMlQxNjowNjoxMS4xOTA5OTYzMTFaIiwKICAgICAgImNvbXBsZXRlbmVzcyI6IHsKICAgICAgICAiYXJndW1lbnRzIjogdHJ1ZSwKICAgICAgICAiZW52aXJvbm1lbnQiOiBmYWxzZSwKICAgICAgICAibWF0ZXJpYWxzIjogdHJ1ZQogICAgICB9LAogICAgICAicmVwcm9kdWNpYmxlIjogZmFsc2UKICAgIH0sCiAgICAibWF0ZXJpYWxzIjogWwogICAgICB7CiAgICAgICAgInVyaSI6ICJmaWxlOi8vY29tcG9uZW50cy9zdXBlcnZpc29yLWFwaS9zdGF0dXMucHJvdG8iLAogICAgICAgICJkaWdlc3QiOiB7CiAgICAgICAgICAic2hhMjU2IjogIjc4MzY4MTY4MjcyNzk2YmIyMDIxNDcxNDBmMGMzNDljZjdmNjkxNmVhMGJhODNhOTc3ZmFkMWRkYmJjNzY1MzYiCiAgICAgICAgfQogICAgICB9LAogICAgICB7CiAgICAgICAgInVyaSI6ICJmaWxlOi8vY29tcG9uZW50cy9zdXBlcnZpc29yLWFwaS90ZXJtaW5hbC5wcm90byIsCiAgICAgICAgImRpZ2VzdCI6IHsKICAgICAgICAgICJzaGEyNTYiOiAiMDY1NzBlM2IxMzZkNjdiYjNmNzJiMGYwZGE0YThjNjM2MjRjN2E5ZjQ4NWNiNzFjOWQ1ODc2MWQyY2NjY2IzZSIKICAgICAgICB9CiAgICAgIH0sCiAgICAgIHsKICAgICAgICAidXJpIjogImZpbGU6Ly9jb21wb25lbnRzL3N1cGVydmlzb3ItYXBpL3RoaXJkX3BhcnR5L2dvb2dsZS9hcGkvYW5ub3RhdGlvbnMucHJvdG8iLAogICAgICAgICJkaWdlc3QiOiB7CiAgICAgICAgICAic2hhMjU2IjogImJmZjdjNDdiNzhiZDI1ZDM0ZTcwZWZjMDZmNDk3NjRlYzI0ZjU1ZTY2NTA2N2I5YmU0OWU1M2U4MjUyNTBjZTgiCiAgICAgICAgfQogICAgICB9LAogICAgICB7CiAgICAgICAgInVyaSI6ICJmaWxlOi8vY29tcG9uZW50cy9zdXBlcnZpc29yLWFwaS9jb250cm9sLnByb3RvIiwKICAgICAgICAiZGlnZXN0IjogewogICAgICAgICAgInNoYTI1NiI6ICJkOGU3YzljMWNkNmQxMzU2ZGU2MmNiYmQ3YzMxYmY1YzYxMGZhMGE2NTQwZjlkNmNjYzAwZWZmNzVkMjZiZDRiIgogICAgICAgIH0KICAgICAgfSwKICAgICAgewogICAgICAgICJ1cmkiOiAiZmlsZTovL2NvbXBvbmVudHMvc3VwZXJ2aXNvci1hcGkvcG9ydC5wcm90byIsCiAgICAgICAgImRpZ2VzdCI6IHsKICAgICAgICAgICJzaGEyNTYiOiAiNTkzMDI0NTkwZWY0N2Q4ZmM0MDliMTk1NzZmZDdjZDAzZTcxMjU5MjVmYWFkNzE1NTI3MDM4N2UwYTY5MGMzMCIKICAgICAgICB9CiAgICAgIH0sCiAgICAgIHsKICAgICAgICAidXJpIjogImZpbGU6Ly9jb21wb25lbnRzL3N1cGVydmlzb3ItYXBpL2luZm8ucHJvdG8iLAogICAgICAgICJkaWdlc3QiOiB7CiAgICAgICAgICAic2hhMjU2IjogIjdkMjk5ZTVhYzY0ZmUxNGNjM2I3ZmEzZDViMDNiNDZiYWZiNTU1ZTczOTMwMTBhYTNlYzMzZWFmZjg0YjAwYTgiCiAgICAgICAgfQogICAgICB9LAogICAgICB7CiAgICAgICAgInVyaSI6ICJmaWxlOi8vY29tcG9uZW50cy9zdXBlcnZpc29yLWFwaS90aGlyZF9wYXJ0eS9nb29nbGUvYXBpL2h0dHBib2R5LnByb3RvIiwKICAgICAgICAiZGlnZXN0IjogewogICAgICAgICAgInNoYTI1NiI6ICI1OTI3MmRmZWQyNGZiNWM2ZTBlMmMyMmNhMWExZWNjN2E2NGNhZjg5MWNlZmEyNGU4NjdlN2YwMDA0ZWQxZmVjIgogICAgICAgIH0KICAgICAgfSwKICAgICAgewogICAgICAgICJ1cmkiOiAiZmlsZTovL2NvbXBvbmVudHMvc3VwZXJ2aXNvci1hcGkvdGhpcmRfcGFydHkvZ29vZ2xlL2FwaS9maWVsZF9iZWhhdmlvci5wcm90byIsCiAgICAgICAgImRpZ2VzdCI6IHsKICAgICAgICAgICJzaGEyNTYiOiAiY2FiYTQxMjFlZGZmZDBiMTY1YzIxZTcxYjRhYjNhYjBmYzA3OGE1ZDQ4MTAxYzlhOTIwNzU3YzNhNzI0N2YzYSIKICAgICAgICB9CiAgICAgIH0sCiAgICAgIHsKICAgICAgICAidXJpIjogImZpbGU6Ly9jb21wb25lbnRzL3N1cGVydmlzb3ItYXBpL3RoaXJkX3BhcnR5L2dvb2dsZS9hcGkvaHR0cC5wcm90byIsCiAgICAgICAgImRpZ2VzdCI6IHsKICAgICAgICAgICJzaGEyNTYiOiAiMzE4ZDg2OTMzMTYwMDNkOWM2YTI4OWM5YjQ4OGRhYzYyNmViYmE4MTkyYTUwN2EwZWI2NmNmMmY4NjI3YWI5MyIKICAgICAgICB9CiAgICAgIH0sCiAgICAgIHsKICAgICAgICAidXJpIjogImZpbGU6Ly9jb21wb25lbnRzL3N1cGVydmlzb3ItYXBpL3Rva2VuLnByb3RvIiwKICAgICAgICAiZGlnZXN0IjogewogICAgICAgICAgInNoYTI1NiI6ICIxZjlhMjdmMzg5MTM4ZmJhNDBmNGRlMWMyOGUzNzE2OWFhMGI5ZjFjZTJkM2IzYzgxOGQ1ZThjNTYxYmNiNzAyIgogICAgICAgIH0KICAgICAgfSwKICAgICAgewogICAgICAgICJ1cmkiOiAiZmlsZTovL2NvbXBvbmVudHMvc3VwZXJ2aXNvci1hcGkvbm90aWZpY2F0aW9uLnByb3RvIiwKICAgICAgICAiZGlnZXN0IjogewogICAgICAgICAgInNoYTI1NiI6ICIxM2ZhZmEzYjU4MjljMjllOWFkMDA5YjBjZTg1ZGUyNTM4NGQ1NTU0ZDA3NTBkNTVkYzQ4ZDYzZWQxNmEzYTlmIgogICAgICAgIH0KICAgICAgfSwKICAgICAgewogICAgICAgICJ1cmkiOiAiZmlsZTovL2NvbXBvbmVudHMvc3VwZXJ2aXNvci1hcGkvQlVJTEQueWFtbCIsCiAgICAgICAgImRpZ2VzdCI6IHsKICAgICAgICAgICJzaGEyNTYiOiAiOGJiNzNkNDFhZjhmZDc3NGM4MWRiNTVhMTY5YTcxOTFmYmMyOGNjMTM5NjkzZTFhYmFmNzFlYjkwZjBmOWM0MSIKICAgICAgICB9CiAgICAgIH0sCiAgICAgIHsKICAgICAgICAidXJpIjogImZpbGU6Ly9XT1JLU1BBQ0UueWFtbCIsCiAgICAgICAgImRpZ2VzdCI6IHsKICAgICAgICAgICJzaGEyNTYiOiAiMzcxZDlkYjBkMTNjY2Q1OTI2NDFiZmI2ZDhlYTY0OGU0ZWU3MDU5YmFiNWNjNDgzYzU2YTkzZGMzMDVmODBlZSIKICAgICAgICB9CiAgICAgIH0KICAgIF0KICB9Cn0=","signatures":null}
2
+
3
+ {"payloadType":"application/vnd.in-toto+json","payload":"ewogICJfdHlwZSI6ICJodHRwczovL2luLXRvdG8uaW8vU3RhdGVtZW50L3YwLjEiLAogICJwcmVkaWNhdGVUeXBlIjogImh0dHBzOi8vc2xzYS5kZXYvcHJvdmVuYW5jZS92MC4xIiwKICAic3ViamVjdCI6IFsKICAgIHsKICAgICAgIm5hbWUiOiAiL2xpYi9jb250cm9sX3BiLmpzIiwKICAgICAgImRpZ2VzdCI6IHsKICAgICAgICAic2hhMjU2IjogIjkzMzgxODg5YjY5NTJhMmUxOTk5OTAxZjY3MjczYzliZTU2NWJjZDhlY2ViZWY0YjhkODVkNTBjYTY5ZDBiY2IiCiAgICAgIH0KICAgIH0sCiAgICB7CiAgICAgICJuYW1lIjogIi9saWIvY29udHJvbF9ncnBjX3BiLmQudHMiLAogICAgICAiZGlnZXN0IjogewogICAgICAgICJzaGEyNTYiOiAiZjU1MGFhNmM1YTA1YjY5NGFhMzViYTI2NzRmMmJjOTY5NWFiNGZhMTYwZmJlN2ZkMzJlODc3ZGYzZTRhNWY2MiIKICAgICAgfQogICAgfSwKICAgIHsKICAgICAgIm5hbWUiOiAiL2xpYi9wb3J0X2dycGNfcGIuanMiLAogICAgICAiZGlnZXN0IjogewogICAgICAgICJzaGEyNTYiOiAiYjYwOTEzMWJjMGU4NjY3ZTEzMzY0NWQzNWM4MTI5ZDlmNmUxNDdjZmJlNjg1NGI0YWMxMmQ2NWE0YmRiNTFkZiIKICAgICAgfQogICAgfSwKICAgIHsKICAgICAgIm5hbWUiOiAiL2xpYi90ZXJtaW5hbF9ncnBjX3BiLmQudHMiLAogICAgICAiZGlnZXN0IjogewogICAgICAgICJzaGEyNTYiOiAiMjlhYzI3NTgxNGI4M2FhMTNmNDlkZmI1NjM0Yjg0MjRjY2I5ODRiMjE5MzhiMWUyNzIxZDEyMDE2ZjBmNDE1NSIKICAgICAgfQogICAgfSwKICAgIHsKICAgICAgIm5hbWUiOiAiL2xpYi9pbmZvX2dycGNfcGIuZC50cyIsCiAgICAgICJkaWdlc3QiOiB7CiAgICAgICAgInNoYTI1NiI6ICJmZTU3MGUxYTZjZjc0ZjAyY2RmYzI1ODFmZjZiMzFjODYxOWZlNDdkYTE3MmMxYjFlYTNhYWUzYzU0ZmVjYjM4IgogICAgICB9CiAgICB9LAogICAgewogICAgICAibmFtZSI6ICIvbGliL3BvcnRfcGIuZC50cyIsCiAgICAgICJkaWdlc3QiOiB7CiAgICAgICAgInNoYTI1NiI6ICIxM2E4YTg2YzA2MWQwMTFiM2IyZDQ0NDZkYTYzYjY3YjJhZTg4ZTA1MGUxOTcwNmM0ZTJlZGMxN2YyODI2Y2IxIgogICAgICB9CiAgICB9LAogICAgewogICAgICAibmFtZSI6ICIvbGliL3Rva2VuX3BiLmQudHMiLAogICAgICAiZGlnZXN0IjogewogICAgICAgICJzaGEyNTYiOiAiYTEzY2M1N2NhZGU2ZWU4MDI3ZTBkMzhkNWVhNzhiZjg3NDEwNDI1NDRiMzlkNDZlMThmMTBjMjM4NmRmYmI2YiIKICAgICAgfQogICAgfSwKICAgIHsKICAgICAgIm5hbWUiOiAiL3lhcm4ubG9jayIsCiAgICAgICJkaWdlc3QiOiB7CiAgICAgICAgInNoYTI1NiI6ICI3N2NkYTg0MGMxNmEzOTIwYTg4NjljMThjMTViOGU3NzVkY2Y1YTFjYjA3YjMwM2YyZDFiNTA4OGVhNDA2YzJiIgogICAgICB9CiAgICB9LAogICAgewogICAgICAibmFtZSI6ICIvbGliL3N0YXR1c19ncnBjX3BiLmQudHMiLAogICAgICAiZGlnZXN0IjogewogICAgICAgICJzaGEyNTYiOiAiZDM1M2U5NjkxOTgwMWMxNDM1YjE5ZWYzNGM2NmVlZDA3NGJhNTA3ZDg1NmRlZDZhZTM5OTg3YjBjMGViMjZlYSIKICAgICAgfQogICAgfSwKICAgIHsKICAgICAgIm5hbWUiOiAiL2NvbXBvbmVudHMtc3VwZXJ2aXNvci1hcGktLXByb3RvL3Rlcm1pbmFsLnByb3RvIiwKICAgICAgImRpZ2VzdCI6IHsKICAgICAgICAic2hhMjU2IjogIjA2NTcwZTNiMTM2ZDY3YmIzZjcyYjBmMGRhNGE4YzYzNjI0YzdhOWY0ODVjYjcxYzlkNTg3NjFkMmNjY2NiM2UiCiAgICAgIH0KICAgIH0sCiAgICB7CiAgICAgICJuYW1lIjogIi9saWIvbm90aWZpY2F0aW9uX3BiLmQudHMiLAogICAgICAiZGlnZXN0IjogewogICAgICAgICJzaGEyNTYiOiAiOThiNWNkYTQyNGM3NWVmNGY3NjFiZTM0M2VhMzI4NDU2ODU5ZTMwYTgxMmIyMjA0ZGRmZDFkNTQyNDc5MWI1YyIKICAgICAgfQogICAgfSwKICAgIHsKICAgICAgIm5hbWUiOiAiL2xpYi90ZXJtaW5hbF9ncnBjX3BiLmpzIiwKICAgICAgImRpZ2VzdCI6IHsKICAgICAgICAic2hhMjU2IjogImZmNWE0MTc5YTFhYzQwNWQ4YjI5MmZkZjIxNWM4ZWMyOWY1M2VlZDQ1YTc2YzliZWEwYWU4NmQ1OGZkMjNjYzQiCiAgICAgIH0KICAgIH0sCiAgICB7CiAgICAgICJuYW1lIjogIi9saWIvaW5mb19wYi5qcyIsCiAgICAgICJkaWdlc3QiOiB7CiAgICAgICAgInNoYTI1NiI6ICJiNjlmNzU2YjYzYjE2MTc3NWQxNTg2NmUwOGVjOGIzOGQ1Yjk3NTY1ZjhkYTFjMzgyODYzNTg1MWUxNDU5MjI2IgogICAgICB9CiAgICB9LAogICAgewogICAgICAibmFtZSI6ICIvbGliL3Rlcm1pbmFsX3BiLmQudHMiLAogICAgICAiZGlnZXN0IjogewogICAgICAgICJzaGEyNTYiOiAiMTRmOTM5YTFjM2E2OTUxNTQ5NjNkNTZjZThiM2E3YjU1YWI2YWI2ZjUyMzc5NTViZmFjN2FhMTJmNWI1Y2M0ZCIKICAgICAgfQogICAgfSwKICAgIHsKICAgICAgIm5hbWUiOiAiL2xpYi90b2tlbl9wYi5qcyIsCiAgICAgICJkaWdlc3QiOiB7CiAgICAgICAgInNoYTI1NiI6ICI2YzdkM2YzY2ZlN2ViNWMyMjYyNzFiOGQ0YjBlY2U0NjQzZDQyYWI0YjNhZTNkZTVjN2I2MmY5MzM3ZmVjYjI2IgogICAgICB9CiAgICB9LAogICAgewogICAgICAibmFtZSI6ICIvY29tcG9uZW50cy1zdXBlcnZpc29yLWFwaS0tcHJvdG8vaW5mby5wcm90byIsCiAgICAgICJkaWdlc3QiOiB7CiAgICAgICAgInNoYTI1NiI6ICI3ZDI5OWU1YWM2NGZlMTRjYzNiN2ZhM2Q1YjAzYjQ2YmFmYjU1NWU3MzkzMDEwYWEzZWMzM2VhZmY4NGIwMGE4IgogICAgICB9CiAgICB9LAogICAgewogICAgICAibmFtZSI6ICIvY29tcG9uZW50cy1zdXBlcnZpc29yLWFwaS0tcHJvdG8vc3RhdHVzLnByb3RvIiwKICAgICAgImRpZ2VzdCI6IHsKICAgICAgICAic2hhMjU2IjogIjc4MzY4MTY4MjcyNzk2YmIyMDIxNDcxNDBmMGMzNDljZjdmNjkxNmVhMGJhODNhOTc3ZmFkMWRkYmJjNzY1MzYiCiAgICAgIH0KICAgIH0sCiAgICB7CiAgICAgICJuYW1lIjogIi9saWIvaW5mb19ncnBjX3BiLmpzIiwKICAgICAgImRpZ2VzdCI6IHsKICAgICAgICAic2hhMjU2IjogIjBiZTM4ODY2MDUzNTVhY2M2YTAzZTMyOTEwM2ExOTE0ZmZmMWY2OTY5OGRkMTBiMGY3ODAwMjc5Yzk1ODhmNWMiCiAgICAgIH0KICAgIH0sCiAgICB7CiAgICAgICJuYW1lIjogIi9saWIvdGVybWluYWxfcGIuanMiLAogICAgICAiZGlnZXN0IjogewogICAgICAgICJzaGEyNTYiOiAiMTBiNTFjYTJhYjY1ZWRjMmIwOWUxMTRiZGQ0YWRhNTFhOTM3MzA5N2RiNmJlODUwZDkyZTg3OTYyZjViMmQxZiIKICAgICAgfQogICAgfSwKICAgIHsKICAgICAgIm5hbWUiOiAiL2NvbXBvbmVudHMtc3VwZXJ2aXNvci1hcGktLXByb3RvL3RoaXJkX3BhcnR5L2dvb2dsZS9hcGkvaHR0cGJvZHkucHJvdG8iLAogICAgICAiZGlnZXN0IjogewogICAgICAgICJzaGEyNTYiOiAiNTkyNzJkZmVkMjRmYjVjNmUwZTJjMjJjYTFhMWVjYzdhNjRjYWY4OTFjZWZhMjRlODY3ZTdmMDAwNGVkMWZlYyIKICAgICAgfQogICAgfSwKICAgIHsKICAgICAgIm5hbWUiOiAiL2NvbXBvbmVudHMtc3VwZXJ2aXNvci1hcGktLXByb3RvL2NvbnRyb2wucHJvdG8iLAogICAgICAiZGlnZXN0IjogewogICAgICAgICJzaGEyNTYiOiAiZDhlN2M5YzFjZDZkMTM1NmRlNjJjYmJkN2MzMWJmNWM2MTBmYTBhNjU0MGY5ZDZjY2MwMGVmZjc1ZDI2YmQ0YiIKICAgICAgfQogICAgfSwKICAgIHsKICAgICAgIm5hbWUiOiAiL2xpYi9ub3RpZmljYXRpb25fcGIuanMiLAogICAgICAiZGlnZXN0IjogewogICAgICAgICJzaGEyNTYiOiAiMzdjMGE3MGI5YWIyZThkMjEyNjBiNmUxZDYwMGFmYzJlYjdhNDNkNzQyOTQ5Mjc4YTcwZmVhZjc3M2UyNzUzNSIKICAgICAgfQogICAgfSwKICAgIHsKICAgICAgIm5hbWUiOiAiL2xpYi9wb3J0X3BiLmpzIiwKICAgICAgImRpZ2VzdCI6IHsKICAgICAgICAic2hhMjU2IjogIjQ1OTJmMzlmNTgxMDUyZTk5NTlhOGIzNTdiYjhjN2E5YmVjMzMwODY2YzE5ZWRlYTJjZWJlYTA0N2I3YTI5ODgiCiAgICAgIH0KICAgIH0sCiAgICB7CiAgICAgICJuYW1lIjogIi9saWIvdG9rZW5fZ3JwY19wYi5qcyIsCiAgICAgICJkaWdlc3QiOiB7CiAgICAgICAgInNoYTI1NiI6ICI5MWZlYTZkNmI4ZjYzZTBmOTc0NDA3MDJiZWM4Yzg0ZTk2MmIxZjM4Yzk2OWVmZDc0ZTQwMDNjYWM2NzUxMzZmIgogICAgICB9CiAgICB9LAogICAgewogICAgICAibmFtZSI6ICIvY29tcG9uZW50cy1zdXBlcnZpc29yLWFwaS0tcHJvdG8vdGhpcmRfcGFydHkvZ29vZ2xlL2FwaS9hbm5vdGF0aW9ucy5wcm90byIsCiAgICAgICJkaWdlc3QiOiB7CiAgICAgICAgInNoYTI1NiI6ICJiZmY3YzQ3Yjc4YmQyNWQzNGU3MGVmYzA2ZjQ5NzY0ZWMyNGY1NWU2NjUwNjdiOWJlNDllNTNlODI1MjUwY2U4IgogICAgICB9CiAgICB9LAogICAgewogICAgICAibmFtZSI6ICIvY29tcG9uZW50cy1zdXBlcnZpc29yLWFwaS0tcHJvdG8vdGhpcmRfcGFydHkvZ29vZ2xlL2FwaS9odHRwLnByb3RvIiwKICAgICAgImRpZ2VzdCI6IHsKICAgICAgICAic2hhMjU2IjogIjMxOGQ4NjkzMzE2MDAzZDljNmEyODljOWI0ODhkYWM2MjZlYmJhODE5MmE1MDdhMGViNjZjZjJmODYyN2FiOTMiCiAgICAgIH0KICAgIH0sCiAgICB7CiAgICAgICJuYW1lIjogIi9saWIvc3RhdHVzX2dycGNfcGIuanMiLAogICAgICAiZGlnZXN0IjogewogICAgICAgICJzaGEyNTYiOiAiODJlOWI3NGU0M2MxNmZmZGE2MmYyNTYxM2Y2M2RlMDU5ZTljODI2ZTFkNmMxNWUxODliOGIyNzU0ZWIzNjJmOSIKICAgICAgfQogICAgfSwKICAgIHsKICAgICAgIm5hbWUiOiAiL2xpYi9jb250cm9sX3BiLmQudHMiLAogICAgICAiZGlnZXN0IjogewogICAgICAgICJzaGEyNTYiOiAiY2M3MTlkYTNhZTFmOWE4NWUxMGQyOTY3YWQ3MDcwZDc4NWNmYjg0NjEwNTk2NDEwZjFhMjE0YzMyNjFhZjVhOSIKICAgICAgfQogICAgfSwKICAgIHsKICAgICAgIm5hbWUiOiAiL2NvbXBvbmVudHMtc3VwZXJ2aXNvci1hcGktLXByb3RvL3RoaXJkX3BhcnR5L2dvb2dsZS9hcGkvZmllbGRfYmVoYXZpb3IucHJvdG8iLAogICAgICAiZGlnZXN0IjogewogICAgICAgICJzaGEyNTYiOiAiY2FiYTQxMjFlZGZmZDBiMTY1YzIxZTcxYjRhYjNhYjBmYzA3OGE1ZDQ4MTAxYzlhOTIwNzU3YzNhNzI0N2YzYSIKICAgICAgfQogICAgfSwKICAgIHsKICAgICAgIm5hbWUiOiAiL2NvbXBvbmVudHMtc3VwZXJ2aXNvci1hcGktLXByb3RvL25vdGlmaWNhdGlvbi5wcm90byIsCiAgICAgICJkaWdlc3QiOiB7CiAgICAgICAgInNoYTI1NiI6ICIxM2ZhZmEzYjU4MjljMjllOWFkMDA5YjBjZTg1ZGUyNTM4NGQ1NTU0ZDA3NTBkNTVkYzQ4ZDYzZWQxNmEzYTlmIgogICAgICB9CiAgICB9LAogICAgewogICAgICAibmFtZSI6ICIvbGliL3N0YXR1c19wYi5qcyIsCiAgICAgICJkaWdlc3QiOiB7CiAgICAgICAgInNoYTI1NiI6ICJhNjFjN2RkNTQzMGI5ZDE2NjlhNTVhZGRkOGE5OTc1ZDgxZjI2MTA5YzlkMjU0YjA0MmNkMDhjYjQ5ZTM1OTFlIgogICAgICB9CiAgICB9LAogICAgewogICAgICAibmFtZSI6ICIvbGliL2NvbnRyb2xfZ3JwY19wYi5qcyIsCiAgICAgICJkaWdlc3QiOiB7CiAgICAgICAgInNoYTI1NiI6ICI1YjkxMDgzNDAzOTdjNTFmNWZjZDRlZGFjZTA4MTY1ZTViNzc3MTBhYWVjZDAyMTU3MDgwMjVhY2E1YjAyMTk4IgogICAgICB9CiAgICB9LAogICAgewogICAgICAibmFtZSI6ICIvbGliL3N0YXR1c19wYi5kLnRzIiwKICAgICAgImRpZ2VzdCI6IHsKICAgICAgICAic2hhMjU2IjogIjA2NTZhM2Y4ZjNjNmUwZWE2ZTgyZDEyYjg5OTRkMmE3MjIxN2E1OWFlMGQ1MGVlZTczOTFkMzQzMTA2NDE1NDQiCiAgICAgIH0KICAgIH0sCiAgICB7CiAgICAgICJuYW1lIjogIi9saWIvbm90aWZpY2F0aW9uX2dycGNfcGIuanMiLAogICAgICAiZGlnZXN0IjogewogICAgICAgICJzaGEyNTYiOiAiMjFmYmZjNDU2NjRhZGZjZTQ5NzUwNzYwOTdhOWNkZGNhNTQwOWFjNmJlMzI5ZDk4NTMzYTcwNjBkZWRkYjkyZSIKICAgICAgfQogICAgfSwKICAgIHsKICAgICAgIm5hbWUiOiAiL2xpYi9ub3RpZmljYXRpb25fZ3JwY19wYi5kLnRzIiwKICAgICAgImRpZ2VzdCI6IHsKICAgICAgICAic2hhMjU2IjogIjg2MTY5ZDNjNDhjZTFjYTJiNzA3YzFjNTA4NzcyMTU0YjJhY2JjYWI2YzBmY2U2MWZlZDEyY2MxOWJhZThjMDEiCiAgICAgIH0KICAgIH0sCiAgICB7CiAgICAgICJuYW1lIjogIi9jb21wb25lbnRzLXN1cGVydmlzb3ItYXBpLS1wcm90by90b2tlbi5wcm90byIsCiAgICAgICJkaWdlc3QiOiB7CiAgICAgICAgInNoYTI1NiI6ICIxZjlhMjdmMzg5MTM4ZmJhNDBmNGRlMWMyOGUzNzE2OWFhMGI5ZjFjZTJkM2IzYzgxOGQ1ZThjNTYxYmNiNzAyIgogICAgICB9CiAgICB9LAogICAgewogICAgICAibmFtZSI6ICIvbGliL3Rva2VuX2dycGNfcGIuZC50cyIsCiAgICAgICJkaWdlc3QiOiB7CiAgICAgICAgInNoYTI1NiI6ICI0ZjMzZTE1YjI4OGEwMWIwMzI1YWVjN2RiZTExZWM4MjJlMzEwODI1OWMyMWQ0YWVkNTk2OWM3ZDdlNzJjZGZjIgogICAgICB9CiAgICB9LAogICAgewogICAgICAibmFtZSI6ICIvY29tcG9uZW50cy1zdXBlcnZpc29yLWFwaS0tcHJvdG8vcHJvdmVuYW5jZS1idW5kbGUuanNvbmwiLAogICAgICAiZGlnZXN0IjogewogICAgICAgICJzaGEyNTYiOiAiYWNiOTZhZTgwYmFkZDRmMTE4MGFiNzM4MDRhZmZkM2M4MDhmYTE4MzVmOGEyOTIzMTAwNzNjODdiZWFlY2E0ZCIKICAgICAgfQogICAgfSwKICAgIHsKICAgICAgIm5hbWUiOiAiL2xpYi9pbmZvX3BiLmQudHMiLAogICAgICAiZGlnZXN0IjogewogICAgICAgICJzaGEyNTYiOiAiNDBlM2QwMTAwYmUzZjA4ODBmYzE0YmMxODkyZmU2NzU3MTFkM2FlM2M5NzA3OGE5ZjQ1OGUzOWIxM2RkYTc2MyIKICAgICAgfQogICAgfSwKICAgIHsKICAgICAgIm5hbWUiOiAiL2NvbXBvbmVudHMtc3VwZXJ2aXNvci1hcGktLXByb3RvL3BvcnQucHJvdG8iLAogICAgICAiZGlnZXN0IjogewogICAgICAgICJzaGEyNTYiOiAiNTkzMDI0NTkwZWY0N2Q4ZmM0MDliMTk1NzZmZDdjZDAzZTcxMjU5MjVmYWFkNzE1NTI3MDM4N2UwYTY5MGMzMCIKICAgICAgfQogICAgfSwKICAgIHsKICAgICAgIm5hbWUiOiAiL2xpYi9wb3J0X2dycGNfcGIuZC50cyIsCiAgICAgICJkaWdlc3QiOiB7CiAgICAgICAgInNoYTI1NiI6ICJiM2NiZmY0YWI5OWUxY2E5MjE4ZTc3ODNhMTBmMzhmYjYzMGI2YWMyZWM3MzY0ZDczOGY2M2VlZTdhMDZmNjU4IgogICAgICB9CiAgICB9CiAgXSwKICAicHJlZGljYXRlIjogewogICAgImJ1aWxkZXIiOiB7CiAgICAgICJpZCI6ICJnaXRodWIuY29tL2dpdHBvZC1pby9sZWV3YXk6MC4yLjE2LWI3ZDJiNTRAc2hhMjU2Ojk1MTJhZjFhYTRhY2MwOTYwZGQ1ZTk3YzUwYjdjZjFhNjY3MTNhODFhMDlmODI0NWFkOTUxMThlZTEwNzBmYmMiCiAgICB9LAogICAgInJlY2lwZSI6IHsKICAgICAgInR5cGUiOiAiaHR0cHM6Ly9naXRodWIuY29tL2dpdHBvZC1pby9sZWV3YXkvYnVpbGRAeWFybjo3IiwKICAgICAgImRlZmluZWRJbk1hdGVyaWFsIjogNCwKICAgICAgImVudHJ5UG9pbnQiOiAiY29tcG9uZW50cy9zdXBlcnZpc29yLWFwaS90eXBlc2NyaXB0LWdycGM6bGliIiwKICAgICAgImFyZ3VtZW50cyI6IFsKICAgICAgICAibGVld2F5IiwKICAgICAgICAiYnVpbGQiLAogICAgICAgICItLWRvY2tlci1idWlsZC1vcHRpb25zIiwKICAgICAgICAibmV0d29yaz1ob3N0IiwKICAgICAgICAiLS13ZXJmdD10cnVlIiwKICAgICAgICAiLWMiLAogICAgICAgICJyZW1vdGUiLAogICAgICAgICItLWRvbnQtcmV0YWciLAogICAgICAgICItLWNvdmVyYWdlLW91dHB1dC1wYXRoPS90bXAvdG1wLnR4d2NBalgyeXMiLAogICAgICAgICItRHZlcnNpb249cHJzLXRlc3QtZGF6emxlLXJld3JpdGUuMjIiLAogICAgICAgICItRHJlbW92ZVNvdXJjZXM9ZmFsc2UiLAogICAgICAgICItRGltYWdlUmVwb0Jhc2U9ZXUuZ2NyLmlvL2dpdHBvZC1jb3JlLWRldi9idWlsZCIsCiAgICAgICAgIi1EbG9jYWxBcHBWZXJzaW9uPXVua25vd24iLAogICAgICAgICItRG5wbVB1Ymxpc2hUcmlnZ2VyPWZhbHNlIgogICAgICBdLAogICAgICAiZW52aXJvbm1lbnQiOiB7CiAgICAgICAgIm1hbmlmZXN0IjogewogICAgICAgICAgImFyY2giOiAiYW1kNjQiLAogICAgICAgICAgImdvIjogImdvIHZlcnNpb24gZ28xLjE3LjUgbGludXgvYW1kNjQiLAogICAgICAgICAgIm5vZGUiOiAidjE2LjEzLjAiLAogICAgICAgICAgIm9zIjogImxpbnV4IiwKICAgICAgICAgICJ5YXJuIjogIjEuMjIuMTciCiAgICAgICAgfQogICAgICB9CiAgICB9LAogICAgIm1ldGFkYXRhIjogewogICAgICAiYnVpbGRTdGFydGVkT24iOiAiMjAyMi0wMS0xMlQxNjowNjo1Ni40NjIzNTA5MDlaIiwKICAgICAgImJ1aWxkRmluaXNoZWRPbiI6ICIyMDIyLTAxLTEyVDE2OjA3OjA4Ljk5ODMyMzE0OVoiLAogICAgICAiY29tcGxldGVuZXNzIjogewogICAgICAgICJhcmd1bWVudHMiOiB0cnVlLAogICAgICAgICJlbnZpcm9ubWVudCI6IGZhbHNlLAogICAgICAgICJtYXRlcmlhbHMiOiB0cnVlCiAgICAgIH0sCiAgICAgICJyZXByb2R1Y2libGUiOiBmYWxzZQogICAgfSwKICAgICJtYXRlcmlhbHMiOiBbCiAgICAgIHsKICAgICAgICAidXJpIjogImZpbGU6Ly9jb21wb25lbnRzL3N1cGVydmlzb3ItYXBpL3R5cGVzY3JpcHQtZ3JwYy90c2NvbmZpZy5qc29uIiwKICAgICAgICAiZGlnZXN0IjogewogICAgICAgICAgInNoYTI1NiI6ICIxNGZlMDMwNzM4M2RhYzljZjk1YThlNDlkZDlkNjhkMzBjNDBjNTAxZmIwM2QyZWNiNGZiMDJkZTRmMDBmMzhlIgogICAgICAgIH0KICAgICAgfSwKICAgICAgewogICAgICAgICJ1cmkiOiAiZmlsZTovL2NvbXBvbmVudHMvc3VwZXJ2aXNvci1hcGkvdHlwZXNjcmlwdC1ncnBjL3BhY2thZ2UuanNvbiIsCiAgICAgICAgImRpZ2VzdCI6IHsKICAgICAgICAgICJzaGEyNTYiOiAiY2Q5MjljYWE5ODE2NTg1ZWFiODI4NzE4N2Y1ZGRjMGU0ZDFhNzU4OGE3MGE2MDFiOWFmMWJkYWRhYWNiNzE0YyIKICAgICAgICB9CiAgICAgIH0sCiAgICAgIHsKICAgICAgICAidXJpIjogImZpbGU6Ly9jb21wb25lbnRzL3N1cGVydmlzb3ItYXBpL3R5cGVzY3JpcHQtZ3JwYy9idWlsZC5zaCIsCiAgICAgICAgImRpZ2VzdCI6IHsKICAgICAgICAgICJzaGEyNTYiOiAiMWFhZDM1OWEzNWI5ZDE4ZmJjMDBiYmYxMmYyM2RkNWJmZTJhYzgyNDE2M2EwM2EwMmM5NjAxYjA2Yzc4MDFjMiIKICAgICAgICB9CiAgICAgIH0sCiAgICAgIHsKICAgICAgICAidXJpIjogImZpbGU6Ly95YXJuLmxvY2siLAogICAgICAgICJkaWdlc3QiOiB7CiAgICAgICAgICAic2hhMjU2IjogIjFkZjczYzI2NTc3OTI2NWEyZTFkNmY3NzkzZmYxOWM0NzA4ZWRlYWU0YWY3MzhlZTk5ZDc3NWNhNmIyOGMzZDAiCiAgICAgICAgfQogICAgICB9LAogICAgICB7CiAgICAgICAgInVyaSI6ICJmaWxlOi8vY29tcG9uZW50cy9zdXBlcnZpc29yLWFwaS90eXBlc2NyaXB0LWdycGMvQlVJTEQueWFtbCIsCiAgICAgICAgImRpZ2VzdCI6IHsKICAgICAgICAgICJzaGEyNTYiOiAiYjc3ZTllZjlhZGU0M2E2YjFkMzkyMTgwMjFmNjFmMWJjNTA2Y2Y2YzViNGVlNzg0NDJkNTEzYzMyMmZkYmZiYSIKICAgICAgICB9CiAgICAgIH0sCiAgICAgIHsKICAgICAgICAidXJpIjogImZpbGU6Ly9XT1JLU1BBQ0UueWFtbCIsCiAgICAgICAgImRpZ2VzdCI6IHsKICAgICAgICAgICJzaGEyNTYiOiAiMzcxZDlkYjBkMTNjY2Q1OTI2NDFiZmI2ZDhlYTY0OGU0ZWU3MDU5YmFiNWNjNDgzYzU2YTkzZGMzMDVmODBlZSIKICAgICAgICB9CiAgICAgIH0KICAgIF0KICB9Cn0=","signatures":null}
4
+