@octelium/apis 1.0.2 → 1.0.4

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
  */
@@ -8173,6 +8406,166 @@ export interface ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream {
8173
8406
  * @generated from protobuf field: string url = 1
8174
8407
  */
8175
8408
  url: string;
8409
+ /**
8410
+ * @generated from protobuf field: octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth auth = 2
8411
+ */
8412
+ auth?: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth;
8413
+ }
8414
+ /**
8415
+ * @generated from protobuf message octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth
8416
+ */
8417
+ export interface ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth {
8418
+ /**
8419
+ * @generated from protobuf oneof: type
8420
+ */
8421
+ type: {
8422
+ oneofKind: "bearer";
8423
+ /**
8424
+ * Bearer sets bearer authentication details
8425
+ *
8426
+ * @generated from protobuf field: octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth.Bearer bearer = 1
8427
+ */
8428
+ bearer: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Bearer;
8429
+ } | {
8430
+ oneofKind: "basic";
8431
+ /**
8432
+ * Basis sets basic authentication details
8433
+ *
8434
+ * @generated from protobuf field: octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth.Basic basic = 2
8435
+ */
8436
+ basic: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Basic;
8437
+ } | {
8438
+ oneofKind: "custom";
8439
+ /**
8440
+ * Custom sets authentication inside custom header
8441
+ *
8442
+ * @generated from protobuf field: octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth.Custom custom = 3
8443
+ */
8444
+ custom: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Custom;
8445
+ } | {
8446
+ oneofKind: "query";
8447
+ /**
8448
+ * @generated from protobuf field: octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth.Query query = 4
8449
+ */
8450
+ query: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Query;
8451
+ } | {
8452
+ oneofKind: undefined;
8453
+ };
8454
+ }
8455
+ /**
8456
+ * @generated from protobuf message octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth.Bearer
8457
+ */
8458
+ export interface ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Bearer {
8459
+ /**
8460
+ * @generated from protobuf oneof: type
8461
+ */
8462
+ type: {
8463
+ oneofKind: "fromSecret";
8464
+ /**
8465
+ * @generated from protobuf field: string fromSecret = 1
8466
+ */
8467
+ fromSecret: string;
8468
+ } | {
8469
+ oneofKind: undefined;
8470
+ };
8471
+ }
8472
+ /**
8473
+ * @generated from protobuf message octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth.Basic
8474
+ */
8475
+ export interface ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Basic {
8476
+ /**
8477
+ * Username is the username value of HTTP basic authentication
8478
+ *
8479
+ * @generated from protobuf field: string username = 1
8480
+ */
8481
+ username: string;
8482
+ /**
8483
+ * Password is the password value of HTTP basic authentication
8484
+ *
8485
+ * @generated from protobuf field: octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth.Basic.Password password = 2
8486
+ */
8487
+ password?: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Basic_Password;
8488
+ }
8489
+ /**
8490
+ * @generated from protobuf message octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth.Basic.Password
8491
+ */
8492
+ export interface ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Basic_Password {
8493
+ /**
8494
+ * @generated from protobuf oneof: type
8495
+ */
8496
+ type: {
8497
+ oneofKind: "fromSecret";
8498
+ /**
8499
+ * @generated from protobuf field: string fromSecret = 1
8500
+ */
8501
+ fromSecret: string;
8502
+ } | {
8503
+ oneofKind: undefined;
8504
+ };
8505
+ }
8506
+ /**
8507
+ * @generated from protobuf message octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth.Custom
8508
+ */
8509
+ export interface ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Custom {
8510
+ /**
8511
+ * Header is the name of the HTTP header (e.g. "X-Custom-Auth")
8512
+ *
8513
+ * @generated from protobuf field: string header = 1
8514
+ */
8515
+ header: string;
8516
+ /**
8517
+ * Value is the value of the header
8518
+ *
8519
+ * @generated from protobuf field: octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth.Custom.Value value = 2
8520
+ */
8521
+ value?: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Custom_Value;
8522
+ }
8523
+ /**
8524
+ * @generated from protobuf message octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth.Custom.Value
8525
+ */
8526
+ export interface ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Custom_Value {
8527
+ /**
8528
+ * @generated from protobuf oneof: type
8529
+ */
8530
+ type: {
8531
+ oneofKind: "fromSecret";
8532
+ /**
8533
+ * @generated from protobuf field: string fromSecret = 1
8534
+ */
8535
+ fromSecret: string;
8536
+ } | {
8537
+ oneofKind: undefined;
8538
+ };
8539
+ }
8540
+ /**
8541
+ * @generated from protobuf message octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth.Query
8542
+ */
8543
+ export interface ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Query {
8544
+ /**
8545
+ * @generated from protobuf field: string key = 1
8546
+ */
8547
+ key: string;
8548
+ /**
8549
+ * @generated from protobuf field: octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth.Query.Value value = 2
8550
+ */
8551
+ value?: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Query_Value;
8552
+ }
8553
+ /**
8554
+ * @generated from protobuf message octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth.Query.Value
8555
+ */
8556
+ export interface ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Query_Value {
8557
+ /**
8558
+ * @generated from protobuf oneof: type
8559
+ */
8560
+ type: {
8561
+ oneofKind: "fromSecret";
8562
+ /**
8563
+ * @generated from protobuf field: string fromSecret = 1
8564
+ */
8565
+ fromSecret: string;
8566
+ } | {
8567
+ oneofKind: undefined;
8568
+ };
8176
8569
  }
8177
8570
  /**
8178
8571
  * @generated from protobuf message octelium.api.main.core.v1.ClusterConfig.Status
@@ -8243,6 +8636,14 @@ export interface ClusterConfig_Status_NetworkConfig_V4 {
8243
8636
  * @generated from protobuf field: string clusterNetwork = 1
8244
8637
  */
8245
8638
  clusterNetwork: string;
8639
+ /**
8640
+ * @generated from protobuf field: uint32 gatewayBits = 2
8641
+ */
8642
+ gatewayBits: number;
8643
+ /**
8644
+ * @generated from protobuf field: uint32 regionBits = 3
8645
+ */
8646
+ regionBits: number;
8246
8647
  }
8247
8648
  /**
8248
8649
  * @generated from protobuf message octelium.api.main.core.v1.ClusterConfig.Status.NetworkConfig.V6
@@ -8466,6 +8867,12 @@ export interface RequestContext_Request {
8466
8867
  * @generated from protobuf field: octelium.api.main.core.v1.RequestContext.Request.DNS dns = 6
8467
8868
  */
8468
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;
8469
8876
  } | {
8470
8877
  oneofKind: undefined;
8471
8878
  };
@@ -8725,6 +9132,61 @@ export interface RequestContext_Request_DNS {
8725
9132
  */
8726
9133
  typeID: number;
8727
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
+ }
8728
9190
  /**
8729
9191
  * @generated from protobuf message octelium.api.main.core.v1.PolicyTrigger
8730
9192
  */
@@ -8849,6 +9311,30 @@ export interface PolicyTrigger_Status_PreCondition {
8849
9311
  * @generated from protobuf field: octelium.api.main.core.v1.PolicyTrigger.Status.PreCondition.All all = 8
8850
9312
  */
8851
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;
8852
9338
  } | {
8853
9339
  oneofKind: undefined;
8854
9340
  };
@@ -9239,6 +9725,10 @@ export interface Authenticator_Status_Info_FIDO {
9239
9725
  * @generated from protobuf field: bool isHardware = 10
9240
9726
  */
9241
9727
  isHardware: boolean;
9728
+ /**
9729
+ * @generated from protobuf field: uint32 signCount = 11
9730
+ */
9731
+ signCount: number;
9242
9732
  }
9243
9733
  /**
9244
9734
  * @generated from protobuf enum octelium.api.main.core.v1.Authenticator.Status.Info.FIDO.Type
@@ -9265,6 +9755,47 @@ export interface Authenticator_Status_Info_TOTP {
9265
9755
  * @generated from protobuf field: octelium.api.main.core.v1.Authenticator.Status.EncryptedData sharedSecret = 1
9266
9756
  */
9267
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
9268
9799
  }
9269
9800
  /**
9270
9801
  * @generated from protobuf message octelium.api.main.core.v1.Authenticator.Status.Info.TPM
@@ -9332,6 +9863,10 @@ export interface Authenticator_Status_AuthenticationAttempt {
9332
9863
  * @generated from protobuf field: octelium.api.main.meta.v1.ObjectReference sessionRef = 5
9333
9864
  */
9334
9865
  sessionRef?: ObjectReference;
9866
+ /**
9867
+ * @generated from protobuf field: google.protobuf.Timestamp completedAt = 6
9868
+ */
9869
+ completedAt?: Timestamp;
9335
9870
  }
9336
9871
  /**
9337
9872
  * @generated from protobuf enum octelium.api.main.core.v1.Authenticator.Status.Type
@@ -10348,6 +10883,86 @@ declare class Service_Spec_Config_Kubernetes_Kubeconfig$Type extends MessageType
10348
10883
  * @generated MessageType for protobuf message octelium.api.main.core.v1.Service.Spec.Config.Kubernetes.Kubeconfig
10349
10884
  */
10350
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;
10351
10966
  declare class Service_Spec_Config_Upstream$Type extends MessageType<Service_Spec_Config_Upstream> {
10352
10967
  constructor();
10353
10968
  create(value?: PartialMessage<Service_Spec_Config_Upstream>): Service_Spec_Config_Upstream;
@@ -11727,6 +12342,16 @@ declare class AccessLog_Entry_Info_DNS$Type extends MessageType<AccessLog_Entry_
11727
12342
  * @generated MessageType for protobuf message octelium.api.main.core.v1.AccessLog.Entry.Info.DNS
11728
12343
  */
11729
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;
11730
12355
  declare class AccessLog_Entry_Common$Type extends MessageType<AccessLog_Entry_Common> {
11731
12356
  constructor();
11732
12357
  create(value?: PartialMessage<AccessLog_Entry_Common>): AccessLog_Entry_Common;
@@ -12330,6 +12955,86 @@ declare class ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream$Type e
12330
12955
  * @generated MessageType for protobuf message octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream
12331
12956
  */
12332
12957
  export declare const ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream$Type;
12958
+ declare class ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth$Type extends MessageType<ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth> {
12959
+ constructor();
12960
+ create(value?: PartialMessage<ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth>): ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth;
12961
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth): ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth;
12962
+ internalBinaryWrite(message: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
12963
+ }
12964
+ /**
12965
+ * @generated MessageType for protobuf message octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth
12966
+ */
12967
+ export declare const ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth$Type;
12968
+ declare class ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Bearer$Type extends MessageType<ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Bearer> {
12969
+ constructor();
12970
+ create(value?: PartialMessage<ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Bearer>): ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Bearer;
12971
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Bearer): ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Bearer;
12972
+ internalBinaryWrite(message: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Bearer, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
12973
+ }
12974
+ /**
12975
+ * @generated MessageType for protobuf message octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth.Bearer
12976
+ */
12977
+ export declare const ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Bearer: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Bearer$Type;
12978
+ declare class ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Basic$Type extends MessageType<ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Basic> {
12979
+ constructor();
12980
+ create(value?: PartialMessage<ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Basic>): ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Basic;
12981
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Basic): ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Basic;
12982
+ internalBinaryWrite(message: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Basic, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
12983
+ }
12984
+ /**
12985
+ * @generated MessageType for protobuf message octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth.Basic
12986
+ */
12987
+ export declare const ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Basic: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Basic$Type;
12988
+ declare class ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Basic_Password$Type extends MessageType<ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Basic_Password> {
12989
+ constructor();
12990
+ create(value?: PartialMessage<ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Basic_Password>): ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Basic_Password;
12991
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Basic_Password): ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Basic_Password;
12992
+ internalBinaryWrite(message: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Basic_Password, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
12993
+ }
12994
+ /**
12995
+ * @generated MessageType for protobuf message octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth.Basic.Password
12996
+ */
12997
+ export declare const ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Basic_Password: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Basic_Password$Type;
12998
+ declare class ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Custom$Type extends MessageType<ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Custom> {
12999
+ constructor();
13000
+ create(value?: PartialMessage<ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Custom>): ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Custom;
13001
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Custom): ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Custom;
13002
+ internalBinaryWrite(message: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Custom, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
13003
+ }
13004
+ /**
13005
+ * @generated MessageType for protobuf message octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth.Custom
13006
+ */
13007
+ export declare const ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Custom: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Custom$Type;
13008
+ declare class ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Custom_Value$Type extends MessageType<ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Custom_Value> {
13009
+ constructor();
13010
+ create(value?: PartialMessage<ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Custom_Value>): ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Custom_Value;
13011
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Custom_Value): ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Custom_Value;
13012
+ internalBinaryWrite(message: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Custom_Value, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
13013
+ }
13014
+ /**
13015
+ * @generated MessageType for protobuf message octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth.Custom.Value
13016
+ */
13017
+ export declare const ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Custom_Value: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Custom_Value$Type;
13018
+ declare class ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Query$Type extends MessageType<ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Query> {
13019
+ constructor();
13020
+ create(value?: PartialMessage<ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Query>): ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Query;
13021
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Query): ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Query;
13022
+ internalBinaryWrite(message: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Query, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
13023
+ }
13024
+ /**
13025
+ * @generated MessageType for protobuf message octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth.Query
13026
+ */
13027
+ export declare const ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Query: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Query$Type;
13028
+ declare class ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Query_Value$Type extends MessageType<ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Query_Value> {
13029
+ constructor();
13030
+ create(value?: PartialMessage<ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Query_Value>): ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Query_Value;
13031
+ internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Query_Value): ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Query_Value;
13032
+ internalBinaryWrite(message: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Query_Value, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
13033
+ }
13034
+ /**
13035
+ * @generated MessageType for protobuf message octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth.Query.Value
13036
+ */
13037
+ export declare const ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Query_Value: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Query_Value$Type;
12333
13038
  declare class ClusterConfig_Status$Type extends MessageType<ClusterConfig_Status> {
12334
13039
  constructor();
12335
13040
  create(value?: PartialMessage<ClusterConfig_Status>): ClusterConfig_Status;
@@ -12542,6 +13247,26 @@ declare class RequestContext_Request_DNS$Type extends MessageType<RequestContext
12542
13247
  * @generated MessageType for protobuf message octelium.api.main.core.v1.RequestContext.Request.DNS
12543
13248
  */
12544
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;
12545
13270
  declare class PolicyTrigger$Type extends MessageType<PolicyTrigger> {
12546
13271
  constructor();
12547
13272
  create(value?: PartialMessage<PolicyTrigger>): PolicyTrigger;