@octelium/apis 1.0.1 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/main/corev1/corev1.d.ts +252 -0
- package/main/corev1/corev1.d.ts.map +1 -1
- package/main/corev1/corev1.js +476 -3
- package/main/corev1/corev1.js.map +1 -1
- package/main/corev1/corev1.ts +648 -3
- package/main/userv1/userv1.d.ts +4 -0
- package/main/userv1/userv1.d.ts.map +1 -1
- package/main/userv1/userv1.js +9 -1
- package/main/userv1/userv1.js.map +1 -1
- package/main/userv1/userv1.ts +13 -1
- package/package.json +39 -7
package/main/corev1/corev1.d.ts
CHANGED
|
@@ -8173,6 +8173,166 @@ export interface ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream {
|
|
|
8173
8173
|
* @generated from protobuf field: string url = 1
|
|
8174
8174
|
*/
|
|
8175
8175
|
url: string;
|
|
8176
|
+
/**
|
|
8177
|
+
* @generated from protobuf field: octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth auth = 2
|
|
8178
|
+
*/
|
|
8179
|
+
auth?: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth;
|
|
8180
|
+
}
|
|
8181
|
+
/**
|
|
8182
|
+
* @generated from protobuf message octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth
|
|
8183
|
+
*/
|
|
8184
|
+
export interface ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth {
|
|
8185
|
+
/**
|
|
8186
|
+
* @generated from protobuf oneof: type
|
|
8187
|
+
*/
|
|
8188
|
+
type: {
|
|
8189
|
+
oneofKind: "bearer";
|
|
8190
|
+
/**
|
|
8191
|
+
* Bearer sets bearer authentication details
|
|
8192
|
+
*
|
|
8193
|
+
* @generated from protobuf field: octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth.Bearer bearer = 1
|
|
8194
|
+
*/
|
|
8195
|
+
bearer: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Bearer;
|
|
8196
|
+
} | {
|
|
8197
|
+
oneofKind: "basic";
|
|
8198
|
+
/**
|
|
8199
|
+
* Basis sets basic authentication details
|
|
8200
|
+
*
|
|
8201
|
+
* @generated from protobuf field: octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth.Basic basic = 2
|
|
8202
|
+
*/
|
|
8203
|
+
basic: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Basic;
|
|
8204
|
+
} | {
|
|
8205
|
+
oneofKind: "custom";
|
|
8206
|
+
/**
|
|
8207
|
+
* Custom sets authentication inside custom header
|
|
8208
|
+
*
|
|
8209
|
+
* @generated from protobuf field: octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth.Custom custom = 3
|
|
8210
|
+
*/
|
|
8211
|
+
custom: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Custom;
|
|
8212
|
+
} | {
|
|
8213
|
+
oneofKind: "query";
|
|
8214
|
+
/**
|
|
8215
|
+
* @generated from protobuf field: octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth.Query query = 4
|
|
8216
|
+
*/
|
|
8217
|
+
query: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Query;
|
|
8218
|
+
} | {
|
|
8219
|
+
oneofKind: undefined;
|
|
8220
|
+
};
|
|
8221
|
+
}
|
|
8222
|
+
/**
|
|
8223
|
+
* @generated from protobuf message octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth.Bearer
|
|
8224
|
+
*/
|
|
8225
|
+
export interface ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Bearer {
|
|
8226
|
+
/**
|
|
8227
|
+
* @generated from protobuf oneof: type
|
|
8228
|
+
*/
|
|
8229
|
+
type: {
|
|
8230
|
+
oneofKind: "fromSecret";
|
|
8231
|
+
/**
|
|
8232
|
+
* @generated from protobuf field: string fromSecret = 1
|
|
8233
|
+
*/
|
|
8234
|
+
fromSecret: string;
|
|
8235
|
+
} | {
|
|
8236
|
+
oneofKind: undefined;
|
|
8237
|
+
};
|
|
8238
|
+
}
|
|
8239
|
+
/**
|
|
8240
|
+
* @generated from protobuf message octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth.Basic
|
|
8241
|
+
*/
|
|
8242
|
+
export interface ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Basic {
|
|
8243
|
+
/**
|
|
8244
|
+
* Username is the username value of HTTP basic authentication
|
|
8245
|
+
*
|
|
8246
|
+
* @generated from protobuf field: string username = 1
|
|
8247
|
+
*/
|
|
8248
|
+
username: string;
|
|
8249
|
+
/**
|
|
8250
|
+
* Password is the password value of HTTP basic authentication
|
|
8251
|
+
*
|
|
8252
|
+
* @generated from protobuf field: octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth.Basic.Password password = 2
|
|
8253
|
+
*/
|
|
8254
|
+
password?: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Basic_Password;
|
|
8255
|
+
}
|
|
8256
|
+
/**
|
|
8257
|
+
* @generated from protobuf message octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth.Basic.Password
|
|
8258
|
+
*/
|
|
8259
|
+
export interface ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Basic_Password {
|
|
8260
|
+
/**
|
|
8261
|
+
* @generated from protobuf oneof: type
|
|
8262
|
+
*/
|
|
8263
|
+
type: {
|
|
8264
|
+
oneofKind: "fromSecret";
|
|
8265
|
+
/**
|
|
8266
|
+
* @generated from protobuf field: string fromSecret = 1
|
|
8267
|
+
*/
|
|
8268
|
+
fromSecret: string;
|
|
8269
|
+
} | {
|
|
8270
|
+
oneofKind: undefined;
|
|
8271
|
+
};
|
|
8272
|
+
}
|
|
8273
|
+
/**
|
|
8274
|
+
* @generated from protobuf message octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth.Custom
|
|
8275
|
+
*/
|
|
8276
|
+
export interface ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Custom {
|
|
8277
|
+
/**
|
|
8278
|
+
* Header is the name of the HTTP header (e.g. "X-Custom-Auth")
|
|
8279
|
+
*
|
|
8280
|
+
* @generated from protobuf field: string header = 1
|
|
8281
|
+
*/
|
|
8282
|
+
header: string;
|
|
8283
|
+
/**
|
|
8284
|
+
* Value is the value of the header
|
|
8285
|
+
*
|
|
8286
|
+
* @generated from protobuf field: octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth.Custom.Value value = 2
|
|
8287
|
+
*/
|
|
8288
|
+
value?: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Custom_Value;
|
|
8289
|
+
}
|
|
8290
|
+
/**
|
|
8291
|
+
* @generated from protobuf message octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth.Custom.Value
|
|
8292
|
+
*/
|
|
8293
|
+
export interface ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Custom_Value {
|
|
8294
|
+
/**
|
|
8295
|
+
* @generated from protobuf oneof: type
|
|
8296
|
+
*/
|
|
8297
|
+
type: {
|
|
8298
|
+
oneofKind: "fromSecret";
|
|
8299
|
+
/**
|
|
8300
|
+
* @generated from protobuf field: string fromSecret = 1
|
|
8301
|
+
*/
|
|
8302
|
+
fromSecret: string;
|
|
8303
|
+
} | {
|
|
8304
|
+
oneofKind: undefined;
|
|
8305
|
+
};
|
|
8306
|
+
}
|
|
8307
|
+
/**
|
|
8308
|
+
* @generated from protobuf message octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth.Query
|
|
8309
|
+
*/
|
|
8310
|
+
export interface ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Query {
|
|
8311
|
+
/**
|
|
8312
|
+
* @generated from protobuf field: string key = 1
|
|
8313
|
+
*/
|
|
8314
|
+
key: string;
|
|
8315
|
+
/**
|
|
8316
|
+
* @generated from protobuf field: octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth.Query.Value value = 2
|
|
8317
|
+
*/
|
|
8318
|
+
value?: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Query_Value;
|
|
8319
|
+
}
|
|
8320
|
+
/**
|
|
8321
|
+
* @generated from protobuf message octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth.Query.Value
|
|
8322
|
+
*/
|
|
8323
|
+
export interface ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Query_Value {
|
|
8324
|
+
/**
|
|
8325
|
+
* @generated from protobuf oneof: type
|
|
8326
|
+
*/
|
|
8327
|
+
type: {
|
|
8328
|
+
oneofKind: "fromSecret";
|
|
8329
|
+
/**
|
|
8330
|
+
* @generated from protobuf field: string fromSecret = 1
|
|
8331
|
+
*/
|
|
8332
|
+
fromSecret: string;
|
|
8333
|
+
} | {
|
|
8334
|
+
oneofKind: undefined;
|
|
8335
|
+
};
|
|
8176
8336
|
}
|
|
8177
8337
|
/**
|
|
8178
8338
|
* @generated from protobuf message octelium.api.main.core.v1.ClusterConfig.Status
|
|
@@ -8243,6 +8403,14 @@ export interface ClusterConfig_Status_NetworkConfig_V4 {
|
|
|
8243
8403
|
* @generated from protobuf field: string clusterNetwork = 1
|
|
8244
8404
|
*/
|
|
8245
8405
|
clusterNetwork: string;
|
|
8406
|
+
/**
|
|
8407
|
+
* @generated from protobuf field: uint32 gatewayBits = 2
|
|
8408
|
+
*/
|
|
8409
|
+
gatewayBits: number;
|
|
8410
|
+
/**
|
|
8411
|
+
* @generated from protobuf field: uint32 regionBits = 3
|
|
8412
|
+
*/
|
|
8413
|
+
regionBits: number;
|
|
8246
8414
|
}
|
|
8247
8415
|
/**
|
|
8248
8416
|
* @generated from protobuf message octelium.api.main.core.v1.ClusterConfig.Status.NetworkConfig.V6
|
|
@@ -9239,6 +9407,10 @@ export interface Authenticator_Status_Info_FIDO {
|
|
|
9239
9407
|
* @generated from protobuf field: bool isHardware = 10
|
|
9240
9408
|
*/
|
|
9241
9409
|
isHardware: boolean;
|
|
9410
|
+
/**
|
|
9411
|
+
* @generated from protobuf field: uint32 signCount = 11
|
|
9412
|
+
*/
|
|
9413
|
+
signCount: number;
|
|
9242
9414
|
}
|
|
9243
9415
|
/**
|
|
9244
9416
|
* @generated from protobuf enum octelium.api.main.core.v1.Authenticator.Status.Info.FIDO.Type
|
|
@@ -12330,6 +12502,86 @@ declare class ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream$Type e
|
|
|
12330
12502
|
* @generated MessageType for protobuf message octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream
|
|
12331
12503
|
*/
|
|
12332
12504
|
export declare const ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream$Type;
|
|
12505
|
+
declare class ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth$Type extends MessageType<ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth> {
|
|
12506
|
+
constructor();
|
|
12507
|
+
create(value?: PartialMessage<ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth>): ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth;
|
|
12508
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth): ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth;
|
|
12509
|
+
internalBinaryWrite(message: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
12510
|
+
}
|
|
12511
|
+
/**
|
|
12512
|
+
* @generated MessageType for protobuf message octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth
|
|
12513
|
+
*/
|
|
12514
|
+
export declare const ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth$Type;
|
|
12515
|
+
declare class ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Bearer$Type extends MessageType<ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Bearer> {
|
|
12516
|
+
constructor();
|
|
12517
|
+
create(value?: PartialMessage<ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Bearer>): ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Bearer;
|
|
12518
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Bearer): ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Bearer;
|
|
12519
|
+
internalBinaryWrite(message: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Bearer, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
12520
|
+
}
|
|
12521
|
+
/**
|
|
12522
|
+
* @generated MessageType for protobuf message octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth.Bearer
|
|
12523
|
+
*/
|
|
12524
|
+
export declare const ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Bearer: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Bearer$Type;
|
|
12525
|
+
declare class ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Basic$Type extends MessageType<ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Basic> {
|
|
12526
|
+
constructor();
|
|
12527
|
+
create(value?: PartialMessage<ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Basic>): ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Basic;
|
|
12528
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Basic): ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Basic;
|
|
12529
|
+
internalBinaryWrite(message: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Basic, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
12530
|
+
}
|
|
12531
|
+
/**
|
|
12532
|
+
* @generated MessageType for protobuf message octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth.Basic
|
|
12533
|
+
*/
|
|
12534
|
+
export declare const ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Basic: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Basic$Type;
|
|
12535
|
+
declare class ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Basic_Password$Type extends MessageType<ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Basic_Password> {
|
|
12536
|
+
constructor();
|
|
12537
|
+
create(value?: PartialMessage<ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Basic_Password>): ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Basic_Password;
|
|
12538
|
+
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;
|
|
12539
|
+
internalBinaryWrite(message: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Basic_Password, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
12540
|
+
}
|
|
12541
|
+
/**
|
|
12542
|
+
* @generated MessageType for protobuf message octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth.Basic.Password
|
|
12543
|
+
*/
|
|
12544
|
+
export declare const ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Basic_Password: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Basic_Password$Type;
|
|
12545
|
+
declare class ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Custom$Type extends MessageType<ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Custom> {
|
|
12546
|
+
constructor();
|
|
12547
|
+
create(value?: PartialMessage<ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Custom>): ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Custom;
|
|
12548
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Custom): ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Custom;
|
|
12549
|
+
internalBinaryWrite(message: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Custom, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
12550
|
+
}
|
|
12551
|
+
/**
|
|
12552
|
+
* @generated MessageType for protobuf message octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth.Custom
|
|
12553
|
+
*/
|
|
12554
|
+
export declare const ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Custom: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Custom$Type;
|
|
12555
|
+
declare class ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Custom_Value$Type extends MessageType<ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Custom_Value> {
|
|
12556
|
+
constructor();
|
|
12557
|
+
create(value?: PartialMessage<ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Custom_Value>): ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Custom_Value;
|
|
12558
|
+
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;
|
|
12559
|
+
internalBinaryWrite(message: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Custom_Value, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
12560
|
+
}
|
|
12561
|
+
/**
|
|
12562
|
+
* @generated MessageType for protobuf message octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth.Custom.Value
|
|
12563
|
+
*/
|
|
12564
|
+
export declare const ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Custom_Value: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Custom_Value$Type;
|
|
12565
|
+
declare class ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Query$Type extends MessageType<ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Query> {
|
|
12566
|
+
constructor();
|
|
12567
|
+
create(value?: PartialMessage<ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Query>): ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Query;
|
|
12568
|
+
internalBinaryRead(reader: IBinaryReader, length: number, options: BinaryReadOptions, target?: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Query): ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Query;
|
|
12569
|
+
internalBinaryWrite(message: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Query, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
12570
|
+
}
|
|
12571
|
+
/**
|
|
12572
|
+
* @generated MessageType for protobuf message octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth.Query
|
|
12573
|
+
*/
|
|
12574
|
+
export declare const ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Query: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Query$Type;
|
|
12575
|
+
declare class ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Query_Value$Type extends MessageType<ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Query_Value> {
|
|
12576
|
+
constructor();
|
|
12577
|
+
create(value?: PartialMessage<ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Query_Value>): ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Query_Value;
|
|
12578
|
+
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;
|
|
12579
|
+
internalBinaryWrite(message: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Query_Value, writer: IBinaryWriter, options: BinaryWriteOptions): IBinaryWriter;
|
|
12580
|
+
}
|
|
12581
|
+
/**
|
|
12582
|
+
* @generated MessageType for protobuf message octelium.api.main.core.v1.ClusterConfig.Spec.Authentication.Geolocation.MMDB.Upstream.Auth.Query.Value
|
|
12583
|
+
*/
|
|
12584
|
+
export declare const ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Query_Value: ClusterConfig_Spec_Authentication_Geolocation_MMDB_Upstream_Auth_Query_Value$Type;
|
|
12333
12585
|
declare class ClusterConfig_Status$Type extends MessageType<ClusterConfig_Status> {
|
|
12334
12586
|
constructor();
|
|
12335
12587
|
create(value?: PartialMessage<ClusterConfig_Status>): ClusterConfig_Status;
|