forked from google/google-api-objectivec-client-for-rest
-
Notifications
You must be signed in to change notification settings - Fork 0
/
GoogleAPIClientForREST.podspec
975 lines (970 loc) · 38.6 KB
/
GoogleAPIClientForREST.podspec
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
Pod::Spec.new do |s|
s.name = 'GoogleAPIClientForREST'
s.version = '1.6.0'
s.author = 'Google Inc.'
s.homepage = 'https://github.com/google/google-api-objectivec-client-for-rest'
s.license = { :type => 'Apache', :file => 'LICENSE' }
s.source = { :git => 'https://github.com/google/google-api-objectivec-client-for-rest.git',
:tag => "v#{s.version}" }
s.summary = 'Google APIs Client Library for Objective-C (REST)'
s.description = <<-DESC
Written by Google, this library is a flexible and efficient Objective-C
framework for accessing JSON REST APIs. This is the recommended library
for accessing JSON-based Google APIs for iOS, OS X, and tvOS applications.
This version can be used with iOS ≥ 9.0, OS X ≥ 10.9, tvOS ≥ 10.0, watchOS ≥ 6.0.
DESC
s.ios.deployment_target = '9.0'
s.osx.deployment_target = '10.12'
s.tvos.deployment_target = '10.0'
s.watchos.deployment_target = '6.0'
# Require at least 1.6.1 of the SessionFetcher since it has the same
# deployment targets.
s.dependency 'GTMSessionFetcher', '>= 1.6.1'
s.subspec 'Core' do |sp|
sp.source_files = 'Source/GTLRDefines.h',
'Source/Objects/*.{h,m}',
'Source/Utilities/*.{h,m}'
end
s.default_subspec = 'Core'
# subspecs for all the services.
s.subspec 'AbusiveExperienceReport' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/AbusiveExperienceReport/*.{h,m}'
end
s.subspec 'Acceleratedmobilepageurl' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Acceleratedmobilepageurl/*.{h,m}'
end
s.subspec 'AccessApproval' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/AccessApproval/*.{h,m}'
end
s.subspec 'AccessContextManager' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/AccessContextManager/*.{h,m}'
end
s.subspec 'AdExchangeBuyerII' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/AdExchangeBuyerII/*.{h,m}'
end
s.subspec 'AdExperienceReport' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/AdExperienceReport/*.{h,m}'
end
s.subspec 'AdMob' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/AdMob/*.{h,m}'
end
s.subspec 'Adsense' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Adsense/*.{h,m}'
end
s.subspec 'AdSenseHost' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/AdSenseHost/*.{h,m}'
end
s.subspec 'AIPlatformNotebooks' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/AIPlatformNotebooks/*.{h,m}'
end
s.subspec 'AlertCenter' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/AlertCenter/*.{h,m}'
end
s.subspec 'Analytics' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Analytics/*.{h,m}'
end
s.subspec 'AnalyticsData' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/AnalyticsData/*.{h,m}'
end
s.subspec 'AnalyticsReporting' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/AnalyticsReporting/*.{h,m}'
end
s.subspec 'AndroidEnterprise' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/AndroidEnterprise/*.{h,m}'
end
s.subspec 'AndroidManagement' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/AndroidManagement/*.{h,m}'
end
s.subspec 'AndroidProvisioningPartner' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/AndroidProvisioningPartner/*.{h,m}'
end
s.subspec 'AndroidPublisher' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/AndroidPublisher/*.{h,m}'
end
s.subspec 'APIGateway' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/APIGateway/*.{h,m}'
end
s.subspec 'Apigee' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Apigee/*.{h,m}'
end
s.subspec 'ApiKeysService' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/ApiKeysService/*.{h,m}'
end
s.subspec 'Appengine' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Appengine/*.{h,m}'
end
s.subspec 'Area120Tables' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Area120Tables/*.{h,m}'
end
s.subspec 'ArtifactRegistry' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/ArtifactRegistry/*.{h,m}'
end
s.subspec 'Assuredworkloads' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Assuredworkloads/*.{h,m}'
end
s.subspec 'AuthorizedBuyersMarketplace' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/AuthorizedBuyersMarketplace/*.{h,m}'
end
s.subspec 'BareMetalSolution' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/BareMetalSolution/*.{h,m}'
end
s.subspec 'Bigquery' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Bigquery/*.{h,m}'
end
s.subspec 'BigQueryConnectionService' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/BigQueryConnectionService/*.{h,m}'
end
s.subspec 'BigQueryDataTransfer' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/BigQueryDataTransfer/*.{h,m}'
end
s.subspec 'BigQueryReservation' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/BigQueryReservation/*.{h,m}'
end
s.subspec 'BigtableAdmin' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/BigtableAdmin/*.{h,m}'
end
s.subspec 'BinaryAuthorization' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/BinaryAuthorization/*.{h,m}'
end
s.subspec 'Blogger' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Blogger/*.{h,m}'
end
s.subspec 'Books' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Books/*.{h,m}'
end
s.subspec 'Calendar' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Calendar/*.{h,m}'
end
s.subspec 'CertificateAuthorityService' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/CertificateAuthorityService/*.{h,m}'
end
s.subspec 'CertificateManager' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/CertificateManager/*.{h,m}'
end
s.subspec 'ChromeManagement' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/ChromeManagement/*.{h,m}'
end
s.subspec 'ChromePolicy' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/ChromePolicy/*.{h,m}'
end
s.subspec 'ChromeUXReport' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/ChromeUXReport/*.{h,m}'
end
s.subspec 'CivicInfo' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/CivicInfo/*.{h,m}'
end
s.subspec 'Classroom' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Classroom/*.{h,m}'
end
s.subspec 'CloudAsset' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/CloudAsset/*.{h,m}'
end
s.subspec 'Cloudbilling' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Cloudbilling/*.{h,m}'
end
s.subspec 'CloudBillingBudget' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/CloudBillingBudget/*.{h,m}'
end
s.subspec 'CloudBuild' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/CloudBuild/*.{h,m}'
end
s.subspec 'Cloudchannel' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Cloudchannel/*.{h,m}'
end
s.subspec 'CloudComposer' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/CloudComposer/*.{h,m}'
end
s.subspec 'CloudDebugger' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/CloudDebugger/*.{h,m}'
end
s.subspec 'CloudDeploy' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/CloudDeploy/*.{h,m}'
end
s.subspec 'CloudDomains' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/CloudDomains/*.{h,m}'
end
s.subspec 'Clouderrorreporting' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Clouderrorreporting/*.{h,m}'
end
s.subspec 'CloudFilestore' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/CloudFilestore/*.{h,m}'
end
s.subspec 'CloudFunctions' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/CloudFunctions/*.{h,m}'
end
s.subspec 'CloudHealthcare' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/CloudHealthcare/*.{h,m}'
end
s.subspec 'CloudIAP' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/CloudIAP/*.{h,m}'
end
s.subspec 'CloudIdentity' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/CloudIdentity/*.{h,m}'
end
s.subspec 'CloudIot' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/CloudIot/*.{h,m}'
end
s.subspec 'CloudKMS' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/CloudKMS/*.{h,m}'
end
s.subspec 'CloudLifeSciences' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/CloudLifeSciences/*.{h,m}'
end
s.subspec 'CloudMachineLearningEngine' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/CloudMachineLearningEngine/*.{h,m}'
end
s.subspec 'CloudMemorystoreforMemcached' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/CloudMemorystoreforMemcached/*.{h,m}'
end
s.subspec 'CloudNaturalLanguage' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/CloudNaturalLanguage/*.{h,m}'
end
s.subspec 'CloudOSLogin' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/CloudOSLogin/*.{h,m}'
end
s.subspec 'CloudProfiler' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/CloudProfiler/*.{h,m}'
end
s.subspec 'CloudRedis' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/CloudRedis/*.{h,m}'
end
s.subspec 'CloudResourceManager' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/CloudResourceManager/*.{h,m}'
end
s.subspec 'CloudRetail' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/CloudRetail/*.{h,m}'
end
s.subspec 'CloudRun' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/CloudRun/*.{h,m}'
end
s.subspec 'CloudRuntimeConfig' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/CloudRuntimeConfig/*.{h,m}'
end
s.subspec 'CloudScheduler' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/CloudScheduler/*.{h,m}'
end
s.subspec 'CloudSearch' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/CloudSearch/*.{h,m}'
end
s.subspec 'CloudSecurityToken' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/CloudSecurityToken/*.{h,m}'
end
s.subspec 'CloudShell' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/CloudShell/*.{h,m}'
end
s.subspec 'CloudSourceRepositories' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/CloudSourceRepositories/*.{h,m}'
end
s.subspec 'CloudSupport' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/CloudSupport/*.{h,m}'
end
s.subspec 'CloudTalentSolution' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/CloudTalentSolution/*.{h,m}'
end
s.subspec 'CloudTasks' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/CloudTasks/*.{h,m}'
end
s.subspec 'CloudTrace' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/CloudTrace/*.{h,m}'
end
s.subspec 'CloudVideoIntelligence' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/CloudVideoIntelligence/*.{h,m}'
end
s.subspec 'Compute' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Compute/*.{h,m}'
end
s.subspec 'Connectors' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Connectors/*.{h,m}'
end
s.subspec 'Contactcenterinsights' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Contactcenterinsights/*.{h,m}'
end
s.subspec 'Container' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Container/*.{h,m}'
end
s.subspec 'ContainerAnalysis' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/ContainerAnalysis/*.{h,m}'
end
s.subspec 'CustomSearchAPI' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/CustomSearchAPI/*.{h,m}'
end
s.subspec 'DatabaseMigrationService' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/DatabaseMigrationService/*.{h,m}'
end
s.subspec 'DataCatalog' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/DataCatalog/*.{h,m}'
end
s.subspec 'Dataflow' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Dataflow/*.{h,m}'
end
s.subspec 'DataFusion' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/DataFusion/*.{h,m}'
end
s.subspec 'DataLabeling' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/DataLabeling/*.{h,m}'
end
s.subspec 'Datapipelines' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Datapipelines/*.{h,m}'
end
s.subspec 'Dataproc' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Dataproc/*.{h,m}'
end
s.subspec 'DataprocMetastore' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/DataprocMetastore/*.{h,m}'
end
s.subspec 'Datastore' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Datastore/*.{h,m}'
end
s.subspec 'Datastream' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Datastream/*.{h,m}'
end
s.subspec 'DataTransfer' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/DataTransfer/*.{h,m}'
end
s.subspec 'DeploymentManager' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/DeploymentManager/*.{h,m}'
end
s.subspec 'Dfareporting' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Dfareporting/*.{h,m}'
end
s.subspec 'Dialogflow' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Dialogflow/*.{h,m}'
end
s.subspec 'DigitalAssetLinks' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/DigitalAssetLinks/*.{h,m}'
end
s.subspec 'Directory' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Directory/*.{h,m}'
end
s.subspec 'Discovery' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Discovery/*.{h,m}'
end
s.subspec 'DisplayVideo' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/DisplayVideo/*.{h,m}'
end
s.subspec 'DLP' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/DLP/*.{h,m}'
end
s.subspec 'Dns' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Dns/*.{h,m}'
end
s.subspec 'Docs' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Docs/*.{h,m}'
end
s.subspec 'Document' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Document/*.{h,m}'
end
s.subspec 'DomainsRDAP' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/DomainsRDAP/*.{h,m}'
end
s.subspec 'DoubleClickBidManager' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/DoubleClickBidManager/*.{h,m}'
end
s.subspec 'Doubleclicksearch' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Doubleclicksearch/*.{h,m}'
end
s.subspec 'Drive' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Drive/*.{h,m}'
end
s.subspec 'DriveActivity' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/DriveActivity/*.{h,m}'
end
s.subspec 'Essentialcontacts' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Essentialcontacts/*.{h,m}'
end
s.subspec 'Eventarc' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Eventarc/*.{h,m}'
end
s.subspec 'FactCheckTools' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/FactCheckTools/*.{h,m}'
end
s.subspec 'Fcmdata' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Fcmdata/*.{h,m}'
end
s.subspec 'Firebaseappcheck' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Firebaseappcheck/*.{h,m}'
end
s.subspec 'FirebaseCloudMessaging' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/FirebaseCloudMessaging/*.{h,m}'
end
s.subspec 'FirebaseDynamicLinks' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/FirebaseDynamicLinks/*.{h,m}'
end
s.subspec 'FirebaseHosting' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/FirebaseHosting/*.{h,m}'
end
s.subspec 'FirebaseManagement' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/FirebaseManagement/*.{h,m}'
end
s.subspec 'FirebaseML' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/FirebaseML/*.{h,m}'
end
s.subspec 'FirebaseRealtimeDatabase' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/FirebaseRealtimeDatabase/*.{h,m}'
end
s.subspec 'FirebaseRules' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/FirebaseRules/*.{h,m}'
end
s.subspec 'Firebasestorage' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Firebasestorage/*.{h,m}'
end
s.subspec 'Firestore' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Firestore/*.{h,m}'
end
s.subspec 'Fitness' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Fitness/*.{h,m}'
end
s.subspec 'Games' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Games/*.{h,m}'
end
s.subspec 'GamesConfiguration' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/GamesConfiguration/*.{h,m}'
end
s.subspec 'GameServices' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/GameServices/*.{h,m}'
end
s.subspec 'GamesManagement' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/GamesManagement/*.{h,m}'
end
s.subspec 'Genomics' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Genomics/*.{h,m}'
end
s.subspec 'GKEHub' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/GKEHub/*.{h,m}'
end
s.subspec 'Gmail' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Gmail/*.{h,m}'
end
s.subspec 'GoogleAnalyticsAdmin' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/GoogleAnalyticsAdmin/*.{h,m}'
end
s.subspec 'GroupsMigration' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/GroupsMigration/*.{h,m}'
end
s.subspec 'GroupsSettings' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/GroupsSettings/*.{h,m}'
end
s.subspec 'HangoutsChat' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/HangoutsChat/*.{h,m}'
end
s.subspec 'HomeGraphService' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/HomeGraphService/*.{h,m}'
end
s.subspec 'Iam' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Iam/*.{h,m}'
end
s.subspec 'IAMCredentials' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/IAMCredentials/*.{h,m}'
end
s.subspec 'Ideahub' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Ideahub/*.{h,m}'
end
s.subspec 'IdentityToolkit' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/IdentityToolkit/*.{h,m}'
end
s.subspec 'IDS' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/IDS/*.{h,m}'
end
s.subspec 'Indexing' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Indexing/*.{h,m}'
end
s.subspec 'Keep' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Keep/*.{h,m}'
end
s.subspec 'Kgsearch' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Kgsearch/*.{h,m}'
end
s.subspec 'Libraryagent' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Libraryagent/*.{h,m}'
end
s.subspec 'Licensing' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Licensing/*.{h,m}'
end
s.subspec 'Localservices' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Localservices/*.{h,m}'
end
s.subspec 'Logging' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Logging/*.{h,m}'
end
s.subspec 'ManagedServiceforMicrosoftActiveDirectoryConsumerAPI' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/ManagedServiceforMicrosoftActiveDirectoryConsumerAPI/*.{h,m}'
end
s.subspec 'ManufacturerCenter' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/ManufacturerCenter/*.{h,m}'
end
s.subspec 'Monitoring' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Monitoring/*.{h,m}'
end
s.subspec 'MyBusinessAccountManagement' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/MyBusinessAccountManagement/*.{h,m}'
end
s.subspec 'MyBusinessBusinessInformation' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/MyBusinessBusinessInformation/*.{h,m}'
end
s.subspec 'MyBusinessLodging' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/MyBusinessLodging/*.{h,m}'
end
s.subspec 'MyBusinessNotificationSettings' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/MyBusinessNotificationSettings/*.{h,m}'
end
s.subspec 'MyBusinessPlaceActions' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/MyBusinessPlaceActions/*.{h,m}'
end
s.subspec 'MyBusinessQA' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/MyBusinessQA/*.{h,m}'
end
s.subspec 'MyBusinessVerifications' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/MyBusinessVerifications/*.{h,m}'
end
s.subspec 'Networkconnectivity' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Networkconnectivity/*.{h,m}'
end
s.subspec 'NetworkManagement' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/NetworkManagement/*.{h,m}'
end
s.subspec 'NetworkSecurity' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/NetworkSecurity/*.{h,m}'
end
s.subspec 'NetworkServices' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/NetworkServices/*.{h,m}'
end
s.subspec 'Oauth2' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Oauth2/*.{h,m}'
end
s.subspec 'OnDemandScanning' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/OnDemandScanning/*.{h,m}'
end
s.subspec 'OrgPolicyAPI' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/OrgPolicyAPI/*.{h,m}'
end
s.subspec 'OSConfig' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/OSConfig/*.{h,m}'
end
s.subspec 'PagespeedInsights' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/PagespeedInsights/*.{h,m}'
end
s.subspec 'PaymentsResellerSubscription' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/PaymentsResellerSubscription/*.{h,m}'
end
s.subspec 'PeopleService' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/PeopleService/*.{h,m}'
end
s.subspec 'Playcustomapp' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Playcustomapp/*.{h,m}'
end
s.subspec 'PlayIntegrity' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/PlayIntegrity/*.{h,m}'
end
s.subspec 'PolicyAnalyzer' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/PolicyAnalyzer/*.{h,m}'
end
s.subspec 'PolicySimulator' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/PolicySimulator/*.{h,m}'
end
s.subspec 'PolicyTroubleshooter' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/PolicyTroubleshooter/*.{h,m}'
end
s.subspec 'PolyService' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/PolyService/*.{h,m}'
end
s.subspec 'PostmasterTools' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/PostmasterTools/*.{h,m}'
end
s.subspec 'Pubsub' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Pubsub/*.{h,m}'
end
s.subspec 'PubsubLite' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/PubsubLite/*.{h,m}'
end
s.subspec 'RealTimeBidding' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/RealTimeBidding/*.{h,m}'
end
s.subspec 'RecaptchaEnterprise' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/RecaptchaEnterprise/*.{h,m}'
end
s.subspec 'RecommendationsAI' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/RecommendationsAI/*.{h,m}'
end
s.subspec 'Recommender' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Recommender/*.{h,m}'
end
s.subspec 'Reports' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Reports/*.{h,m}'
end
s.subspec 'Reseller' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Reseller/*.{h,m}'
end
s.subspec 'ResourceSettings' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/ResourceSettings/*.{h,m}'
end
s.subspec 'Safebrowsing' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Safebrowsing/*.{h,m}'
end
s.subspec 'SASPortal' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/SASPortal/*.{h,m}'
end
s.subspec 'Script' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Script/*.{h,m}'
end
s.subspec 'SearchConsole' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/SearchConsole/*.{h,m}'
end
s.subspec 'SecretManager' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/SecretManager/*.{h,m}'
end
s.subspec 'SecurityCommandCenter' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/SecurityCommandCenter/*.{h,m}'
end
s.subspec 'ServiceConsumerManagement' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/ServiceConsumerManagement/*.{h,m}'
end
s.subspec 'ServiceControl' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/ServiceControl/*.{h,m}'
end
s.subspec 'ServiceDirectory' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/ServiceDirectory/*.{h,m}'
end
s.subspec 'ServiceManagement' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/ServiceManagement/*.{h,m}'
end
s.subspec 'ServiceNetworking' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/ServiceNetworking/*.{h,m}'
end
s.subspec 'ServiceUsage' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/ServiceUsage/*.{h,m}'
end
s.subspec 'Sheets' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Sheets/*.{h,m}'
end
s.subspec 'ShoppingContent' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/ShoppingContent/*.{h,m}'
end
s.subspec 'SiteVerification' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/SiteVerification/*.{h,m}'
end
s.subspec 'Slides' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Slides/*.{h,m}'
end
s.subspec 'SmartDeviceManagement' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/SmartDeviceManagement/*.{h,m}'
end
s.subspec 'Spanner' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Spanner/*.{h,m}'
end
s.subspec 'Speech' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Speech/*.{h,m}'
end
s.subspec 'SQLAdmin' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/SQLAdmin/*.{h,m}'
end
s.subspec 'Storage' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Storage/*.{h,m}'
end
s.subspec 'StorageTransfer' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/StorageTransfer/*.{h,m}'
end
s.subspec 'StreetViewPublish' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/StreetViewPublish/*.{h,m}'
end
s.subspec 'TagManager' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/TagManager/*.{h,m}'
end
s.subspec 'Tasks' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Tasks/*.{h,m}'
end
s.subspec 'Testing' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Testing/*.{h,m}'
end
s.subspec 'Texttospeech' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Texttospeech/*.{h,m}'
end
s.subspec 'ToolResults' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/ToolResults/*.{h,m}'
end
s.subspec 'TPU' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/TPU/*.{h,m}'
end
s.subspec 'TrafficDirectorService' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/TrafficDirectorService/*.{h,m}'
end
s.subspec 'Transcoder' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Transcoder/*.{h,m}'
end
s.subspec 'Translate' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Translate/*.{h,m}'
end
s.subspec 'Vault' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Vault/*.{h,m}'
end
s.subspec 'Verifiedaccess' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Verifiedaccess/*.{h,m}'
end
s.subspec 'VersionHistory' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/VersionHistory/*.{h,m}'
end
s.subspec 'Vision' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Vision/*.{h,m}'
end
s.subspec 'VMMigrationService' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/VMMigrationService/*.{h,m}'
end
s.subspec 'Webfonts' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Webfonts/*.{h,m}'
end
s.subspec 'WebRisk' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/WebRisk/*.{h,m}'
end
s.subspec 'WebSecurityScanner' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/WebSecurityScanner/*.{h,m}'
end
s.subspec 'WorkflowExecutions' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/WorkflowExecutions/*.{h,m}'
end
s.subspec 'Workflows' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/Workflows/*.{h,m}'
end
s.subspec 'YouTube' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/YouTube/*.{h,m}'
end
s.subspec 'YouTubeAnalytics' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/YouTubeAnalytics/*.{h,m}'
end
s.subspec 'YouTubeReporting' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Source/GeneratedServices/YouTubeReporting/*.{h,m}'
end
end