forked from google/google-api-objectivec-client-for-rest
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathGTLRAPIhubObjects.m
More file actions
2318 lines (1685 loc) · 72.8 KB
/
GTLRAPIhubObjects.m
File metadata and controls
2318 lines (1685 loc) · 72.8 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
// NOTE: This file was generated by the ServiceGenerator.
// ----------------------------------------------------------------------------
// API:
// API hub API (apihub/v1)
// Documentation:
// https://cloud.google.com/apigee/docs/api-hub/what-is-api-hub
#import <GoogleAPIClientForREST/GTLRAPIhubObjects.h>
// ----------------------------------------------------------------------------
// Constants
// GTLRAPIhub_GoogleCloudApihubV1ApiHubInstance.state
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ApiHubInstance_State_Active = @"ACTIVE";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ApiHubInstance_State_Creating = @"CREATING";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ApiHubInstance_State_Deleting = @"DELETING";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ApiHubInstance_State_Failed = @"FAILED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ApiHubInstance_State_Inactive = @"INACTIVE";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ApiHubInstance_State_StateUnspecified = @"STATE_UNSPECIFIED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ApiHubInstance_State_Updating = @"UPDATING";
// GTLRAPIhub_GoogleCloudApihubV1ApiKeyConfig.httpElementLocation
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ApiKeyConfig_HttpElementLocation_Body = @"BODY";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ApiKeyConfig_HttpElementLocation_Cookie = @"COOKIE";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ApiKeyConfig_HttpElementLocation_Header = @"HEADER";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ApiKeyConfig_HttpElementLocation_HttpElementLocationUnspecified = @"HTTP_ELEMENT_LOCATION_UNSPECIFIED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ApiKeyConfig_HttpElementLocation_Path = @"PATH";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ApiKeyConfig_HttpElementLocation_Query = @"QUERY";
// GTLRAPIhub_GoogleCloudApihubV1Attribute.dataType
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Attribute_DataType_DataTypeUnspecified = @"DATA_TYPE_UNSPECIFIED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Attribute_DataType_Enum = @"ENUM";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Attribute_DataType_Json = @"JSON";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Attribute_DataType_String = @"STRING";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Attribute_DataType_Uri = @"URI";
// GTLRAPIhub_GoogleCloudApihubV1Attribute.definitionType
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Attribute_DefinitionType_DefinitionTypeUnspecified = @"DEFINITION_TYPE_UNSPECIFIED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Attribute_DefinitionType_SystemDefined = @"SYSTEM_DEFINED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Attribute_DefinitionType_UserDefined = @"USER_DEFINED";
// GTLRAPIhub_GoogleCloudApihubV1Attribute.scope
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Attribute_Scope_Api = @"API";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Attribute_Scope_ApiOperation = @"API_OPERATION";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Attribute_Scope_Definition = @"DEFINITION";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Attribute_Scope_Dependency = @"DEPENDENCY";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Attribute_Scope_Deployment = @"DEPLOYMENT";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Attribute_Scope_ExternalApi = @"EXTERNAL_API";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Attribute_Scope_Plugin = @"PLUGIN";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Attribute_Scope_ScopeUnspecified = @"SCOPE_UNSPECIFIED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Attribute_Scope_Spec = @"SPEC";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Attribute_Scope_Version = @"VERSION";
// GTLRAPIhub_GoogleCloudApihubV1AuthConfig.authType
NSString * const kGTLRAPIhub_GoogleCloudApihubV1AuthConfig_AuthType_ApiKey = @"API_KEY";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1AuthConfig_AuthType_AuthTypeUnspecified = @"AUTH_TYPE_UNSPECIFIED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1AuthConfig_AuthType_GoogleServiceAccount = @"GOOGLE_SERVICE_ACCOUNT";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1AuthConfig_AuthType_NoAuth = @"NO_AUTH";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1AuthConfig_AuthType_Oauth2ClientCredentials = @"OAUTH2_CLIENT_CREDENTIALS";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1AuthConfig_AuthType_UserPassword = @"USER_PASSWORD";
// GTLRAPIhub_GoogleCloudApihubV1AuthConfigTemplate.supportedAuthTypes
NSString * const kGTLRAPIhub_GoogleCloudApihubV1AuthConfigTemplate_SupportedAuthTypes_ApiKey = @"API_KEY";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1AuthConfigTemplate_SupportedAuthTypes_AuthTypeUnspecified = @"AUTH_TYPE_UNSPECIFIED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1AuthConfigTemplate_SupportedAuthTypes_GoogleServiceAccount = @"GOOGLE_SERVICE_ACCOUNT";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1AuthConfigTemplate_SupportedAuthTypes_NoAuth = @"NO_AUTH";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1AuthConfigTemplate_SupportedAuthTypes_Oauth2ClientCredentials = @"OAUTH2_CLIENT_CREDENTIALS";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1AuthConfigTemplate_SupportedAuthTypes_UserPassword = @"USER_PASSWORD";
// GTLRAPIhub_GoogleCloudApihubV1CollectApiDataRequest.collectionType
NSString * const kGTLRAPIhub_GoogleCloudApihubV1CollectApiDataRequest_CollectionType_CollectionTypeDelete = @"COLLECTION_TYPE_DELETE";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1CollectApiDataRequest_CollectionType_CollectionTypeUnspecified = @"COLLECTION_TYPE_UNSPECIFIED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1CollectApiDataRequest_CollectionType_CollectionTypeUpsert = @"COLLECTION_TYPE_UPSERT";
// GTLRAPIhub_GoogleCloudApihubV1Config.encryptionType
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Config_EncryptionType_Cmek = @"CMEK";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Config_EncryptionType_EncryptionTypeUnspecified = @"ENCRYPTION_TYPE_UNSPECIFIED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Config_EncryptionType_Gmek = @"GMEK";
// GTLRAPIhub_GoogleCloudApihubV1ConfigVariableTemplate.valueType
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ConfigVariableTemplate_ValueType_Bool = @"BOOL";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ConfigVariableTemplate_ValueType_Enum = @"ENUM";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ConfigVariableTemplate_ValueType_Int = @"INT";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ConfigVariableTemplate_ValueType_MultiInt = @"MULTI_INT";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ConfigVariableTemplate_ValueType_MultiSelect = @"MULTI_SELECT";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ConfigVariableTemplate_ValueType_MultiString = @"MULTI_STRING";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ConfigVariableTemplate_ValueType_Secret = @"SECRET";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ConfigVariableTemplate_ValueType_String = @"STRING";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ConfigVariableTemplate_ValueType_ValueTypeUnspecified = @"VALUE_TYPE_UNSPECIFIED";
// GTLRAPIhub_GoogleCloudApihubV1Curation.lastExecutionErrorCode
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Curation_LastExecutionErrorCode_ErrorCodeUnspecified = @"ERROR_CODE_UNSPECIFIED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Curation_LastExecutionErrorCode_InternalError = @"INTERNAL_ERROR";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Curation_LastExecutionErrorCode_Unauthorized = @"UNAUTHORIZED";
// GTLRAPIhub_GoogleCloudApihubV1Curation.lastExecutionState
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Curation_LastExecutionState_Failed = @"FAILED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Curation_LastExecutionState_LastExecutionStateUnspecified = @"LAST_EXECUTION_STATE_UNSPECIFIED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Curation_LastExecutionState_Succeeded = @"SUCCEEDED";
// GTLRAPIhub_GoogleCloudApihubV1CurationConfig.curationType
NSString * const kGTLRAPIhub_GoogleCloudApihubV1CurationConfig_CurationType_CurationTypeUnspecified = @"CURATION_TYPE_UNSPECIFIED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1CurationConfig_CurationType_CustomCurationForApiMetadata = @"CUSTOM_CURATION_FOR_API_METADATA";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1CurationConfig_CurationType_DefaultCurationForApiMetadata = @"DEFAULT_CURATION_FOR_API_METADATA";
// GTLRAPIhub_GoogleCloudApihubV1Definition.type
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Definition_Type_Schema = @"SCHEMA";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Definition_Type_TypeUnspecified = @"TYPE_UNSPECIFIED";
// GTLRAPIhub_GoogleCloudApihubV1Dependency.discoveryMode
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Dependency_DiscoveryMode_DiscoveryModeUnspecified = @"DISCOVERY_MODE_UNSPECIFIED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Dependency_DiscoveryMode_Manual = @"MANUAL";
// GTLRAPIhub_GoogleCloudApihubV1Dependency.state
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Dependency_State_Proposed = @"PROPOSED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Dependency_State_StateUnspecified = @"STATE_UNSPECIFIED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Dependency_State_Validated = @"VALIDATED";
// GTLRAPIhub_GoogleCloudApihubV1DependencyErrorDetail.error
NSString * const kGTLRAPIhub_GoogleCloudApihubV1DependencyErrorDetail_Error_ErrorUnspecified = @"ERROR_UNSPECIFIED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1DependencyErrorDetail_Error_SupplierNotFound = @"SUPPLIER_NOT_FOUND";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1DependencyErrorDetail_Error_SupplierRecreated = @"SUPPLIER_RECREATED";
// GTLRAPIhub_GoogleCloudApihubV1DiscoveredApiObservation.sourceTypes
NSString * const kGTLRAPIhub_GoogleCloudApihubV1DiscoveredApiObservation_SourceTypes_GcpIlb = @"GCP_ILB";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1DiscoveredApiObservation_SourceTypes_GcpXlb = @"GCP_XLB";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1DiscoveredApiObservation_SourceTypes_SourceTypeUnspecified = @"SOURCE_TYPE_UNSPECIFIED";
// GTLRAPIhub_GoogleCloudApihubV1DiscoveredApiObservation.style
NSString * const kGTLRAPIhub_GoogleCloudApihubV1DiscoveredApiObservation_Style_Graphql = @"GRAPHQL";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1DiscoveredApiObservation_Style_Grpc = @"GRPC";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1DiscoveredApiObservation_Style_Rest = @"REST";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1DiscoveredApiObservation_Style_StyleUnspecified = @"STYLE_UNSPECIFIED";
// GTLRAPIhub_GoogleCloudApihubV1DiscoveredApiOperation.classification
NSString * const kGTLRAPIhub_GoogleCloudApihubV1DiscoveredApiOperation_Classification_ClassificationUnspecified = @"CLASSIFICATION_UNSPECIFIED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1DiscoveredApiOperation_Classification_Known = @"KNOWN";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1DiscoveredApiOperation_Classification_Unknown = @"UNKNOWN";
// GTLRAPIhub_GoogleCloudApihubV1ExecutionStatus.currentExecutionState
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ExecutionStatus_CurrentExecutionState_CurrentExecutionStateUnspecified = @"CURRENT_EXECUTION_STATE_UNSPECIFIED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ExecutionStatus_CurrentExecutionState_NotRunning = @"NOT_RUNNING";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ExecutionStatus_CurrentExecutionState_Running = @"RUNNING";
// GTLRAPIhub_GoogleCloudApihubV1Header.dataType
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Header_DataType_Bool = @"BOOL";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Header_DataType_DataTypeUnspecified = @"DATA_TYPE_UNSPECIFIED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Header_DataType_Float = @"FLOAT";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Header_DataType_Integer = @"INTEGER";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Header_DataType_String = @"STRING";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Header_DataType_Uuid = @"UUID";
// GTLRAPIhub_GoogleCloudApihubV1HttpOperation.method
NSString * const kGTLRAPIhub_GoogleCloudApihubV1HttpOperation_Method_Delete = @"DELETE";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1HttpOperation_Method_Get = @"GET";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1HttpOperation_Method_Head = @"HEAD";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1HttpOperation_Method_MethodUnspecified = @"METHOD_UNSPECIFIED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1HttpOperation_Method_Options = @"OPTIONS";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1HttpOperation_Method_Patch = @"PATCH";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1HttpOperation_Method_Post = @"POST";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1HttpOperation_Method_Put = @"PUT";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1HttpOperation_Method_Trace = @"TRACE";
// GTLRAPIhub_GoogleCloudApihubV1Issue.severity
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Issue_Severity_SeverityError = @"SEVERITY_ERROR";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Issue_Severity_SeverityHint = @"SEVERITY_HINT";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Issue_Severity_SeverityInfo = @"SEVERITY_INFO";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Issue_Severity_SeverityUnspecified = @"SEVERITY_UNSPECIFIED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Issue_Severity_SeverityWarning = @"SEVERITY_WARNING";
// GTLRAPIhub_GoogleCloudApihubV1LastExecution.result
NSString * const kGTLRAPIhub_GoogleCloudApihubV1LastExecution_Result_Failed = @"FAILED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1LastExecution_Result_ResultUnspecified = @"RESULT_UNSPECIFIED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1LastExecution_Result_Succeeded = @"SUCCEEDED";
// GTLRAPIhub_GoogleCloudApihubV1LintResponse.linter
NSString * const kGTLRAPIhub_GoogleCloudApihubV1LintResponse_Linter_LinterUnspecified = @"LINTER_UNSPECIFIED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1LintResponse_Linter_Other = @"OTHER";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1LintResponse_Linter_Spectral = @"SPECTRAL";
// GTLRAPIhub_GoogleCloudApihubV1LintResponse.state
NSString * const kGTLRAPIhub_GoogleCloudApihubV1LintResponse_State_LintStateError = @"LINT_STATE_ERROR";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1LintResponse_State_LintStateSuccess = @"LINT_STATE_SUCCESS";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1LintResponse_State_LintStateUnspecified = @"LINT_STATE_UNSPECIFIED";
// GTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest.action
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest_Action_ActionUnspecified = @"ACTION_UNSPECIFIED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest_Action_Delete = @"DELETE";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest_Action_Upload = @"UPLOAD";
// GTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest.dataType
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest_DataType_DataTypeUnspecified = @"DATA_TYPE_UNSPECIFIED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest_DataType_EnvironmentManifest = @"ENVIRONMENT_MANIFEST";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest_DataType_ProxyBundle = @"PROXY_BUNDLE";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest_DataType_ProxyDeploymentManifest = @"PROXY_DEPLOYMENT_MANIFEST";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ManagePluginInstanceSourceDataRequest_DataType_SharedFlowBundle = @"SHARED_FLOW_BUNDLE";
// GTLRAPIhub_GoogleCloudApihubV1OpenApiSpecDetails.format
NSString * const kGTLRAPIhub_GoogleCloudApihubV1OpenApiSpecDetails_Format_FormatUnspecified = @"FORMAT_UNSPECIFIED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1OpenApiSpecDetails_Format_OpenApiSpec20 = @"OPEN_API_SPEC_2_0";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1OpenApiSpecDetails_Format_OpenApiSpec30 = @"OPEN_API_SPEC_3_0";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1OpenApiSpecDetails_Format_OpenApiSpec31 = @"OPEN_API_SPEC_3_1";
// GTLRAPIhub_GoogleCloudApihubV1PathParam.dataType
NSString * const kGTLRAPIhub_GoogleCloudApihubV1PathParam_DataType_Bool = @"BOOL";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1PathParam_DataType_DataTypeUnspecified = @"DATA_TYPE_UNSPECIFIED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1PathParam_DataType_Float = @"FLOAT";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1PathParam_DataType_Integer = @"INTEGER";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1PathParam_DataType_String = @"STRING";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1PathParam_DataType_Uuid = @"UUID";
// GTLRAPIhub_GoogleCloudApihubV1Plugin.gatewayType
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Plugin_GatewayType_ApiDiscovery = @"API_DISCOVERY";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Plugin_GatewayType_ApigeeEdgePrivateCloud = @"APIGEE_EDGE_PRIVATE_CLOUD";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Plugin_GatewayType_ApigeeEdgePublicCloud = @"APIGEE_EDGE_PUBLIC_CLOUD";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Plugin_GatewayType_ApigeeXAndHybrid = @"APIGEE_X_AND_HYBRID";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Plugin_GatewayType_CloudApiGateway = @"CLOUD_API_GATEWAY";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Plugin_GatewayType_CloudEndpoints = @"CLOUD_ENDPOINTS";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Plugin_GatewayType_GatewayTypeUnspecified = @"GATEWAY_TYPE_UNSPECIFIED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Plugin_GatewayType_Others = @"OTHERS";
// GTLRAPIhub_GoogleCloudApihubV1Plugin.ownershipType
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Plugin_OwnershipType_OwnershipTypeUnspecified = @"OWNERSHIP_TYPE_UNSPECIFIED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Plugin_OwnershipType_SystemOwned = @"SYSTEM_OWNED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Plugin_OwnershipType_UserOwned = @"USER_OWNED";
// GTLRAPIhub_GoogleCloudApihubV1Plugin.pluginCategory
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Plugin_PluginCategory_ApiGateway = @"API_GATEWAY";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Plugin_PluginCategory_ApiProducer = @"API_PRODUCER";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Plugin_PluginCategory_PluginCategoryUnspecified = @"PLUGIN_CATEGORY_UNSPECIFIED";
// GTLRAPIhub_GoogleCloudApihubV1Plugin.state
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Plugin_State_Disabled = @"DISABLED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Plugin_State_Enabled = @"ENABLED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Plugin_State_StateUnspecified = @"STATE_UNSPECIFIED";
// GTLRAPIhub_GoogleCloudApihubV1PluginActionConfig.triggerMode
NSString * const kGTLRAPIhub_GoogleCloudApihubV1PluginActionConfig_TriggerMode_ApiHubOnDemandTrigger = @"API_HUB_ON_DEMAND_TRIGGER";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1PluginActionConfig_TriggerMode_ApiHubScheduleTrigger = @"API_HUB_SCHEDULE_TRIGGER";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1PluginActionConfig_TriggerMode_NonApiHubManaged = @"NON_API_HUB_MANAGED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1PluginActionConfig_TriggerMode_TriggerModeUnspecified = @"TRIGGER_MODE_UNSPECIFIED";
// GTLRAPIhub_GoogleCloudApihubV1PluginInstance.state
NSString * const kGTLRAPIhub_GoogleCloudApihubV1PluginInstance_State_Active = @"ACTIVE";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1PluginInstance_State_ApplyingConfig = @"APPLYING_CONFIG";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1PluginInstance_State_Creating = @"CREATING";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1PluginInstance_State_Deleting = @"DELETING";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1PluginInstance_State_Error = @"ERROR";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1PluginInstance_State_Failed = @"FAILED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1PluginInstance_State_StateUnspecified = @"STATE_UNSPECIFIED";
// GTLRAPIhub_GoogleCloudApihubV1PluginInstanceAction.state
NSString * const kGTLRAPIhub_GoogleCloudApihubV1PluginInstanceAction_State_Disabled = @"DISABLED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1PluginInstanceAction_State_Disabling = @"DISABLING";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1PluginInstanceAction_State_Enabled = @"ENABLED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1PluginInstanceAction_State_Enabling = @"ENABLING";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1PluginInstanceAction_State_Error = @"ERROR";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1PluginInstanceAction_State_StateUnspecified = @"STATE_UNSPECIFIED";
// GTLRAPIhub_GoogleCloudApihubV1QueryParam.dataType
NSString * const kGTLRAPIhub_GoogleCloudApihubV1QueryParam_DataType_Bool = @"BOOL";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1QueryParam_DataType_DataTypeUnspecified = @"DATA_TYPE_UNSPECIFIED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1QueryParam_DataType_Float = @"FLOAT";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1QueryParam_DataType_Integer = @"INTEGER";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1QueryParam_DataType_String = @"STRING";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1QueryParam_DataType_Uuid = @"UUID";
// GTLRAPIhub_GoogleCloudApihubV1ResourceConfig.actionType
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ResourceConfig_ActionType_ActionTypeUnspecified = @"ACTION_TYPE_UNSPECIFIED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ResourceConfig_ActionType_SyncMetadata = @"SYNC_METADATA";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1ResourceConfig_ActionType_SyncRuntimeData = @"SYNC_RUNTIME_DATA";
// GTLRAPIhub_GoogleCloudApihubV1SourceMetadata.sourceType
NSString * const kGTLRAPIhub_GoogleCloudApihubV1SourceMetadata_SourceType_Plugin = @"PLUGIN";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1SourceMetadata_SourceType_SourceTypeUnspecified = @"SOURCE_TYPE_UNSPECIFIED";
// GTLRAPIhub_GoogleCloudApihubV1Spec.parsingMode
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Spec_ParsingMode_ParsingModeUnspecified = @"PARSING_MODE_UNSPECIFIED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Spec_ParsingMode_Relaxed = @"RELAXED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1Spec_ParsingMode_Strict = @"STRICT";
// GTLRAPIhub_GoogleCloudApihubV1StyleGuide.linter
NSString * const kGTLRAPIhub_GoogleCloudApihubV1StyleGuide_Linter_LinterUnspecified = @"LINTER_UNSPECIFIED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1StyleGuide_Linter_Other = @"OTHER";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1StyleGuide_Linter_Spectral = @"SPECTRAL";
// GTLRAPIhub_GoogleCloudApihubV1SummaryEntry.severity
NSString * const kGTLRAPIhub_GoogleCloudApihubV1SummaryEntry_Severity_SeverityError = @"SEVERITY_ERROR";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1SummaryEntry_Severity_SeverityHint = @"SEVERITY_HINT";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1SummaryEntry_Severity_SeverityInfo = @"SEVERITY_INFO";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1SummaryEntry_Severity_SeverityUnspecified = @"SEVERITY_UNSPECIFIED";
NSString * const kGTLRAPIhub_GoogleCloudApihubV1SummaryEntry_Severity_SeverityWarning = @"SEVERITY_WARNING";
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_Empty
//
@implementation GTLRAPIhub_Empty
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1ActionExecutionDetail
//
@implementation GTLRAPIhub_GoogleCloudApihubV1ActionExecutionDetail
@dynamic actionId;
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1AllowedValue
//
@implementation GTLRAPIhub_GoogleCloudApihubV1AllowedValue
@dynamic descriptionProperty, displayName, identifier, immutable;
+ (NSDictionary<NSString *, NSString *> *)propertyToJSONKeyMap {
NSDictionary<NSString *, NSString *> *map = @{
@"descriptionProperty" : @"description",
@"identifier" : @"id"
};
return map;
}
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1Api
//
@implementation GTLRAPIhub_GoogleCloudApihubV1Api
@dynamic apiFunctionalRequirements, apiRequirements, apiStyle,
apiTechnicalRequirements, attributes, businessUnit, createTime,
descriptionProperty, displayName, documentation, fingerprint,
maturityLevel, name, owner, selectedVersion, sourceMetadata,
targetUser, team, updateTime, versions;
+ (NSDictionary<NSString *, NSString *> *)propertyToJSONKeyMap {
return @{ @"descriptionProperty" : @"description" };
}
+ (NSDictionary<NSString *, Class> *)arrayPropertyToClassMap {
NSDictionary<NSString *, Class> *map = @{
@"sourceMetadata" : [GTLRAPIhub_GoogleCloudApihubV1SourceMetadata class],
@"versions" : [NSString class]
};
return map;
}
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1Api_Attributes
//
@implementation GTLRAPIhub_GoogleCloudApihubV1Api_Attributes
+ (Class)classForAdditionalProperties {
return [GTLRAPIhub_GoogleCloudApihubV1AttributeValues class];
}
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1ApiData
//
@implementation GTLRAPIhub_GoogleCloudApihubV1ApiData
@dynamic apiMetadataList;
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1ApiHubInstance
//
@implementation GTLRAPIhub_GoogleCloudApihubV1ApiHubInstance
@dynamic config, createTime, descriptionProperty, labels, name, state,
stateMessage, updateTime;
+ (NSDictionary<NSString *, NSString *> *)propertyToJSONKeyMap {
return @{ @"descriptionProperty" : @"description" };
}
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1ApiHubInstance_Labels
//
@implementation GTLRAPIhub_GoogleCloudApihubV1ApiHubInstance_Labels
+ (Class)classForAdditionalProperties {
return [NSString class];
}
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1ApiHubResource
//
@implementation GTLRAPIhub_GoogleCloudApihubV1ApiHubResource
@dynamic api, definition, deployment, operation, spec, version;
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1ApiKeyConfig
//
@implementation GTLRAPIhub_GoogleCloudApihubV1ApiKeyConfig
@dynamic apiKey, httpElementLocation, name;
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1APIMetadata
//
@implementation GTLRAPIhub_GoogleCloudApihubV1APIMetadata
@dynamic api, originalCreateTime, originalId, originalUpdateTime, versions;
+ (NSDictionary<NSString *, Class> *)arrayPropertyToClassMap {
NSDictionary<NSString *, Class> *map = @{
@"versions" : [GTLRAPIhub_GoogleCloudApihubV1VersionMetadata class]
};
return map;
}
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1ApiMetadataList
//
@implementation GTLRAPIhub_GoogleCloudApihubV1ApiMetadataList
@dynamic apiMetadata;
+ (NSDictionary<NSString *, Class> *)arrayPropertyToClassMap {
NSDictionary<NSString *, Class> *map = @{
@"apiMetadata" : [GTLRAPIhub_GoogleCloudApihubV1APIMetadata class]
};
return map;
}
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1ApiOperation
//
@implementation GTLRAPIhub_GoogleCloudApihubV1ApiOperation
@dynamic attributes, createTime, details, name, sourceMetadata, spec,
updateTime;
+ (NSDictionary<NSString *, Class> *)arrayPropertyToClassMap {
NSDictionary<NSString *, Class> *map = @{
@"sourceMetadata" : [GTLRAPIhub_GoogleCloudApihubV1SourceMetadata class]
};
return map;
}
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1ApiOperation_Attributes
//
@implementation GTLRAPIhub_GoogleCloudApihubV1ApiOperation_Attributes
+ (Class)classForAdditionalProperties {
return [GTLRAPIhub_GoogleCloudApihubV1AttributeValues class];
}
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1ApplicationIntegrationEndpointDetails
//
@implementation GTLRAPIhub_GoogleCloudApihubV1ApplicationIntegrationEndpointDetails
@dynamic triggerId, uri;
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1Attribute
//
@implementation GTLRAPIhub_GoogleCloudApihubV1Attribute
@dynamic allowedValues, cardinality, createTime, dataType, definitionType,
descriptionProperty, displayName, mandatory, name, scope, updateTime;
+ (NSDictionary<NSString *, NSString *> *)propertyToJSONKeyMap {
return @{ @"descriptionProperty" : @"description" };
}
+ (NSDictionary<NSString *, Class> *)arrayPropertyToClassMap {
NSDictionary<NSString *, Class> *map = @{
@"allowedValues" : [GTLRAPIhub_GoogleCloudApihubV1AllowedValue class]
};
return map;
}
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1AttributeValues
//
@implementation GTLRAPIhub_GoogleCloudApihubV1AttributeValues
@dynamic attribute, enumValues, jsonValues, stringValues, uriValues;
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1AuthConfig
//
@implementation GTLRAPIhub_GoogleCloudApihubV1AuthConfig
@dynamic apiKeyConfig, authType, googleServiceAccountConfig,
oauth2ClientCredentialsConfig, userPasswordConfig;
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1AuthConfigTemplate
//
@implementation GTLRAPIhub_GoogleCloudApihubV1AuthConfigTemplate
@dynamic serviceAccount, supportedAuthTypes;
+ (NSDictionary<NSString *, Class> *)arrayPropertyToClassMap {
NSDictionary<NSString *, Class> *map = @{
@"supportedAuthTypes" : [NSString class]
};
return map;
}
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1CollectApiDataRequest
//
@implementation GTLRAPIhub_GoogleCloudApihubV1CollectApiDataRequest
@dynamic actionId, apiData, collectionType, pluginInstance;
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1Config
//
@implementation GTLRAPIhub_GoogleCloudApihubV1Config
@dynamic cmekKeyName, disableSearch, encryptionType, vertexLocation;
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1ConfigTemplate
//
@implementation GTLRAPIhub_GoogleCloudApihubV1ConfigTemplate
@dynamic additionalConfigTemplate, authConfigTemplate;
+ (NSDictionary<NSString *, Class> *)arrayPropertyToClassMap {
NSDictionary<NSString *, Class> *map = @{
@"additionalConfigTemplate" : [GTLRAPIhub_GoogleCloudApihubV1ConfigVariableTemplate class]
};
return map;
}
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1ConfigValueOption
//
@implementation GTLRAPIhub_GoogleCloudApihubV1ConfigValueOption
@dynamic descriptionProperty, displayName, identifier;
+ (NSDictionary<NSString *, NSString *> *)propertyToJSONKeyMap {
NSDictionary<NSString *, NSString *> *map = @{
@"descriptionProperty" : @"description",
@"identifier" : @"id"
};
return map;
}
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1ConfigVariable
//
@implementation GTLRAPIhub_GoogleCloudApihubV1ConfigVariable
@dynamic boolValue, enumValue, intValue, key, multiIntValues, multiSelectValues,
multiStringValues, secretValue, stringValue;
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1ConfigVariableTemplate
//
@implementation GTLRAPIhub_GoogleCloudApihubV1ConfigVariableTemplate
@dynamic descriptionProperty, enumOptions, identifier, multiSelectOptions,
required, validationRegex, valueType;
+ (NSDictionary<NSString *, NSString *> *)propertyToJSONKeyMap {
NSDictionary<NSString *, NSString *> *map = @{
@"descriptionProperty" : @"description",
@"identifier" : @"id"
};
return map;
}
+ (NSDictionary<NSString *, Class> *)arrayPropertyToClassMap {
NSDictionary<NSString *, Class> *map = @{
@"enumOptions" : [GTLRAPIhub_GoogleCloudApihubV1ConfigValueOption class],
@"multiSelectOptions" : [GTLRAPIhub_GoogleCloudApihubV1ConfigValueOption class]
};
return map;
}
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1Curation
//
@implementation GTLRAPIhub_GoogleCloudApihubV1Curation
@dynamic createTime, descriptionProperty, displayName, endpoint,
lastExecutionErrorCode, lastExecutionErrorMessage, lastExecutionState,
name, pluginInstanceActions, updateTime;
+ (NSDictionary<NSString *, NSString *> *)propertyToJSONKeyMap {
return @{ @"descriptionProperty" : @"description" };
}
+ (NSDictionary<NSString *, Class> *)arrayPropertyToClassMap {
NSDictionary<NSString *, Class> *map = @{
@"pluginInstanceActions" : [GTLRAPIhub_GoogleCloudApihubV1PluginInstanceActionID class]
};
return map;
}
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1CurationConfig
//
@implementation GTLRAPIhub_GoogleCloudApihubV1CurationConfig
@dynamic curationType, customCuration;
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1CustomCuration
//
@implementation GTLRAPIhub_GoogleCloudApihubV1CustomCuration
@dynamic curation;
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1Definition
//
@implementation GTLRAPIhub_GoogleCloudApihubV1Definition
@dynamic attributes, createTime, name, schema, spec, type, updateTime;
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1Definition_Attributes
//
@implementation GTLRAPIhub_GoogleCloudApihubV1Definition_Attributes
+ (Class)classForAdditionalProperties {
return [GTLRAPIhub_GoogleCloudApihubV1AttributeValues class];
}
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1Dependency
//
@implementation GTLRAPIhub_GoogleCloudApihubV1Dependency
@dynamic attributes, consumer, createTime, descriptionProperty, discoveryMode,
errorDetail, name, state, supplier, updateTime;
+ (NSDictionary<NSString *, NSString *> *)propertyToJSONKeyMap {
return @{ @"descriptionProperty" : @"description" };
}
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1Dependency_Attributes
//
@implementation GTLRAPIhub_GoogleCloudApihubV1Dependency_Attributes
+ (Class)classForAdditionalProperties {
return [GTLRAPIhub_GoogleCloudApihubV1AttributeValues class];
}
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1DependencyEntityReference
//
@implementation GTLRAPIhub_GoogleCloudApihubV1DependencyEntityReference
@dynamic displayName, externalApiResourceName, operationResourceName;
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1DependencyErrorDetail
//
@implementation GTLRAPIhub_GoogleCloudApihubV1DependencyErrorDetail
@dynamic error, errorTime;
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1Deployment
//
@implementation GTLRAPIhub_GoogleCloudApihubV1Deployment
@dynamic apiVersions, attributes, createTime, deploymentType,
descriptionProperty, displayName, documentation, endpoints,
environment, managementUrl, name, resourceUri, slo, sourceEnvironment,
sourceMetadata, sourceProject, sourceUri, updateTime;
+ (NSDictionary<NSString *, NSString *> *)propertyToJSONKeyMap {
return @{ @"descriptionProperty" : @"description" };
}
+ (NSDictionary<NSString *, Class> *)arrayPropertyToClassMap {
NSDictionary<NSString *, Class> *map = @{
@"apiVersions" : [NSString class],
@"endpoints" : [NSString class],
@"sourceMetadata" : [GTLRAPIhub_GoogleCloudApihubV1SourceMetadata class]
};
return map;
}
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1Deployment_Attributes
//
@implementation GTLRAPIhub_GoogleCloudApihubV1Deployment_Attributes
+ (Class)classForAdditionalProperties {
return [GTLRAPIhub_GoogleCloudApihubV1AttributeValues class];
}
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1DeploymentMetadata
//
@implementation GTLRAPIhub_GoogleCloudApihubV1DeploymentMetadata
@dynamic deployment, originalCreateTime, originalId, originalUpdateTime;
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1DisablePluginInstanceActionRequest
//
@implementation GTLRAPIhub_GoogleCloudApihubV1DisablePluginInstanceActionRequest
@dynamic actionId;
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1DisablePluginRequest
//
@implementation GTLRAPIhub_GoogleCloudApihubV1DisablePluginRequest
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1DiscoveredApiObservation
//
@implementation GTLRAPIhub_GoogleCloudApihubV1DiscoveredApiObservation
@dynamic apiOperationCount, createTime, hostname, knownOperationsCount,
lastEventDetectedTime, name, origin, serverIps, sourceLocations,
sourceMetadata, sourceTypes, style, unknownOperationsCount, updateTime;
+ (NSDictionary<NSString *, Class> *)arrayPropertyToClassMap {
NSDictionary<NSString *, Class> *map = @{
@"serverIps" : [NSString class],
@"sourceLocations" : [NSString class],
@"sourceTypes" : [NSString class]
};
return map;
}
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1DiscoveredApiOperation
//
@implementation GTLRAPIhub_GoogleCloudApihubV1DiscoveredApiOperation
@dynamic classification, count, createTime, firstSeenTime, httpOperation,
lastSeenTime, matchResults, name, sourceMetadata, updateTime;
+ (NSDictionary<NSString *, Class> *)arrayPropertyToClassMap {
NSDictionary<NSString *, Class> *map = @{
@"matchResults" : [GTLRAPIhub_GoogleCloudApihubV1MatchResult class]
};
return map;
}
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1Documentation
//
@implementation GTLRAPIhub_GoogleCloudApihubV1Documentation
@dynamic externalUri;
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1EnablePluginInstanceActionRequest
//
@implementation GTLRAPIhub_GoogleCloudApihubV1EnablePluginInstanceActionRequest
@dynamic actionId;
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1EnablePluginRequest
//
@implementation GTLRAPIhub_GoogleCloudApihubV1EnablePluginRequest
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1Endpoint
//
@implementation GTLRAPIhub_GoogleCloudApihubV1Endpoint
@dynamic applicationIntegrationEndpointDetails;
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1EnumAttributeValues
//
@implementation GTLRAPIhub_GoogleCloudApihubV1EnumAttributeValues
@dynamic values;
+ (NSDictionary<NSString *, Class> *)arrayPropertyToClassMap {
NSDictionary<NSString *, Class> *map = @{
@"values" : [GTLRAPIhub_GoogleCloudApihubV1AllowedValue class]
};
return map;
}
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1ExecutePluginInstanceActionRequest
//
@implementation GTLRAPIhub_GoogleCloudApihubV1ExecutePluginInstanceActionRequest
@dynamic actionExecutionDetail;
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1ExecutionStatus
//
@implementation GTLRAPIhub_GoogleCloudApihubV1ExecutionStatus
@dynamic currentExecutionState, lastExecution;
@end
// ----------------------------------------------------------------------------
//
// GTLRAPIhub_GoogleCloudApihubV1ExternalApi
//
@implementation GTLRAPIhub_GoogleCloudApihubV1ExternalApi
@dynamic attributes, createTime, descriptionProperty, displayName,
documentation, endpoints, name, paths, updateTime;
+ (NSDictionary<NSString *, NSString *> *)propertyToJSONKeyMap {
return @{ @"descriptionProperty" : @"description" };
}
+ (NSDictionary<NSString *, Class> *)arrayPropertyToClassMap {
NSDictionary<NSString *, Class> *map = @{
@"endpoints" : [NSString class],
@"paths" : [NSString class]
};
return map;
}
@end