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
|
unit googlecloudbuild;
{$MODE objfpc}
{$H+}
interface
uses sysutils, classes, googleservice, restbase, googlebase;
type
//Top-level schema types
TStatus = Class;
TBuildOperationMetadata = Class;
TSource = Class;
TOperation = Class;
TBuiltImage = Class;
TStorageSource = Class;
TResults = Class;
TBuild = Class;
TCancelBuildRequest = Class;
TListOperationsResponse = Class;
TBuildStep = Class;
TListBuildsResponse = Class;
TStatusArray = Array of TStatus;
TBuildOperationMetadataArray = Array of TBuildOperationMetadata;
TSourceArray = Array of TSource;
TOperationArray = Array of TOperation;
TBuiltImageArray = Array of TBuiltImage;
TStorageSourceArray = Array of TStorageSource;
TResultsArray = Array of TResults;
TBuildArray = Array of TBuild;
TCancelBuildRequestArray = Array of TCancelBuildRequest;
TListOperationsResponseArray = Array of TListOperationsResponse;
TBuildStepArray = Array of TBuildStep;
TListBuildsResponseArray = Array of TListBuildsResponse;
//Anonymous types, using auto-generated names
TStatusTypedetailsItem = Class;
TOperationTypemetadata = Class;
TOperationTyperesponse = Class;
TStatusTypedetailsArray = Array of TStatusTypedetailsItem;
TResultsTypeimagesArray = Array of TBuiltImage;
TBuildTypestepsArray = Array of TBuildStep;
TListOperationsResponseTypeoperationsArray = Array of TOperation;
TListBuildsResponseTypebuildsArray = Array of TBuild;
{ --------------------------------------------------------------------
TStatusTypedetailsItem
--------------------------------------------------------------------}
TStatusTypedetailsItem = Class(TGoogleBaseObject)
Private
Protected
//Property setters
Public
Class Function AllowAdditionalProperties : Boolean; override;
Published
end;
TStatusTypedetailsItemClass = Class of TStatusTypedetailsItem;
{ --------------------------------------------------------------------
TStatus
--------------------------------------------------------------------}
TStatus = Class(TGoogleBaseObject)
Private
Fcode : integer;
Fdetails : TStatusTypedetailsArray;
Fmessage : String;
Protected
//Property setters
Procedure Setcode(AIndex : Integer; const AValue : integer); virtual;
Procedure Setdetails(AIndex : Integer; const AValue : TStatusTypedetailsArray); virtual;
Procedure Setmessage(AIndex : Integer; const AValue : String); virtual;
//2.6.4. bug workaround
{$IFDEF VER2_6}
Procedure SetArrayLength(Const AName : String; ALength : Longint); override;
{$ENDIF VER2_6}
Public
Published
Property code : integer Index 0 Read Fcode Write Setcode;
Property details : TStatusTypedetailsArray Index 8 Read Fdetails Write Setdetails;
Property message : String Index 16 Read Fmessage Write Setmessage;
end;
TStatusClass = Class of TStatus;
{ --------------------------------------------------------------------
TBuildOperationMetadata
--------------------------------------------------------------------}
TBuildOperationMetadata = Class(TGoogleBaseObject)
Private
Fbuild : TBuild;
Protected
//Property setters
Procedure Setbuild(AIndex : Integer; const AValue : TBuild); virtual;
Public
Published
Property build : TBuild Index 0 Read Fbuild Write Setbuild;
end;
TBuildOperationMetadataClass = Class of TBuildOperationMetadata;
{ --------------------------------------------------------------------
TSource
--------------------------------------------------------------------}
TSource = Class(TGoogleBaseObject)
Private
FstorageSource : TStorageSource;
Protected
//Property setters
Procedure SetstorageSource(AIndex : Integer; const AValue : TStorageSource); virtual;
Public
Published
Property storageSource : TStorageSource Index 0 Read FstorageSource Write SetstorageSource;
end;
TSourceClass = Class of TSource;
{ --------------------------------------------------------------------
TOperationTypemetadata
--------------------------------------------------------------------}
TOperationTypemetadata = Class(TGoogleBaseObject)
Private
Protected
//Property setters
Public
Class Function AllowAdditionalProperties : Boolean; override;
Published
end;
TOperationTypemetadataClass = Class of TOperationTypemetadata;
{ --------------------------------------------------------------------
TOperationTyperesponse
--------------------------------------------------------------------}
TOperationTyperesponse = Class(TGoogleBaseObject)
Private
Protected
//Property setters
Public
Class Function AllowAdditionalProperties : Boolean; override;
Published
end;
TOperationTyperesponseClass = Class of TOperationTyperesponse;
{ --------------------------------------------------------------------
TOperation
--------------------------------------------------------------------}
TOperation = Class(TGoogleBaseObject)
Private
Ferror : TStatus;
Fdone : boolean;
Fmetadata : TOperationTypemetadata;
Fresponse : TOperationTyperesponse;
Fname : String;
Protected
//Property setters
Procedure Seterror(AIndex : Integer; const AValue : TStatus); virtual;
Procedure Setdone(AIndex : Integer; const AValue : boolean); virtual;
Procedure Setmetadata(AIndex : Integer; const AValue : TOperationTypemetadata); virtual;
Procedure Setresponse(AIndex : Integer; const AValue : TOperationTyperesponse); virtual;
Procedure Setname(AIndex : Integer; const AValue : String); virtual;
Public
Published
Property error : TStatus Index 0 Read Ferror Write Seterror;
Property done : boolean Index 8 Read Fdone Write Setdone;
Property metadata : TOperationTypemetadata Index 16 Read Fmetadata Write Setmetadata;
Property response : TOperationTyperesponse Index 24 Read Fresponse Write Setresponse;
Property name : String Index 32 Read Fname Write Setname;
end;
TOperationClass = Class of TOperation;
{ --------------------------------------------------------------------
TBuiltImage
--------------------------------------------------------------------}
TBuiltImage = Class(TGoogleBaseObject)
Private
Fdigest : String;
Fname : String;
Protected
//Property setters
Procedure Setdigest(AIndex : Integer; const AValue : String); virtual;
Procedure Setname(AIndex : Integer; const AValue : String); virtual;
Public
Published
Property digest : String Index 0 Read Fdigest Write Setdigest;
Property name : String Index 8 Read Fname Write Setname;
end;
TBuiltImageClass = Class of TBuiltImage;
{ --------------------------------------------------------------------
TStorageSource
--------------------------------------------------------------------}
TStorageSource = Class(TGoogleBaseObject)
Private
Fbucket : String;
Fgeneration : String;
F_object : String;
Protected
Class Function ExportPropertyName(Const AName : String) : string; override;
//Property setters
Procedure Setbucket(AIndex : Integer; const AValue : String); virtual;
Procedure Setgeneration(AIndex : Integer; const AValue : String); virtual;
Procedure Set_object(AIndex : Integer; const AValue : String); virtual;
Public
Published
Property bucket : String Index 0 Read Fbucket Write Setbucket;
Property generation : String Index 8 Read Fgeneration Write Setgeneration;
Property _object : String Index 16 Read F_object Write Set_object;
end;
TStorageSourceClass = Class of TStorageSource;
{ --------------------------------------------------------------------
TResults
--------------------------------------------------------------------}
TResults = Class(TGoogleBaseObject)
Private
Fimages : TResultsTypeimagesArray;
Protected
//Property setters
Procedure Setimages(AIndex : Integer; const AValue : TResultsTypeimagesArray); virtual;
//2.6.4. bug workaround
{$IFDEF VER2_6}
Procedure SetArrayLength(Const AName : String; ALength : Longint); override;
{$ENDIF VER2_6}
Public
Published
Property images : TResultsTypeimagesArray Index 0 Read Fimages Write Setimages;
end;
TResultsClass = Class of TResults;
{ --------------------------------------------------------------------
TBuild
--------------------------------------------------------------------}
TBuild = Class(TGoogleBaseObject)
Private
Fid : String;
Fresults : TResults;
Fstatus : String;
FfinishTime : String;
Ftimeout : String;
Fsteps : TBuildTypestepsArray;
Fsource : TSource;
FcreateTime : String;
FstatusDetail : String;
Fimages : TStringArray;
FstartTime : String;
FlogsBucket : String;
FprojectId : String;
Protected
//Property setters
Procedure Setid(AIndex : Integer; const AValue : String); virtual;
Procedure Setresults(AIndex : Integer; const AValue : TResults); virtual;
Procedure Setstatus(AIndex : Integer; const AValue : String); virtual;
Procedure SetfinishTime(AIndex : Integer; const AValue : String); virtual;
Procedure Settimeout(AIndex : Integer; const AValue : String); virtual;
Procedure Setsteps(AIndex : Integer; const AValue : TBuildTypestepsArray); virtual;
Procedure Setsource(AIndex : Integer; const AValue : TSource); virtual;
Procedure SetcreateTime(AIndex : Integer; const AValue : String); virtual;
Procedure SetstatusDetail(AIndex : Integer; const AValue : String); virtual;
Procedure Setimages(AIndex : Integer; const AValue : TStringArray); virtual;
Procedure SetstartTime(AIndex : Integer; const AValue : String); virtual;
Procedure SetlogsBucket(AIndex : Integer; const AValue : String); virtual;
Procedure SetprojectId(AIndex : Integer; const AValue : String); virtual;
//2.6.4. bug workaround
{$IFDEF VER2_6}
Procedure SetArrayLength(Const AName : String; ALength : Longint); override;
{$ENDIF VER2_6}
Public
Published
Property id : String Index 0 Read Fid Write Setid;
Property results : TResults Index 8 Read Fresults Write Setresults;
Property status : String Index 16 Read Fstatus Write Setstatus;
Property finishTime : String Index 24 Read FfinishTime Write SetfinishTime;
Property timeout : String Index 32 Read Ftimeout Write Settimeout;
Property steps : TBuildTypestepsArray Index 40 Read Fsteps Write Setsteps;
Property source : TSource Index 48 Read Fsource Write Setsource;
Property createTime : String Index 56 Read FcreateTime Write SetcreateTime;
Property statusDetail : String Index 64 Read FstatusDetail Write SetstatusDetail;
Property images : TStringArray Index 72 Read Fimages Write Setimages;
Property startTime : String Index 80 Read FstartTime Write SetstartTime;
Property logsBucket : String Index 88 Read FlogsBucket Write SetlogsBucket;
Property projectId : String Index 96 Read FprojectId Write SetprojectId;
end;
TBuildClass = Class of TBuild;
{ --------------------------------------------------------------------
TCancelBuildRequest
--------------------------------------------------------------------}
TCancelBuildRequest = Class(TGoogleBaseObject)
Private
Protected
//Property setters
Public
Published
end;
TCancelBuildRequestClass = Class of TCancelBuildRequest;
{ --------------------------------------------------------------------
TListOperationsResponse
--------------------------------------------------------------------}
TListOperationsResponse = Class(TGoogleBaseObject)
Private
FnextPageToken : String;
Foperations : TListOperationsResponseTypeoperationsArray;
Protected
//Property setters
Procedure SetnextPageToken(AIndex : Integer; const AValue : String); virtual;
Procedure Setoperations(AIndex : Integer; const AValue : TListOperationsResponseTypeoperationsArray); virtual;
//2.6.4. bug workaround
{$IFDEF VER2_6}
Procedure SetArrayLength(Const AName : String; ALength : Longint); override;
{$ENDIF VER2_6}
Public
Published
Property nextPageToken : String Index 0 Read FnextPageToken Write SetnextPageToken;
Property operations : TListOperationsResponseTypeoperationsArray Index 8 Read Foperations Write Setoperations;
end;
TListOperationsResponseClass = Class of TListOperationsResponse;
{ --------------------------------------------------------------------
TBuildStep
--------------------------------------------------------------------}
TBuildStep = Class(TGoogleBaseObject)
Private
Fargs : TStringArray;
Fdir : String;
Fname : String;
Fenv : TStringArray;
Protected
//Property setters
Procedure Setargs(AIndex : Integer; const AValue : TStringArray); virtual;
Procedure Setdir(AIndex : Integer; const AValue : String); virtual;
Procedure Setname(AIndex : Integer; const AValue : String); virtual;
Procedure Setenv(AIndex : Integer; const AValue : TStringArray); virtual;
//2.6.4. bug workaround
{$IFDEF VER2_6}
Procedure SetArrayLength(Const AName : String; ALength : Longint); override;
{$ENDIF VER2_6}
Public
Published
Property args : TStringArray Index 0 Read Fargs Write Setargs;
Property dir : String Index 8 Read Fdir Write Setdir;
Property name : String Index 16 Read Fname Write Setname;
Property env : TStringArray Index 24 Read Fenv Write Setenv;
end;
TBuildStepClass = Class of TBuildStep;
{ --------------------------------------------------------------------
TListBuildsResponse
--------------------------------------------------------------------}
TListBuildsResponse = Class(TGoogleBaseObject)
Private
FnextPageToken : String;
Fbuilds : TListBuildsResponseTypebuildsArray;
Protected
//Property setters
Procedure SetnextPageToken(AIndex : Integer; const AValue : String); virtual;
Procedure Setbuilds(AIndex : Integer; const AValue : TListBuildsResponseTypebuildsArray); virtual;
//2.6.4. bug workaround
{$IFDEF VER2_6}
Procedure SetArrayLength(Const AName : String; ALength : Longint); override;
{$ENDIF VER2_6}
Public
Published
Property nextPageToken : String Index 0 Read FnextPageToken Write SetnextPageToken;
Property builds : TListBuildsResponseTypebuildsArray Index 8 Read Fbuilds Write Setbuilds;
end;
TListBuildsResponseClass = Class of TListBuildsResponse;
{ --------------------------------------------------------------------
TProjectsBuildsResource
--------------------------------------------------------------------}
//Optional query Options for TProjectsBuildsResource, method List
TProjectsBuildsListOptions = Record
pageSize : integer;
pageToken : String;
end;
TProjectsBuildsResource = Class(TGoogleResource)
Public
Class Function ResourceName : String; override;
Class Function DefaultAPI : TGoogleAPIClass; override;
Function Create(projectId: string; aBuild : TBuild) : TOperation;overload;
Function Get(projectId: string; id: string) : TBuild;
Function List(projectId: string; AQuery : string = '') : TListBuildsResponse;
Function List(projectId: string; AQuery : TProjectsBuildslistOptions) : TListBuildsResponse;
Function Cancel(projectId: string; id: string; aCancelBuildRequest : TCancelBuildRequest) : TBuild;
end;
{ --------------------------------------------------------------------
TProjectsResource
--------------------------------------------------------------------}
TProjectsResource = Class(TGoogleResource)
Private
FBuildsInstance : TProjectsBuildsResource;
Function GetBuildsInstance : TProjectsBuildsResource;virtual;
Public
Class Function ResourceName : String; override;
Class Function DefaultAPI : TGoogleAPIClass; override;
Function CreateBuildsResource(AOwner : TComponent) : TProjectsBuildsResource;virtual;overload;
Function CreateBuildsResource : TProjectsBuildsResource;virtual;overload;
Property BuildsResource : TProjectsBuildsResource Read GetBuildsInstance;
end;
{ --------------------------------------------------------------------
TOperationsResource
--------------------------------------------------------------------}
//Optional query Options for TOperationsResource, method List
TOperationsListOptions = Record
pageSize : integer;
filter : String;
pageToken : String;
end;
TOperationsResource = Class(TGoogleResource)
Public
Class Function ResourceName : String; override;
Class Function DefaultAPI : TGoogleAPIClass; override;
Function Get(_name: string) : TOperation;
Function List(_name: string; AQuery : string = '') : TListOperationsResponse;
Function List(_name: string; AQuery : TOperationslistOptions) : TListOperationsResponse;
end;
{ --------------------------------------------------------------------
TCloudbuildAPI
--------------------------------------------------------------------}
TCloudbuildAPI = Class(TGoogleAPI)
Private
FProjectsBuildsInstance : TProjectsBuildsResource;
FProjectsInstance : TProjectsResource;
FOperationsInstance : TOperationsResource;
Function GetProjectsBuildsInstance : TProjectsBuildsResource;virtual;
Function GetProjectsInstance : TProjectsResource;virtual;
Function GetOperationsInstance : TOperationsResource;virtual;
Public
//Override class functions with API info
Class Function APIName : String; override;
Class Function APIVersion : String; override;
Class Function APIRevision : String; override;
Class Function APIID : String; override;
Class Function APITitle : String; override;
Class Function APIDescription : String; override;
Class Function APIOwnerDomain : String; override;
Class Function APIOwnerName : String; override;
Class Function APIIcon16 : String; override;
Class Function APIIcon32 : String; override;
Class Function APIdocumentationLink : String; override;
Class Function APIrootUrl : string; override;
Class Function APIbasePath : string;override;
Class Function APIbaseURL : String;override;
Class Function APIProtocol : string;override;
Class Function APIservicePath : string;override;
Class Function APIbatchPath : String;override;
Class Function APIAuthScopes : TScopeInfoArray;override;
Class Function APINeedsAuth : Boolean;override;
Class Procedure RegisterAPIResources; override;
//Add create function for resources
Function CreateProjectsBuildsResource(AOwner : TComponent) : TProjectsBuildsResource;virtual;overload;
Function CreateProjectsBuildsResource : TProjectsBuildsResource;virtual;overload;
Function CreateProjectsResource(AOwner : TComponent) : TProjectsResource;virtual;overload;
Function CreateProjectsResource : TProjectsResource;virtual;overload;
Function CreateOperationsResource(AOwner : TComponent) : TOperationsResource;virtual;overload;
Function CreateOperationsResource : TOperationsResource;virtual;overload;
//Add default on-demand instances for resources
Property ProjectsBuildsResource : TProjectsBuildsResource Read GetProjectsBuildsInstance;
Property ProjectsResource : TProjectsResource Read GetProjectsInstance;
Property OperationsResource : TOperationsResource Read GetOperationsInstance;
end;
implementation
{ --------------------------------------------------------------------
TStatusTypedetailsItem
--------------------------------------------------------------------}
Class Function TStatusTypedetailsItem.AllowAdditionalProperties : Boolean;
begin
Result:=True;
end;
{ --------------------------------------------------------------------
TStatus
--------------------------------------------------------------------}
Procedure TStatus.Setcode(AIndex : Integer; const AValue : integer);
begin
If (Fcode=AValue) then exit;
Fcode:=AValue;
MarkPropertyChanged(AIndex);
end;
Procedure TStatus.Setdetails(AIndex : Integer; const AValue : TStatusTypedetailsArray);
begin
If (Fdetails=AValue) then exit;
Fdetails:=AValue;
MarkPropertyChanged(AIndex);
end;
Procedure TStatus.Setmessage(AIndex : Integer; const AValue : String);
begin
If (Fmessage=AValue) then exit;
Fmessage:=AValue;
MarkPropertyChanged(AIndex);
end;
//2.6.4. bug workaround
{$IFDEF VER2_6}
Procedure TStatus.SetArrayLength(Const AName : String; ALength : Longint);
begin
Case AName of
'details' : SetLength(Fdetails,ALength);
else
Inherited SetArrayLength(AName,ALength);
end;
end;
{$ENDIF VER2_6}
{ --------------------------------------------------------------------
TBuildOperationMetadata
--------------------------------------------------------------------}
Procedure TBuildOperationMetadata.Setbuild(AIndex : Integer; const AValue : TBuild);
begin
If (Fbuild=AValue) then exit;
Fbuild:=AValue;
MarkPropertyChanged(AIndex);
end;
{ --------------------------------------------------------------------
TSource
--------------------------------------------------------------------}
Procedure TSource.SetstorageSource(AIndex : Integer; const AValue : TStorageSource);
begin
If (FstorageSource=AValue) then exit;
FstorageSource:=AValue;
MarkPropertyChanged(AIndex);
end;
{ --------------------------------------------------------------------
TOperationTypemetadata
--------------------------------------------------------------------}
Class Function TOperationTypemetadata.AllowAdditionalProperties : Boolean;
begin
Result:=True;
end;
{ --------------------------------------------------------------------
TOperationTyperesponse
--------------------------------------------------------------------}
Class Function TOperationTyperesponse.AllowAdditionalProperties : Boolean;
begin
Result:=True;
end;
{ --------------------------------------------------------------------
TOperation
--------------------------------------------------------------------}
Procedure TOperation.Seterror(AIndex : Integer; const AValue : TStatus);
begin
If (Ferror=AValue) then exit;
Ferror:=AValue;
MarkPropertyChanged(AIndex);
end;
Procedure TOperation.Setdone(AIndex : Integer; const AValue : boolean);
begin
If (Fdone=AValue) then exit;
Fdone:=AValue;
MarkPropertyChanged(AIndex);
end;
Procedure TOperation.Setmetadata(AIndex : Integer; const AValue : TOperationTypemetadata);
begin
If (Fmetadata=AValue) then exit;
Fmetadata:=AValue;
MarkPropertyChanged(AIndex);
end;
Procedure TOperation.Setresponse(AIndex : Integer; const AValue : TOperationTyperesponse);
begin
If (Fresponse=AValue) then exit;
Fresponse:=AValue;
MarkPropertyChanged(AIndex);
end;
Procedure TOperation.Setname(AIndex : Integer; const AValue : String);
begin
If (Fname=AValue) then exit;
Fname:=AValue;
MarkPropertyChanged(AIndex);
end;
{ --------------------------------------------------------------------
TBuiltImage
--------------------------------------------------------------------}
Procedure TBuiltImage.Setdigest(AIndex : Integer; const AValue : String);
begin
If (Fdigest=AValue) then exit;
Fdigest:=AValue;
MarkPropertyChanged(AIndex);
end;
Procedure TBuiltImage.Setname(AIndex : Integer; const AValue : String);
begin
If (Fname=AValue) then exit;
Fname:=AValue;
MarkPropertyChanged(AIndex);
end;
{ --------------------------------------------------------------------
TStorageSource
--------------------------------------------------------------------}
Procedure TStorageSource.Setbucket(AIndex : Integer; const AValue : String);
begin
If (Fbucket=AValue) then exit;
Fbucket:=AValue;
MarkPropertyChanged(AIndex);
end;
Procedure TStorageSource.Setgeneration(AIndex : Integer; const AValue : String);
begin
If (Fgeneration=AValue) then exit;
Fgeneration:=AValue;
MarkPropertyChanged(AIndex);
end;
Procedure TStorageSource.Set_object(AIndex : Integer; const AValue : String);
begin
If (F_object=AValue) then exit;
F_object:=AValue;
MarkPropertyChanged(AIndex);
end;
Class Function TStorageSource.ExportPropertyName(Const AName : String) :String;
begin
Case AName of
'_object' : Result:='object';
else
Result:=Inherited ExportPropertyName(AName);
end;
end;
{ --------------------------------------------------------------------
TResults
--------------------------------------------------------------------}
Procedure TResults.Setimages(AIndex : Integer; const AValue : TResultsTypeimagesArray);
begin
If (Fimages=AValue) then exit;
Fimages:=AValue;
MarkPropertyChanged(AIndex);
end;
//2.6.4. bug workaround
{$IFDEF VER2_6}
Procedure TResults.SetArrayLength(Const AName : String; ALength : Longint);
begin
Case AName of
'images' : SetLength(Fimages,ALength);
else
Inherited SetArrayLength(AName,ALength);
end;
end;
{$ENDIF VER2_6}
{ --------------------------------------------------------------------
TBuild
--------------------------------------------------------------------}
Procedure TBuild.Setid(AIndex : Integer; const AValue : String);
begin
If (Fid=AValue) then exit;
Fid:=AValue;
MarkPropertyChanged(AIndex);
end;
Procedure TBuild.Setresults(AIndex : Integer; const AValue : TResults);
begin
If (Fresults=AValue) then exit;
Fresults:=AValue;
MarkPropertyChanged(AIndex);
end;
Procedure TBuild.Setstatus(AIndex : Integer; const AValue : String);
begin
If (Fstatus=AValue) then exit;
Fstatus:=AValue;
MarkPropertyChanged(AIndex);
end;
Procedure TBuild.SetfinishTime(AIndex : Integer; const AValue : String);
begin
If (FfinishTime=AValue) then exit;
FfinishTime:=AValue;
MarkPropertyChanged(AIndex);
end;
Procedure TBuild.Settimeout(AIndex : Integer; const AValue : String);
begin
If (Ftimeout=AValue) then exit;
Ftimeout:=AValue;
MarkPropertyChanged(AIndex);
end;
Procedure TBuild.Setsteps(AIndex : Integer; const AValue : TBuildTypestepsArray);
begin
If (Fsteps=AValue) then exit;
Fsteps:=AValue;
MarkPropertyChanged(AIndex);
end;
Procedure TBuild.Setsource(AIndex : Integer; const AValue : TSource);
begin
If (Fsource=AValue) then exit;
Fsource:=AValue;
MarkPropertyChanged(AIndex);
end;
Procedure TBuild.SetcreateTime(AIndex : Integer; const AValue : String);
begin
If (FcreateTime=AValue) then exit;
FcreateTime:=AValue;
MarkPropertyChanged(AIndex);
end;
Procedure TBuild.SetstatusDetail(AIndex : Integer; const AValue : String);
begin
If (FstatusDetail=AValue) then exit;
FstatusDetail:=AValue;
MarkPropertyChanged(AIndex);
end;
Procedure TBuild.Setimages(AIndex : Integer; const AValue : TStringArray);
begin
If (Fimages=AValue) then exit;
Fimages:=AValue;
MarkPropertyChanged(AIndex);
end;
Procedure TBuild.SetstartTime(AIndex : Integer; const AValue : String);
begin
If (FstartTime=AValue) then exit;
FstartTime:=AValue;
MarkPropertyChanged(AIndex);
end;
Procedure TBuild.SetlogsBucket(AIndex : Integer; const AValue : String);
begin
If (FlogsBucket=AValue) then exit;
FlogsBucket:=AValue;
MarkPropertyChanged(AIndex);
end;
Procedure TBuild.SetprojectId(AIndex : Integer; const AValue : String);
begin
If (FprojectId=AValue) then exit;
FprojectId:=AValue;
MarkPropertyChanged(AIndex);
end;
//2.6.4. bug workaround
{$IFDEF VER2_6}
Procedure TBuild.SetArrayLength(Const AName : String; ALength : Longint);
begin
Case AName of
'steps' : SetLength(Fsteps,ALength);
'images' : SetLength(Fimages,ALength);
else
Inherited SetArrayLength(AName,ALength);
end;
end;
{$ENDIF VER2_6}
{ --------------------------------------------------------------------
TCancelBuildRequest
--------------------------------------------------------------------}
{ --------------------------------------------------------------------
TListOperationsResponse
--------------------------------------------------------------------}
Procedure TListOperationsResponse.SetnextPageToken(AIndex : Integer; const AValue : String);
begin
If (FnextPageToken=AValue) then exit;
FnextPageToken:=AValue;
MarkPropertyChanged(AIndex);
end;
Procedure TListOperationsResponse.Setoperations(AIndex : Integer; const AValue : TListOperationsResponseTypeoperationsArray);
begin
If (Foperations=AValue) then exit;
Foperations:=AValue;
MarkPropertyChanged(AIndex);
end;
//2.6.4. bug workaround
{$IFDEF VER2_6}
Procedure TListOperationsResponse.SetArrayLength(Const AName : String; ALength : Longint);
begin
Case AName of
'operations' : SetLength(Foperations,ALength);
else
Inherited SetArrayLength(AName,ALength);
end;
end;
{$ENDIF VER2_6}
{ --------------------------------------------------------------------
TBuildStep
--------------------------------------------------------------------}
Procedure TBuildStep.Setargs(AIndex : Integer; const AValue : TStringArray);
begin
If (Fargs=AValue) then exit;
Fargs:=AValue;
MarkPropertyChanged(AIndex);
end;
Procedure TBuildStep.Setdir(AIndex : Integer; const AValue : String);
begin
If (Fdir=AValue) then exit;
Fdir:=AValue;
MarkPropertyChanged(AIndex);
end;
Procedure TBuildStep.Setname(AIndex : Integer; const AValue : String);
begin
If (Fname=AValue) then exit;
Fname:=AValue;
MarkPropertyChanged(AIndex);
end;
Procedure TBuildStep.Setenv(AIndex : Integer; const AValue : TStringArray);
begin
If (Fenv=AValue) then exit;
Fenv:=AValue;
MarkPropertyChanged(AIndex);
end;
//2.6.4. bug workaround
{$IFDEF VER2_6}
Procedure TBuildStep.SetArrayLength(Const AName : String; ALength : Longint);
begin
Case AName of
'args' : SetLength(Fargs,ALength);
'env' : SetLength(Fenv,ALength);
else
Inherited SetArrayLength(AName,ALength);
end;
end;
{$ENDIF VER2_6}
{ --------------------------------------------------------------------
TListBuildsResponse
--------------------------------------------------------------------}
Procedure TListBuildsResponse.SetnextPageToken(AIndex : Integer; const AValue : String);
begin
If (FnextPageToken=AValue) then exit;
FnextPageToken:=AValue;
MarkPropertyChanged(AIndex);
end;
Procedure TListBuildsResponse.Setbuilds(AIndex : Integer; const AValue : TListBuildsResponseTypebuildsArray);
begin
If (Fbuilds=AValue) then exit;
Fbuilds:=AValue;
MarkPropertyChanged(AIndex);
end;
//2.6.4. bug workaround
{$IFDEF VER2_6}
Procedure TListBuildsResponse.SetArrayLength(Const AName : String; ALength : Longint);
begin
Case AName of
'builds' : SetLength(Fbuilds,ALength);
else
Inherited SetArrayLength(AName,ALength);
end;
end;
{$ENDIF VER2_6}
{ --------------------------------------------------------------------
TProjectsBuildsResource
--------------------------------------------------------------------}
Class Function TProjectsBuildsResource.ResourceName : String;
begin
Result:='builds';
end;
Class Function TProjectsBuildsResource.DefaultAPI : TGoogleAPIClass;
begin
Result:=TcloudbuildAPI;
end;
Function TProjectsBuildsResource.Create(projectId: string; aBuild : TBuild) : TOperation;
Const
_HTTPMethod = 'POST';
_Path = 'v1/projects/{projectId}/builds';
_Methodid = 'cloudbuild.projects.builds.create';
Var
_P : String;
begin
_P:=SubstitutePath(_Path,['projectId',projectId]);
Result:=ServiceCall(_HTTPMethod,_P,'',aBuild,TOperation) as TOperation;
end;
Function TProjectsBuildsResource.Get(projectId: string; id: string) : TBuild;
Const
_HTTPMethod = 'GET';
_Path = 'v1/projects/{projectId}/builds/{id}';
_Methodid = 'cloudbuild.projects.builds.get';
Var
_P : String;
begin
_P:=SubstitutePath(_Path,['projectId',projectId,'id',id]);
Result:=ServiceCall(_HTTPMethod,_P,'',Nil,TBuild) as TBuild;
end;
Function TProjectsBuildsResource.List(projectId: string; AQuery : string = '') : TListBuildsResponse;
Const
_HTTPMethod = 'GET';
_Path = 'v1/projects/{projectId}/builds';
_Methodid = 'cloudbuild.projects.builds.list';
Var
_P : String;
begin
_P:=SubstitutePath(_Path,['projectId',projectId]);
Result:=ServiceCall(_HTTPMethod,_P,AQuery,Nil,TListBuildsResponse) as TListBuildsResponse;
end;
Function TProjectsBuildsResource.List(projectId: string; AQuery : TProjectsBuildslistOptions) : TListBuildsResponse;
Var
_Q : String;
begin
_Q:='';
AddToQuery(_Q,'pageSize',AQuery.pageSize);
AddToQuery(_Q,'pageToken',AQuery.pageToken);
Result:=List(projectId,_Q);
end;
Function TProjectsBuildsResource.Cancel(projectId: string; id: string; aCancelBuildRequest : TCancelBuildRequest) : TBuild;
Const
_HTTPMethod = 'POST';
_Path = 'v1/projects/{projectId}/builds/{id}:cancel';
_Methodid = 'cloudbuild.projects.builds.cancel';
Var
_P : String;
begin
_P:=SubstitutePath(_Path,['projectId',projectId,'id',id]);
Result:=ServiceCall(_HTTPMethod,_P,'',aCancelBuildRequest,TBuild) as TBuild;
end;
{ --------------------------------------------------------------------
TProjectsResource
--------------------------------------------------------------------}
Class Function TProjectsResource.ResourceName : String;
begin
Result:='projects';
end;
Class Function TProjectsResource.DefaultAPI : TGoogleAPIClass;
begin
Result:=TcloudbuildAPI;
end;
Function TProjectsResource.GetBuildsInstance : TProjectsBuildsResource;
begin
if (FBuildsInstance=Nil) then
FBuildsInstance:=CreateBuildsResource;
Result:=FBuildsInstance;
end;
Function TProjectsResource.CreateBuildsResource : TProjectsBuildsResource;
begin
Result:=CreateBuildsResource(Self);
end;
Function TProjectsResource.CreateBuildsResource(AOwner : TComponent) : TProjectsBuildsResource;
begin
Result:=TProjectsBuildsResource.Create(AOwner);
Result.API:=Self.API;
end;
{ --------------------------------------------------------------------
TOperationsResource
--------------------------------------------------------------------}
Class Function TOperationsResource.ResourceName : String;
begin
Result:='operations';
end;
Class Function TOperationsResource.DefaultAPI : TGoogleAPIClass;
begin
Result:=TcloudbuildAPI;
end;
Function TOperationsResource.Get(_name: string) : TOperation;
Const
_HTTPMethod = 'GET';
_Path = 'v1/{+name}';
_Methodid = 'cloudbuild.operations.get';
Var
_P : String;
begin
_P:=SubstitutePath(_Path,['name',_name]);
Result:=ServiceCall(_HTTPMethod,_P,'',Nil,TOperation) as TOperation;
end;
Function TOperationsResource.List(_name: string; AQuery : string = '') : TListOperationsResponse;
Const
_HTTPMethod = 'GET';
_Path = 'v1/{+name}';
_Methodid = 'cloudbuild.operations.list';
Var
_P : String;
begin
_P:=SubstitutePath(_Path,['name',_name]);
Result:=ServiceCall(_HTTPMethod,_P,AQuery,Nil,TListOperationsResponse) as TListOperationsResponse;
end;
Function TOperationsResource.List(_name: string; AQuery : TOperationslistOptions) : TListOperationsResponse;
Var
_Q : String;
begin
_Q:='';
AddToQuery(_Q,'pageSize',AQuery.pageSize);
AddToQuery(_Q,'filter',AQuery.filter);
AddToQuery(_Q,'pageToken',AQuery.pageToken);
Result:=List(_name,_Q);
end;
{ --------------------------------------------------------------------
TCloudbuildAPI
--------------------------------------------------------------------}
Class Function TCloudbuildAPI.APIName : String;
begin
Result:='cloudbuild';
end;
Class Function TCloudbuildAPI.APIVersion : String;
begin
Result:='v1';
end;
Class Function TCloudbuildAPI.APIRevision : String;
begin
Result:='20160523';
end;
Class Function TCloudbuildAPI.APIID : String;
begin
Result:='cloudbuild:v1';
end;
Class Function TCloudbuildAPI.APITitle : String;
begin
Result:='Google Cloud Container Builder API';
end;
Class Function TCloudbuildAPI.APIDescription : String;
begin
Result:='Builds container images in the cloud.';
end;
Class Function TCloudbuildAPI.APIOwnerDomain : String;
begin
Result:='google.com';
end;
Class Function TCloudbuildAPI.APIOwnerName : String;
begin
Result:='Google';
end;
Class Function TCloudbuildAPI.APIIcon16 : String;
begin
Result:='http://www.google.com/images/icons/product/search-16.gif';
end;
Class Function TCloudbuildAPI.APIIcon32 : String;
begin
Result:='http://www.google.com/images/icons/product/search-32.gif';
end;
Class Function TCloudbuildAPI.APIdocumentationLink : String;
begin
Result:='https://cloud.google.com/container-builder/docs/';
end;
Class Function TCloudbuildAPI.APIrootUrl : string;
begin
Result:='https://cloudbuild.googleapis.com/';
end;
Class Function TCloudbuildAPI.APIbasePath : string;
begin
Result:='';
end;
Class Function TCloudbuildAPI.APIbaseURL : String;
begin
Result:='https://cloudbuild.googleapis.com/';
end;
Class Function TCloudbuildAPI.APIProtocol : string;
begin
Result:='rest';
end;
Class Function TCloudbuildAPI.APIservicePath : string;
begin
Result:='';
end;
Class Function TCloudbuildAPI.APIbatchPath : String;
begin
Result:='batch';
end;
Class Function TCloudbuildAPI.APIAuthScopes : TScopeInfoArray;
begin
SetLength(Result,1);
Result[0].Name:='https://www.googleapis.com/auth/cloud-platform';
Result[0].Description:='View and manage your data across Google Cloud Platform services';
end;
Class Function TCloudbuildAPI.APINeedsAuth : Boolean;
begin
Result:=True;
end;
Class Procedure TCloudbuildAPI.RegisterAPIResources;
begin
TStatusTypedetailsItem.RegisterObject;
TStatus.RegisterObject;
TBuildOperationMetadata.RegisterObject;
TSource.RegisterObject;
TOperationTypemetadata.RegisterObject;
TOperationTyperesponse.RegisterObject;
TOperation.RegisterObject;
TBuiltImage.RegisterObject;
TStorageSource.RegisterObject;
TResults.RegisterObject;
TBuild.RegisterObject;
TCancelBuildRequest.RegisterObject;
TListOperationsResponse.RegisterObject;
TBuildStep.RegisterObject;
TListBuildsResponse.RegisterObject;
end;
Function TCloudbuildAPI.GetProjectsBuildsInstance : TProjectsBuildsResource;
begin
if (FProjectsBuildsInstance=Nil) then
FProjectsBuildsInstance:=CreateProjectsBuildsResource;
Result:=FProjectsBuildsInstance;
end;
Function TCloudbuildAPI.CreateProjectsBuildsResource : TProjectsBuildsResource;
begin
Result:=CreateProjectsBuildsResource(Self);
end;
Function TCloudbuildAPI.CreateProjectsBuildsResource(AOwner : TComponent) : TProjectsBuildsResource;
begin
Result:=TProjectsBuildsResource.Create(AOwner);
Result.API:=Self.API;
end;
Function TCloudbuildAPI.GetProjectsInstance : TProjectsResource;
begin
if (FProjectsInstance=Nil) then
FProjectsInstance:=CreateProjectsResource;
Result:=FProjectsInstance;
end;
Function TCloudbuildAPI.CreateProjectsResource : TProjectsResource;
begin
Result:=CreateProjectsResource(Self);
end;
Function TCloudbuildAPI.CreateProjectsResource(AOwner : TComponent) : TProjectsResource;
begin
Result:=TProjectsResource.Create(AOwner);
Result.API:=Self.API;
end;
Function TCloudbuildAPI.GetOperationsInstance : TOperationsResource;
begin
if (FOperationsInstance=Nil) then
FOperationsInstance:=CreateOperationsResource;
Result:=FOperationsInstance;
end;
Function TCloudbuildAPI.CreateOperationsResource : TOperationsResource;
begin
Result:=CreateOperationsResource(Self);
end;
Function TCloudbuildAPI.CreateOperationsResource(AOwner : TComponent) : TOperationsResource;
begin
Result:=TOperationsResource.Create(AOwner);
Result.API:=Self.API;
end;
initialization
TCloudbuildAPI.RegisterAPI;
end.
|