@octelium/apis 1.0.3 → 1.0.5

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.
@@ -177,9 +177,7 @@ export interface User {
177
177
  */
178
178
  export interface User_Spec {
179
179
  /**
180
- * Groups is the list of Group names that this User belongs to. You must not
181
- * add the `root` Group as it's only used by the `root` User or the `all`
182
- * Group as it's already added by the Cluster automatically.
180
+ * Groups is the list of Group names that this User belongs to.
183
181
  *
184
182
  * @generated from protobuf field: repeated string groups = 1
185
183
  */
@@ -664,6 +662,18 @@ export interface Service_Spec_Config {
664
662
  * @generated from protobuf field: octelium.api.main.core.v1.Service.Spec.Config.Kubernetes kubernetes = 8
665
663
  */
666
664
  kubernetes: Service_Spec_Config_Kubernetes;
665
+ } | {
666
+ oneofKind: "socks5";
667
+ /**
668
+ * @generated from protobuf field: octelium.api.main.core.v1.Service.Spec.Config.SOCKS5 socks5 = 11
669
+ */
670
+ socks5: Service_Spec_Config_SOCKS5;
671
+ } | {
672
+ oneofKind: "rdp";
673
+ /**
674
+ * @generated from protobuf field: octelium.api.main.core.v1.Service.Spec.Config.RDP rdp = 12
675
+ */
676
+ rdp: Service_Spec_Config_RDP;
667
677
  } | {
668
678
  oneofKind: undefined;
669
679
  };
@@ -2364,6 +2374,132 @@ export interface Service_Spec_Config_Kubernetes_Kubeconfig {
2364
2374
  */
2365
2375
  context: string;
2366
2376
  }
2377
+ /**
2378
+ * @generated from protobuf message octelium.api.main.core.v1.Service.Spec.Config.SOCKS5
2379
+ */
2380
+ export interface Service_Spec_Config_SOCKS5 {
2381
+ /**
2382
+ * @generated from protobuf field: octelium.api.main.core.v1.Service.Spec.Config.SOCKS5.Auth auth = 1
2383
+ */
2384
+ auth?: Service_Spec_Config_SOCKS5_Auth;
2385
+ /**
2386
+ * @generated from protobuf field: bool isEmbeddedMode = 2
2387
+ */
2388
+ isEmbeddedMode: boolean;
2389
+ }
2390
+ /**
2391
+ * @generated from protobuf message octelium.api.main.core.v1.Service.Spec.Config.SOCKS5.Auth
2392
+ */
2393
+ export interface Service_Spec_Config_SOCKS5_Auth {
2394
+ /**
2395
+ * @generated from protobuf oneof: type
2396
+ */
2397
+ type: {
2398
+ oneofKind: "noAuth";
2399
+ /**
2400
+ * @generated from protobuf field: bool noAuth = 1
2401
+ */
2402
+ noAuth: boolean;
2403
+ } | {
2404
+ oneofKind: "usernamePassword";
2405
+ /**
2406
+ * @generated from protobuf field: octelium.api.main.core.v1.Service.Spec.Config.SOCKS5.Auth.UsernamePassword usernamePassword = 2
2407
+ */
2408
+ usernamePassword: Service_Spec_Config_SOCKS5_Auth_UsernamePassword;
2409
+ } | {
2410
+ oneofKind: undefined;
2411
+ };
2412
+ }
2413
+ /**
2414
+ * @generated from protobuf message octelium.api.main.core.v1.Service.Spec.Config.SOCKS5.Auth.UsernamePassword
2415
+ */
2416
+ export interface Service_Spec_Config_SOCKS5_Auth_UsernamePassword {
2417
+ /**
2418
+ * @generated from protobuf field: string username = 1
2419
+ */
2420
+ username: string;
2421
+ /**
2422
+ * @generated from protobuf field: octelium.api.main.core.v1.Service.Spec.Config.SOCKS5.Auth.UsernamePassword.Password password = 2
2423
+ */
2424
+ password?: Service_Spec_Config_SOCKS5_Auth_UsernamePassword_Password;
2425
+ }
2426
+ /**
2427
+ * @generated from protobuf message octelium.api.main.core.v1.Service.Spec.Config.SOCKS5.Auth.UsernamePassword.Password
2428
+ */
2429
+ export interface Service_Spec_Config_SOCKS5_Auth_UsernamePassword_Password {
2430
+ /**
2431
+ * @generated from protobuf oneof: type
2432
+ */
2433
+ type: {
2434
+ oneofKind: "fromSecret";
2435
+ /**
2436
+ * @generated from protobuf field: string fromSecret = 1
2437
+ */
2438
+ fromSecret: string;
2439
+ } | {
2440
+ oneofKind: undefined;
2441
+ };
2442
+ }
2443
+ /**
2444
+ * @generated from protobuf message octelium.api.main.core.v1.Service.Spec.Config.RDP
2445
+ */
2446
+ export interface Service_Spec_Config_RDP {
2447
+ /**
2448
+ * @generated from protobuf field: octelium.api.main.core.v1.Service.Spec.Config.RDP.Auth auth = 1
2449
+ */
2450
+ auth?: Service_Spec_Config_RDP_Auth;
2451
+ /**
2452
+ * @generated from protobuf field: octelium.api.main.core.v1.Service.Spec.Config.RDP.UpstreamTLS upstreamTLS = 2
2453
+ */
2454
+ upstreamTLS?: Service_Spec_Config_RDP_UpstreamTLS;
2455
+ }
2456
+ /**
2457
+ * @generated from protobuf message octelium.api.main.core.v1.Service.Spec.Config.RDP.Auth
2458
+ */
2459
+ export interface Service_Spec_Config_RDP_Auth {
2460
+ /**
2461
+ * @generated from protobuf field: string user = 1
2462
+ */
2463
+ user: string;
2464
+ /**
2465
+ * @generated from protobuf field: string domain = 2
2466
+ */
2467
+ domain: string;
2468
+ /**
2469
+ * @generated from protobuf field: octelium.api.main.core.v1.Service.Spec.Config.RDP.Auth.Password password = 3
2470
+ */
2471
+ password?: Service_Spec_Config_RDP_Auth_Password;
2472
+ }
2473
+ /**
2474
+ * @generated from protobuf message octelium.api.main.core.v1.Service.Spec.Config.RDP.Auth.Password
2475
+ */
2476
+ export interface Service_Spec_Config_RDP_Auth_Password {
2477
+ /**
2478
+ * @generated from protobuf oneof: type
2479
+ */
2480
+ type: {
2481
+ oneofKind: "fromSecret";
2482
+ /**
2483
+ * @generated from protobuf field: string fromSecret = 1
2484
+ */
2485
+ fromSecret: string;
2486
+ } | {
2487
+ oneofKind: undefined;
2488
+ };
2489
+ }
2490
+ /**
2491
+ * @generated from protobuf message octelium.api.main.core.v1.Service.Spec.Config.RDP.UpstreamTLS
2492
+ */
2493
+ export interface Service_Spec_Config_RDP_UpstreamTLS {
2494
+ /**
2495
+ * @generated from protobuf field: repeated string pinnedCertSHA256 = 1
2496
+ */
2497
+ pinnedCertSHA256: string[];
2498
+ /**
2499
+ * @generated from protobuf field: bool allowAnyCert = 2
2500
+ */
2501
+ allowAnyCert: boolean;
2502
+ }
2367
2503
  /**
2368
2504
  * @generated from protobuf message octelium.api.main.core.v1.Service.Spec.Config.Upstream
2369
2505
  */
@@ -3021,7 +3157,15 @@ export declare enum Service_Spec_Mode {
3021
3157
  *
3022
3158
  * @generated from protobuf enum value: DNS = 10;
3023
3159
  */
3024
- DNS = 10
3160
+ DNS = 10,
3161
+ /**
3162
+ * @generated from protobuf enum value: SOCKS5 = 11;
3163
+ */
3164
+ SOCKS5 = 11,
3165
+ /**
3166
+ * @generated from protobuf enum value: RDP_WEB = 12;
3167
+ */
3168
+ RDP_WEB = 12
3025
3169
  }
3026
3170
  /**
3027
3171
  * @generated from protobuf message octelium.api.main.core.v1.Service.Status
@@ -3582,6 +3726,14 @@ export interface Session_Status_Connection {
3582
3726
  * @generated from protobuf field: int32 eSSHPort = 13
3583
3727
  */
3584
3728
  eSSHPort: number;
3729
+ /**
3730
+ * @generated from protobuf field: bool eSOCKS5Enable = 14
3731
+ */
3732
+ eSOCKS5Enable: boolean;
3733
+ /**
3734
+ * @generated from protobuf field: int32 eSOCKS5Port = 15
3735
+ */
3736
+ eSOCKS5Port: number;
3585
3737
  }
3586
3738
  /**
3587
3739
  * @generated from protobuf message octelium.api.main.core.v1.Session.Status.Connection.ServiceOptions
@@ -5495,6 +5647,12 @@ export interface AccessLog_Entry_Info {
5495
5647
  * @generated from protobuf field: octelium.api.main.core.v1.AccessLog.Entry.Info.DNS dns = 9
5496
5648
  */
5497
5649
  dns: AccessLog_Entry_Info_DNS;
5650
+ } | {
5651
+ oneofKind: "socks5";
5652
+ /**
5653
+ * @generated from protobuf field: octelium.api.main.core.v1.AccessLog.Entry.Info.SOCKS5 socks5 = 10
5654
+ */
5655
+ socks5: AccessLog_Entry_Info_SOCKS5;
5498
5656
  } | {
5499
5657
  oneofKind: undefined;
5500
5658
  };
@@ -6477,6 +6635,81 @@ export declare enum AccessLog_Entry_Info_DNS_Type {
6477
6635
  */
6478
6636
  TYPE_OTHER = 6
6479
6637
  }
6638
+ /**
6639
+ * @generated from protobuf message octelium.api.main.core.v1.AccessLog.Entry.Info.SOCKS5
6640
+ */
6641
+ export interface AccessLog_Entry_Info_SOCKS5 {
6642
+ /**
6643
+ * @generated from protobuf field: octelium.api.main.core.v1.AccessLog.Entry.Info.SOCKS5.Type type = 1
6644
+ */
6645
+ type: AccessLog_Entry_Info_SOCKS5_Type;
6646
+ /**
6647
+ * @generated from protobuf field: string host = 2
6648
+ */
6649
+ host: string;
6650
+ /**
6651
+ * @generated from protobuf field: uint32 port = 3
6652
+ */
6653
+ port: number;
6654
+ /**
6655
+ * @generated from protobuf field: octelium.api.main.core.v1.AccessLog.Entry.Info.SOCKS5.AddressType addressType = 4
6656
+ */
6657
+ addressType: AccessLog_Entry_Info_SOCKS5_AddressType;
6658
+ /**
6659
+ * @generated from protobuf field: uint64 receivedBytes = 5
6660
+ */
6661
+ receivedBytes: number;
6662
+ /**
6663
+ * @generated from protobuf field: uint64 sentBytes = 6
6664
+ */
6665
+ sentBytes: number;
6666
+ /**
6667
+ * @generated from protobuf field: string upstreamHost = 7
6668
+ */
6669
+ upstreamHost: string;
6670
+ /**
6671
+ * @generated from protobuf field: uint32 upstreamPort = 8
6672
+ */
6673
+ upstreamPort: number;
6674
+ }
6675
+ /**
6676
+ * @generated from protobuf enum octelium.api.main.core.v1.AccessLog.Entry.Info.SOCKS5.Type
6677
+ */
6678
+ export declare enum AccessLog_Entry_Info_SOCKS5_Type {
6679
+ /**
6680
+ * @generated from protobuf enum value: TYPE_UNSPECIFIED = 0;
6681
+ */
6682
+ TYPE_UNSPECIFIED = 0,
6683
+ /**
6684
+ * @generated from protobuf enum value: CONNECT = 1;
6685
+ */
6686
+ CONNECT = 1,
6687
+ /**
6688
+ * @generated from protobuf enum value: SESSION_END = 2;
6689
+ */
6690
+ SESSION_END = 2
6691
+ }
6692
+ /**
6693
+ * @generated from protobuf enum octelium.api.main.core.v1.AccessLog.Entry.Info.SOCKS5.AddressType
6694
+ */
6695
+ export declare enum AccessLog_Entry_Info_SOCKS5_AddressType {
6696
+ /**
6697
+ * @generated from protobuf enum value: ADDRESS_TYPE_UNSPECIFIED = 0;
6698
+ */
6699
+ ADDRESS_TYPE_UNSPECIFIED = 0,
6700
+ /**
6701
+ * @generated from protobuf enum value: IPV4 = 1;
6702
+ */
6703
+ IPV4 = 1,
6704
+ /**
6705
+ * @generated from protobuf enum value: DOMAIN = 2;
6706
+ */
6707
+ DOMAIN = 2,
6708
+ /**
6709
+ * @generated from protobuf enum value: IPV6 = 3;
6710
+ */
6711
+ IPV6 = 3
6712
+ }
6480
6713
  /**
6481
6714
  * @generated from protobuf message octelium.api.main.core.v1.AccessLog.Entry.Common
6482
6715
  */
@@ -8634,6 +8867,12 @@ export interface RequestContext_Request {
8634
8867
  * @generated from protobuf field: octelium.api.main.core.v1.RequestContext.Request.DNS dns = 6
8635
8868
  */
8636
8869
  dns: RequestContext_Request_DNS;
8870
+ } | {
8871
+ oneofKind: "socks5";
8872
+ /**
8873
+ * @generated from protobuf field: octelium.api.main.core.v1.RequestContext.Request.SOCKS5 socks5 = 8
8874
+ */
8875
+ socks5: RequestContext_Request_SOCKS5;
8637
8876
  } | {
8638
8877
  oneofKind: undefined;
8639
8878
  };
@@ -8893,6 +9132,61 @@ export interface RequestContext_Request_DNS {
8893
9132
  */
8894
9133
  typeID: number;
8895
9134
  }
9135
+ /**
9136
+ * @generated from protobuf message octelium.api.main.core.v1.RequestContext.Request.SOCKS5
9137
+ */
9138
+ export interface RequestContext_Request_SOCKS5 {
9139
+ /**
9140
+ * @generated from protobuf oneof: type
9141
+ */
9142
+ type: {
9143
+ oneofKind: "connect";
9144
+ /**
9145
+ * @generated from protobuf field: octelium.api.main.core.v1.RequestContext.Request.SOCKS5.Connect connect = 1
9146
+ */
9147
+ connect: RequestContext_Request_SOCKS5_Connect;
9148
+ } | {
9149
+ oneofKind: undefined;
9150
+ };
9151
+ }
9152
+ /**
9153
+ * @generated from protobuf message octelium.api.main.core.v1.RequestContext.Request.SOCKS5.Connect
9154
+ */
9155
+ export interface RequestContext_Request_SOCKS5_Connect {
9156
+ /**
9157
+ * @generated from protobuf field: string host = 1
9158
+ */
9159
+ host: string;
9160
+ /**
9161
+ * @generated from protobuf field: uint32 port = 2
9162
+ */
9163
+ port: number;
9164
+ /**
9165
+ * @generated from protobuf field: octelium.api.main.core.v1.RequestContext.Request.SOCKS5.Connect.AddressType addressType = 3
9166
+ */
9167
+ addressType: RequestContext_Request_SOCKS5_Connect_AddressType;
9168
+ }
9169
+ /**
9170
+ * @generated from protobuf enum octelium.api.main.core.v1.RequestContext.Request.SOCKS5.Connect.AddressType
9171
+ */
9172
+ export declare enum RequestContext_Request_SOCKS5_Connect_AddressType {
9173
+ /**
9174
+ * @generated from protobuf enum value: ADDRESS_TYPE_UNSPECIFIED = 0;
9175
+ */
9176
+ ADDRESS_TYPE_UNSPECIFIED = 0,
9177
+ /**
9178
+ * @generated from protobuf enum value: IPV4 = 1;
9179
+ */
9180
+ IPV4 = 1,
9181
+ /**
9182
+ * @generated from protobuf enum value: DOMAIN = 2;
9183
+ */
9184
+ DOMAIN = 2,
9185
+ /**
9186
+ * @generated from protobuf enum value: IPV6 = 3;
9187
+ */
9188
+ IPV6 = 3
9189
+ }
8896
9190
  /**
8897
9191
  * @generated from protobuf message octelium.api.main.core.v1.PolicyTrigger
8898
9192
  */
@@ -9017,6 +9311,30 @@ export interface PolicyTrigger_Status_PreCondition {
9017
9311
  * @generated from protobuf field: octelium.api.main.core.v1.PolicyTrigger.Status.PreCondition.All all = 8
9018
9312
  */
9019
9313
  all: PolicyTrigger_Status_PreCondition_All;
9314
+ } | {
9315
+ oneofKind: "serviceRef";
9316
+ /**
9317
+ * @generated from protobuf field: octelium.api.main.meta.v1.ObjectReference serviceRef = 9
9318
+ */
9319
+ serviceRef: ObjectReference;
9320
+ } | {
9321
+ oneofKind: "namespaceRef";
9322
+ /**
9323
+ * @generated from protobuf field: octelium.api.main.meta.v1.ObjectReference namespaceRef = 10
9324
+ */
9325
+ namespaceRef: ObjectReference;
9326
+ } | {
9327
+ oneofKind: "groupRef";
9328
+ /**
9329
+ * @generated from protobuf field: octelium.api.main.meta.v1.ObjectReference groupRef = 11
9330
+ */
9331
+ groupRef: ObjectReference;
9332
+ } | {
9333
+ oneofKind: "deviceRef";
9334
+ /**
9335
+ * @generated from protobuf field: octelium.api.main.meta.v1.ObjectReference deviceRef = 12
9336
+ */
9337
+ deviceRef: ObjectReference;
9020
9338
  } | {
9021
9339
  oneofKind: undefined;
9022
9340
  };
@@ -9437,6 +9755,47 @@ export interface Authenticator_Status_Info_TOTP {
9437
9755
  * @generated from protobuf field: octelium.api.main.core.v1.Authenticator.Status.EncryptedData sharedSecret = 1
9438
9756
  */
9439
9757
  sharedSecret?: Authenticator_Status_EncryptedData;
9758
+ /**
9759
+ * @generated from protobuf field: uint32 periodSeconds = 2
9760
+ */
9761
+ periodSeconds: number;
9762
+ /**
9763
+ * @generated from protobuf field: uint32 digits = 3
9764
+ */
9765
+ digits: number;
9766
+ /**
9767
+ * @generated from protobuf field: octelium.api.main.core.v1.Authenticator.Status.Info.TOTP.Algorithm algorithm = 4
9768
+ */
9769
+ algorithm: Authenticator_Status_Info_TOTP_Algorithm;
9770
+ /**
9771
+ * @generated from protobuf field: uint64 lastAcceptedTimeStep = 5
9772
+ */
9773
+ lastAcceptedTimeStep: number;
9774
+ /**
9775
+ * @generated from protobuf field: google.protobuf.Timestamp lastAcceptedAt = 6
9776
+ */
9777
+ lastAcceptedAt?: Timestamp;
9778
+ }
9779
+ /**
9780
+ * @generated from protobuf enum octelium.api.main.core.v1.Authenticator.Status.Info.TOTP.Algorithm
9781
+ */
9782
+ export declare enum Authenticator_Status_Info_TOTP_Algorithm {
9783
+ /**
9784
+ * @generated from protobuf enum value: ALGORITHM_UNSET = 0;
9785
+ */
9786
+ ALGORITHM_UNSET = 0,
9787
+ /**
9788
+ * @generated from protobuf enum value: SHA1 = 1;
9789
+ */
9790
+ SHA1 = 1,
9791
+ /**
9792
+ * @generated from protobuf enum value: SHA256 = 2;
9793
+ */
9794
+ SHA256 = 2,
9795
+ /**
9796
+ * @generated from protobuf enum value: SHA512 = 3;
9797
+ */
9798
+ SHA512 = 3
9440
9799
  }
9441
9800
  /**
9442
9801
  * @generated from protobuf message octelium.api.main.core.v1.Authenticator.Status.Info.TPM
@@ -9504,6 +9863,10 @@ export interface Authenticator_Status_AuthenticationAttempt {
9504
9863
  * @generated from protobuf field: octelium.api.main.meta.v1.ObjectReference sessionRef = 5
9505
9864
  */
9506
9865
  sessionRef?: ObjectReference;
9866
+ /**
9867
+ * @generated from protobuf field: google.protobuf.Timestamp completedAt = 6
9868
+ */
9869
+ completedAt?: Timestamp;
9507
9870
  }
9508
9871
  /**
9509
9872
  * @generated from protobuf enum octelium.api.main.core.v1.Authenticator.Status.Type
@@ -10520,6 +10883,86 @@ declare class Service_Spec_Config_Kubernetes_Kubeconfig$Type extends MessageType
10520
10883
  * @generated MessageType for protobuf message octelium.api.main.core.v1.Service.Spec.Config.Kubernetes.Kubeconfig
10521
10884
  */
10522
10885
  export declare const Service_Spec_Config_Kubernetes_Kubeconfig: Service_Spec_Config_Kubernetes_Kubeconfig$Type;
10886
+ declare class Service_Spec_Config_SOCKS5$Type extends MessageType<Service_Spec_Config_SOCKS5> {
10887
+ constructor();
10888
+ create(value?: PartialMessage<Service_Spec_Config_SOCKS5>): Service_Spec_Config_SOCKS5;
10889
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: Service_Spec_Config_SOCKS5): Service_Spec_Config_SOCKS5;
10890
+ internalBinaryWrite(message: Service_Spec_Config_SOCKS5, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
10891
+ }
10892
+ /**
10893
+ * @generated MessageType for protobuf message octelium.api.main.core.v1.Service.Spec.Config.SOCKS5
10894
+ */
10895
+ export declare const Service_Spec_Config_SOCKS5: Service_Spec_Config_SOCKS5$Type;
10896
+ declare class Service_Spec_Config_SOCKS5_Auth$Type extends MessageType<Service_Spec_Config_SOCKS5_Auth> {
10897
+ constructor();
10898
+ create(value?: PartialMessage<Service_Spec_Config_SOCKS5_Auth>): Service_Spec_Config_SOCKS5_Auth;
10899
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: Service_Spec_Config_SOCKS5_Auth): Service_Spec_Config_SOCKS5_Auth;
10900
+ internalBinaryWrite(message: Service_Spec_Config_SOCKS5_Auth, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
10901
+ }
10902
+ /**
10903
+ * @generated MessageType for protobuf message octelium.api.main.core.v1.Service.Spec.Config.SOCKS5.Auth
10904
+ */
10905
+ export declare const Service_Spec_Config_SOCKS5_Auth: Service_Spec_Config_SOCKS5_Auth$Type;
10906
+ declare class Service_Spec_Config_SOCKS5_Auth_UsernamePassword$Type extends MessageType<Service_Spec_Config_SOCKS5_Auth_UsernamePassword> {
10907
+ constructor();
10908
+ create(value?: PartialMessage<Service_Spec_Config_SOCKS5_Auth_UsernamePassword>): Service_Spec_Config_SOCKS5_Auth_UsernamePassword;
10909
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: Service_Spec_Config_SOCKS5_Auth_UsernamePassword): Service_Spec_Config_SOCKS5_Auth_UsernamePassword;
10910
+ internalBinaryWrite(message: Service_Spec_Config_SOCKS5_Auth_UsernamePassword, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
10911
+ }
10912
+ /**
10913
+ * @generated MessageType for protobuf message octelium.api.main.core.v1.Service.Spec.Config.SOCKS5.Auth.UsernamePassword
10914
+ */
10915
+ export declare const Service_Spec_Config_SOCKS5_Auth_UsernamePassword: Service_Spec_Config_SOCKS5_Auth_UsernamePassword$Type;
10916
+ declare class Service_Spec_Config_SOCKS5_Auth_UsernamePassword_Password$Type extends MessageType<Service_Spec_Config_SOCKS5_Auth_UsernamePassword_Password> {
10917
+ constructor();
10918
+ create(value?: PartialMessage<Service_Spec_Config_SOCKS5_Auth_UsernamePassword_Password>): Service_Spec_Config_SOCKS5_Auth_UsernamePassword_Password;
10919
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: Service_Spec_Config_SOCKS5_Auth_UsernamePassword_Password): Service_Spec_Config_SOCKS5_Auth_UsernamePassword_Password;
10920
+ internalBinaryWrite(message: Service_Spec_Config_SOCKS5_Auth_UsernamePassword_Password, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
10921
+ }
10922
+ /**
10923
+ * @generated MessageType for protobuf message octelium.api.main.core.v1.Service.Spec.Config.SOCKS5.Auth.UsernamePassword.Password
10924
+ */
10925
+ export declare const Service_Spec_Config_SOCKS5_Auth_UsernamePassword_Password: Service_Spec_Config_SOCKS5_Auth_UsernamePassword_Password$Type;
10926
+ declare class Service_Spec_Config_RDP$Type extends MessageType<Service_Spec_Config_RDP> {
10927
+ constructor();
10928
+ create(value?: PartialMessage<Service_Spec_Config_RDP>): Service_Spec_Config_RDP;
10929
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: Service_Spec_Config_RDP): Service_Spec_Config_RDP;
10930
+ internalBinaryWrite(message: Service_Spec_Config_RDP, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
10931
+ }
10932
+ /**
10933
+ * @generated MessageType for protobuf message octelium.api.main.core.v1.Service.Spec.Config.RDP
10934
+ */
10935
+ export declare const Service_Spec_Config_RDP: Service_Spec_Config_RDP$Type;
10936
+ declare class Service_Spec_Config_RDP_Auth$Type extends MessageType<Service_Spec_Config_RDP_Auth> {
10937
+ constructor();
10938
+ create(value?: PartialMessage<Service_Spec_Config_RDP_Auth>): Service_Spec_Config_RDP_Auth;
10939
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: Service_Spec_Config_RDP_Auth): Service_Spec_Config_RDP_Auth;
10940
+ internalBinaryWrite(message: Service_Spec_Config_RDP_Auth, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
10941
+ }
10942
+ /**
10943
+ * @generated MessageType for protobuf message octelium.api.main.core.v1.Service.Spec.Config.RDP.Auth
10944
+ */
10945
+ export declare const Service_Spec_Config_RDP_Auth: Service_Spec_Config_RDP_Auth$Type;
10946
+ declare class Service_Spec_Config_RDP_Auth_Password$Type extends MessageType<Service_Spec_Config_RDP_Auth_Password> {
10947
+ constructor();
10948
+ create(value?: PartialMessage<Service_Spec_Config_RDP_Auth_Password>): Service_Spec_Config_RDP_Auth_Password;
10949
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: Service_Spec_Config_RDP_Auth_Password): Service_Spec_Config_RDP_Auth_Password;
10950
+ internalBinaryWrite(message: Service_Spec_Config_RDP_Auth_Password, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
10951
+ }
10952
+ /**
10953
+ * @generated MessageType for protobuf message octelium.api.main.core.v1.Service.Spec.Config.RDP.Auth.Password
10954
+ */
10955
+ export declare const Service_Spec_Config_RDP_Auth_Password: Service_Spec_Config_RDP_Auth_Password$Type;
10956
+ declare class Service_Spec_Config_RDP_UpstreamTLS$Type extends MessageType<Service_Spec_Config_RDP_UpstreamTLS> {
10957
+ constructor();
10958
+ create(value?: PartialMessage<Service_Spec_Config_RDP_UpstreamTLS>): Service_Spec_Config_RDP_UpstreamTLS;
10959
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: Service_Spec_Config_RDP_UpstreamTLS): Service_Spec_Config_RDP_UpstreamTLS;
10960
+ internalBinaryWrite(message: Service_Spec_Config_RDP_UpstreamTLS, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
10961
+ }
10962
+ /**
10963
+ * @generated MessageType for protobuf message octelium.api.main.core.v1.Service.Spec.Config.RDP.UpstreamTLS
10964
+ */
10965
+ export declare const Service_Spec_Config_RDP_UpstreamTLS: Service_Spec_Config_RDP_UpstreamTLS$Type;
10523
10966
  declare class Service_Spec_Config_Upstream$Type extends MessageType<Service_Spec_Config_Upstream> {
10524
10967
  constructor();
10525
10968
  create(value?: PartialMessage<Service_Spec_Config_Upstream>): Service_Spec_Config_Upstream;
@@ -11899,6 +12342,16 @@ declare class AccessLog_Entry_Info_DNS$Type extends MessageType<AccessLog_Entry_
11899
12342
  * @generated MessageType for protobuf message octelium.api.main.core.v1.AccessLog.Entry.Info.DNS
11900
12343
  */
11901
12344
  export declare const AccessLog_Entry_Info_DNS: AccessLog_Entry_Info_DNS$Type;
12345
+ declare class AccessLog_Entry_Info_SOCKS5$Type extends MessageType<AccessLog_Entry_Info_SOCKS5> {
12346
+ constructor();
12347
+ create(value?: PartialMessage<AccessLog_Entry_Info_SOCKS5>): AccessLog_Entry_Info_SOCKS5;
12348
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: AccessLog_Entry_Info_SOCKS5): AccessLog_Entry_Info_SOCKS5;
12349
+ internalBinaryWrite(message: AccessLog_Entry_Info_SOCKS5, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
12350
+ }
12351
+ /**
12352
+ * @generated MessageType for protobuf message octelium.api.main.core.v1.AccessLog.Entry.Info.SOCKS5
12353
+ */
12354
+ export declare const AccessLog_Entry_Info_SOCKS5: AccessLog_Entry_Info_SOCKS5$Type;
11902
12355
  declare class AccessLog_Entry_Common$Type extends MessageType<AccessLog_Entry_Common> {
11903
12356
  constructor();
11904
12357
  create(value?: PartialMessage<AccessLog_Entry_Common>): AccessLog_Entry_Common;
@@ -12794,6 +13247,26 @@ declare class RequestContext_Request_DNS$Type extends MessageType<RequestContext
12794
13247
  * @generated MessageType for protobuf message octelium.api.main.core.v1.RequestContext.Request.DNS
12795
13248
  */
12796
13249
  export declare const RequestContext_Request_DNS: RequestContext_Request_DNS$Type;
13250
+ declare class RequestContext_Request_SOCKS5$Type extends MessageType<RequestContext_Request_SOCKS5> {
13251
+ constructor();
13252
+ create(value?: PartialMessage<RequestContext_Request_SOCKS5>): RequestContext_Request_SOCKS5;
13253
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: RequestContext_Request_SOCKS5): RequestContext_Request_SOCKS5;
13254
+ internalBinaryWrite(message: RequestContext_Request_SOCKS5, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
13255
+ }
13256
+ /**
13257
+ * @generated MessageType for protobuf message octelium.api.main.core.v1.RequestContext.Request.SOCKS5
13258
+ */
13259
+ export declare const RequestContext_Request_SOCKS5: RequestContext_Request_SOCKS5$Type;
13260
+ declare class RequestContext_Request_SOCKS5_Connect$Type extends MessageType<RequestContext_Request_SOCKS5_Connect> {
13261
+ constructor();
13262
+ create(value?: PartialMessage<RequestContext_Request_SOCKS5_Connect>): RequestContext_Request_SOCKS5_Connect;
13263
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: RequestContext_Request_SOCKS5_Connect): RequestContext_Request_SOCKS5_Connect;
13264
+ internalBinaryWrite(message: RequestContext_Request_SOCKS5_Connect, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
13265
+ }
13266
+ /**
13267
+ * @generated MessageType for protobuf message octelium.api.main.core.v1.RequestContext.Request.SOCKS5.Connect
13268
+ */
13269
+ export declare const RequestContext_Request_SOCKS5_Connect: RequestContext_Request_SOCKS5_Connect$Type;
12797
13270
  declare class PolicyTrigger$Type extends MessageType<PolicyTrigger> {
12798
13271
  constructor();
12799
13272
  create(value?: PartialMessage<PolicyTrigger>): PolicyTrigger;