-
Notifications
You must be signed in to change notification settings - Fork 309
/
GoogleAPIClientForREST.podspec
1507 lines (1496 loc) · 79 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
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
Pod::Spec.new do |s|
s.name = 'GoogleAPIClientForREST'
s.version = '4.0.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 ≥ 10.0, OS X ≥ 10.12, tvOS ≥ 10.0, watchOS ≥ 6.0.
DESC
# Ensure developers won't hit CocoaPods/CocoaPods#11402 with the resource
# bundle for the privacy manifest.
s.cocoapods_version = '>= 1.12.0'
ios_deployment_target = '12.0'
osx_deployment_target = '10.15'
tvos_deployment_target = '13.0'
visionos_deployment_target = '1.0'
watchos_deployment_target = '7.0'
s.ios.deployment_target = ios_deployment_target
s.osx.deployment_target = osx_deployment_target
s.tvos.deployment_target = tvos_deployment_target
s.visionos.deployment_target = visionos_deployment_target
s.watchos.deployment_target = watchos_deployment_target
s.dependency 'GTMSessionFetcher/Full', '>= 1.6.1', '< 5.0'
s.prefix_header_file = false
s.default_subspec = 'Core'
s.subspec 'Core' do |sp|
sp.source_files = 'Sources/Core/**/*.{h,m}'
sp.public_header_files = 'Sources/Core/Public/GoogleAPIClientForREST/*.h'
sp.resource_bundle = {
"GoogleAPIClientForREST_Privacy" => "Sources/Core/Resources/PrivacyInfo.xcprivacy"
}
end
s.test_spec 'Tests' do |sp|
sp.source_files = 'UnitTests/*.{h,m}'
sp.platforms = {
:ios => ios_deployment_target,
:osx => osx_deployment_target,
:tvos => tvos_deployment_target,
:visionos => visionos_deployment_target,
# Seem to need a higher min to get a good test runner picked/supported.
:watchos => '7.4'
}
end
# subspecs for all the services.
s.subspec 'AbusiveExperienceReport' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/AbusiveExperienceReport/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/AbusiveExperienceReport/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Acceleratedmobilepageurl' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Acceleratedmobilepageurl/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Acceleratedmobilepageurl/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'AccessApproval' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/AccessApproval/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/AccessApproval/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'AccessContextManager' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/AccessContextManager/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/AccessContextManager/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'ACMEDNS' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/ACMEDNS/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/ACMEDNS/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'AddressValidation' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/AddressValidation/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/AddressValidation/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'AdExchangeBuyerII' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/AdExchangeBuyerII/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/AdExchangeBuyerII/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'AdExperienceReport' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/AdExperienceReport/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/AdExperienceReport/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'AdMob' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/AdMob/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/AdMob/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Adsense' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Adsense/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Adsense/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'AdSenseHost' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/AdSenseHost/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/AdSenseHost/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'AdSensePlatform' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/AdSensePlatform/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/AdSensePlatform/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Advisorynotifications' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Advisorynotifications/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Advisorynotifications/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Aiplatform' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Aiplatform/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Aiplatform/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'AIPlatformNotebooks' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/AIPlatformNotebooks/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/AIPlatformNotebooks/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'AirQuality' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/AirQuality/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/AirQuality/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'AlertCenter' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/AlertCenter/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/AlertCenter/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Analytics' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Analytics/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Analytics/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'AnalyticsData' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/AnalyticsData/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/AnalyticsData/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'AnalyticsHub' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/AnalyticsHub/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/AnalyticsHub/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'AnalyticsReporting' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/AnalyticsReporting/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/AnalyticsReporting/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'AndroidEnterprise' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/AndroidEnterprise/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/AndroidEnterprise/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'AndroidManagement' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/AndroidManagement/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/AndroidManagement/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'AndroidProvisioningPartner' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/AndroidProvisioningPartner/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/AndroidProvisioningPartner/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'AndroidPublisher' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/AndroidPublisher/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/AndroidPublisher/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'APIGateway' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/APIGateway/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/APIGateway/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Apigee' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Apigee/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Apigee/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'ApigeeRegistry' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/ApigeeRegistry/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/ApigeeRegistry/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'ApiKeysService' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/ApiKeysService/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/ApiKeysService/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'APIManagement' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/APIManagement/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/APIManagement/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Appengine' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Appengine/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Appengine/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'AppHub' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/AppHub/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/AppHub/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Area120Tables' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Area120Tables/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Area120Tables/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'ArtifactRegistry' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/ArtifactRegistry/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/ArtifactRegistry/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Assuredworkloads' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Assuredworkloads/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Assuredworkloads/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'AuthorizedBuyersMarketplace' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/AuthorizedBuyersMarketplace/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/AuthorizedBuyersMarketplace/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Backupdr' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Backupdr/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Backupdr/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'BackupforGKE' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/BackupforGKE/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/BackupforGKE/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'BareMetalSolution' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/BareMetalSolution/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/BareMetalSolution/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'BeyondCorp' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/BeyondCorp/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/BeyondCorp/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'BigLakeService' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/BigLakeService/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/BigLakeService/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Bigquery' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Bigquery/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Bigquery/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'BigQueryConnectionService' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/BigQueryConnectionService/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/BigQueryConnectionService/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'BigQueryDataPolicyService' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/BigQueryDataPolicyService/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/BigQueryDataPolicyService/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'BigQueryDataTransfer' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/BigQueryDataTransfer/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/BigQueryDataTransfer/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'BigQueryReservation' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/BigQueryReservation/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/BigQueryReservation/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'BigtableAdmin' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/BigtableAdmin/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/BigtableAdmin/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'BinaryAuthorization' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/BinaryAuthorization/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/BinaryAuthorization/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'BlockchainNodeEngine' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/BlockchainNodeEngine/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/BlockchainNodeEngine/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Blogger' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Blogger/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Blogger/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Books' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Books/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Books/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'BusinessProfilePerformance' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/BusinessProfilePerformance/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/BusinessProfilePerformance/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Calendar' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Calendar/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Calendar/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CCAIPlatform' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CCAIPlatform/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CCAIPlatform/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CertificateAuthorityService' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CertificateAuthorityService/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CertificateAuthorityService/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CertificateManager' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CertificateManager/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CertificateManager/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'ChecksService' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/ChecksService/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/ChecksService/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'ChromeManagement' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/ChromeManagement/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/ChromeManagement/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'ChromePolicy' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/ChromePolicy/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/ChromePolicy/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'ChromeUXReport' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/ChromeUXReport/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/ChromeUXReport/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CivicInfo' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CivicInfo/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CivicInfo/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Classroom' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Classroom/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Classroom/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CloudAlloyDBAdmin' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CloudAlloyDBAdmin/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CloudAlloyDBAdmin/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CloudAsset' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CloudAsset/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CloudAsset/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CloudBatch' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CloudBatch/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CloudBatch/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Cloudbilling' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Cloudbilling/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Cloudbilling/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CloudBillingBudget' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CloudBillingBudget/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CloudBillingBudget/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CloudBuild' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CloudBuild/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CloudBuild/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Cloudchannel' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Cloudchannel/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Cloudchannel/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CloudComposer' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CloudComposer/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CloudComposer/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CloudControlsPartnerService' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CloudControlsPartnerService/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CloudControlsPartnerService/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CloudDataplex' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CloudDataplex/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CloudDataplex/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CloudDeploy' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CloudDeploy/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CloudDeploy/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CloudDomains' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CloudDomains/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CloudDomains/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Clouderrorreporting' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Clouderrorreporting/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Clouderrorreporting/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CloudFilestore' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CloudFilestore/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CloudFilestore/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CloudFunctions' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CloudFunctions/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CloudFunctions/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CloudHealthcare' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CloudHealthcare/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CloudHealthcare/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CloudIAP' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CloudIAP/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CloudIAP/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CloudIdentity' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CloudIdentity/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CloudIdentity/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CloudKMS' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CloudKMS/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CloudKMS/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CloudLifeSciences' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CloudLifeSciences/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CloudLifeSciences/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CloudMachineLearningEngine' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CloudMachineLearningEngine/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CloudMachineLearningEngine/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CloudMemorystoreforMemcached' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CloudMemorystoreforMemcached/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CloudMemorystoreforMemcached/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CloudNaturalLanguage' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CloudNaturalLanguage/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CloudNaturalLanguage/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CloudOSLogin' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CloudOSLogin/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CloudOSLogin/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CloudProfiler' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CloudProfiler/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CloudProfiler/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CloudRedis' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CloudRedis/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CloudRedis/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CloudResourceManager' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CloudResourceManager/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CloudResourceManager/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CloudRetail' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CloudRetail/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CloudRetail/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CloudRun' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CloudRun/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CloudRun/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CloudRuntimeConfig' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CloudRuntimeConfig/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CloudRuntimeConfig/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CloudScheduler' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CloudScheduler/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CloudScheduler/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CloudSearch' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CloudSearch/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CloudSearch/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CloudSecurityToken' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CloudSecurityToken/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CloudSecurityToken/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CloudShell' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CloudShell/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CloudShell/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CloudSourceRepositories' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CloudSourceRepositories/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CloudSourceRepositories/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CloudSupport' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CloudSupport/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CloudSupport/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CloudTalentSolution' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CloudTalentSolution/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CloudTalentSolution/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CloudTasks' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CloudTasks/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CloudTasks/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CloudTrace' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CloudTrace/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CloudTrace/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CloudVideoIntelligence' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CloudVideoIntelligence/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CloudVideoIntelligence/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CloudWorkstations' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CloudWorkstations/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CloudWorkstations/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Compute' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Compute/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Compute/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Config' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Config/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Config/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Connectors' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Connectors/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Connectors/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Contactcenterinsights' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Contactcenterinsights/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Contactcenterinsights/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Container' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Container/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Container/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'ContainerAnalysis' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/ContainerAnalysis/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/ContainerAnalysis/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Contentwarehouse' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Contentwarehouse/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Contentwarehouse/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Css' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Css/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Css/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'CustomSearchAPI' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/CustomSearchAPI/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/CustomSearchAPI/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'DatabaseMigrationService' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/DatabaseMigrationService/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/DatabaseMigrationService/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'DataCatalog' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/DataCatalog/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/DataCatalog/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Dataflow' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Dataflow/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Dataflow/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Dataform' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Dataform/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Dataform/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'DataFusion' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/DataFusion/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/DataFusion/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'DataLabeling' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/DataLabeling/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/DataLabeling/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Datalineage' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Datalineage/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Datalineage/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Datapipelines' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Datapipelines/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Datapipelines/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'DataPortability' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/DataPortability/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/DataPortability/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Dataproc' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Dataproc/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Dataproc/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'DataprocMetastore' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/DataprocMetastore/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/DataprocMetastore/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Datastore' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Datastore/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Datastore/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Datastream' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Datastream/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Datastream/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'DataTransfer' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/DataTransfer/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/DataTransfer/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'DeploymentManager' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/DeploymentManager/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/DeploymentManager/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'DeveloperConnect' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/DeveloperConnect/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/DeveloperConnect/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Dfareporting' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Dfareporting/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Dfareporting/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Dialogflow' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Dialogflow/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Dialogflow/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'DigitalAssetLinks' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/DigitalAssetLinks/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/DigitalAssetLinks/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Directory' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Directory/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Directory/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Discovery' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Discovery/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Discovery/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'DiscoveryEngine' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/DiscoveryEngine/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/DiscoveryEngine/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'DisplayVideo' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/DisplayVideo/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/DisplayVideo/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'DLP' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/DLP/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/DLP/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Dns' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Dns/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Dns/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Docs' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Docs/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Docs/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Document' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Document/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Document/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'DomainsRDAP' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/DomainsRDAP/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/DomainsRDAP/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'DoubleClickBidManager' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/DoubleClickBidManager/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/DoubleClickBidManager/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Doubleclicksearch' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Doubleclicksearch/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Doubleclicksearch/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Drive' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Drive/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Drive/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'DriveActivity' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/DriveActivity/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/DriveActivity/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'DriveLabels' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/DriveLabels/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/DriveLabels/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Essentialcontacts' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Essentialcontacts/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Essentialcontacts/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Eventarc' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Eventarc/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Eventarc/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'FactCheckTools' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/FactCheckTools/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/FactCheckTools/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Fcmdata' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Fcmdata/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Fcmdata/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Firebaseappcheck' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Firebaseappcheck/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Firebaseappcheck/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'FirebaseAppDistribution' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/FirebaseAppDistribution/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/FirebaseAppDistribution/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'FirebaseCloudMessaging' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/FirebaseCloudMessaging/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/FirebaseCloudMessaging/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'FirebaseDynamicLinks' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/FirebaseDynamicLinks/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/FirebaseDynamicLinks/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'FirebaseHosting' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/FirebaseHosting/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/FirebaseHosting/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'FirebaseManagement' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/FirebaseManagement/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/FirebaseManagement/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'FirebaseML' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/FirebaseML/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/FirebaseML/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'FirebaseRealtimeDatabase' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/FirebaseRealtimeDatabase/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/FirebaseRealtimeDatabase/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'FirebaseRules' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/FirebaseRules/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/FirebaseRules/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Firebasestorage' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Firebasestorage/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Firebasestorage/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Firestore' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Firestore/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Firestore/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Fitness' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Fitness/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Fitness/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Forms' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Forms/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Forms/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Games' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Games/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Games/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'GamesConfiguration' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/GamesConfiguration/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/GamesConfiguration/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'GamesManagement' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/GamesManagement/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/GamesManagement/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'GKEHub' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/GKEHub/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/GKEHub/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'GKEOnPrem' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/GKEOnPrem/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/GKEOnPrem/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Gmail' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Gmail/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Gmail/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'GoogleAnalyticsAdmin' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/GoogleAnalyticsAdmin/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/GoogleAnalyticsAdmin/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'GoogleMarketingPlatformAdminAPI' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/GoogleMarketingPlatformAdminAPI/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/GoogleMarketingPlatformAdminAPI/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'GroupsMigration' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/GroupsMigration/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/GroupsMigration/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'GroupsSettings' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/GroupsSettings/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/GroupsSettings/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'HangoutsChat' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/HangoutsChat/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/HangoutsChat/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'HomeGraphService' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/HomeGraphService/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/HomeGraphService/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Iam' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Iam/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Iam/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'IAMCredentials' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/IAMCredentials/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/IAMCredentials/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'IdentityToolkit' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/IdentityToolkit/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/IdentityToolkit/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'IDS' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/IDS/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/IDS/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Indexing' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Indexing/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Indexing/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Integrations' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Integrations/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Integrations/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Keep' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Keep/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Keep/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Kgsearch' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Kgsearch/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Kgsearch/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Kmsinventory' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Kmsinventory/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Kmsinventory/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Libraryagent' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Libraryagent/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Libraryagent/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Licensing' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Licensing/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Licensing/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Localservices' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Localservices/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Localservices/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Logging' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Logging/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Logging/Public/GoogleAPIClientForREST/*.h'
end
s.subspec 'Looker' do |sp|
sp.dependency 'GoogleAPIClientForREST/Core'
sp.source_files = 'Sources/GeneratedServices/Looker/**/*.{h,m}'
sp.public_header_files = 'Sources/GeneratedServices/Looker/Public/GoogleAPIClientForREST/*.h'