forked from TEAMMATES/teammates
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathgenerated_bulkloader.yaml
833 lines (665 loc) · 26.9 KB
/
generated_bulkloader.yaml
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
# Autogenerated bulkloader.yaml file.
# You must edit this file before using it. TODO: Remove this line when done.
# At a minimum address the items marked with TODO:
# * Fill in connector and connector_options
# * Review the property_map.
# - Ensure the 'external_name' matches the name of your CSV column,
# XML tag, etc.
# - Check that __key__ property is what you want. Its value will become
# the key name on import, and on export the value will be the Key
# object. If you would like automatic key generation on import and
# omitting the key on export, you can remove the entire __key__
# property from the property map.
# If you have module(s) with your model classes, add them here. Also
# change the kind properties to model_class.
python_preamble:
- import: base64
- import: re
- import: google.appengine.ext.bulkload.transform
- import: google.appengine.ext.bulkload.bulkloader_wizard
- import: google.appengine.ext.db
- import: google.appengine.api.datastore
- import: google.appengine.api.users
transformers:
- kind: Account
connector: csv
connector_options:
encoding: utf-8
columns: from_header
property_map:
- property: __key__
external_name: key
export_transform: transform.key_id_or_name_as_string
- property: createdAt
external_name: createdAt
# Type: Date/Time Stats: 57 properties of this type in this kind.
import_transform: transform.import_date_time('%Y-%m-%dT%H:%M:%S')
export_transform: transform.export_date_time('%Y-%m-%dT%H:%M:%S')
- property: email
external_name: email
# Type: String Stats: 57 properties of this type in this kind.
- property: institute
external_name: institute
# Type: String Stats: 57 properties of this type in this kind.
- property: isInstructor
external_name: isInstructor
# Type: Boolean Stats: 57 properties of this type in this kind.
import_transform: transform.regexp_bool('true', re.IGNORECASE)
- property: name
external_name: name
# Type: String Stats: 57 properties of this type in this kind.
- kind: Comment
connector: csv
connector_options:
encoding: utf-8
columns: from_header
property_map:
- property: __key__
external_name: key
export_transform: transform.key_id_or_name_as_string
- property: commentText
external_name: commentText
# Type: Text Stats: 17 properties of this type in this kind.
import_transform: db.Text
- property: courseId
external_name: courseId
# Type: String Stats: 17 properties of this type in this kind.
- property: createdAt
external_name: createdAt
# Type: Date/Time Stats: 17 properties of this type in this kind.
import_transform: transform.import_date_time('%Y-%m-%dT%H:%M:%S')
export_transform: transform.export_date_time('%Y-%m-%dT%H:%M:%S')
- property: giverEmail
external_name: giverEmail
# Type: String Stats: 17 properties of this type in this kind.
- property: receiverEmail
external_name: receiverEmail
# Type: String Stats: 17 properties of this type in this kind.
- kind: Course
connector: csv
connector_options:
encoding: utf-8
columns: from_header
property_map:
- property: __key__
external_name: key
export_transform: transform.key_id_or_name_as_string
- property: archiveStatus
external_name: archiveStatus
# Type: Boolean Stats: 71 properties of this type in this kind.
import_transform: transform.regexp_bool('true', re.IGNORECASE)
- property: createdAt
external_name: createdAt
# Type: Date/Time Stats: 71 properties of this type in this kind.
import_transform: transform.import_date_time('%Y-%m-%dT%H:%M:%S')
export_transform: transform.export_date_time('%Y-%m-%dT%H:%M:%S')
- property: name
external_name: name
# Type: String Stats: 71 properties of this type in this kind.
- kind: Evaluation
connector: csv
connector_options:
encoding: utf-8
columns: from_header
property_map:
- property: __key__
external_name: key
export_transform: transform.key_id_or_name_as_string
- property: activated
external_name: activated
# Type: Boolean Stats: 57 properties of this type in this kind.
import_transform: transform.regexp_bool('true', re.IGNORECASE)
- property: commentsEnabled
external_name: commentsEnabled
# Type: Boolean Stats: 57 properties of this type in this kind.
import_transform: transform.regexp_bool('true', re.IGNORECASE)
- property: courseID
external_name: courseID
# Type: String Stats: 57 properties of this type in this kind.
- property: endTime
external_name: endTime
# Type: Date/Time Stats: 57 properties of this type in this kind.
import_transform: transform.import_date_time('%Y-%m-%dT%H:%M:%S')
export_transform: transform.export_date_time('%Y-%m-%dT%H:%M:%S')
- property: gracePeriod
external_name: gracePeriod
# Type: Integer Stats: 57 properties of this type in this kind.
import_transform: transform.none_if_empty(int)
- property: longInstructions
external_name: longInstructions
# Type: Text Stats: 57 properties of this type in this kind.
import_transform: db.Text
- property: name
external_name: name
# Type: String Stats: 57 properties of this type in this kind.
- property: published
external_name: published
# Type: Boolean Stats: 57 properties of this type in this kind.
import_transform: transform.regexp_bool('true', re.IGNORECASE)
- property: startTime
external_name: startTime
# Type: Date/Time Stats: 57 properties of this type in this kind.
import_transform: transform.import_date_time('%Y-%m-%dT%H:%M:%S')
export_transform: transform.export_date_time('%Y-%m-%dT%H:%M:%S')
- property: timeZone
external_name: timeZone
# Type: Float Stats: 57 properties of this type in this kind.
import_transform: transform.none_if_empty(float)
- kind: FeedbackQuestion
connector: csv
connector_options:
encoding: utf-8
columns: from_header
property_map:
- property: __key__
external_name: key
export_transform: transform.key_id_or_name_as_string
- property: courseId
external_name: courseId
# Type: String Stats: 210 properties of this type in this kind.
- property: creatorEmail
external_name: creatorEmail
# Type: String Stats: 210 properties of this type in this kind.
- property: feedbackSessionName
external_name: feedbackSessionName
# Type: String Stats: 210 properties of this type in this kind.
- property: giverType
external_name: giverType
# Type: String Stats: 210 properties of this type in this kind.
- property: numberOfEntitiesToGiveFeedbackTo
external_name: numberOfEntitiesToGiveFeedbackTo
# Type: Integer Stats: 210 properties of this type in this kind.
import_transform: transform.none_if_empty(int)
- property: questionNumber
external_name: questionNumber
# Type: Integer Stats: 210 properties of this type in this kind.
import_transform: transform.none_if_empty(int)
- property: questionText
external_name: questionText
# Type: Text Stats: 210 properties of this type in this kind.
import_transform: db.Text
- property: questionType
external_name: questionType
# Type: String Stats: 210 properties of this type in this kind.
- property: recipientType
external_name: recipientType
# Type: String Stats: 210 properties of this type in this kind.
- property: showGiverNameTo
external_name: showGiverNameTo
# Type: String Stats: 271 properties of this type in this kind.
- property: showRecipientNameTo
external_name: showRecipientNameTo
# Type: String Stats: 296 properties of this type in this kind.
- property: showResponsesTo
external_name: showResponsesTo
# Type: String Stats: 399 properties of this type in this kind.
- kind: FeedbackResponseComment
connector: csv
connector_options:
encoding: utf-8
columns: from_header
property_map:
- property: __key__
external_name: key
export_transform: transform.key_id_or_name_as_string
- property: commentText
external_name: commentText
# Type: Text Stats: 25 properties of this type in this kind.
import_transform: db.Text
- property: courseId
external_name: courseId
# Type: String Stats: 25 properties of this type in this kind.
- property: createdAt
external_name: createdAt
# Type: Date/Time Stats: 25 properties of this type in this kind.
import_transform: transform.import_date_time('%Y-%m-%dT%H:%M:%S')
export_transform: transform.export_date_time('%Y-%m-%dT%H:%M:%S')
- property: feedbackQuestionId
external_name: feedbackQuestionId
# Type: String Stats: 25 properties of this type in this kind.
- property: feedbackResponseId
external_name: feedbackResponseId
# Type: String Stats: 25 properties of this type in this kind.
- property: feedbackSessionName
external_name: feedbackSessionName
# Type: String Stats: 25 properties of this type in this kind.
- property: giverEmail
external_name: giverEmail
# Type: String Stats: 25 properties of this type in this kind.
- kind: FeedbackResponse
connector: csv
connector_options:
encoding: utf-8
columns: from_header
property_map:
- property: __key__
external_name: key
export_transform: transform.key_id_or_name_as_string
- property: answer
external_name: answer
# Type: Text Stats: 216 properties of this type in this kind.
import_transform: db.Text
- property: courseId
external_name: courseId
# Type: String Stats: 216 properties of this type in this kind.
- property: feedbackQuestionId
external_name: feedbackQuestionId
# Type: String Stats: 216 properties of this type in this kind.
- property: feedbackQuestionType
external_name: feedbackQuestionType
# Type: String Stats: 216 properties of this type in this kind.
- property: feedbackSessionName
external_name: feedbackSessionName
# Type: String Stats: 216 properties of this type in this kind.
- property: giverEmail
external_name: giverEmail
# Type: String Stats: 216 properties of this type in this kind.
- property: receiver
external_name: receiver
# Type: String Stats: 216 properties of this type in this kind.
- kind: FeedbackSession
connector: csv
connector_options:
encoding: utf-8
columns: from_header
property_map:
- property: __key__
external_name: key
export_transform: transform.key_id_or_name_as_string
- property: courseId
external_name: courseId
# Type: String Stats: 83 properties of this type in this kind.
- property: createdTime
external_name: createdTime
# Type: Date/Time Stats: 83 properties of this type in this kind.
import_transform: transform.import_date_time('%Y-%m-%dT%H:%M:%S')
export_transform: transform.export_date_time('%Y-%m-%dT%H:%M:%S')
- property: creatorEmail
external_name: creatorEmail
# Type: String Stats: 83 properties of this type in this kind.
- property: endTime
external_name: endTime
# Type: Date/Time Stats: 77 properties of this type in this kind.
import_transform: transform.import_date_time('%Y-%m-%dT%H:%M:%S')
export_transform: transform.export_date_time('%Y-%m-%dT%H:%M:%S')
- property: feedbackSessionName
external_name: feedbackSessionName
# Type: String Stats: 83 properties of this type in this kind.
- property: feedbackSessionType
external_name: feedbackSessionType
# Type: String Stats: 83 properties of this type in this kind.
- property: gracePeriod
external_name: gracePeriod
# Type: Integer Stats: 83 properties of this type in this kind.
import_transform: transform.none_if_empty(int)
- property: instructions
external_name: instructions
# Type: Text Stats: 83 properties of this type in this kind.
import_transform: db.Text
- property: isClosingEmailEnabled
external_name: isClosingEmailEnabled
# Type: Boolean Stats: 83 properties of this type in this kind.
import_transform: transform.regexp_bool('true', re.IGNORECASE)
- property: isOpeningEmailEnabled
external_name: isOpeningEmailEnabled
# Type: Boolean Stats: 83 properties of this type in this kind.
import_transform: transform.regexp_bool('true', re.IGNORECASE)
- property: isPublishedEmailEnabled
external_name: isPublishedEmailEnabled
# Type: Boolean Stats: 83 properties of this type in this kind.
import_transform: transform.regexp_bool('true', re.IGNORECASE)
- property: resultsVisibleFromTime
external_name: resultsVisibleFromTime
# Type: Date/Time Stats: 83 properties of this type in this kind.
import_transform: transform.import_date_time('%Y-%m-%dT%H:%M:%S')
export_transform: transform.export_date_time('%Y-%m-%dT%H:%M:%S')
- property: sentOpenEmail
external_name: sentOpenEmail
# Type: Boolean Stats: 83 properties of this type in this kind.
import_transform: transform.regexp_bool('true', re.IGNORECASE)
- property: sentPublishedEmail
external_name: sentPublishedEmail
# Type: Boolean Stats: 83 properties of this type in this kind.
import_transform: transform.regexp_bool('true', re.IGNORECASE)
- property: sessionVisibleFromTime
external_name: sessionVisibleFromTime
# Type: Date/Time Stats: 83 properties of this type in this kind.
import_transform: transform.import_date_time('%Y-%m-%dT%H:%M:%S')
export_transform: transform.export_date_time('%Y-%m-%dT%H:%M:%S')
- property: startTime
external_name: startTime
# Type: Date/Time Stats: 83 properties of this type in this kind.
import_transform: transform.import_date_time('%Y-%m-%dT%H:%M:%S')
export_transform: transform.export_date_time('%Y-%m-%dT%H:%M:%S')
- property: timeZoneDouble
external_name: timeZoneDouble
# Type: Float Stats: 83 properties of this type in this kind.
import_transform: transform.none_if_empty(float)
- property: timeZone
external_name: timeZone
# Type: Integer Stats: 83 properties of this type in this kind.
import_transform: transform.none_if_empty(int)
- kind: Instructor
connector: csv
connector_options:
encoding: utf-8
columns: from_header
property_map:
- property: __key__
external_name: key
export_transform: transform.key_id_or_name_as_string
- property: courseId
external_name: courseId
# Type: String Stats: 23 properties of this type in this kind.
- property: email
external_name: email
# Type: String Stats: 23 properties of this type in this kind.
- property: googleId
external_name: googleId
# Type: String Stats: 21 properties of this type in this kind.
- property: name
external_name: name
# Type: String Stats: 23 properties of this type in this kind.
- property: registrationKey
external_name: registrationKey
# Type: String Stats: 23 properties of this type in this kind.
- kind: Student
connector: csv
connector_options:
encoding: utf-8
columns: from_header
property_map:
- property: __key__
external_name: key
export_transform: transform.key_id_or_name_as_string
- property: ID
external_name: ID
# Type: String Stats: 148 properties of this type in this kind.
- property: comments
external_name: comments
# Type: String Stats: 156 properties of this type in this kind.
- property: courseID
external_name: courseID
# Type: String Stats: 156 properties of this type in this kind.
- property: email
external_name: email
# Type: String Stats: 156 properties of this type in this kind.
- property: name
external_name: name
# Type: String Stats: 156 properties of this type in this kind.
- property: teamName
external_name: teamName
# Type: String Stats: 156 properties of this type in this kind.
- kind: Submission
connector: csv
connector_options:
encoding: utf-8
columns: from_header
property_map:
- property: __key__
external_name: key
export_transform: transform.key_id_or_name_as_string
- property: commentsToStudent
external_name: commentsToStudent
# Type: Text Stats: 864 properties of this type in this kind.
import_transform: db.Text
- property: courseID
external_name: courseID
# Type: String Stats: 864 properties of this type in this kind.
- property: evaluationName
external_name: evaluationName
# Type: String Stats: 864 properties of this type in this kind.
- property: fromStudent
external_name: fromStudent
# Type: String Stats: 864 properties of this type in this kind.
- property: justification
external_name: justification
# Type: Text Stats: 864 properties of this type in this kind.
import_transform: db.Text
- property: points
external_name: points
# Type: Integer Stats: 864 properties of this type in this kind.
import_transform: transform.none_if_empty(int)
- property: teamName
external_name: teamName
# Type: String Stats: 864 properties of this type in this kind.
- property: toStudent
external_name: toStudent
# Type: String Stats: 864 properties of this type in this kind.
- kind: _AE_Backup_Information_Kind_Files
connector: csv
connector_options:
encoding: utf-8
columns: from_header
property_map:
- property: __key__
external_name: key
export_transform: transform.key_id_or_name_as_string
- property: files
external_name: files
# Type: String Stats: 143 properties of this type in this kind.
- kind: _AE_Backup_Information_Kind_Type_Info
connector: csv
connector_options:
encoding: utf-8
columns: from_header
property_map:
- property: __key__
external_name: key
export_transform: transform.key_id_or_name_as_string
- property: entity_type_info
external_name: entity_type_info
# Type: Text Stats: 143 properties of this type in this kind.
import_transform: db.Text
- property: is_partial
external_name: is_partial
# Type: Boolean Stats: 143 properties of this type in this kind.
import_transform: transform.regexp_bool('true', re.IGNORECASE)
- kind: _AE_Backup_Information
connector: csv
connector_options:
encoding: utf-8
columns: from_header
property_map:
- property: __key__
external_name: key
export_transform: transform.key_id_or_name_as_string
- property: complete_time
external_name: complete_time
# Type: Date/Time Stats: 12 properties of this type in this kind.
import_transform: transform.import_date_time('%Y-%m-%dT%H:%M:%S')
export_transform: transform.export_date_time('%Y-%m-%dT%H:%M:%S')
- property: completed_jobs
external_name: completed_jobs
# Type: String Stats: 56 properties of this type in this kind.
- property: filesystem
external_name: filesystem
# Type: String Stats: 12 properties of this type in this kind.
- property: kinds
external_name: kinds
# Type: String Stats: 56 properties of this type in this kind.
- property: name
external_name: name
# Type: String Stats: 12 properties of this type in this kind.
- property: start_time
external_name: start_time
# Type: Date/Time Stats: 12 properties of this type in this kind.
import_transform: transform.import_date_time('%Y-%m-%dT%H:%M:%S')
export_transform: transform.export_date_time('%Y-%m-%dT%H:%M:%S')
- kind: _AE_DatastoreAdmin_Operation
connector: csv
connector_options:
encoding: utf-8
columns: from_header
property_map:
- property: __key__
external_name: key
export_transform: transform.key_id_or_name_as_string
- property: active_job_ids
external_name: active_job_ids
# Type: String Stats: 1 properties of this type in this kind.
- property: active_jobs
external_name: active_jobs
# Type: Integer Stats: 13 properties of this type in this kind.
import_transform: transform.none_if_empty(int)
- property: completed_jobs
external_name: completed_jobs
# Type: Integer Stats: 13 properties of this type in this kind.
import_transform: transform.none_if_empty(int)
- property: description
external_name: description
# Type: Text Stats: 13 properties of this type in this kind.
import_transform: db.Text
- property: last_updated
external_name: last_updated
# Type: Date/Time Stats: 13 properties of this type in this kind.
import_transform: transform.import_date_time('%Y-%m-%dT%H:%M:%S')
export_transform: transform.export_date_time('%Y-%m-%dT%H:%M:%S')
- property: status
external_name: status
# Type: String Stats: 13 properties of this type in this kind.
- property: status_info
external_name: status_info
# Type: String Stats: 13 properties of this type in this kind.
- kind: _GAE_MR_MapreduceState
connector: csv
connector_options:
encoding: utf-8
columns: from_header
property_map:
- property: __key__
external_name: key
export_transform: transform.key_id_or_name_as_string
- property: aborted_shards
external_name: aborted_shards
# Type: Integer Stats: 1 properties of this type in this kind.
import_transform: transform.none_if_empty(int)
- property: active
external_name: active
# Type: Boolean Stats: 1 properties of this type in this kind.
import_transform: transform.regexp_bool('true', re.IGNORECASE)
- property: active_shards
external_name: active_shards
# Type: Integer Stats: 1 properties of this type in this kind.
import_transform: transform.none_if_empty(int)
- property: chart_url
external_name: chart_url
# Type: Text Stats: 1 properties of this type in this kind.
import_transform: db.Text
- property: chart_width
external_name: chart_width
# Type: Integer Stats: 1 properties of this type in this kind.
import_transform: transform.none_if_empty(int)
- property: counters_map
external_name: counters_map
# Type: Text Stats: 1 properties of this type in this kind.
import_transform: db.Text
- property: failed_shards
external_name: failed_shards
# Type: Integer Stats: 1 properties of this type in this kind.
import_transform: transform.none_if_empty(int)
- property: last_poll_time
external_name: last_poll_time
# Type: Date/Time Stats: 1 properties of this type in this kind.
import_transform: transform.import_date_time('%Y-%m-%dT%H:%M:%S')
export_transform: transform.export_date_time('%Y-%m-%dT%H:%M:%S')
- property: mapreduce_spec
external_name: mapreduce_spec
# Type: Text Stats: 1 properties of this type in this kind.
import_transform: db.Text
- property: result_status
external_name: result_status
# Type: String Stats: 1 properties of this type in this kind.
- property: sparkline_url
external_name: sparkline_url
# Type: Text Stats: 1 properties of this type in this kind.
import_transform: db.Text
- property: start_time
external_name: start_time
# Type: Date/Time Stats: 1 properties of this type in this kind.
import_transform: transform.import_date_time('%Y-%m-%dT%H:%M:%S')
export_transform: transform.export_date_time('%Y-%m-%dT%H:%M:%S')
- kind: _GAE_MR_ShardState
connector: csv
connector_options:
encoding: utf-8
columns: from_header
property_map:
- property: __key__
external_name: key
export_transform: transform.key_id_or_name_as_string
- property: acquired_once
external_name: acquired_once
# Type: Boolean Stats: 8 properties of this type in this kind.
import_transform: transform.regexp_bool('true', re.IGNORECASE)
- property: active
external_name: active
# Type: Boolean Stats: 8 properties of this type in this kind.
import_transform: transform.regexp_bool('true', re.IGNORECASE)
- property: counters_map
external_name: counters_map
# Type: Text Stats: 8 properties of this type in this kind.
import_transform: db.Text
- property: last_work_item
external_name: last_work_item
# Type: Text Stats: 8 properties of this type in this kind.
import_transform: db.Text
- property: mapreduce_id
external_name: mapreduce_id
# Type: String Stats: 8 properties of this type in this kind.
- property: result_status
external_name: result_status
# Type: String Stats: 8 properties of this type in this kind.
- property: retries
external_name: retries
# Type: Integer Stats: 8 properties of this type in this kind.
import_transform: transform.none_if_empty(int)
- property: shard_description
external_name: shard_description
# Type: Text Stats: 8 properties of this type in this kind.
import_transform: db.Text
- property: slice_id
external_name: slice_id
# Type: Integer Stats: 8 properties of this type in this kind.
import_transform: transform.none_if_empty(int)
- property: slice_retries
external_name: slice_retries
# Type: Integer Stats: 8 properties of this type in this kind.
import_transform: transform.none_if_empty(int)
- property: update_time
external_name: update_time
# Type: Date/Time Stats: 8 properties of this type in this kind.
import_transform: transform.import_date_time('%Y-%m-%dT%H:%M:%S')
export_transform: transform.export_date_time('%Y-%m-%dT%H:%M:%S')
- kind: _GAE_MR_TaskPayload
connector: csv
connector_options:
encoding: utf-8
columns: from_header
property_map:
- property: __key__
external_name: key
export_transform: transform.key_id_or_name_as_string
- property: payload
external_name: payload
# Type: Blob Stats: 16 properties of this type in this kind.
import_transform: transform.blobproperty_from_base64
export_transform: base64.b64encode
- kind: _ah_SESSION
connector: csv
connector_options:
encoding: utf-8
columns: from_header
property_map:
- property: __key__
external_name: key
export_transform: transform.key_id_or_name_as_string
- property: _expires
external_name: _expires
# Type: Integer Stats: 67 properties of this type in this kind.
import_transform: transform.none_if_empty(int)
- property: _values
external_name: _values
# Type: Blob Stats: 67 properties of this type in this kind.
import_transform: transform.blobproperty_from_base64
export_transform: base64.b64encode