@google-cloud/vectorsearch 0.1.0 → 0.2.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,4 +1,4 @@
1
- // Copyright 2025 Google LLC
1
+ // Copyright 2026 Google LLC
2
2
  //
3
3
  // Licensed under the Apache License, Version 2.0 (the "License");
4
4
  // you may not use this file except in compliance with the License.
@@ -1175,6 +1175,9 @@ export namespace google {
1175
1175
 
1176
1176
  /** SemanticSearch topK */
1177
1177
  topK?: (number|null);
1178
+
1179
+ /** SemanticSearch searchHint */
1180
+ searchHint?: (google.cloud.vectorsearch.v1beta.ISearchHint|null);
1178
1181
  }
1179
1182
 
1180
1183
  /** Represents a SemanticSearch. */
@@ -1204,6 +1207,9 @@ export namespace google {
1204
1207
  /** SemanticSearch topK. */
1205
1208
  public topK?: (number|null);
1206
1209
 
1210
+ /** SemanticSearch searchHint. */
1211
+ public searchHint?: (google.cloud.vectorsearch.v1beta.ISearchHint|null);
1212
+
1207
1213
  /**
1208
1214
  * Creates a new SemanticSearch instance using the specified properties.
1209
1215
  * @param [properties] Properties to set
@@ -1296,6 +1302,9 @@ export namespace google {
1296
1302
 
1297
1303
  /** TextSearch topK */
1298
1304
  topK?: (number|null);
1305
+
1306
+ /** TextSearch filter */
1307
+ filter?: (google.protobuf.IStruct|null);
1299
1308
  }
1300
1309
 
1301
1310
  /** Represents a TextSearch. */
@@ -1319,6 +1328,9 @@ export namespace google {
1319
1328
  /** TextSearch topK. */
1320
1329
  public topK?: (number|null);
1321
1330
 
1331
+ /** TextSearch filter. */
1332
+ public filter?: (google.protobuf.IStruct|null);
1333
+
1322
1334
  /**
1323
1335
  * Creates a new TextSearch instance using the specified properties.
1324
1336
  * @param [properties] Properties to set
@@ -4366,6 +4378,20 @@ export namespace google {
4366
4378
  * @returns Promise
4367
4379
  */
4368
4380
  public importDataObjects(request: google.cloud.vectorsearch.v1beta.IImportDataObjectsRequest): Promise<google.longrunning.Operation>;
4381
+
4382
+ /**
4383
+ * Calls ExportDataObjects.
4384
+ * @param request ExportDataObjectsRequest message or plain object
4385
+ * @param callback Node-style callback called with the error, if any, and Operation
4386
+ */
4387
+ public exportDataObjects(request: google.cloud.vectorsearch.v1beta.IExportDataObjectsRequest, callback: google.cloud.vectorsearch.v1beta.VectorSearchService.ExportDataObjectsCallback): void;
4388
+
4389
+ /**
4390
+ * Calls ExportDataObjects.
4391
+ * @param request ExportDataObjectsRequest message or plain object
4392
+ * @returns Promise
4393
+ */
4394
+ public exportDataObjects(request: google.cloud.vectorsearch.v1beta.IExportDataObjectsRequest): Promise<google.longrunning.Operation>;
4369
4395
  }
4370
4396
 
4371
4397
  namespace VectorSearchService {
@@ -4439,6 +4465,13 @@ export namespace google {
4439
4465
  * @param [response] Operation
4440
4466
  */
4441
4467
  type ImportDataObjectsCallback = (error: (Error|null), response?: google.longrunning.Operation) => void;
4468
+
4469
+ /**
4470
+ * Callback as used by {@link google.cloud.vectorsearch.v1beta.VectorSearchService|exportDataObjects}.
4471
+ * @param error Error, if any
4472
+ * @param [response] Operation
4473
+ */
4474
+ type ExportDataObjectsCallback = (error: (Error|null), response?: google.longrunning.Operation) => void;
4442
4475
  }
4443
4476
 
4444
4477
  /** Properties of a Collection. */
@@ -6479,6 +6512,9 @@ export namespace google {
6479
6512
 
6480
6513
  /** GcsImportConfig errorUri */
6481
6514
  errorUri?: (string|null);
6515
+
6516
+ /** GcsImportConfig outputUri */
6517
+ outputUri?: (string|null);
6482
6518
  }
6483
6519
 
6484
6520
  /** Represents a GcsImportConfig. */
@@ -6496,6 +6532,9 @@ export namespace google {
6496
6532
  /** GcsImportConfig errorUri. */
6497
6533
  public errorUri: string;
6498
6534
 
6535
+ /** GcsImportConfig outputUri. */
6536
+ public outputUri: string;
6537
+
6499
6538
  /**
6500
6539
  * Creates a new GcsImportConfig instance using the specified properties.
6501
6540
  * @param [properties] Properties to set
@@ -6786,6 +6825,421 @@ export namespace google {
6786
6825
  */
6787
6826
  public static getTypeUrl(typeUrlPrefix?: string): string;
6788
6827
  }
6828
+
6829
+ /** Properties of an ExportDataObjectsRequest. */
6830
+ interface IExportDataObjectsRequest {
6831
+
6832
+ /** ExportDataObjectsRequest gcsDestination */
6833
+ gcsDestination?: (google.cloud.vectorsearch.v1beta.ExportDataObjectsRequest.IGcsExportDestination|null);
6834
+
6835
+ /** ExportDataObjectsRequest name */
6836
+ name?: (string|null);
6837
+ }
6838
+
6839
+ /** Represents an ExportDataObjectsRequest. */
6840
+ class ExportDataObjectsRequest implements IExportDataObjectsRequest {
6841
+
6842
+ /**
6843
+ * Constructs a new ExportDataObjectsRequest.
6844
+ * @param [properties] Properties to set
6845
+ */
6846
+ constructor(properties?: google.cloud.vectorsearch.v1beta.IExportDataObjectsRequest);
6847
+
6848
+ /** ExportDataObjectsRequest gcsDestination. */
6849
+ public gcsDestination?: (google.cloud.vectorsearch.v1beta.ExportDataObjectsRequest.IGcsExportDestination|null);
6850
+
6851
+ /** ExportDataObjectsRequest name. */
6852
+ public name: string;
6853
+
6854
+ /** ExportDataObjectsRequest destination. */
6855
+ public destination?: "gcsDestination";
6856
+
6857
+ /**
6858
+ * Creates a new ExportDataObjectsRequest instance using the specified properties.
6859
+ * @param [properties] Properties to set
6860
+ * @returns ExportDataObjectsRequest instance
6861
+ */
6862
+ public static create(properties?: google.cloud.vectorsearch.v1beta.IExportDataObjectsRequest): google.cloud.vectorsearch.v1beta.ExportDataObjectsRequest;
6863
+
6864
+ /**
6865
+ * Encodes the specified ExportDataObjectsRequest message. Does not implicitly {@link google.cloud.vectorsearch.v1beta.ExportDataObjectsRequest.verify|verify} messages.
6866
+ * @param message ExportDataObjectsRequest message or plain object to encode
6867
+ * @param [writer] Writer to encode to
6868
+ * @returns Writer
6869
+ */
6870
+ public static encode(message: google.cloud.vectorsearch.v1beta.IExportDataObjectsRequest, writer?: $protobuf.Writer): $protobuf.Writer;
6871
+
6872
+ /**
6873
+ * Encodes the specified ExportDataObjectsRequest message, length delimited. Does not implicitly {@link google.cloud.vectorsearch.v1beta.ExportDataObjectsRequest.verify|verify} messages.
6874
+ * @param message ExportDataObjectsRequest message or plain object to encode
6875
+ * @param [writer] Writer to encode to
6876
+ * @returns Writer
6877
+ */
6878
+ public static encodeDelimited(message: google.cloud.vectorsearch.v1beta.IExportDataObjectsRequest, writer?: $protobuf.Writer): $protobuf.Writer;
6879
+
6880
+ /**
6881
+ * Decodes an ExportDataObjectsRequest message from the specified reader or buffer.
6882
+ * @param reader Reader or buffer to decode from
6883
+ * @param [length] Message length if known beforehand
6884
+ * @returns ExportDataObjectsRequest
6885
+ * @throws {Error} If the payload is not a reader or valid buffer
6886
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6887
+ */
6888
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.cloud.vectorsearch.v1beta.ExportDataObjectsRequest;
6889
+
6890
+ /**
6891
+ * Decodes an ExportDataObjectsRequest message from the specified reader or buffer, length delimited.
6892
+ * @param reader Reader or buffer to decode from
6893
+ * @returns ExportDataObjectsRequest
6894
+ * @throws {Error} If the payload is not a reader or valid buffer
6895
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6896
+ */
6897
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.cloud.vectorsearch.v1beta.ExportDataObjectsRequest;
6898
+
6899
+ /**
6900
+ * Verifies an ExportDataObjectsRequest message.
6901
+ * @param message Plain object to verify
6902
+ * @returns `null` if valid, otherwise the reason why it is not
6903
+ */
6904
+ public static verify(message: { [k: string]: any }): (string|null);
6905
+
6906
+ /**
6907
+ * Creates an ExportDataObjectsRequest message from a plain object. Also converts values to their respective internal types.
6908
+ * @param object Plain object
6909
+ * @returns ExportDataObjectsRequest
6910
+ */
6911
+ public static fromObject(object: { [k: string]: any }): google.cloud.vectorsearch.v1beta.ExportDataObjectsRequest;
6912
+
6913
+ /**
6914
+ * Creates a plain object from an ExportDataObjectsRequest message. Also converts values to other types if specified.
6915
+ * @param message ExportDataObjectsRequest
6916
+ * @param [options] Conversion options
6917
+ * @returns Plain object
6918
+ */
6919
+ public static toObject(message: google.cloud.vectorsearch.v1beta.ExportDataObjectsRequest, options?: $protobuf.IConversionOptions): { [k: string]: any };
6920
+
6921
+ /**
6922
+ * Converts this ExportDataObjectsRequest to JSON.
6923
+ * @returns JSON object
6924
+ */
6925
+ public toJSON(): { [k: string]: any };
6926
+
6927
+ /**
6928
+ * Gets the default type url for ExportDataObjectsRequest
6929
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
6930
+ * @returns The default type url
6931
+ */
6932
+ public static getTypeUrl(typeUrlPrefix?: string): string;
6933
+ }
6934
+
6935
+ namespace ExportDataObjectsRequest {
6936
+
6937
+ /** Properties of a GcsExportDestination. */
6938
+ interface IGcsExportDestination {
6939
+
6940
+ /** GcsExportDestination exportUri */
6941
+ exportUri?: (string|null);
6942
+
6943
+ /** GcsExportDestination format */
6944
+ format?: (google.cloud.vectorsearch.v1beta.ExportDataObjectsRequest.GcsExportDestination.Format|keyof typeof google.cloud.vectorsearch.v1beta.ExportDataObjectsRequest.GcsExportDestination.Format|null);
6945
+ }
6946
+
6947
+ /** Represents a GcsExportDestination. */
6948
+ class GcsExportDestination implements IGcsExportDestination {
6949
+
6950
+ /**
6951
+ * Constructs a new GcsExportDestination.
6952
+ * @param [properties] Properties to set
6953
+ */
6954
+ constructor(properties?: google.cloud.vectorsearch.v1beta.ExportDataObjectsRequest.IGcsExportDestination);
6955
+
6956
+ /** GcsExportDestination exportUri. */
6957
+ public exportUri: string;
6958
+
6959
+ /** GcsExportDestination format. */
6960
+ public format: (google.cloud.vectorsearch.v1beta.ExportDataObjectsRequest.GcsExportDestination.Format|keyof typeof google.cloud.vectorsearch.v1beta.ExportDataObjectsRequest.GcsExportDestination.Format);
6961
+
6962
+ /**
6963
+ * Creates a new GcsExportDestination instance using the specified properties.
6964
+ * @param [properties] Properties to set
6965
+ * @returns GcsExportDestination instance
6966
+ */
6967
+ public static create(properties?: google.cloud.vectorsearch.v1beta.ExportDataObjectsRequest.IGcsExportDestination): google.cloud.vectorsearch.v1beta.ExportDataObjectsRequest.GcsExportDestination;
6968
+
6969
+ /**
6970
+ * Encodes the specified GcsExportDestination message. Does not implicitly {@link google.cloud.vectorsearch.v1beta.ExportDataObjectsRequest.GcsExportDestination.verify|verify} messages.
6971
+ * @param message GcsExportDestination message or plain object to encode
6972
+ * @param [writer] Writer to encode to
6973
+ * @returns Writer
6974
+ */
6975
+ public static encode(message: google.cloud.vectorsearch.v1beta.ExportDataObjectsRequest.IGcsExportDestination, writer?: $protobuf.Writer): $protobuf.Writer;
6976
+
6977
+ /**
6978
+ * Encodes the specified GcsExportDestination message, length delimited. Does not implicitly {@link google.cloud.vectorsearch.v1beta.ExportDataObjectsRequest.GcsExportDestination.verify|verify} messages.
6979
+ * @param message GcsExportDestination message or plain object to encode
6980
+ * @param [writer] Writer to encode to
6981
+ * @returns Writer
6982
+ */
6983
+ public static encodeDelimited(message: google.cloud.vectorsearch.v1beta.ExportDataObjectsRequest.IGcsExportDestination, writer?: $protobuf.Writer): $protobuf.Writer;
6984
+
6985
+ /**
6986
+ * Decodes a GcsExportDestination message from the specified reader or buffer.
6987
+ * @param reader Reader or buffer to decode from
6988
+ * @param [length] Message length if known beforehand
6989
+ * @returns GcsExportDestination
6990
+ * @throws {Error} If the payload is not a reader or valid buffer
6991
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
6992
+ */
6993
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.cloud.vectorsearch.v1beta.ExportDataObjectsRequest.GcsExportDestination;
6994
+
6995
+ /**
6996
+ * Decodes a GcsExportDestination message from the specified reader or buffer, length delimited.
6997
+ * @param reader Reader or buffer to decode from
6998
+ * @returns GcsExportDestination
6999
+ * @throws {Error} If the payload is not a reader or valid buffer
7000
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
7001
+ */
7002
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.cloud.vectorsearch.v1beta.ExportDataObjectsRequest.GcsExportDestination;
7003
+
7004
+ /**
7005
+ * Verifies a GcsExportDestination message.
7006
+ * @param message Plain object to verify
7007
+ * @returns `null` if valid, otherwise the reason why it is not
7008
+ */
7009
+ public static verify(message: { [k: string]: any }): (string|null);
7010
+
7011
+ /**
7012
+ * Creates a GcsExportDestination message from a plain object. Also converts values to their respective internal types.
7013
+ * @param object Plain object
7014
+ * @returns GcsExportDestination
7015
+ */
7016
+ public static fromObject(object: { [k: string]: any }): google.cloud.vectorsearch.v1beta.ExportDataObjectsRequest.GcsExportDestination;
7017
+
7018
+ /**
7019
+ * Creates a plain object from a GcsExportDestination message. Also converts values to other types if specified.
7020
+ * @param message GcsExportDestination
7021
+ * @param [options] Conversion options
7022
+ * @returns Plain object
7023
+ */
7024
+ public static toObject(message: google.cloud.vectorsearch.v1beta.ExportDataObjectsRequest.GcsExportDestination, options?: $protobuf.IConversionOptions): { [k: string]: any };
7025
+
7026
+ /**
7027
+ * Converts this GcsExportDestination to JSON.
7028
+ * @returns JSON object
7029
+ */
7030
+ public toJSON(): { [k: string]: any };
7031
+
7032
+ /**
7033
+ * Gets the default type url for GcsExportDestination
7034
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
7035
+ * @returns The default type url
7036
+ */
7037
+ public static getTypeUrl(typeUrlPrefix?: string): string;
7038
+ }
7039
+
7040
+ namespace GcsExportDestination {
7041
+
7042
+ /** Format enum. */
7043
+ enum Format {
7044
+ FORMAT_UNSPECIFIED = 0,
7045
+ JSON = 1
7046
+ }
7047
+ }
7048
+ }
7049
+
7050
+ /** Properties of an ExportDataObjectsMetadata. */
7051
+ interface IExportDataObjectsMetadata {
7052
+
7053
+ /** ExportDataObjectsMetadata createTime */
7054
+ createTime?: (google.protobuf.ITimestamp|null);
7055
+
7056
+ /** ExportDataObjectsMetadata finishTime */
7057
+ finishTime?: (google.protobuf.ITimestamp|null);
7058
+ }
7059
+
7060
+ /** Represents an ExportDataObjectsMetadata. */
7061
+ class ExportDataObjectsMetadata implements IExportDataObjectsMetadata {
7062
+
7063
+ /**
7064
+ * Constructs a new ExportDataObjectsMetadata.
7065
+ * @param [properties] Properties to set
7066
+ */
7067
+ constructor(properties?: google.cloud.vectorsearch.v1beta.IExportDataObjectsMetadata);
7068
+
7069
+ /** ExportDataObjectsMetadata createTime. */
7070
+ public createTime?: (google.protobuf.ITimestamp|null);
7071
+
7072
+ /** ExportDataObjectsMetadata finishTime. */
7073
+ public finishTime?: (google.protobuf.ITimestamp|null);
7074
+
7075
+ /**
7076
+ * Creates a new ExportDataObjectsMetadata instance using the specified properties.
7077
+ * @param [properties] Properties to set
7078
+ * @returns ExportDataObjectsMetadata instance
7079
+ */
7080
+ public static create(properties?: google.cloud.vectorsearch.v1beta.IExportDataObjectsMetadata): google.cloud.vectorsearch.v1beta.ExportDataObjectsMetadata;
7081
+
7082
+ /**
7083
+ * Encodes the specified ExportDataObjectsMetadata message. Does not implicitly {@link google.cloud.vectorsearch.v1beta.ExportDataObjectsMetadata.verify|verify} messages.
7084
+ * @param message ExportDataObjectsMetadata message or plain object to encode
7085
+ * @param [writer] Writer to encode to
7086
+ * @returns Writer
7087
+ */
7088
+ public static encode(message: google.cloud.vectorsearch.v1beta.IExportDataObjectsMetadata, writer?: $protobuf.Writer): $protobuf.Writer;
7089
+
7090
+ /**
7091
+ * Encodes the specified ExportDataObjectsMetadata message, length delimited. Does not implicitly {@link google.cloud.vectorsearch.v1beta.ExportDataObjectsMetadata.verify|verify} messages.
7092
+ * @param message ExportDataObjectsMetadata message or plain object to encode
7093
+ * @param [writer] Writer to encode to
7094
+ * @returns Writer
7095
+ */
7096
+ public static encodeDelimited(message: google.cloud.vectorsearch.v1beta.IExportDataObjectsMetadata, writer?: $protobuf.Writer): $protobuf.Writer;
7097
+
7098
+ /**
7099
+ * Decodes an ExportDataObjectsMetadata message from the specified reader or buffer.
7100
+ * @param reader Reader or buffer to decode from
7101
+ * @param [length] Message length if known beforehand
7102
+ * @returns ExportDataObjectsMetadata
7103
+ * @throws {Error} If the payload is not a reader or valid buffer
7104
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
7105
+ */
7106
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.cloud.vectorsearch.v1beta.ExportDataObjectsMetadata;
7107
+
7108
+ /**
7109
+ * Decodes an ExportDataObjectsMetadata message from the specified reader or buffer, length delimited.
7110
+ * @param reader Reader or buffer to decode from
7111
+ * @returns ExportDataObjectsMetadata
7112
+ * @throws {Error} If the payload is not a reader or valid buffer
7113
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
7114
+ */
7115
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.cloud.vectorsearch.v1beta.ExportDataObjectsMetadata;
7116
+
7117
+ /**
7118
+ * Verifies an ExportDataObjectsMetadata message.
7119
+ * @param message Plain object to verify
7120
+ * @returns `null` if valid, otherwise the reason why it is not
7121
+ */
7122
+ public static verify(message: { [k: string]: any }): (string|null);
7123
+
7124
+ /**
7125
+ * Creates an ExportDataObjectsMetadata message from a plain object. Also converts values to their respective internal types.
7126
+ * @param object Plain object
7127
+ * @returns ExportDataObjectsMetadata
7128
+ */
7129
+ public static fromObject(object: { [k: string]: any }): google.cloud.vectorsearch.v1beta.ExportDataObjectsMetadata;
7130
+
7131
+ /**
7132
+ * Creates a plain object from an ExportDataObjectsMetadata message. Also converts values to other types if specified.
7133
+ * @param message ExportDataObjectsMetadata
7134
+ * @param [options] Conversion options
7135
+ * @returns Plain object
7136
+ */
7137
+ public static toObject(message: google.cloud.vectorsearch.v1beta.ExportDataObjectsMetadata, options?: $protobuf.IConversionOptions): { [k: string]: any };
7138
+
7139
+ /**
7140
+ * Converts this ExportDataObjectsMetadata to JSON.
7141
+ * @returns JSON object
7142
+ */
7143
+ public toJSON(): { [k: string]: any };
7144
+
7145
+ /**
7146
+ * Gets the default type url for ExportDataObjectsMetadata
7147
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
7148
+ * @returns The default type url
7149
+ */
7150
+ public static getTypeUrl(typeUrlPrefix?: string): string;
7151
+ }
7152
+
7153
+ /** Properties of an ExportDataObjectsResponse. */
7154
+ interface IExportDataObjectsResponse {
7155
+ }
7156
+
7157
+ /** Represents an ExportDataObjectsResponse. */
7158
+ class ExportDataObjectsResponse implements IExportDataObjectsResponse {
7159
+
7160
+ /**
7161
+ * Constructs a new ExportDataObjectsResponse.
7162
+ * @param [properties] Properties to set
7163
+ */
7164
+ constructor(properties?: google.cloud.vectorsearch.v1beta.IExportDataObjectsResponse);
7165
+
7166
+ /**
7167
+ * Creates a new ExportDataObjectsResponse instance using the specified properties.
7168
+ * @param [properties] Properties to set
7169
+ * @returns ExportDataObjectsResponse instance
7170
+ */
7171
+ public static create(properties?: google.cloud.vectorsearch.v1beta.IExportDataObjectsResponse): google.cloud.vectorsearch.v1beta.ExportDataObjectsResponse;
7172
+
7173
+ /**
7174
+ * Encodes the specified ExportDataObjectsResponse message. Does not implicitly {@link google.cloud.vectorsearch.v1beta.ExportDataObjectsResponse.verify|verify} messages.
7175
+ * @param message ExportDataObjectsResponse message or plain object to encode
7176
+ * @param [writer] Writer to encode to
7177
+ * @returns Writer
7178
+ */
7179
+ public static encode(message: google.cloud.vectorsearch.v1beta.IExportDataObjectsResponse, writer?: $protobuf.Writer): $protobuf.Writer;
7180
+
7181
+ /**
7182
+ * Encodes the specified ExportDataObjectsResponse message, length delimited. Does not implicitly {@link google.cloud.vectorsearch.v1beta.ExportDataObjectsResponse.verify|verify} messages.
7183
+ * @param message ExportDataObjectsResponse message or plain object to encode
7184
+ * @param [writer] Writer to encode to
7185
+ * @returns Writer
7186
+ */
7187
+ public static encodeDelimited(message: google.cloud.vectorsearch.v1beta.IExportDataObjectsResponse, writer?: $protobuf.Writer): $protobuf.Writer;
7188
+
7189
+ /**
7190
+ * Decodes an ExportDataObjectsResponse message from the specified reader or buffer.
7191
+ * @param reader Reader or buffer to decode from
7192
+ * @param [length] Message length if known beforehand
7193
+ * @returns ExportDataObjectsResponse
7194
+ * @throws {Error} If the payload is not a reader or valid buffer
7195
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
7196
+ */
7197
+ public static decode(reader: ($protobuf.Reader|Uint8Array), length?: number): google.cloud.vectorsearch.v1beta.ExportDataObjectsResponse;
7198
+
7199
+ /**
7200
+ * Decodes an ExportDataObjectsResponse message from the specified reader or buffer, length delimited.
7201
+ * @param reader Reader or buffer to decode from
7202
+ * @returns ExportDataObjectsResponse
7203
+ * @throws {Error} If the payload is not a reader or valid buffer
7204
+ * @throws {$protobuf.util.ProtocolError} If required fields are missing
7205
+ */
7206
+ public static decodeDelimited(reader: ($protobuf.Reader|Uint8Array)): google.cloud.vectorsearch.v1beta.ExportDataObjectsResponse;
7207
+
7208
+ /**
7209
+ * Verifies an ExportDataObjectsResponse message.
7210
+ * @param message Plain object to verify
7211
+ * @returns `null` if valid, otherwise the reason why it is not
7212
+ */
7213
+ public static verify(message: { [k: string]: any }): (string|null);
7214
+
7215
+ /**
7216
+ * Creates an ExportDataObjectsResponse message from a plain object. Also converts values to their respective internal types.
7217
+ * @param object Plain object
7218
+ * @returns ExportDataObjectsResponse
7219
+ */
7220
+ public static fromObject(object: { [k: string]: any }): google.cloud.vectorsearch.v1beta.ExportDataObjectsResponse;
7221
+
7222
+ /**
7223
+ * Creates a plain object from an ExportDataObjectsResponse message. Also converts values to other types if specified.
7224
+ * @param message ExportDataObjectsResponse
7225
+ * @param [options] Conversion options
7226
+ * @returns Plain object
7227
+ */
7228
+ public static toObject(message: google.cloud.vectorsearch.v1beta.ExportDataObjectsResponse, options?: $protobuf.IConversionOptions): { [k: string]: any };
7229
+
7230
+ /**
7231
+ * Converts this ExportDataObjectsResponse to JSON.
7232
+ * @returns JSON object
7233
+ */
7234
+ public toJSON(): { [k: string]: any };
7235
+
7236
+ /**
7237
+ * Gets the default type url for ExportDataObjectsResponse
7238
+ * @param [typeUrlPrefix] your custom typeUrlPrefix(default "type.googleapis.com")
7239
+ * @returns The default type url
7240
+ */
7241
+ public static getTypeUrl(typeUrlPrefix?: string): string;
7242
+ }
6789
7243
  }
6790
7244
  }
6791
7245
  }