v1.d.ts
77.7 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
/**
* Copyright 2019 Google LLC
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import { OAuth2Client, JWT, Compute, UserRefreshClient } from 'google-auth-library';
import { GoogleConfigurable, MethodOptions, GlobalOptions, BodyResponseCallback, APIRequestContext } from 'googleapis-common';
import { GaxiosPromise } from 'gaxios';
export declare namespace datastore_v1 {
export interface Options extends GlobalOptions {
version: 'v1';
}
interface StandardParameters {
/**
* V1 error format.
*/
'$.xgafv'?: string;
/**
* OAuth access token.
*/
access_token?: string;
/**
* Data format for response.
*/
alt?: string;
/**
* JSONP
*/
callback?: string;
/**
* Selector specifying which fields to include in a partial response.
*/
fields?: string;
/**
* API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.
*/
key?: string;
/**
* OAuth 2.0 token for the current user.
*/
oauth_token?: string;
/**
* Returns response with indentations and line breaks.
*/
prettyPrint?: boolean;
/**
* Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.
*/
quotaUser?: string;
/**
* Legacy upload protocol for media (e.g. "media", "multipart").
*/
uploadType?: string;
/**
* Upload protocol for media (e.g. "raw", "multipart").
*/
upload_protocol?: string;
}
/**
* Cloud Datastore API
*
* Accesses the schemaless NoSQL database to provide fully managed, robust, scalable storage for your application.
*
* @example
* const {google} = require('googleapis');
* const datastore = google.datastore('v1');
*
* @namespace datastore
* @type {Function}
* @version v1
* @variation v1
* @param {object=} options Options for Datastore
*/
export class Datastore {
context: APIRequestContext;
projects: Resource$Projects;
constructor(options: GlobalOptions, google?: GoogleConfigurable);
}
/**
* The request for Datastore.AllocateIds.
*/
export interface Schema$AllocateIdsRequest {
/**
* A list of keys with incomplete key paths for which to allocate IDs. No key may be reserved/read-only.
*/
keys?: Schema$Key[];
}
/**
* The response for Datastore.AllocateIds.
*/
export interface Schema$AllocateIdsResponse {
/**
* The keys specified in the request (in the same order), each with its key path completed with a newly allocated ID.
*/
keys?: Schema$Key[];
}
/**
* An array value.
*/
export interface Schema$ArrayValue {
/**
* Values in the array. The order of values in an array is preserved as long as all values have identical settings for 'exclude_from_indexes'.
*/
values?: Schema$Value[];
}
/**
* The request for Datastore.BeginTransaction.
*/
export interface Schema$BeginTransactionRequest {
/**
* Options for a new transaction.
*/
transactionOptions?: Schema$TransactionOptions;
}
/**
* The response for Datastore.BeginTransaction.
*/
export interface Schema$BeginTransactionResponse {
/**
* The transaction identifier (always present).
*/
transaction?: string | null;
}
/**
* The request for Datastore.Commit.
*/
export interface Schema$CommitRequest {
/**
* The type of commit to perform. Defaults to `TRANSACTIONAL`.
*/
mode?: string | null;
/**
* The mutations to perform. When mode is `TRANSACTIONAL`, mutations affecting a single entity are applied in order. The following sequences of mutations affecting a single entity are not permitted in a single `Commit` request: - `insert` followed by `insert` - `update` followed by `insert` - `upsert` followed by `insert` - `delete` followed by `update` When mode is `NON_TRANSACTIONAL`, no two mutations may affect a single entity.
*/
mutations?: Schema$Mutation[];
/**
* The identifier of the transaction associated with the commit. A transaction identifier is returned by a call to Datastore.BeginTransaction.
*/
transaction?: string | null;
}
/**
* The response for Datastore.Commit.
*/
export interface Schema$CommitResponse {
/**
* The number of index entries updated during the commit, or zero if none were updated.
*/
indexUpdates?: number | null;
/**
* The result of performing the mutations. The i-th mutation result corresponds to the i-th mutation in the request.
*/
mutationResults?: Schema$MutationResult[];
}
/**
* A filter that merges multiple other filters using the given operator.
*/
export interface Schema$CompositeFilter {
/**
* The list of filters to combine. Must contain at least one filter.
*/
filters?: Schema$Filter[];
/**
* The operator for combining multiple filters.
*/
op?: string | null;
}
/**
* A generic empty message that you can re-use to avoid defining duplicated empty messages in your APIs. A typical example is to use it as the request or the response type of an API method. For instance: service Foo { rpc Bar(google.protobuf.Empty) returns (google.protobuf.Empty); } The JSON representation for `Empty` is empty JSON object `{}`.
*/
export interface Schema$Empty {
}
/**
* A Datastore data object. An entity is limited to 1 megabyte when stored. That _roughly_ corresponds to a limit of 1 megabyte for the serialized form of this message.
*/
export interface Schema$Entity {
/**
* The entity's key. An entity must have a key, unless otherwise documented (for example, an entity in `Value.entity_value` may have no key). An entity's kind is its key path's last element's kind, or null if it has no key.
*/
key?: Schema$Key;
/**
* The entity's properties. The map's keys are property names. A property name matching regex `__.*__` is reserved. A reserved property name is forbidden in certain documented contexts. The name must not contain more than 500 characters. The name cannot be `""`.
*/
properties?: {
[key: string]: Schema$Value;
} | null;
}
/**
* The result of fetching an entity from Datastore.
*/
export interface Schema$EntityResult {
/**
* A cursor that points to the position after the result entity. Set only when the `EntityResult` is part of a `QueryResultBatch` message.
*/
cursor?: string | null;
/**
* The resulting entity.
*/
entity?: Schema$Entity;
/**
* The version of the entity, a strictly positive number that monotonically increases with changes to the entity. This field is set for `FULL` entity results. For missing entities in `LookupResponse`, this is the version of the snapshot that was used to look up the entity, and it is always set except for eventually consistent reads.
*/
version?: string | null;
}
/**
* A holder for any type of filter.
*/
export interface Schema$Filter {
/**
* A composite filter.
*/
compositeFilter?: Schema$CompositeFilter;
/**
* A filter on a property.
*/
propertyFilter?: Schema$PropertyFilter;
}
/**
* Metadata common to all Datastore Admin operations.
*/
export interface Schema$GoogleDatastoreAdminV1beta1CommonMetadata {
/**
* The time the operation ended, either successfully or otherwise.
*/
endTime?: string | null;
/**
* The client-assigned labels which were provided when the operation was created. May also include additional labels.
*/
labels?: {
[key: string]: string;
} | null;
/**
* The type of the operation. Can be used as a filter in ListOperationsRequest.
*/
operationType?: string | null;
/**
* The time that work began on the operation.
*/
startTime?: string | null;
/**
* The current state of the Operation.
*/
state?: string | null;
}
/**
* Identifies a subset of entities in a project. This is specified as combinations of kinds and namespaces (either or both of which may be all, as described in the following examples). Example usage: Entire project: kinds=[], namespace_ids=[] Kinds Foo and Bar in all namespaces: kinds=['Foo', 'Bar'], namespace_ids=[] Kinds Foo and Bar only in the default namespace: kinds=['Foo', 'Bar'], namespace_ids=[''] Kinds Foo and Bar in both the default and Baz namespaces: kinds=['Foo', 'Bar'], namespace_ids=['', 'Baz'] The entire Baz namespace: kinds=[], namespace_ids=['Baz']
*/
export interface Schema$GoogleDatastoreAdminV1beta1EntityFilter {
/**
* If empty, then this represents all kinds.
*/
kinds?: string[] | null;
/**
* An empty list represents all namespaces. This is the preferred usage for projects that don't use namespaces. An empty string element represents the default namespace. This should be used if the project has data in non-default namespaces, but doesn't want to include them. Each namespace in this list must be unique.
*/
namespaceIds?: string[] | null;
}
/**
* Metadata for ExportEntities operations.
*/
export interface Schema$GoogleDatastoreAdminV1beta1ExportEntitiesMetadata {
/**
* Metadata common to all Datastore Admin operations.
*/
common?: Schema$GoogleDatastoreAdminV1beta1CommonMetadata;
/**
* Description of which entities are being exported.
*/
entityFilter?: Schema$GoogleDatastoreAdminV1beta1EntityFilter;
/**
* Location for the export metadata and data files. This will be the same value as the google.datastore.admin.v1beta1.ExportEntitiesRequest.output_url_prefix field. The final output location is provided in google.datastore.admin.v1beta1.ExportEntitiesResponse.output_url.
*/
outputUrlPrefix?: string | null;
/**
* An estimate of the number of bytes processed.
*/
progressBytes?: Schema$GoogleDatastoreAdminV1beta1Progress;
/**
* An estimate of the number of entities processed.
*/
progressEntities?: Schema$GoogleDatastoreAdminV1beta1Progress;
}
/**
* The response for google.datastore.admin.v1beta1.DatastoreAdmin.ExportEntities.
*/
export interface Schema$GoogleDatastoreAdminV1beta1ExportEntitiesResponse {
/**
* Location of the output metadata file. This can be used to begin an import into Cloud Datastore (this project or another project). See google.datastore.admin.v1beta1.ImportEntitiesRequest.input_url. Only present if the operation completed successfully.
*/
outputUrl?: string | null;
}
/**
* Metadata for ImportEntities operations.
*/
export interface Schema$GoogleDatastoreAdminV1beta1ImportEntitiesMetadata {
/**
* Metadata common to all Datastore Admin operations.
*/
common?: Schema$GoogleDatastoreAdminV1beta1CommonMetadata;
/**
* Description of which entities are being imported.
*/
entityFilter?: Schema$GoogleDatastoreAdminV1beta1EntityFilter;
/**
* The location of the import metadata file. This will be the same value as the google.datastore.admin.v1beta1.ExportEntitiesResponse.output_url field.
*/
inputUrl?: string | null;
/**
* An estimate of the number of bytes processed.
*/
progressBytes?: Schema$GoogleDatastoreAdminV1beta1Progress;
/**
* An estimate of the number of entities processed.
*/
progressEntities?: Schema$GoogleDatastoreAdminV1beta1Progress;
}
/**
* Measures the progress of a particular metric.
*/
export interface Schema$GoogleDatastoreAdminV1beta1Progress {
/**
* The amount of work that has been completed. Note that this may be greater than work_estimated.
*/
workCompleted?: string | null;
/**
* An estimate of how much work needs to be performed. May be zero if the work estimate is unavailable.
*/
workEstimated?: string | null;
}
/**
* Metadata common to all Datastore Admin operations.
*/
export interface Schema$GoogleDatastoreAdminV1CommonMetadata {
/**
* The time the operation ended, either successfully or otherwise.
*/
endTime?: string | null;
/**
* The client-assigned labels which were provided when the operation was created. May also include additional labels.
*/
labels?: {
[key: string]: string;
} | null;
/**
* The type of the operation. Can be used as a filter in ListOperationsRequest.
*/
operationType?: string | null;
/**
* The time that work began on the operation.
*/
startTime?: string | null;
/**
* The current state of the Operation.
*/
state?: string | null;
}
/**
* Identifies a subset of entities in a project. This is specified as combinations of kinds and namespaces (either or both of which may be all, as described in the following examples). Example usage: Entire project: kinds=[], namespace_ids=[] Kinds Foo and Bar in all namespaces: kinds=['Foo', 'Bar'], namespace_ids=[] Kinds Foo and Bar only in the default namespace: kinds=['Foo', 'Bar'], namespace_ids=[''] Kinds Foo and Bar in both the default and Baz namespaces: kinds=['Foo', 'Bar'], namespace_ids=['', 'Baz'] The entire Baz namespace: kinds=[], namespace_ids=['Baz']
*/
export interface Schema$GoogleDatastoreAdminV1EntityFilter {
/**
* If empty, then this represents all kinds.
*/
kinds?: string[] | null;
/**
* An empty list represents all namespaces. This is the preferred usage for projects that don't use namespaces. An empty string element represents the default namespace. This should be used if the project has data in non-default namespaces, but doesn't want to include them. Each namespace in this list must be unique.
*/
namespaceIds?: string[] | null;
}
/**
* Metadata for ExportEntities operations.
*/
export interface Schema$GoogleDatastoreAdminV1ExportEntitiesMetadata {
/**
* Metadata common to all Datastore Admin operations.
*/
common?: Schema$GoogleDatastoreAdminV1CommonMetadata;
/**
* Description of which entities are being exported.
*/
entityFilter?: Schema$GoogleDatastoreAdminV1EntityFilter;
/**
* Location for the export metadata and data files. This will be the same value as the google.datastore.admin.v1.ExportEntitiesRequest.output_url_prefix field. The final output location is provided in google.datastore.admin.v1.ExportEntitiesResponse.output_url.
*/
outputUrlPrefix?: string | null;
/**
* An estimate of the number of bytes processed.
*/
progressBytes?: Schema$GoogleDatastoreAdminV1Progress;
/**
* An estimate of the number of entities processed.
*/
progressEntities?: Schema$GoogleDatastoreAdminV1Progress;
}
/**
* The request for google.datastore.admin.v1.DatastoreAdmin.ExportEntities.
*/
export interface Schema$GoogleDatastoreAdminV1ExportEntitiesRequest {
/**
* Description of what data from the project is included in the export.
*/
entityFilter?: Schema$GoogleDatastoreAdminV1EntityFilter;
/**
* Client-assigned labels.
*/
labels?: {
[key: string]: string;
} | null;
/**
* Location for the export metadata and data files. The full resource URL of the external storage location. Currently, only Google Cloud Storage is supported. So output_url_prefix should be of the form: `gs://BUCKET_NAME[/NAMESPACE_PATH]`, where `BUCKET_NAME` is the name of the Cloud Storage bucket and `NAMESPACE_PATH` is an optional Cloud Storage namespace path (this is not a Cloud Datastore namespace). For more information about Cloud Storage namespace paths, see [Object name considerations](https://cloud.google.com/storage/docs/naming#object-considerations). The resulting files will be nested deeper than the specified URL prefix. The final output URL will be provided in the google.datastore.admin.v1.ExportEntitiesResponse.output_url field. That value should be used for subsequent ImportEntities operations. By nesting the data files deeper, the same Cloud Storage bucket can be used in multiple ExportEntities operations without conflict.
*/
outputUrlPrefix?: string | null;
}
/**
* The response for google.datastore.admin.v1.DatastoreAdmin.ExportEntities.
*/
export interface Schema$GoogleDatastoreAdminV1ExportEntitiesResponse {
/**
* Location of the output metadata file. This can be used to begin an import into Cloud Datastore (this project or another project). See google.datastore.admin.v1.ImportEntitiesRequest.input_url. Only present if the operation completed successfully.
*/
outputUrl?: string | null;
}
/**
* Metadata for ImportEntities operations.
*/
export interface Schema$GoogleDatastoreAdminV1ImportEntitiesMetadata {
/**
* Metadata common to all Datastore Admin operations.
*/
common?: Schema$GoogleDatastoreAdminV1CommonMetadata;
/**
* Description of which entities are being imported.
*/
entityFilter?: Schema$GoogleDatastoreAdminV1EntityFilter;
/**
* The location of the import metadata file. This will be the same value as the google.datastore.admin.v1.ExportEntitiesResponse.output_url field.
*/
inputUrl?: string | null;
/**
* An estimate of the number of bytes processed.
*/
progressBytes?: Schema$GoogleDatastoreAdminV1Progress;
/**
* An estimate of the number of entities processed.
*/
progressEntities?: Schema$GoogleDatastoreAdminV1Progress;
}
/**
* The request for google.datastore.admin.v1.DatastoreAdmin.ImportEntities.
*/
export interface Schema$GoogleDatastoreAdminV1ImportEntitiesRequest {
/**
* Optionally specify which kinds/namespaces are to be imported. If provided, the list must be a subset of the EntityFilter used in creating the export, otherwise a FAILED_PRECONDITION error will be returned. If no filter is specified then all entities from the export are imported.
*/
entityFilter?: Schema$GoogleDatastoreAdminV1EntityFilter;
/**
* The full resource URL of the external storage location. Currently, only Google Cloud Storage is supported. So input_url should be of the form: `gs://BUCKET_NAME[/NAMESPACE_PATH]/OVERALL_EXPORT_METADATA_FILE`, where `BUCKET_NAME` is the name of the Cloud Storage bucket, `NAMESPACE_PATH` is an optional Cloud Storage namespace path (this is not a Cloud Datastore namespace), and `OVERALL_EXPORT_METADATA_FILE` is the metadata file written by the ExportEntities operation. For more information about Cloud Storage namespace paths, see [Object name considerations](https://cloud.google.com/storage/docs/naming#object-considerations). For more information, see google.datastore.admin.v1.ExportEntitiesResponse.output_url.
*/
inputUrl?: string | null;
/**
* Client-assigned labels.
*/
labels?: {
[key: string]: string;
} | null;
}
/**
* A minimal index definition.
*/
export interface Schema$GoogleDatastoreAdminV1Index {
/**
* The index's ancestor mode. Must not be ANCESTOR_MODE_UNSPECIFIED. Required.
*/
ancestor?: string | null;
/**
* The resource ID of the index. Output only.
*/
indexId?: string | null;
/**
* The entity kind to which this index applies. Required.
*/
kind?: string | null;
/**
* Project ID. Output only.
*/
projectId?: string | null;
/**
* An ordered sequence of property names and their index attributes. Required.
*/
properties?: Schema$GoogleDatastoreAdminV1IndexedProperty[];
/**
* The state of the index. Output only.
*/
state?: string | null;
}
/**
* A property of an index.
*/
export interface Schema$GoogleDatastoreAdminV1IndexedProperty {
/**
* The indexed property's direction. Must not be DIRECTION_UNSPECIFIED. Required.
*/
direction?: string | null;
/**
* The property name to index. Required.
*/
name?: string | null;
}
/**
* Metadata for Index operations.
*/
export interface Schema$GoogleDatastoreAdminV1IndexOperationMetadata {
/**
* Metadata common to all Datastore Admin operations.
*/
common?: Schema$GoogleDatastoreAdminV1CommonMetadata;
/**
* The index resource ID that this operation is acting on.
*/
indexId?: string | null;
/**
* An estimate of the number of entities processed.
*/
progressEntities?: Schema$GoogleDatastoreAdminV1Progress;
}
/**
* The response for google.datastore.admin.v1.DatastoreAdmin.ListIndexes.
*/
export interface Schema$GoogleDatastoreAdminV1ListIndexesResponse {
/**
* The indexes.
*/
indexes?: Schema$GoogleDatastoreAdminV1Index[];
/**
* The standard List next-page token.
*/
nextPageToken?: string | null;
}
/**
* Measures the progress of a particular metric.
*/
export interface Schema$GoogleDatastoreAdminV1Progress {
/**
* The amount of work that has been completed. Note that this may be greater than work_estimated.
*/
workCompleted?: string | null;
/**
* An estimate of how much work needs to be performed. May be zero if the work estimate is unavailable.
*/
workEstimated?: string | null;
}
/**
* The response message for Operations.ListOperations.
*/
export interface Schema$GoogleLongrunningListOperationsResponse {
/**
* The standard List next-page token.
*/
nextPageToken?: string | null;
/**
* A list of operations that matches the specified filter in the request.
*/
operations?: Schema$GoogleLongrunningOperation[];
}
/**
* This resource represents a long-running operation that is the result of a network API call.
*/
export interface Schema$GoogleLongrunningOperation {
/**
* If the value is `false`, it means the operation is still in progress. If `true`, the operation is completed, and either `error` or `response` is available.
*/
done?: boolean | null;
/**
* The error result of the operation in case of failure or cancellation.
*/
error?: Schema$Status;
/**
* Service-specific metadata associated with the operation. It typically contains progress information and common metadata such as create time. Some services might not provide such metadata. Any method that returns a long-running operation should document the metadata type, if any.
*/
metadata?: {
[key: string]: any;
} | null;
/**
* The server-assigned name, which is only unique within the same service that originally returns it. If you use the default HTTP mapping, the `name` should be a resource name ending with `operations/{unique_id}`.
*/
name?: string | null;
/**
* The normal response of the operation in case of success. If the original method returns no data on success, such as `Delete`, the response is `google.protobuf.Empty`. If the original method is standard `Get`/`Create`/`Update`, the response should be the resource. For other methods, the response should have the type `XxxResponse`, where `Xxx` is the original method name. For example, if the original method name is `TakeSnapshot()`, the inferred response type is `TakeSnapshotResponse`.
*/
response?: {
[key: string]: any;
} | null;
}
/**
* A [GQL query](https://cloud.google.com/datastore/docs/apis/gql/gql_reference).
*/
export interface Schema$GqlQuery {
/**
* When false, the query string must not contain any literals and instead must bind all values. For example, `SELECT * FROM Kind WHERE a = 'string literal'` is not allowed, while `SELECT * FROM Kind WHERE a = @value` is.
*/
allowLiterals?: boolean | null;
/**
* For each non-reserved named binding site in the query string, there must be a named parameter with that name, but not necessarily the inverse. Key must match regex `A-Za-z_$*`, must not match regex `__.*__`, and must not be `""`.
*/
namedBindings?: {
[key: string]: Schema$GqlQueryParameter;
} | null;
/**
* Numbered binding site @1 references the first numbered parameter, effectively using 1-based indexing, rather than the usual 0. For each binding site numbered i in `query_string`, there must be an i-th numbered parameter. The inverse must also be true.
*/
positionalBindings?: Schema$GqlQueryParameter[];
/**
* A string of the format described [here](https://cloud.google.com/datastore/docs/apis/gql/gql_reference).
*/
queryString?: string | null;
}
/**
* A binding parameter for a GQL query.
*/
export interface Schema$GqlQueryParameter {
/**
* A query cursor. Query cursors are returned in query result batches.
*/
cursor?: string | null;
/**
* A value parameter.
*/
value?: Schema$Value;
}
/**
* A unique identifier for an entity. If a key's partition ID or any of its path kinds or names are reserved/read-only, the key is reserved/read-only. A reserved/read-only key is forbidden in certain documented contexts.
*/
export interface Schema$Key {
/**
* Entities are partitioned into subsets, currently identified by a project ID and namespace ID. Queries are scoped to a single partition.
*/
partitionId?: Schema$PartitionId;
/**
* The entity path. An entity path consists of one or more elements composed of a kind and a string or numerical identifier, which identify entities. The first element identifies a _root entity_, the second element identifies a _child_ of the root entity, the third element identifies a child of the second entity, and so forth. The entities identified by all prefixes of the path are called the element's _ancestors_. An entity path is always fully complete: *all* of the entity's ancestors are required to be in the path along with the entity identifier itself. The only exception is that in some documented cases, the identifier in the last path element (for the entity) itself may be omitted. For example, the last path element of the key of `Mutation.insert` may have no identifier. A path can never be empty, and a path can have at most 100 elements.
*/
path?: Schema$PathElement[];
}
/**
* A representation of a kind.
*/
export interface Schema$KindExpression {
/**
* The name of the kind.
*/
name?: string | null;
}
/**
* An object representing a latitude/longitude pair. This is expressed as a pair of doubles representing degrees latitude and degrees longitude. Unless specified otherwise, this must conform to the <a href="http://www.unoosa.org/pdf/icg/2012/template/WGS_84.pdf">WGS84 standard</a>. Values must be within normalized ranges.
*/
export interface Schema$LatLng {
/**
* The latitude in degrees. It must be in the range [-90.0, +90.0].
*/
latitude?: number | null;
/**
* The longitude in degrees. It must be in the range [-180.0, +180.0].
*/
longitude?: number | null;
}
/**
* The request for Datastore.Lookup.
*/
export interface Schema$LookupRequest {
/**
* Keys of entities to look up.
*/
keys?: Schema$Key[];
/**
* The options for this lookup request.
*/
readOptions?: Schema$ReadOptions;
}
/**
* The response for Datastore.Lookup.
*/
export interface Schema$LookupResponse {
/**
* A list of keys that were not looked up due to resource constraints. The order of results in this field is undefined and has no relation to the order of the keys in the input.
*/
deferred?: Schema$Key[];
/**
* Entities found as `ResultType.FULL` entities. The order of results in this field is undefined and has no relation to the order of the keys in the input.
*/
found?: Schema$EntityResult[];
/**
* Entities not found as `ResultType.KEY_ONLY` entities. The order of results in this field is undefined and has no relation to the order of the keys in the input.
*/
missing?: Schema$EntityResult[];
}
/**
* A mutation to apply to an entity.
*/
export interface Schema$Mutation {
/**
* The version of the entity that this mutation is being applied to. If this does not match the current version on the server, the mutation conflicts.
*/
baseVersion?: string | null;
/**
* The key of the entity to delete. The entity may or may not already exist. Must have a complete key path and must not be reserved/read-only.
*/
delete?: Schema$Key;
/**
* The entity to insert. The entity must not already exist. The entity key's final path element may be incomplete.
*/
insert?: Schema$Entity;
/**
* The entity to update. The entity must already exist. Must have a complete key path.
*/
update?: Schema$Entity;
/**
* The entity to upsert. The entity may or may not already exist. The entity key's final path element may be incomplete.
*/
upsert?: Schema$Entity;
}
/**
* The result of applying a mutation.
*/
export interface Schema$MutationResult {
/**
* Whether a conflict was detected for this mutation. Always false when a conflict detection strategy field is not set in the mutation.
*/
conflictDetected?: boolean | null;
/**
* The automatically allocated key. Set only when the mutation allocated a key.
*/
key?: Schema$Key;
/**
* The version of the entity on the server after processing the mutation. If the mutation doesn't change anything on the server, then the version will be the version of the current entity or, if no entity is present, a version that is strictly greater than the version of any previous entity and less than the version of any possible future entity.
*/
version?: string | null;
}
/**
* A partition ID identifies a grouping of entities. The grouping is always by project and namespace, however the namespace ID may be empty. A partition ID contains several dimensions: project ID and namespace ID. Partition dimensions: - May be `""`. - Must be valid UTF-8 bytes. - Must have values that match regex `[A-Za-z\d\.\-_]{1,100}` If the value of any dimension matches regex `__.*__`, the partition is reserved/read-only. A reserved/read-only partition ID is forbidden in certain documented contexts. Foreign partition IDs (in which the project ID does not match the context project ID ) are discouraged. Reads and writes of foreign partition IDs may fail if the project is not in an active state.
*/
export interface Schema$PartitionId {
/**
* If not empty, the ID of the namespace to which the entities belong.
*/
namespaceId?: string | null;
/**
* The ID of the project to which the entities belong.
*/
projectId?: string | null;
}
/**
* A (kind, ID/name) pair used to construct a key path. If either name or ID is set, the element is complete. If neither is set, the element is incomplete.
*/
export interface Schema$PathElement {
/**
* The auto-allocated ID of the entity. Never equal to zero. Values less than zero are discouraged and may not be supported in the future.
*/
id?: string | null;
/**
* The kind of the entity. A kind matching regex `__.*__` is reserved/read-only. A kind must not contain more than 1500 bytes when UTF-8 encoded. Cannot be `""`.
*/
kind?: string | null;
/**
* The name of the entity. A name matching regex `__.*__` is reserved/read-only. A name must not be more than 1500 bytes when UTF-8 encoded. Cannot be `""`.
*/
name?: string | null;
}
/**
* A representation of a property in a projection.
*/
export interface Schema$Projection {
/**
* The property to project.
*/
property?: Schema$PropertyReference;
}
/**
* A filter on a specific property.
*/
export interface Schema$PropertyFilter {
/**
* The operator to filter by.
*/
op?: string | null;
/**
* The property to filter by.
*/
property?: Schema$PropertyReference;
/**
* The value to compare the property to.
*/
value?: Schema$Value;
}
/**
* The desired order for a specific property.
*/
export interface Schema$PropertyOrder {
/**
* The direction to order by. Defaults to `ASCENDING`.
*/
direction?: string | null;
/**
* The property to order by.
*/
property?: Schema$PropertyReference;
}
/**
* A reference to a property relative to the kind expressions.
*/
export interface Schema$PropertyReference {
/**
* The name of the property. If name includes "."s, it may be interpreted as a property name path.
*/
name?: string | null;
}
/**
* A query for entities.
*/
export interface Schema$Query {
/**
* The properties to make distinct. The query results will contain the first result for each distinct combination of values for the given properties (if empty, all results are returned).
*/
distinctOn?: Schema$PropertyReference[];
/**
* An ending point for the query results. Query cursors are returned in query result batches and [can only be used to limit the same query](https://cloud.google.com/datastore/docs/concepts/queries#cursors_limits_and_offsets).
*/
endCursor?: string | null;
/**
* The filter to apply.
*/
filter?: Schema$Filter;
/**
* The kinds to query (if empty, returns entities of all kinds). Currently at most 1 kind may be specified.
*/
kind?: Schema$KindExpression[];
/**
* The maximum number of results to return. Applies after all other constraints. Optional. Unspecified is interpreted as no limit. Must be >= 0 if specified.
*/
limit?: number | null;
/**
* The number of results to skip. Applies before limit, but after all other constraints. Optional. Must be >= 0 if specified.
*/
offset?: number | null;
/**
* The order to apply to the query results (if empty, order is unspecified).
*/
order?: Schema$PropertyOrder[];
/**
* The projection to return. Defaults to returning all properties.
*/
projection?: Schema$Projection[];
/**
* A starting point for the query results. Query cursors are returned in query result batches and [can only be used to continue the same query](https://cloud.google.com/datastore/docs/concepts/queries#cursors_limits_and_offsets).
*/
startCursor?: string | null;
}
/**
* A batch of results produced by a query.
*/
export interface Schema$QueryResultBatch {
/**
* A cursor that points to the position after the last result in the batch.
*/
endCursor?: string | null;
/**
* The results for this batch.
*/
entityResults?: Schema$EntityResult[];
/**
* The result type for every entity in `entity_results`.
*/
entityResultType?: string | null;
/**
* The state of the query after the current batch.
*/
moreResults?: string | null;
/**
* A cursor that points to the position after the last skipped result. Will be set when `skipped_results` != 0.
*/
skippedCursor?: string | null;
/**
* The number of results skipped, typically because of an offset.
*/
skippedResults?: number | null;
/**
* The version number of the snapshot this batch was returned from. This applies to the range of results from the query's `start_cursor` (or the beginning of the query if no cursor was given) to this batch's `end_cursor` (not the query's `end_cursor`). In a single transaction, subsequent query result batches for the same query can have a greater snapshot version number. Each batch's snapshot version is valid for all preceding batches. The value will be zero for eventually consistent queries.
*/
snapshotVersion?: string | null;
}
/**
* Options specific to read-only transactions.
*/
export interface Schema$ReadOnly {
}
/**
* The options shared by read requests.
*/
export interface Schema$ReadOptions {
/**
* The non-transactional read consistency to use. Cannot be set to `STRONG` for global queries.
*/
readConsistency?: string | null;
/**
* The identifier of the transaction in which to read. A transaction identifier is returned by a call to Datastore.BeginTransaction.
*/
transaction?: string | null;
}
/**
* Options specific to read / write transactions.
*/
export interface Schema$ReadWrite {
/**
* The transaction identifier of the transaction being retried.
*/
previousTransaction?: string | null;
}
/**
* The request for Datastore.ReserveIds.
*/
export interface Schema$ReserveIdsRequest {
/**
* If not empty, the ID of the database against which to make the request.
*/
databaseId?: string | null;
/**
* A list of keys with complete key paths whose numeric IDs should not be auto-allocated.
*/
keys?: Schema$Key[];
}
/**
* The response for Datastore.ReserveIds.
*/
export interface Schema$ReserveIdsResponse {
}
/**
* The request for Datastore.Rollback.
*/
export interface Schema$RollbackRequest {
/**
* The transaction identifier, returned by a call to Datastore.BeginTransaction.
*/
transaction?: string | null;
}
/**
* The response for Datastore.Rollback. (an empty message).
*/
export interface Schema$RollbackResponse {
}
/**
* The request for Datastore.RunQuery.
*/
export interface Schema$RunQueryRequest {
/**
* The GQL query to run.
*/
gqlQuery?: Schema$GqlQuery;
/**
* Entities are partitioned into subsets, identified by a partition ID. Queries are scoped to a single partition. This partition ID is normalized with the standard default context partition ID.
*/
partitionId?: Schema$PartitionId;
/**
* The query to run.
*/
query?: Schema$Query;
/**
* The options for this query.
*/
readOptions?: Schema$ReadOptions;
}
/**
* The response for Datastore.RunQuery.
*/
export interface Schema$RunQueryResponse {
/**
* A batch of query results (always present).
*/
batch?: Schema$QueryResultBatch;
/**
* The parsed form of the `GqlQuery` from the request, if it was set.
*/
query?: Schema$Query;
}
/**
* The `Status` type defines a logical error model that is suitable for different programming environments, including REST APIs and RPC APIs. It is used by [gRPC](https://github.com/grpc). Each `Status` message contains three pieces of data: error code, error message, and error details. You can find out more about this error model and how to work with it in the [API Design Guide](https://cloud.google.com/apis/design/errors).
*/
export interface Schema$Status {
/**
* The status code, which should be an enum value of google.rpc.Code.
*/
code?: number | null;
/**
* A list of messages that carry the error details. There is a common set of message types for APIs to use.
*/
details?: Array<{
[key: string]: any;
}> | null;
/**
* A developer-facing error message, which should be in English. Any user-facing error message should be localized and sent in the google.rpc.Status.details field, or localized by the client.
*/
message?: string | null;
}
/**
* Options for beginning a new transaction. Transactions can be created explicitly with calls to Datastore.BeginTransaction or implicitly by setting ReadOptions.new_transaction in read requests.
*/
export interface Schema$TransactionOptions {
/**
* The transaction should only allow reads.
*/
readOnly?: Schema$ReadOnly;
/**
* The transaction should allow both reads and writes.
*/
readWrite?: Schema$ReadWrite;
}
/**
* A message that can hold any of the supported value types and associated metadata.
*/
export interface Schema$Value {
/**
* An array value. Cannot contain another array value. A `Value` instance that sets field `array_value` must not set fields `meaning` or `exclude_from_indexes`.
*/
arrayValue?: Schema$ArrayValue;
/**
* A blob value. May have at most 1,000,000 bytes. When `exclude_from_indexes` is false, may have at most 1500 bytes. In JSON requests, must be base64-encoded.
*/
blobValue?: string | null;
/**
* A boolean value.
*/
booleanValue?: boolean | null;
/**
* A double value.
*/
doubleValue?: number | null;
/**
* An entity value. - May have no key. - May have a key with an incomplete key path. - May have a reserved/read-only key.
*/
entityValue?: Schema$Entity;
/**
* If the value should be excluded from all indexes including those defined explicitly.
*/
excludeFromIndexes?: boolean | null;
/**
* A geo point value representing a point on the surface of Earth.
*/
geoPointValue?: Schema$LatLng;
/**
* An integer value.
*/
integerValue?: string | null;
/**
* A key value.
*/
keyValue?: Schema$Key;
/**
* The `meaning` field should only be populated for backwards compatibility.
*/
meaning?: number | null;
/**
* A null value.
*/
nullValue?: string | null;
/**
* A UTF-8 encoded string value. When `exclude_from_indexes` is false (it is indexed) , may have at most 1500 bytes. Otherwise, may be set to at least 1,000,000 bytes.
*/
stringValue?: string | null;
/**
* A timestamp value. When stored in the Datastore, precise only to microseconds; any additional precision is rounded down.
*/
timestampValue?: string | null;
}
export class Resource$Projects {
context: APIRequestContext;
indexes: Resource$Projects$Indexes;
operations: Resource$Projects$Operations;
constructor(context: APIRequestContext);
/**
* datastore.projects.allocateIds
* @desc Allocates IDs for the given keys, which is useful for referencing an entity before it is inserted.
* @alias datastore.projects.allocateIds
* @memberOf! ()
*
* @param {object} params Parameters for request
* @param {string} params.projectId The ID of the project against which to make the request.
* @param {().AllocateIdsRequest} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
allocateIds(params?: Params$Resource$Projects$Allocateids, options?: MethodOptions): GaxiosPromise<Schema$AllocateIdsResponse>;
allocateIds(params: Params$Resource$Projects$Allocateids, options: MethodOptions | BodyResponseCallback<Schema$AllocateIdsResponse>, callback: BodyResponseCallback<Schema$AllocateIdsResponse>): void;
allocateIds(params: Params$Resource$Projects$Allocateids, callback: BodyResponseCallback<Schema$AllocateIdsResponse>): void;
allocateIds(callback: BodyResponseCallback<Schema$AllocateIdsResponse>): void;
/**
* datastore.projects.beginTransaction
* @desc Begins a new transaction.
* @alias datastore.projects.beginTransaction
* @memberOf! ()
*
* @param {object} params Parameters for request
* @param {string} params.projectId The ID of the project against which to make the request.
* @param {().BeginTransactionRequest} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
beginTransaction(params?: Params$Resource$Projects$Begintransaction, options?: MethodOptions): GaxiosPromise<Schema$BeginTransactionResponse>;
beginTransaction(params: Params$Resource$Projects$Begintransaction, options: MethodOptions | BodyResponseCallback<Schema$BeginTransactionResponse>, callback: BodyResponseCallback<Schema$BeginTransactionResponse>): void;
beginTransaction(params: Params$Resource$Projects$Begintransaction, callback: BodyResponseCallback<Schema$BeginTransactionResponse>): void;
beginTransaction(callback: BodyResponseCallback<Schema$BeginTransactionResponse>): void;
/**
* datastore.projects.commit
* @desc Commits a transaction, optionally creating, deleting or modifying some entities.
* @alias datastore.projects.commit
* @memberOf! ()
*
* @param {object} params Parameters for request
* @param {string} params.projectId The ID of the project against which to make the request.
* @param {().CommitRequest} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
commit(params?: Params$Resource$Projects$Commit, options?: MethodOptions): GaxiosPromise<Schema$CommitResponse>;
commit(params: Params$Resource$Projects$Commit, options: MethodOptions | BodyResponseCallback<Schema$CommitResponse>, callback: BodyResponseCallback<Schema$CommitResponse>): void;
commit(params: Params$Resource$Projects$Commit, callback: BodyResponseCallback<Schema$CommitResponse>): void;
commit(callback: BodyResponseCallback<Schema$CommitResponse>): void;
/**
* datastore.projects.export
* @desc Exports a copy of all or a subset of entities from Google Cloud Datastore to another storage system, such as Google Cloud Storage. Recent updates to entities may not be reflected in the export. The export occurs in the background and its progress can be monitored and managed via the Operation resource that is created. The output of an export may only be used once the associated operation is done. If an export operation is cancelled before completion it may leave partial data behind in Google Cloud Storage.
* @alias datastore.projects.export
* @memberOf! ()
*
* @param {object} params Parameters for request
* @param {string} params.projectId Project ID against which to make the request.
* @param {().GoogleDatastoreAdminV1ExportEntitiesRequest} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
export(params?: Params$Resource$Projects$Export, options?: MethodOptions): GaxiosPromise<Schema$GoogleLongrunningOperation>;
export(params: Params$Resource$Projects$Export, options: MethodOptions | BodyResponseCallback<Schema$GoogleLongrunningOperation>, callback: BodyResponseCallback<Schema$GoogleLongrunningOperation>): void;
export(params: Params$Resource$Projects$Export, callback: BodyResponseCallback<Schema$GoogleLongrunningOperation>): void;
export(callback: BodyResponseCallback<Schema$GoogleLongrunningOperation>): void;
/**
* datastore.projects.import
* @desc Imports entities into Google Cloud Datastore. Existing entities with the same key are overwritten. The import occurs in the background and its progress can be monitored and managed via the Operation resource that is created. If an ImportEntities operation is cancelled, it is possible that a subset of the data has already been imported to Cloud Datastore.
* @alias datastore.projects.import
* @memberOf! ()
*
* @param {object} params Parameters for request
* @param {string} params.projectId Project ID against which to make the request.
* @param {().GoogleDatastoreAdminV1ImportEntitiesRequest} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
import(params?: Params$Resource$Projects$Import, options?: MethodOptions): GaxiosPromise<Schema$GoogleLongrunningOperation>;
import(params: Params$Resource$Projects$Import, options: MethodOptions | BodyResponseCallback<Schema$GoogleLongrunningOperation>, callback: BodyResponseCallback<Schema$GoogleLongrunningOperation>): void;
import(params: Params$Resource$Projects$Import, callback: BodyResponseCallback<Schema$GoogleLongrunningOperation>): void;
import(callback: BodyResponseCallback<Schema$GoogleLongrunningOperation>): void;
/**
* datastore.projects.lookup
* @desc Looks up entities by key.
* @alias datastore.projects.lookup
* @memberOf! ()
*
* @param {object} params Parameters for request
* @param {string} params.projectId The ID of the project against which to make the request.
* @param {().LookupRequest} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
lookup(params?: Params$Resource$Projects$Lookup, options?: MethodOptions): GaxiosPromise<Schema$LookupResponse>;
lookup(params: Params$Resource$Projects$Lookup, options: MethodOptions | BodyResponseCallback<Schema$LookupResponse>, callback: BodyResponseCallback<Schema$LookupResponse>): void;
lookup(params: Params$Resource$Projects$Lookup, callback: BodyResponseCallback<Schema$LookupResponse>): void;
lookup(callback: BodyResponseCallback<Schema$LookupResponse>): void;
/**
* datastore.projects.reserveIds
* @desc Prevents the supplied keys' IDs from being auto-allocated by Cloud Datastore. Used for imports only; other workloads are not supported.
* @alias datastore.projects.reserveIds
* @memberOf! ()
*
* @param {object} params Parameters for request
* @param {string} params.projectId The ID of the project against which to make the request.
* @param {().ReserveIdsRequest} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
reserveIds(params?: Params$Resource$Projects$Reserveids, options?: MethodOptions): GaxiosPromise<Schema$ReserveIdsResponse>;
reserveIds(params: Params$Resource$Projects$Reserveids, options: MethodOptions | BodyResponseCallback<Schema$ReserveIdsResponse>, callback: BodyResponseCallback<Schema$ReserveIdsResponse>): void;
reserveIds(params: Params$Resource$Projects$Reserveids, callback: BodyResponseCallback<Schema$ReserveIdsResponse>): void;
reserveIds(callback: BodyResponseCallback<Schema$ReserveIdsResponse>): void;
/**
* datastore.projects.rollback
* @desc Rolls back a transaction.
* @alias datastore.projects.rollback
* @memberOf! ()
*
* @param {object} params Parameters for request
* @param {string} params.projectId The ID of the project against which to make the request.
* @param {().RollbackRequest} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
rollback(params?: Params$Resource$Projects$Rollback, options?: MethodOptions): GaxiosPromise<Schema$RollbackResponse>;
rollback(params: Params$Resource$Projects$Rollback, options: MethodOptions | BodyResponseCallback<Schema$RollbackResponse>, callback: BodyResponseCallback<Schema$RollbackResponse>): void;
rollback(params: Params$Resource$Projects$Rollback, callback: BodyResponseCallback<Schema$RollbackResponse>): void;
rollback(callback: BodyResponseCallback<Schema$RollbackResponse>): void;
/**
* datastore.projects.runQuery
* @desc Queries for entities.
* @alias datastore.projects.runQuery
* @memberOf! ()
*
* @param {object} params Parameters for request
* @param {string} params.projectId The ID of the project against which to make the request.
* @param {().RunQueryRequest} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
runQuery(params?: Params$Resource$Projects$Runquery, options?: MethodOptions): GaxiosPromise<Schema$RunQueryResponse>;
runQuery(params: Params$Resource$Projects$Runquery, options: MethodOptions | BodyResponseCallback<Schema$RunQueryResponse>, callback: BodyResponseCallback<Schema$RunQueryResponse>): void;
runQuery(params: Params$Resource$Projects$Runquery, callback: BodyResponseCallback<Schema$RunQueryResponse>): void;
runQuery(callback: BodyResponseCallback<Schema$RunQueryResponse>): void;
}
export interface Params$Resource$Projects$Allocateids extends StandardParameters {
/**
* Auth client or API Key for the request
*/
auth?: string | OAuth2Client | JWT | Compute | UserRefreshClient;
/**
* The ID of the project against which to make the request.
*/
projectId?: string;
/**
* Request body metadata
*/
requestBody?: Schema$AllocateIdsRequest;
}
export interface Params$Resource$Projects$Begintransaction extends StandardParameters {
/**
* Auth client or API Key for the request
*/
auth?: string | OAuth2Client | JWT | Compute | UserRefreshClient;
/**
* The ID of the project against which to make the request.
*/
projectId?: string;
/**
* Request body metadata
*/
requestBody?: Schema$BeginTransactionRequest;
}
export interface Params$Resource$Projects$Commit extends StandardParameters {
/**
* Auth client or API Key for the request
*/
auth?: string | OAuth2Client | JWT | Compute | UserRefreshClient;
/**
* The ID of the project against which to make the request.
*/
projectId?: string;
/**
* Request body metadata
*/
requestBody?: Schema$CommitRequest;
}
export interface Params$Resource$Projects$Export extends StandardParameters {
/**
* Auth client or API Key for the request
*/
auth?: string | OAuth2Client | JWT | Compute | UserRefreshClient;
/**
* Project ID against which to make the request.
*/
projectId?: string;
/**
* Request body metadata
*/
requestBody?: Schema$GoogleDatastoreAdminV1ExportEntitiesRequest;
}
export interface Params$Resource$Projects$Import extends StandardParameters {
/**
* Auth client or API Key for the request
*/
auth?: string | OAuth2Client | JWT | Compute | UserRefreshClient;
/**
* Project ID against which to make the request.
*/
projectId?: string;
/**
* Request body metadata
*/
requestBody?: Schema$GoogleDatastoreAdminV1ImportEntitiesRequest;
}
export interface Params$Resource$Projects$Lookup extends StandardParameters {
/**
* Auth client or API Key for the request
*/
auth?: string | OAuth2Client | JWT | Compute | UserRefreshClient;
/**
* The ID of the project against which to make the request.
*/
projectId?: string;
/**
* Request body metadata
*/
requestBody?: Schema$LookupRequest;
}
export interface Params$Resource$Projects$Reserveids extends StandardParameters {
/**
* Auth client or API Key for the request
*/
auth?: string | OAuth2Client | JWT | Compute | UserRefreshClient;
/**
* The ID of the project against which to make the request.
*/
projectId?: string;
/**
* Request body metadata
*/
requestBody?: Schema$ReserveIdsRequest;
}
export interface Params$Resource$Projects$Rollback extends StandardParameters {
/**
* Auth client or API Key for the request
*/
auth?: string | OAuth2Client | JWT | Compute | UserRefreshClient;
/**
* The ID of the project against which to make the request.
*/
projectId?: string;
/**
* Request body metadata
*/
requestBody?: Schema$RollbackRequest;
}
export interface Params$Resource$Projects$Runquery extends StandardParameters {
/**
* Auth client or API Key for the request
*/
auth?: string | OAuth2Client | JWT | Compute | UserRefreshClient;
/**
* The ID of the project against which to make the request.
*/
projectId?: string;
/**
* Request body metadata
*/
requestBody?: Schema$RunQueryRequest;
}
export class Resource$Projects$Indexes {
context: APIRequestContext;
constructor(context: APIRequestContext);
/**
* datastore.projects.indexes.create
* @desc Creates the specified index. A newly created index's initial state is `CREATING`. On completion of the returned google.longrunning.Operation, the state will be `READY`. If the index already exists, the call will return an `ALREADY_EXISTS` status. During index creation, the process could result in an error, in which case the index will move to the `ERROR` state. The process can be recovered by fixing the data that caused the error, removing the index with delete, then re-creating the index with create. Indexes with a single property cannot be created.
* @alias datastore.projects.indexes.create
* @memberOf! ()
*
* @param {object} params Parameters for request
* @param {string} params.projectId Project ID against which to make the request.
* @param {().GoogleDatastoreAdminV1Index} params.resource Request body data
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
create(params?: Params$Resource$Projects$Indexes$Create, options?: MethodOptions): GaxiosPromise<Schema$GoogleLongrunningOperation>;
create(params: Params$Resource$Projects$Indexes$Create, options: MethodOptions | BodyResponseCallback<Schema$GoogleLongrunningOperation>, callback: BodyResponseCallback<Schema$GoogleLongrunningOperation>): void;
create(params: Params$Resource$Projects$Indexes$Create, callback: BodyResponseCallback<Schema$GoogleLongrunningOperation>): void;
create(callback: BodyResponseCallback<Schema$GoogleLongrunningOperation>): void;
/**
* datastore.projects.indexes.delete
* @desc Deletes an existing index. An index can only be deleted if it is in a `READY` or `ERROR` state. On successful execution of the request, the index will be in a `DELETING` state. And on completion of the returned google.longrunning.Operation, the index will be removed. During index deletion, the process could result in an error, in which case the index will move to the `ERROR` state. The process can be recovered by fixing the data that caused the error, followed by calling delete again.
* @alias datastore.projects.indexes.delete
* @memberOf! ()
*
* @param {object} params Parameters for request
* @param {string} params.indexId The resource ID of the index to delete.
* @param {string} params.projectId Project ID against which to make the request.
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
delete(params?: Params$Resource$Projects$Indexes$Delete, options?: MethodOptions): GaxiosPromise<Schema$GoogleLongrunningOperation>;
delete(params: Params$Resource$Projects$Indexes$Delete, options: MethodOptions | BodyResponseCallback<Schema$GoogleLongrunningOperation>, callback: BodyResponseCallback<Schema$GoogleLongrunningOperation>): void;
delete(params: Params$Resource$Projects$Indexes$Delete, callback: BodyResponseCallback<Schema$GoogleLongrunningOperation>): void;
delete(callback: BodyResponseCallback<Schema$GoogleLongrunningOperation>): void;
/**
* datastore.projects.indexes.get
* @desc Gets an index.
* @alias datastore.projects.indexes.get
* @memberOf! ()
*
* @param {object} params Parameters for request
* @param {string} params.indexId The resource ID of the index to get.
* @param {string} params.projectId Project ID against which to make the request.
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
get(params?: Params$Resource$Projects$Indexes$Get, options?: MethodOptions): GaxiosPromise<Schema$GoogleDatastoreAdminV1Index>;
get(params: Params$Resource$Projects$Indexes$Get, options: MethodOptions | BodyResponseCallback<Schema$GoogleDatastoreAdminV1Index>, callback: BodyResponseCallback<Schema$GoogleDatastoreAdminV1Index>): void;
get(params: Params$Resource$Projects$Indexes$Get, callback: BodyResponseCallback<Schema$GoogleDatastoreAdminV1Index>): void;
get(callback: BodyResponseCallback<Schema$GoogleDatastoreAdminV1Index>): void;
/**
* datastore.projects.indexes.list
* @desc Lists the indexes that match the specified filters. Datastore uses an eventually consistent query to fetch the list of indexes and may occasionally return stale results.
* @alias datastore.projects.indexes.list
* @memberOf! ()
*
* @param {object} params Parameters for request
* @param {string=} params.filter
* @param {integer=} params.pageSize The maximum number of items to return. If zero, then all results will be returned.
* @param {string=} params.pageToken The next_page_token value returned from a previous List request, if any.
* @param {string} params.projectId Project ID against which to make the request.
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
list(params?: Params$Resource$Projects$Indexes$List, options?: MethodOptions): GaxiosPromise<Schema$GoogleDatastoreAdminV1ListIndexesResponse>;
list(params: Params$Resource$Projects$Indexes$List, options: MethodOptions | BodyResponseCallback<Schema$GoogleDatastoreAdminV1ListIndexesResponse>, callback: BodyResponseCallback<Schema$GoogleDatastoreAdminV1ListIndexesResponse>): void;
list(params: Params$Resource$Projects$Indexes$List, callback: BodyResponseCallback<Schema$GoogleDatastoreAdminV1ListIndexesResponse>): void;
list(callback: BodyResponseCallback<Schema$GoogleDatastoreAdminV1ListIndexesResponse>): void;
}
export interface Params$Resource$Projects$Indexes$Create extends StandardParameters {
/**
* Auth client or API Key for the request
*/
auth?: string | OAuth2Client | JWT | Compute | UserRefreshClient;
/**
* Project ID against which to make the request.
*/
projectId?: string;
/**
* Request body metadata
*/
requestBody?: Schema$GoogleDatastoreAdminV1Index;
}
export interface Params$Resource$Projects$Indexes$Delete extends StandardParameters {
/**
* Auth client or API Key for the request
*/
auth?: string | OAuth2Client | JWT | Compute | UserRefreshClient;
/**
* The resource ID of the index to delete.
*/
indexId?: string;
/**
* Project ID against which to make the request.
*/
projectId?: string;
}
export interface Params$Resource$Projects$Indexes$Get extends StandardParameters {
/**
* Auth client or API Key for the request
*/
auth?: string | OAuth2Client | JWT | Compute | UserRefreshClient;
/**
* The resource ID of the index to get.
*/
indexId?: string;
/**
* Project ID against which to make the request.
*/
projectId?: string;
}
export interface Params$Resource$Projects$Indexes$List extends StandardParameters {
/**
* Auth client or API Key for the request
*/
auth?: string | OAuth2Client | JWT | Compute | UserRefreshClient;
/**
*
*/
filter?: string;
/**
* The maximum number of items to return. If zero, then all results will be returned.
*/
pageSize?: number;
/**
* The next_page_token value returned from a previous List request, if any.
*/
pageToken?: string;
/**
* Project ID against which to make the request.
*/
projectId?: string;
}
export class Resource$Projects$Operations {
context: APIRequestContext;
constructor(context: APIRequestContext);
/**
* datastore.projects.operations.cancel
* @desc Starts asynchronous cancellation on a long-running operation. The server makes a best effort to cancel the operation, but success is not guaranteed. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`. Clients can use Operations.GetOperation or other methods to check whether the cancellation succeeded or whether the operation completed despite cancellation. On successful cancellation, the operation is not deleted; instead, it becomes an operation with an Operation.error value with a google.rpc.Status.code of 1, corresponding to `Code.CANCELLED`.
* @alias datastore.projects.operations.cancel
* @memberOf! ()
*
* @param {object} params Parameters for request
* @param {string} params.name The name of the operation resource to be cancelled.
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
cancel(params?: Params$Resource$Projects$Operations$Cancel, options?: MethodOptions): GaxiosPromise<Schema$Empty>;
cancel(params: Params$Resource$Projects$Operations$Cancel, options: MethodOptions | BodyResponseCallback<Schema$Empty>, callback: BodyResponseCallback<Schema$Empty>): void;
cancel(params: Params$Resource$Projects$Operations$Cancel, callback: BodyResponseCallback<Schema$Empty>): void;
cancel(callback: BodyResponseCallback<Schema$Empty>): void;
/**
* datastore.projects.operations.delete
* @desc Deletes a long-running operation. This method indicates that the client is no longer interested in the operation result. It does not cancel the operation. If the server doesn't support this method, it returns `google.rpc.Code.UNIMPLEMENTED`.
* @alias datastore.projects.operations.delete
* @memberOf! ()
*
* @param {object} params Parameters for request
* @param {string} params.name The name of the operation resource to be deleted.
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
delete(params?: Params$Resource$Projects$Operations$Delete, options?: MethodOptions): GaxiosPromise<Schema$Empty>;
delete(params: Params$Resource$Projects$Operations$Delete, options: MethodOptions | BodyResponseCallback<Schema$Empty>, callback: BodyResponseCallback<Schema$Empty>): void;
delete(params: Params$Resource$Projects$Operations$Delete, callback: BodyResponseCallback<Schema$Empty>): void;
delete(callback: BodyResponseCallback<Schema$Empty>): void;
/**
* datastore.projects.operations.get
* @desc Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service.
* @alias datastore.projects.operations.get
* @memberOf! ()
*
* @param {object} params Parameters for request
* @param {string} params.name The name of the operation resource.
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
get(params?: Params$Resource$Projects$Operations$Get, options?: MethodOptions): GaxiosPromise<Schema$GoogleLongrunningOperation>;
get(params: Params$Resource$Projects$Operations$Get, options: MethodOptions | BodyResponseCallback<Schema$GoogleLongrunningOperation>, callback: BodyResponseCallback<Schema$GoogleLongrunningOperation>): void;
get(params: Params$Resource$Projects$Operations$Get, callback: BodyResponseCallback<Schema$GoogleLongrunningOperation>): void;
get(callback: BodyResponseCallback<Schema$GoogleLongrunningOperation>): void;
/**
* datastore.projects.operations.list
* @desc Lists operations that match the specified filter in the request. If the server doesn't support this method, it returns `UNIMPLEMENTED`. NOTE: the `name` binding allows API services to override the binding to use different resource name schemes, such as `users/x/operations`. To override the binding, API services can add a binding such as `"/v1/{name=users/x}/operations"` to their service configuration. For backwards compatibility, the default name includes the operations collection id, however overriding users must ensure the name binding is the parent resource, without the operations collection id.
* @alias datastore.projects.operations.list
* @memberOf! ()
*
* @param {object} params Parameters for request
* @param {string=} params.filter The standard list filter.
* @param {string} params.name The name of the operation's parent resource.
* @param {integer=} params.pageSize The standard list page size.
* @param {string=} params.pageToken The standard list page token.
* @param {object} [options] Optionally override request options, such as `url`, `method`, and `encoding`.
* @param {callback} callback The callback that handles the response.
* @return {object} Request object
*/
list(params?: Params$Resource$Projects$Operations$List, options?: MethodOptions): GaxiosPromise<Schema$GoogleLongrunningListOperationsResponse>;
list(params: Params$Resource$Projects$Operations$List, options: MethodOptions | BodyResponseCallback<Schema$GoogleLongrunningListOperationsResponse>, callback: BodyResponseCallback<Schema$GoogleLongrunningListOperationsResponse>): void;
list(params: Params$Resource$Projects$Operations$List, callback: BodyResponseCallback<Schema$GoogleLongrunningListOperationsResponse>): void;
list(callback: BodyResponseCallback<Schema$GoogleLongrunningListOperationsResponse>): void;
}
export interface Params$Resource$Projects$Operations$Cancel extends StandardParameters {
/**
* Auth client or API Key for the request
*/
auth?: string | OAuth2Client | JWT | Compute | UserRefreshClient;
/**
* The name of the operation resource to be cancelled.
*/
name?: string;
}
export interface Params$Resource$Projects$Operations$Delete extends StandardParameters {
/**
* Auth client or API Key for the request
*/
auth?: string | OAuth2Client | JWT | Compute | UserRefreshClient;
/**
* The name of the operation resource to be deleted.
*/
name?: string;
}
export interface Params$Resource$Projects$Operations$Get extends StandardParameters {
/**
* Auth client or API Key for the request
*/
auth?: string | OAuth2Client | JWT | Compute | UserRefreshClient;
/**
* The name of the operation resource.
*/
name?: string;
}
export interface Params$Resource$Projects$Operations$List extends StandardParameters {
/**
* Auth client or API Key for the request
*/
auth?: string | OAuth2Client | JWT | Compute | UserRefreshClient;
/**
* The standard list filter.
*/
filter?: string;
/**
* The name of the operation's parent resource.
*/
name?: string;
/**
* The standard list page size.
*/
pageSize?: number;
/**
* The standard list page token.
*/
pageToken?: string;
}
export {};
}