-
Notifications
You must be signed in to change notification settings - Fork 2.4k
/
appengine.v1.json
4293 lines (4293 loc) · 145 KB
/
appengine.v1.json
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
{
"auth": {
"oauth2": {
"scopes": {
"https://www.googleapis.com/auth/appengine.admin": {
"description": "View and manage your applications deployed on Google App Engine"
},
"https://www.googleapis.com/auth/cloud-platform": {
"description": "See, edit, configure, and delete your Google Cloud data and see the email address for your Google Account."
},
"https://www.googleapis.com/auth/cloud-platform.read-only": {
"description": "View your data across Google Cloud services and see the email address of your Google Account"
}
}
}
},
"basePath": "",
"baseUrl": "https://appengine.googleapis.com/",
"batchPath": "batch",
"description": "Provisions and manages developers' App Engine applications.",
"discoveryVersion": "v1",
"documentationLink": "https://cloud.google.com/appengine/docs/admin-api/",
"fullyEncodeReservedExpansion": true,
"icons": {
"x16": "http://www.google.com/images/icons/product/search-16.gif",
"x32": "http://www.google.com/images/icons/product/search-32.gif"
},
"id": "appengine:v1",
"kind": "discovery#restDescription",
"mtlsRootUrl": "https://appengine.mtls.googleapis.com/",
"name": "appengine",
"ownerDomain": "google.com",
"ownerName": "Google",
"parameters": {
"$.xgafv": {
"description": "V1 error format.",
"enum": [
"1",
"2"
],
"enumDescriptions": [
"v1 error format",
"v2 error format"
],
"location": "query",
"type": "string"
},
"access_token": {
"description": "OAuth access token.",
"location": "query",
"type": "string"
},
"alt": {
"default": "json",
"description": "Data format for response.",
"enum": [
"json",
"media",
"proto"
],
"enumDescriptions": [
"Responses with Content-Type of application/json",
"Media download with context-dependent Content-Type",
"Responses with Content-Type of application/x-protobuf"
],
"location": "query",
"type": "string"
},
"callback": {
"description": "JSONP",
"location": "query",
"type": "string"
},
"fields": {
"description": "Selector specifying which fields to include in a partial response.",
"location": "query",
"type": "string"
},
"key": {
"description": "API key. Your API key identifies your project and provides you with API access, quota, and reports. Required unless you provide an OAuth 2.0 token.",
"location": "query",
"type": "string"
},
"oauth_token": {
"description": "OAuth 2.0 token for the current user.",
"location": "query",
"type": "string"
},
"prettyPrint": {
"default": "true",
"description": "Returns response with indentations and line breaks.",
"location": "query",
"type": "boolean"
},
"quotaUser": {
"description": "Available to use for quota purposes for server-side applications. Can be any arbitrary string assigned to a user, but should not exceed 40 characters.",
"location": "query",
"type": "string"
},
"uploadType": {
"description": "Legacy upload protocol for media (e.g. \"media\", \"multipart\").",
"location": "query",
"type": "string"
},
"upload_protocol": {
"description": "Upload protocol for media (e.g. \"raw\", \"multipart\").",
"location": "query",
"type": "string"
}
},
"protocol": "rest",
"resources": {
"apps": {
"methods": {
"create": {
"description": "Creates an App Engine application for a Google Cloud Platform project. Required fields: id - The ID of the target Cloud Platform project. location - The region (https://cloud.google.com/appengine/docs/locations) where you want the App Engine application located.For more information about App Engine applications, see Managing Projects, Applications, and Billing (https://cloud.google.com/appengine/docs/standard/python/console/).",
"flatPath": "v1/apps",
"httpMethod": "POST",
"id": "appengine.apps.create",
"parameterOrder": [],
"parameters": {},
"path": "v1/apps",
"request": {
"$ref": "Application"
},
"response": {
"$ref": "Operation"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
},
"get": {
"description": "Gets information about an application.",
"flatPath": "v1/apps/{appsId}",
"httpMethod": "GET",
"id": "appengine.apps.get",
"parameterOrder": [
"appsId"
],
"parameters": {
"appsId": {
"description": "Part of `name`. Name of the Application resource to get. Example: apps/myapp.",
"location": "path",
"required": true,
"type": "string"
},
"includeExtraData": {
"description": "Options to include extra data",
"enum": [
"INCLUDE_EXTRA_DATA_UNSPECIFIED",
"INCLUDE_EXTRA_DATA_NONE",
"INCLUDE_GOOGLE_GENERATED_METADATA"
],
"enumDescriptions": [
"Unspecified: No extra data will be returned",
"Do not return any extra data",
"Return GGCM associated with the resources"
],
"location": "query",
"type": "string"
}
},
"path": "v1/apps/{appsId}",
"response": {
"$ref": "Application"
},
"scopes": [
"https://www.googleapis.com/auth/appengine.admin",
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/cloud-platform.read-only"
]
},
"listRuntimes": {
"description": "Lists all the available runtimes for the application.",
"flatPath": "v1/apps/{appsId}:listRuntimes",
"httpMethod": "GET",
"id": "appengine.apps.listRuntimes",
"parameterOrder": [
"appsId"
],
"parameters": {
"appsId": {
"description": "Part of `parent`. Required. Name of the parent Application resource. Example: apps/myapp.",
"location": "path",
"required": true,
"type": "string"
},
"environment": {
"description": "Optional. The environment of the Application.",
"enum": [
"ENVIRONMENT_UNSPECIFIED",
"STANDARD",
"FLEXIBLE"
],
"enumDescriptions": [
"Default value.",
"App Engine Standard.",
"App Engine Flexible"
],
"location": "query",
"type": "string"
}
},
"path": "v1/apps/{appsId}:listRuntimes",
"response": {
"$ref": "ListRuntimesResponse"
},
"scopes": [
"https://www.googleapis.com/auth/appengine.admin",
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/cloud-platform.read-only"
]
},
"patch": {
"description": "Updates the specified Application resource. You can update the following fields: auth_domain - Google authentication domain for controlling user access to the application. default_cookie_expiration - Cookie expiration policy for the application. iap - Identity-Aware Proxy properties for the application.",
"flatPath": "v1/apps/{appsId}",
"httpMethod": "PATCH",
"id": "appengine.apps.patch",
"parameterOrder": [
"appsId"
],
"parameters": {
"appsId": {
"description": "Part of `name`. Name of the Application resource to update. Example: apps/myapp.",
"location": "path",
"required": true,
"type": "string"
},
"updateMask": {
"description": "Required. Standard field mask for the set of fields to be updated.",
"format": "google-fieldmask",
"location": "query",
"type": "string"
}
},
"path": "v1/apps/{appsId}",
"request": {
"$ref": "Application"
},
"response": {
"$ref": "Operation"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
},
"repair": {
"description": "Recreates the required App Engine features for the specified App Engine application, for example a Cloud Storage bucket or App Engine service account. Use this method if you receive an error message about a missing feature, for example, Error retrieving the App Engine service account. If you have deleted your App Engine service account, this will not be able to recreate it. Instead, you should attempt to use the IAM undelete API if possible at https://cloud.google.com/iam/reference/rest/v1/projects.serviceAccounts/undelete?apix_params=%7B\"name\"%3A\"projects%2F-%2FserviceAccounts%2Funique_id\"%2C\"resource\"%3A%7B%7D%7D . If the deletion was recent, the numeric ID can be found in the Cloud Console Activity Log.",
"flatPath": "v1/apps/{appsId}:repair",
"httpMethod": "POST",
"id": "appengine.apps.repair",
"parameterOrder": [
"appsId"
],
"parameters": {
"appsId": {
"description": "Part of `name`. Name of the application to repair. Example: apps/myapp",
"location": "path",
"required": true,
"type": "string"
}
},
"path": "v1/apps/{appsId}:repair",
"request": {
"$ref": "RepairApplicationRequest"
},
"response": {
"$ref": "Operation"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
}
},
"resources": {
"authorizedCertificates": {
"methods": {
"create": {
"description": "Uploads the specified SSL certificate.",
"flatPath": "v1/apps/{appsId}/authorizedCertificates",
"httpMethod": "POST",
"id": "appengine.apps.authorizedCertificates.create",
"parameterOrder": [
"appsId"
],
"parameters": {
"appsId": {
"description": "Part of `parent`. Name of the parent Application resource. Example: apps/myapp.",
"location": "path",
"required": true,
"type": "string"
}
},
"path": "v1/apps/{appsId}/authorizedCertificates",
"request": {
"$ref": "AuthorizedCertificate"
},
"response": {
"$ref": "AuthorizedCertificate"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
},
"delete": {
"description": "Deletes the specified SSL certificate.",
"flatPath": "v1/apps/{appsId}/authorizedCertificates/{authorizedCertificatesId}",
"httpMethod": "DELETE",
"id": "appengine.apps.authorizedCertificates.delete",
"parameterOrder": [
"appsId",
"authorizedCertificatesId"
],
"parameters": {
"appsId": {
"description": "Part of `name`. Name of the resource to delete. Example: apps/myapp/authorizedCertificates/12345.",
"location": "path",
"required": true,
"type": "string"
},
"authorizedCertificatesId": {
"description": "Part of `name`. See documentation of `appsId`.",
"location": "path",
"required": true,
"type": "string"
}
},
"path": "v1/apps/{appsId}/authorizedCertificates/{authorizedCertificatesId}",
"response": {
"$ref": "Empty"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
},
"get": {
"description": "Gets the specified SSL certificate.",
"flatPath": "v1/apps/{appsId}/authorizedCertificates/{authorizedCertificatesId}",
"httpMethod": "GET",
"id": "appengine.apps.authorizedCertificates.get",
"parameterOrder": [
"appsId",
"authorizedCertificatesId"
],
"parameters": {
"appsId": {
"description": "Part of `name`. Name of the resource requested. Example: apps/myapp/authorizedCertificates/12345.",
"location": "path",
"required": true,
"type": "string"
},
"authorizedCertificatesId": {
"description": "Part of `name`. See documentation of `appsId`.",
"location": "path",
"required": true,
"type": "string"
},
"view": {
"description": "Controls the set of fields returned in the GET response.",
"enum": [
"BASIC_CERTIFICATE",
"FULL_CERTIFICATE"
],
"enumDescriptions": [
"Basic certificate information, including applicable domains and expiration date.",
"The information from BASIC_CERTIFICATE, plus detailed information on the domain mappings that have this certificate mapped."
],
"location": "query",
"type": "string"
}
},
"path": "v1/apps/{appsId}/authorizedCertificates/{authorizedCertificatesId}",
"response": {
"$ref": "AuthorizedCertificate"
},
"scopes": [
"https://www.googleapis.com/auth/appengine.admin",
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/cloud-platform.read-only"
]
},
"list": {
"description": "Lists all SSL certificates the user is authorized to administer.",
"flatPath": "v1/apps/{appsId}/authorizedCertificates",
"httpMethod": "GET",
"id": "appengine.apps.authorizedCertificates.list",
"parameterOrder": [
"appsId"
],
"parameters": {
"appsId": {
"description": "Part of `parent`. Name of the parent Application resource. Example: apps/myapp.",
"location": "path",
"required": true,
"type": "string"
},
"pageSize": {
"description": "Maximum results to return per page.",
"format": "int32",
"location": "query",
"type": "integer"
},
"pageToken": {
"description": "Continuation token for fetching the next page of results.",
"location": "query",
"type": "string"
},
"view": {
"description": "Controls the set of fields returned in the LIST response.",
"enum": [
"BASIC_CERTIFICATE",
"FULL_CERTIFICATE"
],
"enumDescriptions": [
"Basic certificate information, including applicable domains and expiration date.",
"The information from BASIC_CERTIFICATE, plus detailed information on the domain mappings that have this certificate mapped."
],
"location": "query",
"type": "string"
}
},
"path": "v1/apps/{appsId}/authorizedCertificates",
"response": {
"$ref": "ListAuthorizedCertificatesResponse"
},
"scopes": [
"https://www.googleapis.com/auth/appengine.admin",
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/cloud-platform.read-only"
]
},
"patch": {
"description": "Updates the specified SSL certificate. To renew a certificate and maintain its existing domain mappings, update certificate_data with a new certificate. The new certificate must be applicable to the same domains as the original certificate. The certificate display_name may also be updated.",
"flatPath": "v1/apps/{appsId}/authorizedCertificates/{authorizedCertificatesId}",
"httpMethod": "PATCH",
"id": "appengine.apps.authorizedCertificates.patch",
"parameterOrder": [
"appsId",
"authorizedCertificatesId"
],
"parameters": {
"appsId": {
"description": "Part of `name`. Name of the resource to update. Example: apps/myapp/authorizedCertificates/12345.",
"location": "path",
"required": true,
"type": "string"
},
"authorizedCertificatesId": {
"description": "Part of `name`. See documentation of `appsId`.",
"location": "path",
"required": true,
"type": "string"
},
"updateMask": {
"description": "Standard field mask for the set of fields to be updated. Updates are only supported on the certificate_raw_data and display_name fields.",
"format": "google-fieldmask",
"location": "query",
"type": "string"
}
},
"path": "v1/apps/{appsId}/authorizedCertificates/{authorizedCertificatesId}",
"request": {
"$ref": "AuthorizedCertificate"
},
"response": {
"$ref": "AuthorizedCertificate"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
}
}
},
"authorizedDomains": {
"methods": {
"list": {
"description": "Lists all domains the user is authorized to administer.",
"flatPath": "v1/apps/{appsId}/authorizedDomains",
"httpMethod": "GET",
"id": "appengine.apps.authorizedDomains.list",
"parameterOrder": [
"appsId"
],
"parameters": {
"appsId": {
"description": "Part of `parent`. Name of the parent Application resource. Example: apps/myapp.",
"location": "path",
"required": true,
"type": "string"
},
"pageSize": {
"description": "Maximum results to return per page.",
"format": "int32",
"location": "query",
"type": "integer"
},
"pageToken": {
"description": "Continuation token for fetching the next page of results.",
"location": "query",
"type": "string"
}
},
"path": "v1/apps/{appsId}/authorizedDomains",
"response": {
"$ref": "ListAuthorizedDomainsResponse"
},
"scopes": [
"https://www.googleapis.com/auth/appengine.admin",
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/cloud-platform.read-only"
]
}
}
},
"domainMappings": {
"methods": {
"create": {
"description": "Maps a domain to an application. A user must be authorized to administer a domain in order to map it to an application. For a list of available authorized domains, see AuthorizedDomains.ListAuthorizedDomains.",
"flatPath": "v1/apps/{appsId}/domainMappings",
"httpMethod": "POST",
"id": "appengine.apps.domainMappings.create",
"parameterOrder": [
"appsId"
],
"parameters": {
"appsId": {
"description": "Part of `parent`. Name of the parent Application resource. Example: apps/myapp.",
"location": "path",
"required": true,
"type": "string"
},
"overrideStrategy": {
"description": "Whether the domain creation should override any existing mappings for this domain. By default, overrides are rejected.",
"enum": [
"UNSPECIFIED_DOMAIN_OVERRIDE_STRATEGY",
"STRICT",
"OVERRIDE"
],
"enumDescriptions": [
"Strategy unspecified. Defaults to STRICT.",
"Overrides not allowed. If a mapping already exists for the specified domain, the request will return an ALREADY_EXISTS (409).",
"Overrides allowed. If a mapping already exists for the specified domain, the request will overwrite it. Note that this might stop another Google product from serving. For example, if the domain is mapped to another App Engine application, that app will no longer serve from that domain."
],
"location": "query",
"type": "string"
}
},
"path": "v1/apps/{appsId}/domainMappings",
"request": {
"$ref": "DomainMapping"
},
"response": {
"$ref": "Operation"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
},
"delete": {
"description": "Deletes the specified domain mapping. A user must be authorized to administer the associated domain in order to delete a DomainMapping resource.",
"flatPath": "v1/apps/{appsId}/domainMappings/{domainMappingsId}",
"httpMethod": "DELETE",
"id": "appengine.apps.domainMappings.delete",
"parameterOrder": [
"appsId",
"domainMappingsId"
],
"parameters": {
"appsId": {
"description": "Part of `name`. Name of the resource to delete. Example: apps/myapp/domainMappings/example.com.",
"location": "path",
"required": true,
"type": "string"
},
"domainMappingsId": {
"description": "Part of `name`. See documentation of `appsId`.",
"location": "path",
"required": true,
"type": "string"
}
},
"path": "v1/apps/{appsId}/domainMappings/{domainMappingsId}",
"response": {
"$ref": "Operation"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
},
"get": {
"description": "Gets the specified domain mapping.",
"flatPath": "v1/apps/{appsId}/domainMappings/{domainMappingsId}",
"httpMethod": "GET",
"id": "appengine.apps.domainMappings.get",
"parameterOrder": [
"appsId",
"domainMappingsId"
],
"parameters": {
"appsId": {
"description": "Part of `name`. Name of the resource requested. Example: apps/myapp/domainMappings/example.com.",
"location": "path",
"required": true,
"type": "string"
},
"domainMappingsId": {
"description": "Part of `name`. See documentation of `appsId`.",
"location": "path",
"required": true,
"type": "string"
}
},
"path": "v1/apps/{appsId}/domainMappings/{domainMappingsId}",
"response": {
"$ref": "DomainMapping"
},
"scopes": [
"https://www.googleapis.com/auth/appengine.admin",
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/cloud-platform.read-only"
]
},
"list": {
"description": "Lists the domain mappings on an application.",
"flatPath": "v1/apps/{appsId}/domainMappings",
"httpMethod": "GET",
"id": "appengine.apps.domainMappings.list",
"parameterOrder": [
"appsId"
],
"parameters": {
"appsId": {
"description": "Part of `parent`. Name of the parent Application resource. Example: apps/myapp.",
"location": "path",
"required": true,
"type": "string"
},
"pageSize": {
"description": "Maximum results to return per page.",
"format": "int32",
"location": "query",
"type": "integer"
},
"pageToken": {
"description": "Continuation token for fetching the next page of results.",
"location": "query",
"type": "string"
}
},
"path": "v1/apps/{appsId}/domainMappings",
"response": {
"$ref": "ListDomainMappingsResponse"
},
"scopes": [
"https://www.googleapis.com/auth/appengine.admin",
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/cloud-platform.read-only"
]
},
"patch": {
"description": "Updates the specified domain mapping. To map an SSL certificate to a domain mapping, update certificate_id to point to an AuthorizedCertificate resource. A user must be authorized to administer the associated domain in order to update a DomainMapping resource.",
"flatPath": "v1/apps/{appsId}/domainMappings/{domainMappingsId}",
"httpMethod": "PATCH",
"id": "appengine.apps.domainMappings.patch",
"parameterOrder": [
"appsId",
"domainMappingsId"
],
"parameters": {
"appsId": {
"description": "Part of `name`. Name of the resource to update. Example: apps/myapp/domainMappings/example.com.",
"location": "path",
"required": true,
"type": "string"
},
"domainMappingsId": {
"description": "Part of `name`. See documentation of `appsId`.",
"location": "path",
"required": true,
"type": "string"
},
"updateMask": {
"description": "Required. Standard field mask for the set of fields to be updated.",
"format": "google-fieldmask",
"location": "query",
"type": "string"
}
},
"path": "v1/apps/{appsId}/domainMappings/{domainMappingsId}",
"request": {
"$ref": "DomainMapping"
},
"response": {
"$ref": "Operation"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
}
}
},
"firewall": {
"resources": {
"ingressRules": {
"methods": {
"batchUpdate": {
"description": "Replaces the entire firewall ruleset in one bulk operation. This overrides and replaces the rules of an existing firewall with the new rules.If the final rule does not match traffic with the '*' wildcard IP range, then an \"allow all\" rule is explicitly added to the end of the list.",
"flatPath": "v1/apps/{appsId}/firewall/ingressRules:batchUpdate",
"httpMethod": "POST",
"id": "appengine.apps.firewall.ingressRules.batchUpdate",
"parameterOrder": [
"appsId"
],
"parameters": {
"appsId": {
"description": "Part of `name`. Name of the Firewall collection to set. Example: apps/myapp/firewall/ingressRules.",
"location": "path",
"required": true,
"type": "string"
}
},
"path": "v1/apps/{appsId}/firewall/ingressRules:batchUpdate",
"request": {
"$ref": "BatchUpdateIngressRulesRequest"
},
"response": {
"$ref": "BatchUpdateIngressRulesResponse"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
},
"create": {
"description": "Creates a firewall rule for the application.",
"flatPath": "v1/apps/{appsId}/firewall/ingressRules",
"httpMethod": "POST",
"id": "appengine.apps.firewall.ingressRules.create",
"parameterOrder": [
"appsId"
],
"parameters": {
"appsId": {
"description": "Part of `parent`. Name of the parent Firewall collection in which to create a new rule. Example: apps/myapp/firewall/ingressRules.",
"location": "path",
"required": true,
"type": "string"
}
},
"path": "v1/apps/{appsId}/firewall/ingressRules",
"request": {
"$ref": "FirewallRule"
},
"response": {
"$ref": "FirewallRule"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
},
"delete": {
"description": "Deletes the specified firewall rule.",
"flatPath": "v1/apps/{appsId}/firewall/ingressRules/{ingressRulesId}",
"httpMethod": "DELETE",
"id": "appengine.apps.firewall.ingressRules.delete",
"parameterOrder": [
"appsId",
"ingressRulesId"
],
"parameters": {
"appsId": {
"description": "Part of `name`. Name of the Firewall resource to delete. Example: apps/myapp/firewall/ingressRules/100.",
"location": "path",
"required": true,
"type": "string"
},
"ingressRulesId": {
"description": "Part of `name`. See documentation of `appsId`.",
"location": "path",
"required": true,
"type": "string"
}
},
"path": "v1/apps/{appsId}/firewall/ingressRules/{ingressRulesId}",
"response": {
"$ref": "Empty"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
},
"get": {
"description": "Gets the specified firewall rule.",
"flatPath": "v1/apps/{appsId}/firewall/ingressRules/{ingressRulesId}",
"httpMethod": "GET",
"id": "appengine.apps.firewall.ingressRules.get",
"parameterOrder": [
"appsId",
"ingressRulesId"
],
"parameters": {
"appsId": {
"description": "Part of `name`. Name of the Firewall resource to retrieve. Example: apps/myapp/firewall/ingressRules/100.",
"location": "path",
"required": true,
"type": "string"
},
"ingressRulesId": {
"description": "Part of `name`. See documentation of `appsId`.",
"location": "path",
"required": true,
"type": "string"
}
},
"path": "v1/apps/{appsId}/firewall/ingressRules/{ingressRulesId}",
"response": {
"$ref": "FirewallRule"
},
"scopes": [
"https://www.googleapis.com/auth/appengine.admin",
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/cloud-platform.read-only"
]
},
"list": {
"description": "Lists the firewall rules of an application.",
"flatPath": "v1/apps/{appsId}/firewall/ingressRules",
"httpMethod": "GET",
"id": "appengine.apps.firewall.ingressRules.list",
"parameterOrder": [
"appsId"
],
"parameters": {
"appsId": {
"description": "Part of `parent`. Name of the Firewall collection to retrieve. Example: apps/myapp/firewall/ingressRules.",
"location": "path",
"required": true,
"type": "string"
},
"matchingAddress": {
"description": "A valid IP Address. If set, only rules matching this address will be returned. The first returned rule will be the rule that fires on requests from this IP.",
"location": "query",
"type": "string"
},
"pageSize": {
"description": "Maximum results to return per page.",
"format": "int32",
"location": "query",
"type": "integer"
},
"pageToken": {
"description": "Continuation token for fetching the next page of results.",
"location": "query",
"type": "string"
}
},
"path": "v1/apps/{appsId}/firewall/ingressRules",
"response": {
"$ref": "ListIngressRulesResponse"
},
"scopes": [
"https://www.googleapis.com/auth/appengine.admin",
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/cloud-platform.read-only"
]
},
"patch": {
"description": "Updates the specified firewall rule.",
"flatPath": "v1/apps/{appsId}/firewall/ingressRules/{ingressRulesId}",
"httpMethod": "PATCH",
"id": "appengine.apps.firewall.ingressRules.patch",
"parameterOrder": [
"appsId",
"ingressRulesId"
],
"parameters": {
"appsId": {
"description": "Part of `name`. Name of the Firewall resource to update. Example: apps/myapp/firewall/ingressRules/100.",
"location": "path",
"required": true,
"type": "string"
},
"ingressRulesId": {
"description": "Part of `name`. See documentation of `appsId`.",
"location": "path",
"required": true,
"type": "string"
},
"updateMask": {
"description": "Standard field mask for the set of fields to be updated.",
"format": "google-fieldmask",
"location": "query",
"type": "string"
}
},
"path": "v1/apps/{appsId}/firewall/ingressRules/{ingressRulesId}",
"request": {
"$ref": "FirewallRule"
},
"response": {
"$ref": "FirewallRule"
},
"scopes": [
"https://www.googleapis.com/auth/cloud-platform"
]
}
}
}
}
},
"locations": {
"methods": {
"get": {
"description": "Gets information about a location.",
"flatPath": "v1/apps/{appsId}/locations/{locationsId}",
"httpMethod": "GET",
"id": "appengine.apps.locations.get",
"parameterOrder": [
"appsId",
"locationsId"
],
"parameters": {
"appsId": {
"description": "Part of `name`. Resource name for the location.",
"location": "path",
"required": true,
"type": "string"
},
"locationsId": {
"description": "Part of `name`. See documentation of `appsId`.",
"location": "path",
"required": true,
"type": "string"
}
},
"path": "v1/apps/{appsId}/locations/{locationsId}",
"response": {
"$ref": "Location"
},
"scopes": [
"https://www.googleapis.com/auth/appengine.admin",
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/cloud-platform.read-only"
]
},
"list": {
"description": "Lists information about the supported locations for this service.",
"flatPath": "v1/apps/{appsId}/locations",
"httpMethod": "GET",
"id": "appengine.apps.locations.list",
"parameterOrder": [
"appsId"
],
"parameters": {
"appsId": {
"description": "Part of `name`. The resource that owns the locations collection, if applicable.",
"location": "path",
"required": true,
"type": "string"
},
"filter": {
"description": "A filter to narrow down results to a preferred subset. The filtering language accepts strings like \"displayName=tokyo\", and is documented in more detail in AIP-160 (https://google.aip.dev/160).",
"location": "query",
"type": "string"
},
"pageSize": {
"description": "The maximum number of results to return. If not set, the service selects a default.",
"format": "int32",
"location": "query",
"type": "integer"
},
"pageToken": {
"description": "A page token received from the next_page_token field in the response. Send that page token to receive the subsequent page.",
"location": "query",
"type": "string"
}
},
"path": "v1/apps/{appsId}/locations",
"response": {
"$ref": "ListLocationsResponse"
},
"scopes": [
"https://www.googleapis.com/auth/appengine.admin",
"https://www.googleapis.com/auth/cloud-platform",
"https://www.googleapis.com/auth/cloud-platform.read-only"
]
}
}
},
"operations": {
"methods": {
"get": {
"description": "Gets the latest state of a long-running operation. Clients can use this method to poll the operation result at intervals as recommended by the API service.",
"flatPath": "v1/apps/{appsId}/operations/{operationsId}",
"httpMethod": "GET",
"id": "appengine.apps.operations.get",
"parameterOrder": [
"appsId",
"operationsId"
],