@vercel/sdk 1.8.4 → 1.8.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +11 -3
- package/bin/mcp-server.js +2697 -1100
- package/bin/mcp-server.js.map +41 -29
- package/docs/sdks/marketplace/README.md +310 -78
- package/docs/sdks/rollingrelease/README.md +80 -0
- package/esm/__tests__/marketplace.test.js +53 -0
- package/esm/__tests__/marketplace.test.js.map +1 -1
- package/esm/__tests__/projects.test.js +15 -13
- package/esm/__tests__/projects.test.js.map +1 -1
- package/esm/__tests__/rollingrelease.test.js +23 -0
- package/esm/__tests__/rollingrelease.test.js.map +1 -1
- package/esm/funcs/domainsCheckDomainStatus.js +2 -2
- package/esm/funcs/domainsCheckDomainStatus.js.map +1 -1
- package/esm/funcs/marketplaceDeleteResource.d.ts +20 -0
- package/esm/funcs/marketplaceDeleteResource.d.ts.map +1 -0
- package/esm/funcs/marketplaceDeleteResource.js +91 -0
- package/esm/funcs/marketplaceDeleteResource.js.map +1 -0
- package/esm/funcs/marketplaceGetResource.d.ts +20 -0
- package/esm/funcs/marketplaceGetResource.d.ts.map +1 -0
- package/esm/funcs/marketplaceGetResource.js +90 -0
- package/esm/funcs/marketplaceGetResource.js.map +1 -0
- package/esm/funcs/marketplaceGetResources.d.ts +20 -0
- package/esm/funcs/marketplaceGetResources.d.ts.map +1 -0
- package/esm/funcs/marketplaceGetResources.js +86 -0
- package/esm/funcs/marketplaceGetResources.js.map +1 -0
- package/esm/funcs/rollingReleaseGetRollingReleaseBillingStatus.d.ts +20 -0
- package/esm/funcs/rollingReleaseGetRollingReleaseBillingStatus.d.ts.map +1 -0
- package/esm/funcs/rollingReleaseGetRollingReleaseBillingStatus.js +94 -0
- package/esm/funcs/rollingReleaseGetRollingReleaseBillingStatus.js.map +1 -0
- package/esm/lib/config.d.ts +3 -3
- package/esm/lib/config.js +3 -3
- package/esm/mcp-server/mcp-server.js +1 -1
- package/esm/mcp-server/server.d.ts.map +1 -1
- package/esm/mcp-server/server.js +10 -2
- package/esm/mcp-server/server.js.map +1 -1
- package/esm/mcp-server/tools/marketplaceDeleteResource.d.ts +7 -0
- package/esm/mcp-server/tools/marketplaceDeleteResource.d.ts.map +1 -0
- package/esm/mcp-server/tools/marketplaceDeleteResource.js +27 -0
- package/esm/mcp-server/tools/marketplaceDeleteResource.js.map +1 -0
- package/esm/mcp-server/tools/marketplaceGetResource.d.ts +7 -0
- package/esm/mcp-server/tools/marketplaceGetResource.d.ts.map +1 -0
- package/esm/mcp-server/tools/marketplaceGetResource.js +28 -0
- package/esm/mcp-server/tools/marketplaceGetResource.js.map +1 -0
- package/esm/mcp-server/tools/marketplaceGetResources.d.ts +7 -0
- package/esm/mcp-server/tools/marketplaceGetResources.d.ts.map +1 -0
- package/esm/mcp-server/tools/marketplaceGetResources.js +28 -0
- package/esm/mcp-server/tools/marketplaceGetResources.js.map +1 -0
- package/esm/mcp-server/tools/rollingReleaseGetRollingReleaseBillingStatus.d.ts +7 -0
- package/esm/mcp-server/tools/rollingReleaseGetRollingReleaseBillingStatus.d.ts.map +1 -0
- package/esm/mcp-server/tools/rollingReleaseGetRollingReleaseBillingStatus.js +28 -0
- package/esm/mcp-server/tools/rollingReleaseGetRollingReleaseBillingStatus.js.map +1 -0
- package/esm/models/canceldeploymentop.d.ts +427 -25
- package/esm/models/canceldeploymentop.d.ts.map +1 -1
- package/esm/models/canceldeploymentop.js +465 -25
- package/esm/models/canceldeploymentop.js.map +1 -1
- package/esm/models/createdeploymentop.d.ts +459 -114
- package/esm/models/createdeploymentop.d.ts.map +1 -1
- package/esm/models/createdeploymentop.js +503 -118
- package/esm/models/createdeploymentop.js.map +1 -1
- package/esm/models/createprojectenvop.d.ts +6 -6
- package/esm/models/createprojectenvop.js +2 -2
- package/esm/models/createprojectenvop.js.map +1 -1
- package/esm/models/createprojectop.d.ts +139 -137
- package/esm/models/createprojectop.d.ts.map +1 -1
- package/esm/models/createprojectop.js +137 -135
- package/esm/models/createprojectop.js.map +1 -1
- package/esm/models/createwebhookop.d.ts +6 -0
- package/esm/models/createwebhookop.d.ts.map +1 -1
- package/esm/models/createwebhookop.js +2 -0
- package/esm/models/createwebhookop.js.map +1 -1
- package/esm/models/deleteresourceop.d.ts +31 -0
- package/esm/models/deleteresourceop.d.ts.map +1 -0
- package/esm/models/deleteresourceop.js +33 -0
- package/esm/models/deleteresourceop.js.map +1 -0
- package/esm/models/editprojectenvop.d.ts +3 -3
- package/esm/models/editprojectenvop.js +1 -1
- package/esm/models/editprojectenvop.js.map +1 -1
- package/esm/models/getdeploymentop.d.ts +410 -8
- package/esm/models/getdeploymentop.d.ts.map +1 -1
- package/esm/models/getdeploymentop.js +443 -8
- package/esm/models/getdeploymentop.js.map +1 -1
- package/esm/models/getedgeconfigbackupop.d.ts +15 -15
- package/esm/models/getedgeconfigbackupop.d.ts.map +1 -1
- package/esm/models/getedgeconfigbackupop.js +15 -15
- package/esm/models/getedgeconfigbackupop.js.map +1 -1
- package/esm/models/getfirewallconfigop.d.ts +2 -0
- package/esm/models/getfirewallconfigop.d.ts.map +1 -1
- package/esm/models/getfirewallconfigop.js +2 -0
- package/esm/models/getfirewallconfigop.js.map +1 -1
- package/esm/models/getmemberop.d.ts +9 -0
- package/esm/models/getmemberop.d.ts.map +1 -1
- package/esm/models/getmemberop.js +3 -0
- package/esm/models/getmemberop.js.map +1 -1
- package/esm/models/getprojectsop.d.ts +2 -0
- package/esm/models/getprojectsop.d.ts.map +1 -1
- package/esm/models/getprojectsop.js +2 -0
- package/esm/models/getprojectsop.js.map +1 -1
- package/esm/models/getresourceop.d.ts +293 -0
- package/esm/models/getresourceop.d.ts.map +1 -0
- package/esm/models/getresourceop.js +250 -0
- package/esm/models/getresourceop.js.map +1 -0
- package/esm/models/getresourcesop.d.ts +310 -0
- package/esm/models/getresourcesop.d.ts.map +1 -0
- package/esm/models/getresourcesop.js +278 -0
- package/esm/models/getresourcesop.js.map +1 -0
- package/esm/models/getrollingreleasebillingstatusop.d.ts +284 -0
- package/esm/models/getrollingreleasebillingstatusop.d.ts.map +1 -0
- package/esm/models/getrollingreleasebillingstatusop.js +267 -0
- package/esm/models/getrollingreleasebillingstatusop.js.map +1 -0
- package/esm/models/getwebhookop.d.ts +3 -0
- package/esm/models/getwebhookop.d.ts.map +1 -1
- package/esm/models/getwebhookop.js +1 -0
- package/esm/models/getwebhookop.js.map +1 -1
- package/esm/models/getwebhooksop.d.ts +6 -0
- package/esm/models/getwebhooksop.d.ts.map +1 -1
- package/esm/models/getwebhooksop.js +2 -0
- package/esm/models/getwebhooksop.js.map +1 -1
- package/esm/models/importresourceop.d.ts +15 -15
- package/esm/models/importresourceop.d.ts.map +1 -1
- package/esm/models/importresourceop.js +17 -15
- package/esm/models/importresourceop.js.map +1 -1
- package/esm/models/putfirewallconfigop.d.ts +4 -0
- package/esm/models/putfirewallconfigop.d.ts.map +1 -1
- package/esm/models/putfirewallconfigop.js +4 -0
- package/esm/models/putfirewallconfigop.js.map +1 -1
- package/esm/models/removeprojectenvop.d.ts +9 -9
- package/esm/models/removeprojectenvop.js +3 -3
- package/esm/models/removeprojectenvop.js.map +1 -1
- package/esm/models/updatefirewallconfigop.d.ts +36 -4
- package/esm/models/updatefirewallconfigop.d.ts.map +1 -1
- package/esm/models/updatefirewallconfigop.js +33 -0
- package/esm/models/updatefirewallconfigop.js.map +1 -1
- package/esm/models/updateintegrationdeploymentactionop.d.ts +2 -0
- package/esm/models/updateintegrationdeploymentactionop.d.ts.map +1 -1
- package/esm/models/updateintegrationdeploymentactionop.js +2 -0
- package/esm/models/updateintegrationdeploymentactionop.js.map +1 -1
- package/esm/models/updateprojectdatacacheop.d.ts +2 -0
- package/esm/models/updateprojectdatacacheop.d.ts.map +1 -1
- package/esm/models/updateprojectdatacacheop.js +2 -0
- package/esm/models/updateprojectdatacacheop.js.map +1 -1
- package/esm/models/updateprojectop.d.ts +139 -137
- package/esm/models/updateprojectop.d.ts.map +1 -1
- package/esm/models/updateprojectop.js +137 -135
- package/esm/models/updateprojectop.js.map +1 -1
- package/esm/models/updateresourcesecretsop.d.ts +15 -15
- package/esm/models/updateresourcesecretsop.d.ts.map +1 -1
- package/esm/models/updateresourcesecretsop.js +15 -17
- package/esm/models/updateresourcesecretsop.js.map +1 -1
- package/esm/models/userevent.d.ts +5 -0
- package/esm/models/userevent.d.ts.map +1 -1
- package/esm/models/userevent.js +2 -0
- package/esm/models/userevent.js.map +1 -1
- package/esm/sdk/marketplace.d.ts +31 -7
- package/esm/sdk/marketplace.d.ts.map +1 -1
- package/esm/sdk/marketplace.js +39 -9
- package/esm/sdk/marketplace.js.map +1 -1
- package/esm/sdk/rollingrelease.d.ts +8 -0
- package/esm/sdk/rollingrelease.d.ts.map +1 -1
- package/esm/sdk/rollingrelease.js +10 -0
- package/esm/sdk/rollingrelease.js.map +1 -1
- package/esm/types/constdatetime.js +1 -1
- package/jsr.json +1 -1
- package/package.json +1 -1
- package/src/__tests__/marketplace.test.ts +62 -0
- package/src/__tests__/projects.test.ts +15 -13
- package/src/__tests__/rollingrelease.test.ts +26 -0
- package/src/funcs/domainsCheckDomainStatus.ts +2 -2
- package/src/funcs/marketplaceDeleteResource.ts +205 -0
- package/src/funcs/marketplaceGetResource.ts +206 -0
- package/src/funcs/marketplaceGetResources.ts +202 -0
- package/src/funcs/rollingReleaseGetRollingReleaseBillingStatus.ts +208 -0
- package/src/lib/config.ts +3 -3
- package/src/mcp-server/mcp-server.ts +1 -1
- package/src/mcp-server/server.ts +10 -2
- package/src/mcp-server/tools/marketplaceDeleteResource.ts +35 -0
- package/src/mcp-server/tools/marketplaceGetResource.ts +37 -0
- package/src/mcp-server/tools/marketplaceGetResources.ts +37 -0
- package/src/mcp-server/tools/rollingReleaseGetRollingReleaseBillingStatus.ts +40 -0
- package/src/models/canceldeploymentop.ts +1071 -48
- package/src/models/createdeploymentop.ts +1064 -236
- package/src/models/createprojectenvop.ts +2 -2
- package/src/models/createprojectop.ts +267 -263
- package/src/models/createwebhookop.ts +2 -0
- package/src/models/deleteresourceop.ts +70 -0
- package/src/models/editprojectenvop.ts +1 -1
- package/src/models/getdeploymentop.ts +1011 -16
- package/src/models/getedgeconfigbackupop.ts +41 -24
- package/src/models/getfirewallconfigop.ts +4 -0
- package/src/models/getmemberop.ts +9 -0
- package/src/models/getprojectsop.ts +4 -0
- package/src/models/getresourceop.ts +545 -0
- package/src/models/getresourcesop.ts +604 -0
- package/src/models/getrollingreleasebillingstatusop.ts +614 -0
- package/src/models/getwebhookop.ts +1 -0
- package/src/models/getwebhooksop.ts +2 -0
- package/src/models/importresourceop.ts +27 -35
- package/src/models/putfirewallconfigop.ts +8 -0
- package/src/models/removeprojectenvop.ts +3 -3
- package/src/models/updatefirewallconfigop.ts +73 -0
- package/src/models/updateintegrationdeploymentactionop.ts +4 -0
- package/src/models/updateprojectdatacacheop.ts +4 -0
- package/src/models/updateprojectop.ts +267 -263
- package/src/models/updateresourcesecretsop.ts +49 -33
- package/src/models/userevent.ts +7 -0
- package/src/sdk/marketplace.ts +80 -17
- package/src/sdk/rollingrelease.ts +22 -0
- package/src/types/constdatetime.ts +1 -1
- package/vercel-spec.json +2321 -931
package/vercel-spec.json
CHANGED
|
@@ -8110,6 +8110,9 @@
|
|
|
8110
8110
|
"owasp"
|
|
8111
8111
|
],
|
|
8112
8112
|
"type": "object"
|
|
8113
|
+
},
|
|
8114
|
+
"botIdEnabled": {
|
|
8115
|
+
"type": "boolean"
|
|
8113
8116
|
}
|
|
8114
8117
|
},
|
|
8115
8118
|
"type": "object"
|
|
@@ -9083,6 +9086,11 @@
|
|
|
9083
9086
|
"statusText": {
|
|
9084
9087
|
"type": "string"
|
|
9085
9088
|
},
|
|
9089
|
+
"statusUrl": {
|
|
9090
|
+
"type": "string",
|
|
9091
|
+
"format": "uri",
|
|
9092
|
+
"pattern": "^https?://|^sso:"
|
|
9093
|
+
},
|
|
9086
9094
|
"outcomes": {
|
|
9087
9095
|
"type": "array",
|
|
9088
9096
|
"items": {
|
|
@@ -10602,7 +10610,62 @@
|
|
|
10602
10610
|
]
|
|
10603
10611
|
},
|
|
10604
10612
|
"value": {
|
|
10605
|
-
"
|
|
10613
|
+
"oneOf": [
|
|
10614
|
+
{
|
|
10615
|
+
"type": "string"
|
|
10616
|
+
},
|
|
10617
|
+
{
|
|
10618
|
+
"properties": {
|
|
10619
|
+
"eq": {
|
|
10620
|
+
"oneOf": [
|
|
10621
|
+
{
|
|
10622
|
+
"type": "string"
|
|
10623
|
+
},
|
|
10624
|
+
{
|
|
10625
|
+
"type": "number"
|
|
10626
|
+
}
|
|
10627
|
+
]
|
|
10628
|
+
},
|
|
10629
|
+
"neq": {
|
|
10630
|
+
"type": "string"
|
|
10631
|
+
},
|
|
10632
|
+
"inc": {
|
|
10633
|
+
"items": {
|
|
10634
|
+
"type": "string"
|
|
10635
|
+
},
|
|
10636
|
+
"type": "array"
|
|
10637
|
+
},
|
|
10638
|
+
"ninc": {
|
|
10639
|
+
"items": {
|
|
10640
|
+
"type": "string"
|
|
10641
|
+
},
|
|
10642
|
+
"type": "array"
|
|
10643
|
+
},
|
|
10644
|
+
"pre": {
|
|
10645
|
+
"type": "string"
|
|
10646
|
+
},
|
|
10647
|
+
"suf": {
|
|
10648
|
+
"type": "string"
|
|
10649
|
+
},
|
|
10650
|
+
"re": {
|
|
10651
|
+
"type": "string"
|
|
10652
|
+
},
|
|
10653
|
+
"gt": {
|
|
10654
|
+
"type": "number"
|
|
10655
|
+
},
|
|
10656
|
+
"gte": {
|
|
10657
|
+
"type": "number"
|
|
10658
|
+
},
|
|
10659
|
+
"lt": {
|
|
10660
|
+
"type": "number"
|
|
10661
|
+
},
|
|
10662
|
+
"lte": {
|
|
10663
|
+
"type": "number"
|
|
10664
|
+
}
|
|
10665
|
+
},
|
|
10666
|
+
"type": "object"
|
|
10667
|
+
}
|
|
10668
|
+
]
|
|
10606
10669
|
}
|
|
10607
10670
|
},
|
|
10608
10671
|
"required": [
|
|
@@ -10625,7 +10688,62 @@
|
|
|
10625
10688
|
"type": "string"
|
|
10626
10689
|
},
|
|
10627
10690
|
"value": {
|
|
10628
|
-
"
|
|
10691
|
+
"oneOf": [
|
|
10692
|
+
{
|
|
10693
|
+
"type": "string"
|
|
10694
|
+
},
|
|
10695
|
+
{
|
|
10696
|
+
"properties": {
|
|
10697
|
+
"eq": {
|
|
10698
|
+
"oneOf": [
|
|
10699
|
+
{
|
|
10700
|
+
"type": "string"
|
|
10701
|
+
},
|
|
10702
|
+
{
|
|
10703
|
+
"type": "number"
|
|
10704
|
+
}
|
|
10705
|
+
]
|
|
10706
|
+
},
|
|
10707
|
+
"neq": {
|
|
10708
|
+
"type": "string"
|
|
10709
|
+
},
|
|
10710
|
+
"inc": {
|
|
10711
|
+
"items": {
|
|
10712
|
+
"type": "string"
|
|
10713
|
+
},
|
|
10714
|
+
"type": "array"
|
|
10715
|
+
},
|
|
10716
|
+
"ninc": {
|
|
10717
|
+
"items": {
|
|
10718
|
+
"type": "string"
|
|
10719
|
+
},
|
|
10720
|
+
"type": "array"
|
|
10721
|
+
},
|
|
10722
|
+
"pre": {
|
|
10723
|
+
"type": "string"
|
|
10724
|
+
},
|
|
10725
|
+
"suf": {
|
|
10726
|
+
"type": "string"
|
|
10727
|
+
},
|
|
10728
|
+
"re": {
|
|
10729
|
+
"type": "string"
|
|
10730
|
+
},
|
|
10731
|
+
"gt": {
|
|
10732
|
+
"type": "number"
|
|
10733
|
+
},
|
|
10734
|
+
"gte": {
|
|
10735
|
+
"type": "number"
|
|
10736
|
+
},
|
|
10737
|
+
"lt": {
|
|
10738
|
+
"type": "number"
|
|
10739
|
+
},
|
|
10740
|
+
"lte": {
|
|
10741
|
+
"type": "number"
|
|
10742
|
+
}
|
|
10743
|
+
},
|
|
10744
|
+
"type": "object"
|
|
10745
|
+
}
|
|
10746
|
+
]
|
|
10629
10747
|
}
|
|
10630
10748
|
},
|
|
10631
10749
|
"required": [
|
|
@@ -10650,7 +10768,62 @@
|
|
|
10650
10768
|
]
|
|
10651
10769
|
},
|
|
10652
10770
|
"value": {
|
|
10653
|
-
"
|
|
10771
|
+
"oneOf": [
|
|
10772
|
+
{
|
|
10773
|
+
"type": "string"
|
|
10774
|
+
},
|
|
10775
|
+
{
|
|
10776
|
+
"properties": {
|
|
10777
|
+
"eq": {
|
|
10778
|
+
"oneOf": [
|
|
10779
|
+
{
|
|
10780
|
+
"type": "string"
|
|
10781
|
+
},
|
|
10782
|
+
{
|
|
10783
|
+
"type": "number"
|
|
10784
|
+
}
|
|
10785
|
+
]
|
|
10786
|
+
},
|
|
10787
|
+
"neq": {
|
|
10788
|
+
"type": "string"
|
|
10789
|
+
},
|
|
10790
|
+
"inc": {
|
|
10791
|
+
"items": {
|
|
10792
|
+
"type": "string"
|
|
10793
|
+
},
|
|
10794
|
+
"type": "array"
|
|
10795
|
+
},
|
|
10796
|
+
"ninc": {
|
|
10797
|
+
"items": {
|
|
10798
|
+
"type": "string"
|
|
10799
|
+
},
|
|
10800
|
+
"type": "array"
|
|
10801
|
+
},
|
|
10802
|
+
"pre": {
|
|
10803
|
+
"type": "string"
|
|
10804
|
+
},
|
|
10805
|
+
"suf": {
|
|
10806
|
+
"type": "string"
|
|
10807
|
+
},
|
|
10808
|
+
"re": {
|
|
10809
|
+
"type": "string"
|
|
10810
|
+
},
|
|
10811
|
+
"gt": {
|
|
10812
|
+
"type": "number"
|
|
10813
|
+
},
|
|
10814
|
+
"gte": {
|
|
10815
|
+
"type": "number"
|
|
10816
|
+
},
|
|
10817
|
+
"lt": {
|
|
10818
|
+
"type": "number"
|
|
10819
|
+
},
|
|
10820
|
+
"lte": {
|
|
10821
|
+
"type": "number"
|
|
10822
|
+
}
|
|
10823
|
+
},
|
|
10824
|
+
"type": "object"
|
|
10825
|
+
}
|
|
10826
|
+
]
|
|
10654
10827
|
}
|
|
10655
10828
|
},
|
|
10656
10829
|
"required": [
|
|
@@ -10673,7 +10846,62 @@
|
|
|
10673
10846
|
"type": "string"
|
|
10674
10847
|
},
|
|
10675
10848
|
"value": {
|
|
10676
|
-
"
|
|
10849
|
+
"oneOf": [
|
|
10850
|
+
{
|
|
10851
|
+
"type": "string"
|
|
10852
|
+
},
|
|
10853
|
+
{
|
|
10854
|
+
"properties": {
|
|
10855
|
+
"eq": {
|
|
10856
|
+
"oneOf": [
|
|
10857
|
+
{
|
|
10858
|
+
"type": "string"
|
|
10859
|
+
},
|
|
10860
|
+
{
|
|
10861
|
+
"type": "number"
|
|
10862
|
+
}
|
|
10863
|
+
]
|
|
10864
|
+
},
|
|
10865
|
+
"neq": {
|
|
10866
|
+
"type": "string"
|
|
10867
|
+
},
|
|
10868
|
+
"inc": {
|
|
10869
|
+
"items": {
|
|
10870
|
+
"type": "string"
|
|
10871
|
+
},
|
|
10872
|
+
"type": "array"
|
|
10873
|
+
},
|
|
10874
|
+
"ninc": {
|
|
10875
|
+
"items": {
|
|
10876
|
+
"type": "string"
|
|
10877
|
+
},
|
|
10878
|
+
"type": "array"
|
|
10879
|
+
},
|
|
10880
|
+
"pre": {
|
|
10881
|
+
"type": "string"
|
|
10882
|
+
},
|
|
10883
|
+
"suf": {
|
|
10884
|
+
"type": "string"
|
|
10885
|
+
},
|
|
10886
|
+
"re": {
|
|
10887
|
+
"type": "string"
|
|
10888
|
+
},
|
|
10889
|
+
"gt": {
|
|
10890
|
+
"type": "number"
|
|
10891
|
+
},
|
|
10892
|
+
"gte": {
|
|
10893
|
+
"type": "number"
|
|
10894
|
+
},
|
|
10895
|
+
"lt": {
|
|
10896
|
+
"type": "number"
|
|
10897
|
+
},
|
|
10898
|
+
"lte": {
|
|
10899
|
+
"type": "number"
|
|
10900
|
+
}
|
|
10901
|
+
},
|
|
10902
|
+
"type": "object"
|
|
10903
|
+
}
|
|
10904
|
+
]
|
|
10677
10905
|
}
|
|
10678
10906
|
},
|
|
10679
10907
|
"required": [
|
|
@@ -10686,6 +10914,21 @@
|
|
|
10686
10914
|
},
|
|
10687
10915
|
"type": "array"
|
|
10688
10916
|
},
|
|
10917
|
+
"mitigate": {
|
|
10918
|
+
"properties": {
|
|
10919
|
+
"action": {
|
|
10920
|
+
"type": "string",
|
|
10921
|
+
"enum": [
|
|
10922
|
+
"challenge",
|
|
10923
|
+
"deny"
|
|
10924
|
+
]
|
|
10925
|
+
}
|
|
10926
|
+
},
|
|
10927
|
+
"required": [
|
|
10928
|
+
"action"
|
|
10929
|
+
],
|
|
10930
|
+
"type": "object"
|
|
10931
|
+
},
|
|
10689
10932
|
"locale": {
|
|
10690
10933
|
"properties": {
|
|
10691
10934
|
"redirect": {
|
|
@@ -11034,6 +11277,9 @@
|
|
|
11034
11277
|
"applications": {
|
|
11035
11278
|
"additionalProperties": {
|
|
11036
11279
|
"properties": {
|
|
11280
|
+
"isDefaultApp": {
|
|
11281
|
+
"type": "boolean"
|
|
11282
|
+
},
|
|
11037
11283
|
"productionHost": {
|
|
11038
11284
|
"type": "string",
|
|
11039
11285
|
"description": "This is the production alias, it will always show the most up to date of each application."
|
|
@@ -13770,7 +14016,62 @@
|
|
|
13770
14016
|
]
|
|
13771
14017
|
},
|
|
13772
14018
|
"value": {
|
|
13773
|
-
"
|
|
14019
|
+
"oneOf": [
|
|
14020
|
+
{
|
|
14021
|
+
"type": "string"
|
|
14022
|
+
},
|
|
14023
|
+
{
|
|
14024
|
+
"properties": {
|
|
14025
|
+
"eq": {
|
|
14026
|
+
"oneOf": [
|
|
14027
|
+
{
|
|
14028
|
+
"type": "string"
|
|
14029
|
+
},
|
|
14030
|
+
{
|
|
14031
|
+
"type": "number"
|
|
14032
|
+
}
|
|
14033
|
+
]
|
|
14034
|
+
},
|
|
14035
|
+
"neq": {
|
|
14036
|
+
"type": "string"
|
|
14037
|
+
},
|
|
14038
|
+
"inc": {
|
|
14039
|
+
"items": {
|
|
14040
|
+
"type": "string"
|
|
14041
|
+
},
|
|
14042
|
+
"type": "array"
|
|
14043
|
+
},
|
|
14044
|
+
"ninc": {
|
|
14045
|
+
"items": {
|
|
14046
|
+
"type": "string"
|
|
14047
|
+
},
|
|
14048
|
+
"type": "array"
|
|
14049
|
+
},
|
|
14050
|
+
"pre": {
|
|
14051
|
+
"type": "string"
|
|
14052
|
+
},
|
|
14053
|
+
"suf": {
|
|
14054
|
+
"type": "string"
|
|
14055
|
+
},
|
|
14056
|
+
"re": {
|
|
14057
|
+
"type": "string"
|
|
14058
|
+
},
|
|
14059
|
+
"gt": {
|
|
14060
|
+
"type": "number"
|
|
14061
|
+
},
|
|
14062
|
+
"gte": {
|
|
14063
|
+
"type": "number"
|
|
14064
|
+
},
|
|
14065
|
+
"lt": {
|
|
14066
|
+
"type": "number"
|
|
14067
|
+
},
|
|
14068
|
+
"lte": {
|
|
14069
|
+
"type": "number"
|
|
14070
|
+
}
|
|
14071
|
+
},
|
|
14072
|
+
"type": "object"
|
|
14073
|
+
}
|
|
14074
|
+
]
|
|
13774
14075
|
}
|
|
13775
14076
|
},
|
|
13776
14077
|
"required": [
|
|
@@ -13793,7 +14094,62 @@
|
|
|
13793
14094
|
"type": "string"
|
|
13794
14095
|
},
|
|
13795
14096
|
"value": {
|
|
13796
|
-
"
|
|
14097
|
+
"oneOf": [
|
|
14098
|
+
{
|
|
14099
|
+
"type": "string"
|
|
14100
|
+
},
|
|
14101
|
+
{
|
|
14102
|
+
"properties": {
|
|
14103
|
+
"eq": {
|
|
14104
|
+
"oneOf": [
|
|
14105
|
+
{
|
|
14106
|
+
"type": "string"
|
|
14107
|
+
},
|
|
14108
|
+
{
|
|
14109
|
+
"type": "number"
|
|
14110
|
+
}
|
|
14111
|
+
]
|
|
14112
|
+
},
|
|
14113
|
+
"neq": {
|
|
14114
|
+
"type": "string"
|
|
14115
|
+
},
|
|
14116
|
+
"inc": {
|
|
14117
|
+
"items": {
|
|
14118
|
+
"type": "string"
|
|
14119
|
+
},
|
|
14120
|
+
"type": "array"
|
|
14121
|
+
},
|
|
14122
|
+
"ninc": {
|
|
14123
|
+
"items": {
|
|
14124
|
+
"type": "string"
|
|
14125
|
+
},
|
|
14126
|
+
"type": "array"
|
|
14127
|
+
},
|
|
14128
|
+
"pre": {
|
|
14129
|
+
"type": "string"
|
|
14130
|
+
},
|
|
14131
|
+
"suf": {
|
|
14132
|
+
"type": "string"
|
|
14133
|
+
},
|
|
14134
|
+
"re": {
|
|
14135
|
+
"type": "string"
|
|
14136
|
+
},
|
|
14137
|
+
"gt": {
|
|
14138
|
+
"type": "number"
|
|
14139
|
+
},
|
|
14140
|
+
"gte": {
|
|
14141
|
+
"type": "number"
|
|
14142
|
+
},
|
|
14143
|
+
"lt": {
|
|
14144
|
+
"type": "number"
|
|
14145
|
+
},
|
|
14146
|
+
"lte": {
|
|
14147
|
+
"type": "number"
|
|
14148
|
+
}
|
|
14149
|
+
},
|
|
14150
|
+
"type": "object"
|
|
14151
|
+
}
|
|
14152
|
+
]
|
|
13797
14153
|
}
|
|
13798
14154
|
},
|
|
13799
14155
|
"required": [
|
|
@@ -13818,7 +14174,62 @@
|
|
|
13818
14174
|
]
|
|
13819
14175
|
},
|
|
13820
14176
|
"value": {
|
|
13821
|
-
"
|
|
14177
|
+
"oneOf": [
|
|
14178
|
+
{
|
|
14179
|
+
"type": "string"
|
|
14180
|
+
},
|
|
14181
|
+
{
|
|
14182
|
+
"properties": {
|
|
14183
|
+
"eq": {
|
|
14184
|
+
"oneOf": [
|
|
14185
|
+
{
|
|
14186
|
+
"type": "string"
|
|
14187
|
+
},
|
|
14188
|
+
{
|
|
14189
|
+
"type": "number"
|
|
14190
|
+
}
|
|
14191
|
+
]
|
|
14192
|
+
},
|
|
14193
|
+
"neq": {
|
|
14194
|
+
"type": "string"
|
|
14195
|
+
},
|
|
14196
|
+
"inc": {
|
|
14197
|
+
"items": {
|
|
14198
|
+
"type": "string"
|
|
14199
|
+
},
|
|
14200
|
+
"type": "array"
|
|
14201
|
+
},
|
|
14202
|
+
"ninc": {
|
|
14203
|
+
"items": {
|
|
14204
|
+
"type": "string"
|
|
14205
|
+
},
|
|
14206
|
+
"type": "array"
|
|
14207
|
+
},
|
|
14208
|
+
"pre": {
|
|
14209
|
+
"type": "string"
|
|
14210
|
+
},
|
|
14211
|
+
"suf": {
|
|
14212
|
+
"type": "string"
|
|
14213
|
+
},
|
|
14214
|
+
"re": {
|
|
14215
|
+
"type": "string"
|
|
14216
|
+
},
|
|
14217
|
+
"gt": {
|
|
14218
|
+
"type": "number"
|
|
14219
|
+
},
|
|
14220
|
+
"gte": {
|
|
14221
|
+
"type": "number"
|
|
14222
|
+
},
|
|
14223
|
+
"lt": {
|
|
14224
|
+
"type": "number"
|
|
14225
|
+
},
|
|
14226
|
+
"lte": {
|
|
14227
|
+
"type": "number"
|
|
14228
|
+
}
|
|
14229
|
+
},
|
|
14230
|
+
"type": "object"
|
|
14231
|
+
}
|
|
14232
|
+
]
|
|
13822
14233
|
}
|
|
13823
14234
|
},
|
|
13824
14235
|
"required": [
|
|
@@ -13841,7 +14252,62 @@
|
|
|
13841
14252
|
"type": "string"
|
|
13842
14253
|
},
|
|
13843
14254
|
"value": {
|
|
13844
|
-
"
|
|
14255
|
+
"oneOf": [
|
|
14256
|
+
{
|
|
14257
|
+
"type": "string"
|
|
14258
|
+
},
|
|
14259
|
+
{
|
|
14260
|
+
"properties": {
|
|
14261
|
+
"eq": {
|
|
14262
|
+
"oneOf": [
|
|
14263
|
+
{
|
|
14264
|
+
"type": "string"
|
|
14265
|
+
},
|
|
14266
|
+
{
|
|
14267
|
+
"type": "number"
|
|
14268
|
+
}
|
|
14269
|
+
]
|
|
14270
|
+
},
|
|
14271
|
+
"neq": {
|
|
14272
|
+
"type": "string"
|
|
14273
|
+
},
|
|
14274
|
+
"inc": {
|
|
14275
|
+
"items": {
|
|
14276
|
+
"type": "string"
|
|
14277
|
+
},
|
|
14278
|
+
"type": "array"
|
|
14279
|
+
},
|
|
14280
|
+
"ninc": {
|
|
14281
|
+
"items": {
|
|
14282
|
+
"type": "string"
|
|
14283
|
+
},
|
|
14284
|
+
"type": "array"
|
|
14285
|
+
},
|
|
14286
|
+
"pre": {
|
|
14287
|
+
"type": "string"
|
|
14288
|
+
},
|
|
14289
|
+
"suf": {
|
|
14290
|
+
"type": "string"
|
|
14291
|
+
},
|
|
14292
|
+
"re": {
|
|
14293
|
+
"type": "string"
|
|
14294
|
+
},
|
|
14295
|
+
"gt": {
|
|
14296
|
+
"type": "number"
|
|
14297
|
+
},
|
|
14298
|
+
"gte": {
|
|
14299
|
+
"type": "number"
|
|
14300
|
+
},
|
|
14301
|
+
"lt": {
|
|
14302
|
+
"type": "number"
|
|
14303
|
+
},
|
|
14304
|
+
"lte": {
|
|
14305
|
+
"type": "number"
|
|
14306
|
+
}
|
|
14307
|
+
},
|
|
14308
|
+
"type": "object"
|
|
14309
|
+
}
|
|
14310
|
+
]
|
|
13845
14311
|
}
|
|
13846
14312
|
},
|
|
13847
14313
|
"required": [
|
|
@@ -13854,6 +14320,21 @@
|
|
|
13854
14320
|
},
|
|
13855
14321
|
"type": "array"
|
|
13856
14322
|
},
|
|
14323
|
+
"mitigate": {
|
|
14324
|
+
"properties": {
|
|
14325
|
+
"action": {
|
|
14326
|
+
"type": "string",
|
|
14327
|
+
"enum": [
|
|
14328
|
+
"challenge",
|
|
14329
|
+
"deny"
|
|
14330
|
+
]
|
|
14331
|
+
}
|
|
14332
|
+
},
|
|
14333
|
+
"required": [
|
|
14334
|
+
"action"
|
|
14335
|
+
],
|
|
14336
|
+
"type": "object"
|
|
14337
|
+
},
|
|
13857
14338
|
"locale": {
|
|
13858
14339
|
"properties": {
|
|
13859
14340
|
"redirect": {
|
|
@@ -14005,6 +14486,9 @@
|
|
|
14005
14486
|
"applications": {
|
|
14006
14487
|
"additionalProperties": {
|
|
14007
14488
|
"properties": {
|
|
14489
|
+
"isDefaultApp": {
|
|
14490
|
+
"type": "boolean"
|
|
14491
|
+
},
|
|
14008
14492
|
"productionHost": {
|
|
14009
14493
|
"type": "string",
|
|
14010
14494
|
"description": "This is the production alias, it will always show the most up to date of each application."
|
|
@@ -14626,43 +15110,6 @@
|
|
|
14626
15110
|
],
|
|
14627
15111
|
"type": "object"
|
|
14628
15112
|
},
|
|
14629
|
-
{
|
|
14630
|
-
"properties": {
|
|
14631
|
-
"org": {
|
|
14632
|
-
"type": "string",
|
|
14633
|
-
"example": "vercel"
|
|
14634
|
-
},
|
|
14635
|
-
"ref": {
|
|
14636
|
-
"type": "string",
|
|
14637
|
-
"example": "main"
|
|
14638
|
-
},
|
|
14639
|
-
"repo": {
|
|
14640
|
-
"type": "string",
|
|
14641
|
-
"example": "next.js"
|
|
14642
|
-
},
|
|
14643
|
-
"sha": {
|
|
14644
|
-
"type": "string",
|
|
14645
|
-
"example": "a1b2c3d4e5f6g7h8i9j0k1l2m3n4o5p6q7r8s9t0"
|
|
14646
|
-
},
|
|
14647
|
-
"host": {
|
|
14648
|
-
"type": "string"
|
|
14649
|
-
},
|
|
14650
|
-
"type": {
|
|
14651
|
-
"enum": [
|
|
14652
|
-
"github-custom-host"
|
|
14653
|
-
],
|
|
14654
|
-
"type": "string"
|
|
14655
|
-
}
|
|
14656
|
-
},
|
|
14657
|
-
"required": [
|
|
14658
|
-
"type",
|
|
14659
|
-
"ref",
|
|
14660
|
-
"org",
|
|
14661
|
-
"repo",
|
|
14662
|
-
"host"
|
|
14663
|
-
],
|
|
14664
|
-
"type": "object"
|
|
14665
|
-
},
|
|
14666
15113
|
{
|
|
14667
15114
|
"properties": {
|
|
14668
15115
|
"projectId": {
|
|
@@ -16410,7 +16857,62 @@
|
|
|
16410
16857
|
]
|
|
16411
16858
|
},
|
|
16412
16859
|
"value": {
|
|
16413
|
-
"
|
|
16860
|
+
"oneOf": [
|
|
16861
|
+
{
|
|
16862
|
+
"type": "string"
|
|
16863
|
+
},
|
|
16864
|
+
{
|
|
16865
|
+
"properties": {
|
|
16866
|
+
"eq": {
|
|
16867
|
+
"oneOf": [
|
|
16868
|
+
{
|
|
16869
|
+
"type": "string"
|
|
16870
|
+
},
|
|
16871
|
+
{
|
|
16872
|
+
"type": "number"
|
|
16873
|
+
}
|
|
16874
|
+
]
|
|
16875
|
+
},
|
|
16876
|
+
"neq": {
|
|
16877
|
+
"type": "string"
|
|
16878
|
+
},
|
|
16879
|
+
"inc": {
|
|
16880
|
+
"items": {
|
|
16881
|
+
"type": "string"
|
|
16882
|
+
},
|
|
16883
|
+
"type": "array"
|
|
16884
|
+
},
|
|
16885
|
+
"ninc": {
|
|
16886
|
+
"items": {
|
|
16887
|
+
"type": "string"
|
|
16888
|
+
},
|
|
16889
|
+
"type": "array"
|
|
16890
|
+
},
|
|
16891
|
+
"pre": {
|
|
16892
|
+
"type": "string"
|
|
16893
|
+
},
|
|
16894
|
+
"suf": {
|
|
16895
|
+
"type": "string"
|
|
16896
|
+
},
|
|
16897
|
+
"re": {
|
|
16898
|
+
"type": "string"
|
|
16899
|
+
},
|
|
16900
|
+
"gt": {
|
|
16901
|
+
"type": "number"
|
|
16902
|
+
},
|
|
16903
|
+
"gte": {
|
|
16904
|
+
"type": "number"
|
|
16905
|
+
},
|
|
16906
|
+
"lt": {
|
|
16907
|
+
"type": "number"
|
|
16908
|
+
},
|
|
16909
|
+
"lte": {
|
|
16910
|
+
"type": "number"
|
|
16911
|
+
}
|
|
16912
|
+
},
|
|
16913
|
+
"type": "object"
|
|
16914
|
+
}
|
|
16915
|
+
]
|
|
16414
16916
|
}
|
|
16415
16917
|
},
|
|
16416
16918
|
"required": [
|
|
@@ -16433,7 +16935,62 @@
|
|
|
16433
16935
|
"type": "string"
|
|
16434
16936
|
},
|
|
16435
16937
|
"value": {
|
|
16436
|
-
"
|
|
16938
|
+
"oneOf": [
|
|
16939
|
+
{
|
|
16940
|
+
"type": "string"
|
|
16941
|
+
},
|
|
16942
|
+
{
|
|
16943
|
+
"properties": {
|
|
16944
|
+
"eq": {
|
|
16945
|
+
"oneOf": [
|
|
16946
|
+
{
|
|
16947
|
+
"type": "string"
|
|
16948
|
+
},
|
|
16949
|
+
{
|
|
16950
|
+
"type": "number"
|
|
16951
|
+
}
|
|
16952
|
+
]
|
|
16953
|
+
},
|
|
16954
|
+
"neq": {
|
|
16955
|
+
"type": "string"
|
|
16956
|
+
},
|
|
16957
|
+
"inc": {
|
|
16958
|
+
"items": {
|
|
16959
|
+
"type": "string"
|
|
16960
|
+
},
|
|
16961
|
+
"type": "array"
|
|
16962
|
+
},
|
|
16963
|
+
"ninc": {
|
|
16964
|
+
"items": {
|
|
16965
|
+
"type": "string"
|
|
16966
|
+
},
|
|
16967
|
+
"type": "array"
|
|
16968
|
+
},
|
|
16969
|
+
"pre": {
|
|
16970
|
+
"type": "string"
|
|
16971
|
+
},
|
|
16972
|
+
"suf": {
|
|
16973
|
+
"type": "string"
|
|
16974
|
+
},
|
|
16975
|
+
"re": {
|
|
16976
|
+
"type": "string"
|
|
16977
|
+
},
|
|
16978
|
+
"gt": {
|
|
16979
|
+
"type": "number"
|
|
16980
|
+
},
|
|
16981
|
+
"gte": {
|
|
16982
|
+
"type": "number"
|
|
16983
|
+
},
|
|
16984
|
+
"lt": {
|
|
16985
|
+
"type": "number"
|
|
16986
|
+
},
|
|
16987
|
+
"lte": {
|
|
16988
|
+
"type": "number"
|
|
16989
|
+
}
|
|
16990
|
+
},
|
|
16991
|
+
"type": "object"
|
|
16992
|
+
}
|
|
16993
|
+
]
|
|
16437
16994
|
}
|
|
16438
16995
|
},
|
|
16439
16996
|
"required": [
|
|
@@ -16458,7 +17015,62 @@
|
|
|
16458
17015
|
]
|
|
16459
17016
|
},
|
|
16460
17017
|
"value": {
|
|
16461
|
-
"
|
|
17018
|
+
"oneOf": [
|
|
17019
|
+
{
|
|
17020
|
+
"type": "string"
|
|
17021
|
+
},
|
|
17022
|
+
{
|
|
17023
|
+
"properties": {
|
|
17024
|
+
"eq": {
|
|
17025
|
+
"oneOf": [
|
|
17026
|
+
{
|
|
17027
|
+
"type": "string"
|
|
17028
|
+
},
|
|
17029
|
+
{
|
|
17030
|
+
"type": "number"
|
|
17031
|
+
}
|
|
17032
|
+
]
|
|
17033
|
+
},
|
|
17034
|
+
"neq": {
|
|
17035
|
+
"type": "string"
|
|
17036
|
+
},
|
|
17037
|
+
"inc": {
|
|
17038
|
+
"items": {
|
|
17039
|
+
"type": "string"
|
|
17040
|
+
},
|
|
17041
|
+
"type": "array"
|
|
17042
|
+
},
|
|
17043
|
+
"ninc": {
|
|
17044
|
+
"items": {
|
|
17045
|
+
"type": "string"
|
|
17046
|
+
},
|
|
17047
|
+
"type": "array"
|
|
17048
|
+
},
|
|
17049
|
+
"pre": {
|
|
17050
|
+
"type": "string"
|
|
17051
|
+
},
|
|
17052
|
+
"suf": {
|
|
17053
|
+
"type": "string"
|
|
17054
|
+
},
|
|
17055
|
+
"re": {
|
|
17056
|
+
"type": "string"
|
|
17057
|
+
},
|
|
17058
|
+
"gt": {
|
|
17059
|
+
"type": "number"
|
|
17060
|
+
},
|
|
17061
|
+
"gte": {
|
|
17062
|
+
"type": "number"
|
|
17063
|
+
},
|
|
17064
|
+
"lt": {
|
|
17065
|
+
"type": "number"
|
|
17066
|
+
},
|
|
17067
|
+
"lte": {
|
|
17068
|
+
"type": "number"
|
|
17069
|
+
}
|
|
17070
|
+
},
|
|
17071
|
+
"type": "object"
|
|
17072
|
+
}
|
|
17073
|
+
]
|
|
16462
17074
|
}
|
|
16463
17075
|
},
|
|
16464
17076
|
"required": [
|
|
@@ -16481,7 +17093,62 @@
|
|
|
16481
17093
|
"type": "string"
|
|
16482
17094
|
},
|
|
16483
17095
|
"value": {
|
|
16484
|
-
"
|
|
17096
|
+
"oneOf": [
|
|
17097
|
+
{
|
|
17098
|
+
"type": "string"
|
|
17099
|
+
},
|
|
17100
|
+
{
|
|
17101
|
+
"properties": {
|
|
17102
|
+
"eq": {
|
|
17103
|
+
"oneOf": [
|
|
17104
|
+
{
|
|
17105
|
+
"type": "string"
|
|
17106
|
+
},
|
|
17107
|
+
{
|
|
17108
|
+
"type": "number"
|
|
17109
|
+
}
|
|
17110
|
+
]
|
|
17111
|
+
},
|
|
17112
|
+
"neq": {
|
|
17113
|
+
"type": "string"
|
|
17114
|
+
},
|
|
17115
|
+
"inc": {
|
|
17116
|
+
"items": {
|
|
17117
|
+
"type": "string"
|
|
17118
|
+
},
|
|
17119
|
+
"type": "array"
|
|
17120
|
+
},
|
|
17121
|
+
"ninc": {
|
|
17122
|
+
"items": {
|
|
17123
|
+
"type": "string"
|
|
17124
|
+
},
|
|
17125
|
+
"type": "array"
|
|
17126
|
+
},
|
|
17127
|
+
"pre": {
|
|
17128
|
+
"type": "string"
|
|
17129
|
+
},
|
|
17130
|
+
"suf": {
|
|
17131
|
+
"type": "string"
|
|
17132
|
+
},
|
|
17133
|
+
"re": {
|
|
17134
|
+
"type": "string"
|
|
17135
|
+
},
|
|
17136
|
+
"gt": {
|
|
17137
|
+
"type": "number"
|
|
17138
|
+
},
|
|
17139
|
+
"gte": {
|
|
17140
|
+
"type": "number"
|
|
17141
|
+
},
|
|
17142
|
+
"lt": {
|
|
17143
|
+
"type": "number"
|
|
17144
|
+
},
|
|
17145
|
+
"lte": {
|
|
17146
|
+
"type": "number"
|
|
17147
|
+
}
|
|
17148
|
+
},
|
|
17149
|
+
"type": "object"
|
|
17150
|
+
}
|
|
17151
|
+
]
|
|
16485
17152
|
}
|
|
16486
17153
|
},
|
|
16487
17154
|
"required": [
|
|
@@ -16494,6 +17161,21 @@
|
|
|
16494
17161
|
},
|
|
16495
17162
|
"type": "array"
|
|
16496
17163
|
},
|
|
17164
|
+
"mitigate": {
|
|
17165
|
+
"properties": {
|
|
17166
|
+
"action": {
|
|
17167
|
+
"type": "string",
|
|
17168
|
+
"enum": [
|
|
17169
|
+
"challenge",
|
|
17170
|
+
"deny"
|
|
17171
|
+
]
|
|
17172
|
+
}
|
|
17173
|
+
},
|
|
17174
|
+
"required": [
|
|
17175
|
+
"action"
|
|
17176
|
+
],
|
|
17177
|
+
"type": "object"
|
|
17178
|
+
},
|
|
16497
17179
|
"locale": {
|
|
16498
17180
|
"properties": {
|
|
16499
17181
|
"redirect": {
|
|
@@ -16842,6 +17524,9 @@
|
|
|
16842
17524
|
"applications": {
|
|
16843
17525
|
"additionalProperties": {
|
|
16844
17526
|
"properties": {
|
|
17527
|
+
"isDefaultApp": {
|
|
17528
|
+
"type": "boolean"
|
|
17529
|
+
},
|
|
16845
17530
|
"productionHost": {
|
|
16846
17531
|
"type": "string",
|
|
16847
17532
|
"description": "This is the production alias, it will always show the most up to date of each application."
|
|
@@ -17504,6 +18189,9 @@
|
|
|
17504
18189
|
"403": {
|
|
17505
18190
|
"description": "You do not have permission to access this resource."
|
|
17506
18191
|
},
|
|
18192
|
+
"408": {
|
|
18193
|
+
"description": ""
|
|
18194
|
+
},
|
|
17507
18195
|
"500": {
|
|
17508
18196
|
"description": ""
|
|
17509
18197
|
}
|
|
@@ -23010,7 +23698,8 @@
|
|
|
23010
23698
|
"enum": [
|
|
23011
23699
|
"ADMIN",
|
|
23012
23700
|
"USER"
|
|
23013
|
-
]
|
|
23701
|
+
],
|
|
23702
|
+
"description": "\"The `ADMIN` role, by default, is provided to users capable of installing integrations, while the `USER` role can be granted to Vercel users with the Vercel `Billing` or Vercel `Viewer` role, which are considered to be Read-Only roles.\""
|
|
23014
23703
|
}
|
|
23015
23704
|
},
|
|
23016
23705
|
"required": [
|
|
@@ -23203,25 +23892,755 @@
|
|
|
23203
23892
|
}
|
|
23204
23893
|
}
|
|
23205
23894
|
},
|
|
23206
|
-
"/v1/installations/{integrationConfigurationId}/
|
|
23207
|
-
"
|
|
23208
|
-
"description": "
|
|
23209
|
-
"operationId": "
|
|
23895
|
+
"/v1/installations/{integrationConfigurationId}/resources": {
|
|
23896
|
+
"get": {
|
|
23897
|
+
"description": "Get all resources for a given integration configuration ID.",
|
|
23898
|
+
"operationId": "get-resources",
|
|
23210
23899
|
"security": [
|
|
23211
23900
|
{
|
|
23212
23901
|
"bearerToken": []
|
|
23213
23902
|
}
|
|
23214
23903
|
],
|
|
23215
|
-
"summary": "
|
|
23904
|
+
"summary": "Get Resources",
|
|
23216
23905
|
"tags": [
|
|
23217
23906
|
"marketplace"
|
|
23218
23907
|
],
|
|
23219
23908
|
"responses": {
|
|
23220
|
-
"
|
|
23909
|
+
"200": {
|
|
23910
|
+
"description": "",
|
|
23911
|
+
"content": {
|
|
23912
|
+
"application/json": {
|
|
23913
|
+
"schema": {
|
|
23914
|
+
"properties": {
|
|
23915
|
+
"resources": {
|
|
23916
|
+
"items": {
|
|
23917
|
+
"properties": {
|
|
23918
|
+
"partnerId": {
|
|
23919
|
+
"type": "string",
|
|
23920
|
+
"description": "The ID provided by the partner for the given resource"
|
|
23921
|
+
},
|
|
23922
|
+
"internalId": {
|
|
23923
|
+
"type": "string",
|
|
23924
|
+
"description": "The ID assigned by Vercel for the given resource"
|
|
23925
|
+
},
|
|
23926
|
+
"name": {
|
|
23927
|
+
"type": "string",
|
|
23928
|
+
"description": "The name of the resource as it is recorded in Vercel"
|
|
23929
|
+
},
|
|
23930
|
+
"status": {
|
|
23931
|
+
"type": "string",
|
|
23932
|
+
"enum": [
|
|
23933
|
+
"ready",
|
|
23934
|
+
"pending",
|
|
23935
|
+
"suspended",
|
|
23936
|
+
"resumed",
|
|
23937
|
+
"uninstalled",
|
|
23938
|
+
"error"
|
|
23939
|
+
],
|
|
23940
|
+
"description": "The current status of the resource"
|
|
23941
|
+
},
|
|
23942
|
+
"productId": {
|
|
23943
|
+
"type": "string",
|
|
23944
|
+
"description": "The ID of the product the resource is derived from"
|
|
23945
|
+
},
|
|
23946
|
+
"protocolSettings": {
|
|
23947
|
+
"properties": {
|
|
23948
|
+
"experimentation": {
|
|
23949
|
+
"properties": {
|
|
23950
|
+
"edgeConfigSyncingEnabled": {
|
|
23951
|
+
"type": "boolean"
|
|
23952
|
+
},
|
|
23953
|
+
"edgeConfigId": {
|
|
23954
|
+
"type": "string"
|
|
23955
|
+
},
|
|
23956
|
+
"edgeConfigTokenId": {
|
|
23957
|
+
"type": "string"
|
|
23958
|
+
}
|
|
23959
|
+
},
|
|
23960
|
+
"type": "object"
|
|
23961
|
+
}
|
|
23962
|
+
},
|
|
23963
|
+
"type": "object",
|
|
23964
|
+
"description": "Any settings provided for the resource to support its product's protocols"
|
|
23965
|
+
},
|
|
23966
|
+
"notification": {
|
|
23967
|
+
"properties": {
|
|
23968
|
+
"level": {
|
|
23969
|
+
"type": "string",
|
|
23970
|
+
"enum": [
|
|
23971
|
+
"error",
|
|
23972
|
+
"info",
|
|
23973
|
+
"warn"
|
|
23974
|
+
]
|
|
23975
|
+
},
|
|
23976
|
+
"title": {
|
|
23977
|
+
"type": "string"
|
|
23978
|
+
},
|
|
23979
|
+
"message": {
|
|
23980
|
+
"type": "string"
|
|
23981
|
+
},
|
|
23982
|
+
"href": {
|
|
23983
|
+
"type": "string"
|
|
23984
|
+
}
|
|
23985
|
+
},
|
|
23986
|
+
"required": [
|
|
23987
|
+
"level",
|
|
23988
|
+
"title"
|
|
23989
|
+
],
|
|
23990
|
+
"type": "object",
|
|
23991
|
+
"description": "The notification, if set, displayed to the user when viewing the resource in Vercel"
|
|
23992
|
+
},
|
|
23993
|
+
"billingPlanId": {
|
|
23994
|
+
"type": "string",
|
|
23995
|
+
"description": "The ID of the billing plan the resource is subscribed to, if applicable"
|
|
23996
|
+
},
|
|
23997
|
+
"metadata": {
|
|
23998
|
+
"additionalProperties": {
|
|
23999
|
+
"oneOf": [
|
|
24000
|
+
{
|
|
24001
|
+
"type": "string"
|
|
24002
|
+
},
|
|
24003
|
+
{
|
|
24004
|
+
"type": "number"
|
|
24005
|
+
},
|
|
24006
|
+
{
|
|
24007
|
+
"type": "boolean"
|
|
24008
|
+
},
|
|
24009
|
+
{
|
|
24010
|
+
"items": {
|
|
24011
|
+
"type": "string"
|
|
24012
|
+
},
|
|
24013
|
+
"type": "array",
|
|
24014
|
+
"description": "The configured metadata for the resource as defined by its product's Metadata Schema"
|
|
24015
|
+
},
|
|
24016
|
+
{
|
|
24017
|
+
"items": {
|
|
24018
|
+
"type": "number"
|
|
24019
|
+
},
|
|
24020
|
+
"type": "array",
|
|
24021
|
+
"description": "The configured metadata for the resource as defined by its product's Metadata Schema"
|
|
24022
|
+
}
|
|
24023
|
+
]
|
|
24024
|
+
},
|
|
24025
|
+
"type": "object",
|
|
24026
|
+
"description": "The configured metadata for the resource as defined by its product's Metadata Schema"
|
|
24027
|
+
}
|
|
24028
|
+
},
|
|
24029
|
+
"required": [
|
|
24030
|
+
"partnerId",
|
|
24031
|
+
"internalId",
|
|
24032
|
+
"name",
|
|
24033
|
+
"productId"
|
|
24034
|
+
],
|
|
24035
|
+
"type": "object"
|
|
24036
|
+
},
|
|
24037
|
+
"type": "array"
|
|
24038
|
+
}
|
|
24039
|
+
},
|
|
24040
|
+
"required": [
|
|
24041
|
+
"resources"
|
|
24042
|
+
],
|
|
24043
|
+
"type": "object"
|
|
24044
|
+
}
|
|
24045
|
+
}
|
|
24046
|
+
}
|
|
24047
|
+
},
|
|
24048
|
+
"400": {
|
|
24049
|
+
"description": "One of the provided values in the request query is invalid.",
|
|
24050
|
+
"content": {
|
|
24051
|
+
"application/json": {
|
|
24052
|
+
"schema": {
|
|
24053
|
+
"$ref": "#/components/schemas/VercelBadRequestError"
|
|
24054
|
+
}
|
|
24055
|
+
}
|
|
24056
|
+
}
|
|
24057
|
+
},
|
|
24058
|
+
"401": {
|
|
24059
|
+
"description": "",
|
|
24060
|
+
"content": {
|
|
24061
|
+
"application/json": {
|
|
24062
|
+
"schema": {
|
|
24063
|
+
"$ref": "#/components/schemas/VercelForbiddenError"
|
|
24064
|
+
}
|
|
24065
|
+
}
|
|
24066
|
+
}
|
|
24067
|
+
},
|
|
24068
|
+
"403": {
|
|
24069
|
+
"description": "You do not have permission to access this resource."
|
|
24070
|
+
},
|
|
24071
|
+
"404": {
|
|
24072
|
+
"description": "",
|
|
24073
|
+
"content": {
|
|
24074
|
+
"application/json": {
|
|
24075
|
+
"schema": {
|
|
24076
|
+
"$ref": "#/components/schemas/VercelNotFoundError"
|
|
24077
|
+
}
|
|
24078
|
+
}
|
|
24079
|
+
}
|
|
24080
|
+
}
|
|
24081
|
+
},
|
|
24082
|
+
"parameters": [
|
|
24083
|
+
{
|
|
24084
|
+
"name": "integrationConfigurationId",
|
|
24085
|
+
"in": "path",
|
|
24086
|
+
"required": true,
|
|
24087
|
+
"schema": {
|
|
24088
|
+
"type": "string"
|
|
24089
|
+
}
|
|
24090
|
+
}
|
|
24091
|
+
]
|
|
24092
|
+
}
|
|
24093
|
+
},
|
|
24094
|
+
"/v1/installations/{integrationConfigurationId}/resources/{resourceId}": {
|
|
24095
|
+
"get": {
|
|
24096
|
+
"description": "Get a resource by its partner ID.",
|
|
24097
|
+
"operationId": "get-resource",
|
|
24098
|
+
"security": [
|
|
24099
|
+
{
|
|
24100
|
+
"bearerToken": []
|
|
24101
|
+
}
|
|
24102
|
+
],
|
|
24103
|
+
"summary": "Get Resource",
|
|
24104
|
+
"tags": [
|
|
24105
|
+
"marketplace"
|
|
24106
|
+
],
|
|
24107
|
+
"responses": {
|
|
24108
|
+
"200": {
|
|
24109
|
+
"description": "",
|
|
24110
|
+
"content": {
|
|
24111
|
+
"application/json": {
|
|
24112
|
+
"schema": {
|
|
24113
|
+
"properties": {
|
|
24114
|
+
"id": {
|
|
24115
|
+
"type": "string",
|
|
24116
|
+
"description": "The ID provided by the 3rd party provider for the given resource"
|
|
24117
|
+
},
|
|
24118
|
+
"internalId": {
|
|
24119
|
+
"type": "string",
|
|
24120
|
+
"description": "The ID assigned by Vercel for the given resource"
|
|
24121
|
+
},
|
|
24122
|
+
"name": {
|
|
24123
|
+
"type": "string",
|
|
24124
|
+
"description": "The name of the resource as it is recorded in Vercel"
|
|
24125
|
+
},
|
|
24126
|
+
"status": {
|
|
24127
|
+
"type": "string",
|
|
24128
|
+
"enum": [
|
|
24129
|
+
"ready",
|
|
24130
|
+
"pending",
|
|
24131
|
+
"suspended",
|
|
24132
|
+
"resumed",
|
|
24133
|
+
"uninstalled",
|
|
24134
|
+
"error"
|
|
24135
|
+
],
|
|
24136
|
+
"description": "The current status of the resource"
|
|
24137
|
+
},
|
|
24138
|
+
"productId": {
|
|
24139
|
+
"type": "string",
|
|
24140
|
+
"description": "The ID of the product the resource is derived from"
|
|
24141
|
+
},
|
|
24142
|
+
"protocolSettings": {
|
|
24143
|
+
"properties": {
|
|
24144
|
+
"experimentation": {
|
|
24145
|
+
"properties": {
|
|
24146
|
+
"edgeConfigSyncingEnabled": {
|
|
24147
|
+
"type": "boolean"
|
|
24148
|
+
},
|
|
24149
|
+
"edgeConfigId": {
|
|
24150
|
+
"type": "string"
|
|
24151
|
+
},
|
|
24152
|
+
"edgeConfigTokenId": {
|
|
24153
|
+
"type": "string"
|
|
24154
|
+
}
|
|
24155
|
+
},
|
|
24156
|
+
"type": "object"
|
|
24157
|
+
}
|
|
24158
|
+
},
|
|
24159
|
+
"type": "object",
|
|
24160
|
+
"description": "Any settings provided for the resource to support its product's protocols"
|
|
24161
|
+
},
|
|
24162
|
+
"notification": {
|
|
24163
|
+
"properties": {
|
|
24164
|
+
"level": {
|
|
24165
|
+
"type": "string",
|
|
24166
|
+
"enum": [
|
|
24167
|
+
"error",
|
|
24168
|
+
"info",
|
|
24169
|
+
"warn"
|
|
24170
|
+
]
|
|
24171
|
+
},
|
|
24172
|
+
"title": {
|
|
24173
|
+
"type": "string"
|
|
24174
|
+
},
|
|
24175
|
+
"message": {
|
|
24176
|
+
"type": "string"
|
|
24177
|
+
},
|
|
24178
|
+
"href": {
|
|
24179
|
+
"type": "string"
|
|
24180
|
+
}
|
|
24181
|
+
},
|
|
24182
|
+
"required": [
|
|
24183
|
+
"level",
|
|
24184
|
+
"title"
|
|
24185
|
+
],
|
|
24186
|
+
"type": "object",
|
|
24187
|
+
"description": "The notification, if set, displayed to the user when viewing the resource in Vercel"
|
|
24188
|
+
},
|
|
24189
|
+
"billingPlanId": {
|
|
24190
|
+
"type": "string",
|
|
24191
|
+
"description": "The ID of the billing plan the resource is subscribed to, if applicable"
|
|
24192
|
+
},
|
|
24193
|
+
"metadata": {
|
|
24194
|
+
"additionalProperties": {
|
|
24195
|
+
"oneOf": [
|
|
24196
|
+
{
|
|
24197
|
+
"type": "string"
|
|
24198
|
+
},
|
|
24199
|
+
{
|
|
24200
|
+
"type": "number"
|
|
24201
|
+
},
|
|
24202
|
+
{
|
|
24203
|
+
"type": "boolean"
|
|
24204
|
+
},
|
|
24205
|
+
{
|
|
24206
|
+
"items": {
|
|
24207
|
+
"type": "string"
|
|
24208
|
+
},
|
|
24209
|
+
"type": "array",
|
|
24210
|
+
"description": "The configured metadata for the resource as defined by its product's Metadata Schema"
|
|
24211
|
+
},
|
|
24212
|
+
{
|
|
24213
|
+
"items": {
|
|
24214
|
+
"type": "number"
|
|
24215
|
+
},
|
|
24216
|
+
"type": "array",
|
|
24217
|
+
"description": "The configured metadata for the resource as defined by its product's Metadata Schema"
|
|
24218
|
+
}
|
|
24219
|
+
]
|
|
24220
|
+
},
|
|
24221
|
+
"type": "object",
|
|
24222
|
+
"description": "The configured metadata for the resource as defined by its product's Metadata Schema"
|
|
24223
|
+
}
|
|
24224
|
+
},
|
|
24225
|
+
"required": [
|
|
24226
|
+
"id",
|
|
24227
|
+
"internalId",
|
|
24228
|
+
"name",
|
|
24229
|
+
"productId"
|
|
24230
|
+
],
|
|
24231
|
+
"type": "object"
|
|
24232
|
+
}
|
|
24233
|
+
}
|
|
24234
|
+
}
|
|
24235
|
+
},
|
|
24236
|
+
"400": {
|
|
24237
|
+
"description": "One of the provided values in the request query is invalid.",
|
|
24238
|
+
"content": {
|
|
24239
|
+
"application/json": {
|
|
24240
|
+
"schema": {
|
|
24241
|
+
"$ref": "#/components/schemas/VercelBadRequestError"
|
|
24242
|
+
}
|
|
24243
|
+
}
|
|
24244
|
+
}
|
|
24245
|
+
},
|
|
24246
|
+
"401": {
|
|
24247
|
+
"description": "",
|
|
24248
|
+
"content": {
|
|
24249
|
+
"application/json": {
|
|
24250
|
+
"schema": {
|
|
24251
|
+
"$ref": "#/components/schemas/VercelForbiddenError"
|
|
24252
|
+
}
|
|
24253
|
+
}
|
|
24254
|
+
}
|
|
24255
|
+
},
|
|
24256
|
+
"403": {
|
|
24257
|
+
"description": "You do not have permission to access this resource."
|
|
24258
|
+
},
|
|
24259
|
+
"404": {
|
|
24260
|
+
"description": "",
|
|
24261
|
+
"content": {
|
|
24262
|
+
"application/json": {
|
|
24263
|
+
"schema": {
|
|
24264
|
+
"$ref": "#/components/schemas/VercelNotFoundError"
|
|
24265
|
+
}
|
|
24266
|
+
}
|
|
24267
|
+
}
|
|
24268
|
+
}
|
|
24269
|
+
},
|
|
24270
|
+
"parameters": [
|
|
24271
|
+
{
|
|
24272
|
+
"name": "integrationConfigurationId",
|
|
24273
|
+
"description": "The ID of the integration configuration (installation) the resource belongs to",
|
|
24274
|
+
"in": "path",
|
|
24275
|
+
"required": true,
|
|
24276
|
+
"schema": {
|
|
24277
|
+
"type": "string",
|
|
24278
|
+
"description": "The ID of the integration configuration (installation) the resource belongs to"
|
|
24279
|
+
}
|
|
24280
|
+
},
|
|
24281
|
+
{
|
|
24282
|
+
"name": "resourceId",
|
|
24283
|
+
"description": "The ID provided by the 3rd party provider for the given resource",
|
|
24284
|
+
"in": "path",
|
|
24285
|
+
"required": true,
|
|
24286
|
+
"schema": {
|
|
24287
|
+
"type": "string",
|
|
24288
|
+
"description": "The ID provided by the 3rd party provider for the given resource"
|
|
24289
|
+
}
|
|
24290
|
+
}
|
|
24291
|
+
]
|
|
24292
|
+
},
|
|
24293
|
+
"delete": {
|
|
24294
|
+
"description": "Delete a resource owned by the selected installation ID.",
|
|
24295
|
+
"operationId": "delete-resource",
|
|
24296
|
+
"security": [
|
|
24297
|
+
{
|
|
24298
|
+
"bearerToken": []
|
|
24299
|
+
}
|
|
24300
|
+
],
|
|
24301
|
+
"summary": "Delete Resource",
|
|
24302
|
+
"tags": [
|
|
24303
|
+
"marketplace"
|
|
24304
|
+
],
|
|
24305
|
+
"responses": {
|
|
24306
|
+
"204": {
|
|
23221
24307
|
"description": ""
|
|
23222
24308
|
},
|
|
23223
24309
|
"400": {
|
|
23224
|
-
"description": "One of the provided values in the request
|
|
24310
|
+
"description": "One of the provided values in the request query is invalid.",
|
|
24311
|
+
"content": {
|
|
24312
|
+
"application/json": {
|
|
24313
|
+
"schema": {
|
|
24314
|
+
"$ref": "#/components/schemas/VercelBadRequestError"
|
|
24315
|
+
}
|
|
24316
|
+
}
|
|
24317
|
+
}
|
|
24318
|
+
},
|
|
24319
|
+
"401": {
|
|
24320
|
+
"description": "",
|
|
24321
|
+
"content": {
|
|
24322
|
+
"application/json": {
|
|
24323
|
+
"schema": {
|
|
24324
|
+
"$ref": "#/components/schemas/VercelForbiddenError"
|
|
24325
|
+
}
|
|
24326
|
+
}
|
|
24327
|
+
}
|
|
24328
|
+
},
|
|
24329
|
+
"403": {
|
|
24330
|
+
"description": "You do not have permission to access this resource."
|
|
24331
|
+
},
|
|
24332
|
+
"404": {
|
|
24333
|
+
"description": "",
|
|
24334
|
+
"content": {
|
|
24335
|
+
"application/json": {
|
|
24336
|
+
"schema": {
|
|
24337
|
+
"$ref": "#/components/schemas/VercelNotFoundError"
|
|
24338
|
+
}
|
|
24339
|
+
}
|
|
24340
|
+
}
|
|
24341
|
+
}
|
|
24342
|
+
},
|
|
24343
|
+
"parameters": [
|
|
24344
|
+
{
|
|
24345
|
+
"name": "integrationConfigurationId",
|
|
24346
|
+
"in": "path",
|
|
24347
|
+
"required": true,
|
|
24348
|
+
"schema": {
|
|
24349
|
+
"type": "string"
|
|
24350
|
+
}
|
|
24351
|
+
},
|
|
24352
|
+
{
|
|
24353
|
+
"name": "resourceId",
|
|
24354
|
+
"in": "path",
|
|
24355
|
+
"required": true,
|
|
24356
|
+
"schema": {
|
|
24357
|
+
"type": "string",
|
|
24358
|
+
"describe": "The external provider's ID of the resource to delete"
|
|
24359
|
+
}
|
|
24360
|
+
}
|
|
24361
|
+
]
|
|
24362
|
+
},
|
|
24363
|
+
"put": {
|
|
24364
|
+
"description": "This endpoint imports (upserts) a resource to Vercel's installation. This may be needed if resources can be independently created on the partner's side and need to be synchronized to Vercel.",
|
|
24365
|
+
"operationId": "import-resource",
|
|
24366
|
+
"security": [
|
|
24367
|
+
{
|
|
24368
|
+
"bearerToken": []
|
|
24369
|
+
}
|
|
24370
|
+
],
|
|
24371
|
+
"summary": "Import Resource",
|
|
24372
|
+
"tags": [
|
|
24373
|
+
"marketplace"
|
|
24374
|
+
],
|
|
24375
|
+
"responses": {
|
|
24376
|
+
"200": {
|
|
24377
|
+
"description": "",
|
|
24378
|
+
"content": {
|
|
24379
|
+
"application/json": {
|
|
24380
|
+
"schema": {
|
|
24381
|
+
"properties": {
|
|
24382
|
+
"name": {
|
|
24383
|
+
"type": "string"
|
|
24384
|
+
}
|
|
24385
|
+
},
|
|
24386
|
+
"required": [
|
|
24387
|
+
"name"
|
|
24388
|
+
],
|
|
24389
|
+
"type": "object"
|
|
24390
|
+
}
|
|
24391
|
+
}
|
|
24392
|
+
}
|
|
24393
|
+
},
|
|
24394
|
+
"400": {
|
|
24395
|
+
"description": "One of the provided values in the request body is invalid.\nOne of the provided values in the request query is invalid.",
|
|
24396
|
+
"content": {
|
|
24397
|
+
"application/json": {
|
|
24398
|
+
"schema": {
|
|
24399
|
+
"$ref": "#/components/schemas/VercelBadRequestError"
|
|
24400
|
+
}
|
|
24401
|
+
}
|
|
24402
|
+
}
|
|
24403
|
+
},
|
|
24404
|
+
"401": {
|
|
24405
|
+
"description": "",
|
|
24406
|
+
"content": {
|
|
24407
|
+
"application/json": {
|
|
24408
|
+
"schema": {
|
|
24409
|
+
"$ref": "#/components/schemas/VercelForbiddenError"
|
|
24410
|
+
}
|
|
24411
|
+
}
|
|
24412
|
+
}
|
|
24413
|
+
},
|
|
24414
|
+
"403": {
|
|
24415
|
+
"description": "You do not have permission to access this resource."
|
|
24416
|
+
},
|
|
24417
|
+
"404": {
|
|
24418
|
+
"description": "",
|
|
24419
|
+
"content": {
|
|
24420
|
+
"application/json": {
|
|
24421
|
+
"schema": {
|
|
24422
|
+
"$ref": "#/components/schemas/VercelNotFoundError"
|
|
24423
|
+
}
|
|
24424
|
+
}
|
|
24425
|
+
}
|
|
24426
|
+
}
|
|
24427
|
+
},
|
|
24428
|
+
"parameters": [
|
|
24429
|
+
{
|
|
24430
|
+
"name": "integrationConfigurationId",
|
|
24431
|
+
"in": "path",
|
|
24432
|
+
"required": true,
|
|
24433
|
+
"schema": {
|
|
24434
|
+
"type": "string"
|
|
24435
|
+
}
|
|
24436
|
+
},
|
|
24437
|
+
{
|
|
24438
|
+
"name": "resourceId",
|
|
24439
|
+
"in": "path",
|
|
24440
|
+
"required": true,
|
|
24441
|
+
"schema": {
|
|
24442
|
+
"type": "string"
|
|
24443
|
+
}
|
|
24444
|
+
}
|
|
24445
|
+
],
|
|
24446
|
+
"requestBody": {
|
|
24447
|
+
"content": {
|
|
24448
|
+
"application/json": {
|
|
24449
|
+
"schema": {
|
|
24450
|
+
"type": "object",
|
|
24451
|
+
"required": [
|
|
24452
|
+
"productId",
|
|
24453
|
+
"name",
|
|
24454
|
+
"status"
|
|
24455
|
+
],
|
|
24456
|
+
"properties": {
|
|
24457
|
+
"productId": {
|
|
24458
|
+
"type": "string"
|
|
24459
|
+
},
|
|
24460
|
+
"name": {
|
|
24461
|
+
"type": "string"
|
|
24462
|
+
},
|
|
24463
|
+
"status": {
|
|
24464
|
+
"type": "string",
|
|
24465
|
+
"enum": [
|
|
24466
|
+
"ready",
|
|
24467
|
+
"pending",
|
|
24468
|
+
"suspended",
|
|
24469
|
+
"resumed",
|
|
24470
|
+
"uninstalled",
|
|
24471
|
+
"error"
|
|
24472
|
+
]
|
|
24473
|
+
},
|
|
24474
|
+
"metadata": {
|
|
24475
|
+
"type": "object",
|
|
24476
|
+
"additionalProperties": true
|
|
24477
|
+
},
|
|
24478
|
+
"billingPlan": {
|
|
24479
|
+
"type": "object",
|
|
24480
|
+
"required": [
|
|
24481
|
+
"id",
|
|
24482
|
+
"type",
|
|
24483
|
+
"name"
|
|
24484
|
+
],
|
|
24485
|
+
"properties": {
|
|
24486
|
+
"id": {
|
|
24487
|
+
"type": "string"
|
|
24488
|
+
},
|
|
24489
|
+
"type": {
|
|
24490
|
+
"type": "string",
|
|
24491
|
+
"enum": [
|
|
24492
|
+
"prepayment",
|
|
24493
|
+
"subscription"
|
|
24494
|
+
]
|
|
24495
|
+
},
|
|
24496
|
+
"name": {
|
|
24497
|
+
"type": "string"
|
|
24498
|
+
},
|
|
24499
|
+
"description": {
|
|
24500
|
+
"type": "string"
|
|
24501
|
+
},
|
|
24502
|
+
"paymentMethodRequired": {
|
|
24503
|
+
"type": "boolean"
|
|
24504
|
+
},
|
|
24505
|
+
"cost": {
|
|
24506
|
+
"type": "string"
|
|
24507
|
+
},
|
|
24508
|
+
"details": {
|
|
24509
|
+
"type": "array",
|
|
24510
|
+
"items": {
|
|
24511
|
+
"type": "object",
|
|
24512
|
+
"properties": {
|
|
24513
|
+
"label": {
|
|
24514
|
+
"type": "string"
|
|
24515
|
+
},
|
|
24516
|
+
"value": {
|
|
24517
|
+
"type": "string"
|
|
24518
|
+
}
|
|
24519
|
+
},
|
|
24520
|
+
"required": [
|
|
24521
|
+
"label"
|
|
24522
|
+
],
|
|
24523
|
+
"additionalProperties": false
|
|
24524
|
+
}
|
|
24525
|
+
},
|
|
24526
|
+
"heightlightedDetails": {
|
|
24527
|
+
"type": "array",
|
|
24528
|
+
"items": {
|
|
24529
|
+
"type": "object",
|
|
24530
|
+
"properties": {
|
|
24531
|
+
"label": {
|
|
24532
|
+
"type": "string"
|
|
24533
|
+
},
|
|
24534
|
+
"value": {
|
|
24535
|
+
"type": "string"
|
|
24536
|
+
}
|
|
24537
|
+
},
|
|
24538
|
+
"required": [
|
|
24539
|
+
"label"
|
|
24540
|
+
],
|
|
24541
|
+
"additionalProperties": false
|
|
24542
|
+
}
|
|
24543
|
+
},
|
|
24544
|
+
"effectiveDate": {
|
|
24545
|
+
"type": "string"
|
|
24546
|
+
}
|
|
24547
|
+
},
|
|
24548
|
+
"additionalProperties": true
|
|
24549
|
+
},
|
|
24550
|
+
"notification": {
|
|
24551
|
+
"type": "object",
|
|
24552
|
+
"required": [
|
|
24553
|
+
"level",
|
|
24554
|
+
"title"
|
|
24555
|
+
],
|
|
24556
|
+
"properties": {
|
|
24557
|
+
"level": {
|
|
24558
|
+
"type": "string",
|
|
24559
|
+
"enum": [
|
|
24560
|
+
"info",
|
|
24561
|
+
"warn",
|
|
24562
|
+
"error"
|
|
24563
|
+
]
|
|
24564
|
+
},
|
|
24565
|
+
"title": {
|
|
24566
|
+
"type": "string"
|
|
24567
|
+
},
|
|
24568
|
+
"message": {
|
|
24569
|
+
"type": "string"
|
|
24570
|
+
},
|
|
24571
|
+
"href": {
|
|
24572
|
+
"type": "string",
|
|
24573
|
+
"format": "uri"
|
|
24574
|
+
}
|
|
24575
|
+
}
|
|
24576
|
+
},
|
|
24577
|
+
"secrets": {
|
|
24578
|
+
"type": "array",
|
|
24579
|
+
"items": {
|
|
24580
|
+
"type": "object",
|
|
24581
|
+
"required": [
|
|
24582
|
+
"name",
|
|
24583
|
+
"value"
|
|
24584
|
+
],
|
|
24585
|
+
"properties": {
|
|
24586
|
+
"name": {
|
|
24587
|
+
"type": "string"
|
|
24588
|
+
},
|
|
24589
|
+
"value": {
|
|
24590
|
+
"type": "string"
|
|
24591
|
+
},
|
|
24592
|
+
"prefix": {
|
|
24593
|
+
"type": "string"
|
|
24594
|
+
},
|
|
24595
|
+
"environmentOverrides": {
|
|
24596
|
+
"type": "object",
|
|
24597
|
+
"description": "A map of environments to override values for the secret, used for setting different values across deployments in production, preview, and development environments. Note: the same value will be used for all deployments in the given environment.",
|
|
24598
|
+
"properties": {
|
|
24599
|
+
"development": {
|
|
24600
|
+
"type": "string",
|
|
24601
|
+
"description": "Value used for development environment."
|
|
24602
|
+
},
|
|
24603
|
+
"preview": {
|
|
24604
|
+
"type": "string",
|
|
24605
|
+
"description": "Value used for preview environment."
|
|
24606
|
+
},
|
|
24607
|
+
"production": {
|
|
24608
|
+
"type": "string",
|
|
24609
|
+
"description": "Value used for production environment."
|
|
24610
|
+
}
|
|
24611
|
+
}
|
|
24612
|
+
}
|
|
24613
|
+
},
|
|
24614
|
+
"additionalProperties": false
|
|
24615
|
+
}
|
|
24616
|
+
}
|
|
24617
|
+
},
|
|
24618
|
+
"additionalProperties": false
|
|
24619
|
+
}
|
|
24620
|
+
}
|
|
24621
|
+
}
|
|
24622
|
+
}
|
|
24623
|
+
}
|
|
24624
|
+
},
|
|
24625
|
+
"/v1/installations/{integrationConfigurationId}/billing": {
|
|
24626
|
+
"post": {
|
|
24627
|
+
"description": "Sends the billing and usage data. The partner should do this at least once a day and ideally once per hour. \u003cbr/\u003e Use the `credentials.access_token` we provided in the [Upsert Installation](#upsert-installation) body to authorize this request.",
|
|
24628
|
+
"operationId": "submit-billing-data",
|
|
24629
|
+
"security": [
|
|
24630
|
+
{
|
|
24631
|
+
"bearerToken": []
|
|
24632
|
+
}
|
|
24633
|
+
],
|
|
24634
|
+
"summary": "Submit Billing Data",
|
|
24635
|
+
"tags": [
|
|
24636
|
+
"marketplace"
|
|
24637
|
+
],
|
|
24638
|
+
"responses": {
|
|
24639
|
+
"201": {
|
|
24640
|
+
"description": ""
|
|
24641
|
+
},
|
|
24642
|
+
"400": {
|
|
24643
|
+
"description": "One of the provided values in the request body is invalid.\nOne of the provided values in the request query is invalid.",
|
|
23225
24644
|
"content": {
|
|
23226
24645
|
"application/json": {
|
|
23227
24646
|
"schema": {
|
|
@@ -24547,269 +25966,6 @@
|
|
|
24547
25966
|
}
|
|
24548
25967
|
}
|
|
24549
25968
|
},
|
|
24550
|
-
"/v1/installations/{integrationConfigurationId}/resources/{resourceId}": {
|
|
24551
|
-
"put": {
|
|
24552
|
-
"description": "This endpoint imports (upserts) a resource to Vercel's installation. This may be needed if resources can be independently created on the partner's side and need to be synchronized to Vercel.",
|
|
24553
|
-
"operationId": "import-resource",
|
|
24554
|
-
"security": [
|
|
24555
|
-
{
|
|
24556
|
-
"bearerToken": []
|
|
24557
|
-
}
|
|
24558
|
-
],
|
|
24559
|
-
"summary": "Import Resource",
|
|
24560
|
-
"tags": [
|
|
24561
|
-
"marketplace"
|
|
24562
|
-
],
|
|
24563
|
-
"responses": {
|
|
24564
|
-
"200": {
|
|
24565
|
-
"description": "",
|
|
24566
|
-
"content": {
|
|
24567
|
-
"application/json": {
|
|
24568
|
-
"schema": {
|
|
24569
|
-
"properties": {
|
|
24570
|
-
"name": {
|
|
24571
|
-
"type": "string"
|
|
24572
|
-
}
|
|
24573
|
-
},
|
|
24574
|
-
"required": [
|
|
24575
|
-
"name"
|
|
24576
|
-
],
|
|
24577
|
-
"type": "object"
|
|
24578
|
-
}
|
|
24579
|
-
}
|
|
24580
|
-
}
|
|
24581
|
-
},
|
|
24582
|
-
"400": {
|
|
24583
|
-
"description": "One of the provided values in the request body is invalid.\nOne of the provided values in the request query is invalid.",
|
|
24584
|
-
"content": {
|
|
24585
|
-
"application/json": {
|
|
24586
|
-
"schema": {
|
|
24587
|
-
"$ref": "#/components/schemas/VercelBadRequestError"
|
|
24588
|
-
}
|
|
24589
|
-
}
|
|
24590
|
-
}
|
|
24591
|
-
},
|
|
24592
|
-
"401": {
|
|
24593
|
-
"description": "",
|
|
24594
|
-
"content": {
|
|
24595
|
-
"application/json": {
|
|
24596
|
-
"schema": {
|
|
24597
|
-
"$ref": "#/components/schemas/VercelForbiddenError"
|
|
24598
|
-
}
|
|
24599
|
-
}
|
|
24600
|
-
}
|
|
24601
|
-
},
|
|
24602
|
-
"403": {
|
|
24603
|
-
"description": "You do not have permission to access this resource."
|
|
24604
|
-
},
|
|
24605
|
-
"404": {
|
|
24606
|
-
"description": "",
|
|
24607
|
-
"content": {
|
|
24608
|
-
"application/json": {
|
|
24609
|
-
"schema": {
|
|
24610
|
-
"$ref": "#/components/schemas/VercelNotFoundError"
|
|
24611
|
-
}
|
|
24612
|
-
}
|
|
24613
|
-
}
|
|
24614
|
-
}
|
|
24615
|
-
},
|
|
24616
|
-
"parameters": [
|
|
24617
|
-
{
|
|
24618
|
-
"name": "integrationConfigurationId",
|
|
24619
|
-
"in": "path",
|
|
24620
|
-
"required": true,
|
|
24621
|
-
"schema": {
|
|
24622
|
-
"type": "string"
|
|
24623
|
-
}
|
|
24624
|
-
},
|
|
24625
|
-
{
|
|
24626
|
-
"name": "resourceId",
|
|
24627
|
-
"in": "path",
|
|
24628
|
-
"required": true,
|
|
24629
|
-
"schema": {
|
|
24630
|
-
"type": "string"
|
|
24631
|
-
}
|
|
24632
|
-
}
|
|
24633
|
-
],
|
|
24634
|
-
"requestBody": {
|
|
24635
|
-
"content": {
|
|
24636
|
-
"application/json": {
|
|
24637
|
-
"schema": {
|
|
24638
|
-
"type": "object",
|
|
24639
|
-
"required": [
|
|
24640
|
-
"productId",
|
|
24641
|
-
"name",
|
|
24642
|
-
"status"
|
|
24643
|
-
],
|
|
24644
|
-
"properties": {
|
|
24645
|
-
"productId": {
|
|
24646
|
-
"type": "string"
|
|
24647
|
-
},
|
|
24648
|
-
"name": {
|
|
24649
|
-
"type": "string"
|
|
24650
|
-
},
|
|
24651
|
-
"status": {
|
|
24652
|
-
"type": "string",
|
|
24653
|
-
"enum": [
|
|
24654
|
-
"ready",
|
|
24655
|
-
"pending",
|
|
24656
|
-
"suspended",
|
|
24657
|
-
"resumed",
|
|
24658
|
-
"uninstalled",
|
|
24659
|
-
"error"
|
|
24660
|
-
]
|
|
24661
|
-
},
|
|
24662
|
-
"metadata": {
|
|
24663
|
-
"type": "object",
|
|
24664
|
-
"additionalProperties": true
|
|
24665
|
-
},
|
|
24666
|
-
"billingPlan": {
|
|
24667
|
-
"type": "object",
|
|
24668
|
-
"required": [
|
|
24669
|
-
"id",
|
|
24670
|
-
"type",
|
|
24671
|
-
"name"
|
|
24672
|
-
],
|
|
24673
|
-
"properties": {
|
|
24674
|
-
"id": {
|
|
24675
|
-
"type": "string"
|
|
24676
|
-
},
|
|
24677
|
-
"type": {
|
|
24678
|
-
"type": "string",
|
|
24679
|
-
"enum": [
|
|
24680
|
-
"prepayment",
|
|
24681
|
-
"subscription"
|
|
24682
|
-
]
|
|
24683
|
-
},
|
|
24684
|
-
"name": {
|
|
24685
|
-
"type": "string"
|
|
24686
|
-
},
|
|
24687
|
-
"description": {
|
|
24688
|
-
"type": "string"
|
|
24689
|
-
},
|
|
24690
|
-
"paymentMethodRequired": {
|
|
24691
|
-
"type": "boolean"
|
|
24692
|
-
},
|
|
24693
|
-
"cost": {
|
|
24694
|
-
"type": "string"
|
|
24695
|
-
},
|
|
24696
|
-
"details": {
|
|
24697
|
-
"type": "array",
|
|
24698
|
-
"items": {
|
|
24699
|
-
"type": "object",
|
|
24700
|
-
"properties": {
|
|
24701
|
-
"label": {
|
|
24702
|
-
"type": "string"
|
|
24703
|
-
},
|
|
24704
|
-
"value": {
|
|
24705
|
-
"type": "string"
|
|
24706
|
-
}
|
|
24707
|
-
},
|
|
24708
|
-
"required": [
|
|
24709
|
-
"label"
|
|
24710
|
-
],
|
|
24711
|
-
"additionalProperties": false
|
|
24712
|
-
}
|
|
24713
|
-
},
|
|
24714
|
-
"heightlightedDetails": {
|
|
24715
|
-
"type": "array",
|
|
24716
|
-
"items": {
|
|
24717
|
-
"type": "object",
|
|
24718
|
-
"properties": {
|
|
24719
|
-
"label": {
|
|
24720
|
-
"type": "string"
|
|
24721
|
-
},
|
|
24722
|
-
"value": {
|
|
24723
|
-
"type": "string"
|
|
24724
|
-
}
|
|
24725
|
-
},
|
|
24726
|
-
"required": [
|
|
24727
|
-
"label"
|
|
24728
|
-
],
|
|
24729
|
-
"additionalProperties": false
|
|
24730
|
-
}
|
|
24731
|
-
},
|
|
24732
|
-
"effectiveDate": {
|
|
24733
|
-
"type": "string"
|
|
24734
|
-
}
|
|
24735
|
-
},
|
|
24736
|
-
"additionalProperties": true
|
|
24737
|
-
},
|
|
24738
|
-
"notification": {
|
|
24739
|
-
"type": "object",
|
|
24740
|
-
"required": [
|
|
24741
|
-
"level",
|
|
24742
|
-
"title"
|
|
24743
|
-
],
|
|
24744
|
-
"properties": {
|
|
24745
|
-
"level": {
|
|
24746
|
-
"type": "string",
|
|
24747
|
-
"enum": [
|
|
24748
|
-
"info",
|
|
24749
|
-
"warn",
|
|
24750
|
-
"error"
|
|
24751
|
-
]
|
|
24752
|
-
},
|
|
24753
|
-
"title": {
|
|
24754
|
-
"type": "string"
|
|
24755
|
-
},
|
|
24756
|
-
"message": {
|
|
24757
|
-
"type": "string"
|
|
24758
|
-
},
|
|
24759
|
-
"href": {
|
|
24760
|
-
"type": "string",
|
|
24761
|
-
"format": "uri"
|
|
24762
|
-
}
|
|
24763
|
-
}
|
|
24764
|
-
},
|
|
24765
|
-
"secrets": {
|
|
24766
|
-
"type": "array",
|
|
24767
|
-
"items": {
|
|
24768
|
-
"type": "object",
|
|
24769
|
-
"required": [
|
|
24770
|
-
"name",
|
|
24771
|
-
"value"
|
|
24772
|
-
],
|
|
24773
|
-
"properties": {
|
|
24774
|
-
"name": {
|
|
24775
|
-
"type": "string"
|
|
24776
|
-
},
|
|
24777
|
-
"value": {
|
|
24778
|
-
"type": "string"
|
|
24779
|
-
},
|
|
24780
|
-
"prefix": {
|
|
24781
|
-
"type": "string"
|
|
24782
|
-
},
|
|
24783
|
-
"environmentOverrides": {
|
|
24784
|
-
"type": "object",
|
|
24785
|
-
"description": "A map of environments to override values for the secret, used for setting different values across deployments in production, preview, and development environments. Note: the same value will be used for all deployments in the given environment.",
|
|
24786
|
-
"properties": {
|
|
24787
|
-
"development": {
|
|
24788
|
-
"type": "string",
|
|
24789
|
-
"description": "Value used for development environment."
|
|
24790
|
-
},
|
|
24791
|
-
"preview": {
|
|
24792
|
-
"type": "string",
|
|
24793
|
-
"description": "Value used for preview environment."
|
|
24794
|
-
},
|
|
24795
|
-
"production": {
|
|
24796
|
-
"type": "string",
|
|
24797
|
-
"description": "Value used for production environment."
|
|
24798
|
-
}
|
|
24799
|
-
}
|
|
24800
|
-
}
|
|
24801
|
-
},
|
|
24802
|
-
"additionalProperties": false
|
|
24803
|
-
}
|
|
24804
|
-
}
|
|
24805
|
-
},
|
|
24806
|
-
"additionalProperties": false
|
|
24807
|
-
}
|
|
24808
|
-
}
|
|
24809
|
-
}
|
|
24810
|
-
}
|
|
24811
|
-
}
|
|
24812
|
-
},
|
|
24813
25969
|
"/v1/integrations/configurations": {
|
|
24814
25970
|
"get": {
|
|
24815
25971
|
"description": "Allows to retrieve all configurations for an authenticated integration. When the `project` view is used, configurations generated for the authorization flow will be filtered out of the results.",
|
|
@@ -31848,6 +33004,9 @@
|
|
|
31848
33004
|
"owasp"
|
|
31849
33005
|
],
|
|
31850
33006
|
"type": "object"
|
|
33007
|
+
},
|
|
33008
|
+
"botIdEnabled": {
|
|
33009
|
+
"type": "boolean"
|
|
31851
33010
|
}
|
|
31852
33011
|
},
|
|
31853
33012
|
"type": "object"
|
|
@@ -32385,10 +33544,10 @@
|
|
|
32385
33544
|
"type": "string",
|
|
32386
33545
|
"enum": [
|
|
32387
33546
|
"system",
|
|
32388
|
-
"secret",
|
|
32389
33547
|
"encrypted",
|
|
32390
33548
|
"plain",
|
|
32391
|
-
"sensitive"
|
|
33549
|
+
"sensitive",
|
|
33550
|
+
"secret"
|
|
32392
33551
|
]
|
|
32393
33552
|
},
|
|
32394
33553
|
"sunsetSecretId": {
|
|
@@ -34256,6 +35415,390 @@
|
|
|
34256
35415
|
},
|
|
34257
35416
|
"permissions": {
|
|
34258
35417
|
"properties": {
|
|
35418
|
+
"aliasProject": {
|
|
35419
|
+
"items": {
|
|
35420
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35421
|
+
},
|
|
35422
|
+
"type": "array"
|
|
35423
|
+
},
|
|
35424
|
+
"aliasProtectionBypass": {
|
|
35425
|
+
"items": {
|
|
35426
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35427
|
+
},
|
|
35428
|
+
"type": "array"
|
|
35429
|
+
},
|
|
35430
|
+
"buildMachine": {
|
|
35431
|
+
"items": {
|
|
35432
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35433
|
+
},
|
|
35434
|
+
"type": "array"
|
|
35435
|
+
},
|
|
35436
|
+
"productionAliasProtectionBypass": {
|
|
35437
|
+
"items": {
|
|
35438
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35439
|
+
},
|
|
35440
|
+
"type": "array"
|
|
35441
|
+
},
|
|
35442
|
+
"connectConfigurationLink": {
|
|
35443
|
+
"items": {
|
|
35444
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35445
|
+
},
|
|
35446
|
+
"type": "array"
|
|
35447
|
+
},
|
|
35448
|
+
"dataCacheNamespace": {
|
|
35449
|
+
"items": {
|
|
35450
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35451
|
+
},
|
|
35452
|
+
"type": "array"
|
|
35453
|
+
},
|
|
35454
|
+
"deployment": {
|
|
35455
|
+
"items": {
|
|
35456
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35457
|
+
},
|
|
35458
|
+
"type": "array"
|
|
35459
|
+
},
|
|
35460
|
+
"deploymentCheck": {
|
|
35461
|
+
"items": {
|
|
35462
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35463
|
+
},
|
|
35464
|
+
"type": "array"
|
|
35465
|
+
},
|
|
35466
|
+
"deploymentCheckPreview": {
|
|
35467
|
+
"items": {
|
|
35468
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35469
|
+
},
|
|
35470
|
+
"type": "array"
|
|
35471
|
+
},
|
|
35472
|
+
"deploymentCheckReRunFromProductionBranch": {
|
|
35473
|
+
"items": {
|
|
35474
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35475
|
+
},
|
|
35476
|
+
"type": "array"
|
|
35477
|
+
},
|
|
35478
|
+
"deploymentProductionGit": {
|
|
35479
|
+
"items": {
|
|
35480
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35481
|
+
},
|
|
35482
|
+
"type": "array"
|
|
35483
|
+
},
|
|
35484
|
+
"deploymentV0": {
|
|
35485
|
+
"items": {
|
|
35486
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35487
|
+
},
|
|
35488
|
+
"type": "array"
|
|
35489
|
+
},
|
|
35490
|
+
"deploymentPreview": {
|
|
35491
|
+
"items": {
|
|
35492
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35493
|
+
},
|
|
35494
|
+
"type": "array"
|
|
35495
|
+
},
|
|
35496
|
+
"deploymentPrivate": {
|
|
35497
|
+
"items": {
|
|
35498
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35499
|
+
},
|
|
35500
|
+
"type": "array"
|
|
35501
|
+
},
|
|
35502
|
+
"deploymentPromote": {
|
|
35503
|
+
"items": {
|
|
35504
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35505
|
+
},
|
|
35506
|
+
"type": "array"
|
|
35507
|
+
},
|
|
35508
|
+
"deploymentRollback": {
|
|
35509
|
+
"items": {
|
|
35510
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35511
|
+
},
|
|
35512
|
+
"type": "array"
|
|
35513
|
+
},
|
|
35514
|
+
"edgeCacheNamespace": {
|
|
35515
|
+
"items": {
|
|
35516
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35517
|
+
},
|
|
35518
|
+
"type": "array"
|
|
35519
|
+
},
|
|
35520
|
+
"environments": {
|
|
35521
|
+
"items": {
|
|
35522
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35523
|
+
},
|
|
35524
|
+
"type": "array"
|
|
35525
|
+
},
|
|
35526
|
+
"logs": {
|
|
35527
|
+
"items": {
|
|
35528
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35529
|
+
},
|
|
35530
|
+
"type": "array"
|
|
35531
|
+
},
|
|
35532
|
+
"logsPreset": {
|
|
35533
|
+
"items": {
|
|
35534
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35535
|
+
},
|
|
35536
|
+
"type": "array"
|
|
35537
|
+
},
|
|
35538
|
+
"passwordProtection": {
|
|
35539
|
+
"items": {
|
|
35540
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35541
|
+
},
|
|
35542
|
+
"type": "array"
|
|
35543
|
+
},
|
|
35544
|
+
"optionsAllowlist": {
|
|
35545
|
+
"items": {
|
|
35546
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35547
|
+
},
|
|
35548
|
+
"type": "array"
|
|
35549
|
+
},
|
|
35550
|
+
"job": {
|
|
35551
|
+
"items": {
|
|
35552
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35553
|
+
},
|
|
35554
|
+
"type": "array"
|
|
35555
|
+
},
|
|
35556
|
+
"observabilityData": {
|
|
35557
|
+
"items": {
|
|
35558
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35559
|
+
},
|
|
35560
|
+
"type": "array"
|
|
35561
|
+
},
|
|
35562
|
+
"onDemandBuild": {
|
|
35563
|
+
"items": {
|
|
35564
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35565
|
+
},
|
|
35566
|
+
"type": "array"
|
|
35567
|
+
},
|
|
35568
|
+
"onDemandConcurrency": {
|
|
35569
|
+
"items": {
|
|
35570
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35571
|
+
},
|
|
35572
|
+
"type": "array"
|
|
35573
|
+
},
|
|
35574
|
+
"project": {
|
|
35575
|
+
"items": {
|
|
35576
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35577
|
+
},
|
|
35578
|
+
"type": "array"
|
|
35579
|
+
},
|
|
35580
|
+
"projectFromV0": {
|
|
35581
|
+
"items": {
|
|
35582
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35583
|
+
},
|
|
35584
|
+
"type": "array"
|
|
35585
|
+
},
|
|
35586
|
+
"projectAccessGroup": {
|
|
35587
|
+
"items": {
|
|
35588
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35589
|
+
},
|
|
35590
|
+
"type": "array"
|
|
35591
|
+
},
|
|
35592
|
+
"projectAnalyticsSampling": {
|
|
35593
|
+
"items": {
|
|
35594
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35595
|
+
},
|
|
35596
|
+
"type": "array"
|
|
35597
|
+
},
|
|
35598
|
+
"projectCheck": {
|
|
35599
|
+
"items": {
|
|
35600
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35601
|
+
},
|
|
35602
|
+
"type": "array"
|
|
35603
|
+
},
|
|
35604
|
+
"projectCheckRun": {
|
|
35605
|
+
"items": {
|
|
35606
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35607
|
+
},
|
|
35608
|
+
"type": "array"
|
|
35609
|
+
},
|
|
35610
|
+
"projectDeploymentHook": {
|
|
35611
|
+
"items": {
|
|
35612
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35613
|
+
},
|
|
35614
|
+
"type": "array"
|
|
35615
|
+
},
|
|
35616
|
+
"projectDomain": {
|
|
35617
|
+
"items": {
|
|
35618
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35619
|
+
},
|
|
35620
|
+
"type": "array"
|
|
35621
|
+
},
|
|
35622
|
+
"projectDomainMove": {
|
|
35623
|
+
"items": {
|
|
35624
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35625
|
+
},
|
|
35626
|
+
"type": "array"
|
|
35627
|
+
},
|
|
35628
|
+
"projectDomainCheckConfig": {
|
|
35629
|
+
"items": {
|
|
35630
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35631
|
+
},
|
|
35632
|
+
"type": "array"
|
|
35633
|
+
},
|
|
35634
|
+
"projectEnvVars": {
|
|
35635
|
+
"items": {
|
|
35636
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35637
|
+
},
|
|
35638
|
+
"type": "array"
|
|
35639
|
+
},
|
|
35640
|
+
"projectEnvVarsProduction": {
|
|
35641
|
+
"items": {
|
|
35642
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35643
|
+
},
|
|
35644
|
+
"type": "array"
|
|
35645
|
+
},
|
|
35646
|
+
"projectEnvVarsUnownedByIntegration": {
|
|
35647
|
+
"items": {
|
|
35648
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35649
|
+
},
|
|
35650
|
+
"type": "array"
|
|
35651
|
+
},
|
|
35652
|
+
"projectFlags": {
|
|
35653
|
+
"items": {
|
|
35654
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35655
|
+
},
|
|
35656
|
+
"type": "array"
|
|
35657
|
+
},
|
|
35658
|
+
"projectId": {
|
|
35659
|
+
"items": {
|
|
35660
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35661
|
+
},
|
|
35662
|
+
"type": "array"
|
|
35663
|
+
},
|
|
35664
|
+
"projectIntegrationConfiguration": {
|
|
35665
|
+
"items": {
|
|
35666
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35667
|
+
},
|
|
35668
|
+
"type": "array"
|
|
35669
|
+
},
|
|
35670
|
+
"projectLink": {
|
|
35671
|
+
"items": {
|
|
35672
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35673
|
+
},
|
|
35674
|
+
"type": "array"
|
|
35675
|
+
},
|
|
35676
|
+
"projectMember": {
|
|
35677
|
+
"items": {
|
|
35678
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35679
|
+
},
|
|
35680
|
+
"type": "array"
|
|
35681
|
+
},
|
|
35682
|
+
"projectMonitoring": {
|
|
35683
|
+
"items": {
|
|
35684
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35685
|
+
},
|
|
35686
|
+
"type": "array"
|
|
35687
|
+
},
|
|
35688
|
+
"projectPermissions": {
|
|
35689
|
+
"items": {
|
|
35690
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35691
|
+
},
|
|
35692
|
+
"type": "array"
|
|
35693
|
+
},
|
|
35694
|
+
"projectProductionBranch": {
|
|
35695
|
+
"items": {
|
|
35696
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35697
|
+
},
|
|
35698
|
+
"type": "array"
|
|
35699
|
+
},
|
|
35700
|
+
"projectTransfer": {
|
|
35701
|
+
"items": {
|
|
35702
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35703
|
+
},
|
|
35704
|
+
"type": "array"
|
|
35705
|
+
},
|
|
35706
|
+
"projectTransferOut": {
|
|
35707
|
+
"items": {
|
|
35708
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35709
|
+
},
|
|
35710
|
+
"type": "array"
|
|
35711
|
+
},
|
|
35712
|
+
"projectProtectionBypass": {
|
|
35713
|
+
"items": {
|
|
35714
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35715
|
+
},
|
|
35716
|
+
"type": "array"
|
|
35717
|
+
},
|
|
35718
|
+
"projectUsage": {
|
|
35719
|
+
"items": {
|
|
35720
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35721
|
+
},
|
|
35722
|
+
"type": "array"
|
|
35723
|
+
},
|
|
35724
|
+
"projectAnalyticsUsage": {
|
|
35725
|
+
"items": {
|
|
35726
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35727
|
+
},
|
|
35728
|
+
"type": "array"
|
|
35729
|
+
},
|
|
35730
|
+
"projectSupportCase": {
|
|
35731
|
+
"items": {
|
|
35732
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35733
|
+
},
|
|
35734
|
+
"type": "array"
|
|
35735
|
+
},
|
|
35736
|
+
"projectSupportCaseComment": {
|
|
35737
|
+
"items": {
|
|
35738
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35739
|
+
},
|
|
35740
|
+
"type": "array"
|
|
35741
|
+
},
|
|
35742
|
+
"projectDeploymentExpiration": {
|
|
35743
|
+
"items": {
|
|
35744
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35745
|
+
},
|
|
35746
|
+
"type": "array"
|
|
35747
|
+
},
|
|
35748
|
+
"projectRollingRelease": {
|
|
35749
|
+
"items": {
|
|
35750
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35751
|
+
},
|
|
35752
|
+
"type": "array"
|
|
35753
|
+
},
|
|
35754
|
+
"projectTier": {
|
|
35755
|
+
"items": {
|
|
35756
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35757
|
+
},
|
|
35758
|
+
"type": "array"
|
|
35759
|
+
},
|
|
35760
|
+
"seawallConfig": {
|
|
35761
|
+
"items": {
|
|
35762
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35763
|
+
},
|
|
35764
|
+
"type": "array"
|
|
35765
|
+
},
|
|
35766
|
+
"skewProtection": {
|
|
35767
|
+
"items": {
|
|
35768
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35769
|
+
},
|
|
35770
|
+
"type": "array"
|
|
35771
|
+
},
|
|
35772
|
+
"analytics": {
|
|
35773
|
+
"items": {
|
|
35774
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35775
|
+
},
|
|
35776
|
+
"type": "array"
|
|
35777
|
+
},
|
|
35778
|
+
"trustedIps": {
|
|
35779
|
+
"items": {
|
|
35780
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35781
|
+
},
|
|
35782
|
+
"type": "array"
|
|
35783
|
+
},
|
|
35784
|
+
"webAnalytics": {
|
|
35785
|
+
"items": {
|
|
35786
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35787
|
+
},
|
|
35788
|
+
"type": "array"
|
|
35789
|
+
},
|
|
35790
|
+
"sharedEnvVarConnection": {
|
|
35791
|
+
"items": {
|
|
35792
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35793
|
+
},
|
|
35794
|
+
"type": "array"
|
|
35795
|
+
},
|
|
35796
|
+
"sonar": {
|
|
35797
|
+
"items": {
|
|
35798
|
+
"$ref": "#/components/schemas/ACLAction"
|
|
35799
|
+
},
|
|
35800
|
+
"type": "array"
|
|
35801
|
+
},
|
|
34259
35802
|
"user": {
|
|
34260
35803
|
"items": {
|
|
34261
35804
|
"$ref": "#/components/schemas/ACLAction"
|
|
@@ -35089,390 +36632,6 @@
|
|
|
35089
36632
|
"$ref": "#/components/schemas/ACLAction"
|
|
35090
36633
|
},
|
|
35091
36634
|
"type": "array"
|
|
35092
|
-
},
|
|
35093
|
-
"aliasProject": {
|
|
35094
|
-
"items": {
|
|
35095
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35096
|
-
},
|
|
35097
|
-
"type": "array"
|
|
35098
|
-
},
|
|
35099
|
-
"aliasProtectionBypass": {
|
|
35100
|
-
"items": {
|
|
35101
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35102
|
-
},
|
|
35103
|
-
"type": "array"
|
|
35104
|
-
},
|
|
35105
|
-
"buildMachine": {
|
|
35106
|
-
"items": {
|
|
35107
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35108
|
-
},
|
|
35109
|
-
"type": "array"
|
|
35110
|
-
},
|
|
35111
|
-
"productionAliasProtectionBypass": {
|
|
35112
|
-
"items": {
|
|
35113
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35114
|
-
},
|
|
35115
|
-
"type": "array"
|
|
35116
|
-
},
|
|
35117
|
-
"connectConfigurationLink": {
|
|
35118
|
-
"items": {
|
|
35119
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35120
|
-
},
|
|
35121
|
-
"type": "array"
|
|
35122
|
-
},
|
|
35123
|
-
"dataCacheNamespace": {
|
|
35124
|
-
"items": {
|
|
35125
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35126
|
-
},
|
|
35127
|
-
"type": "array"
|
|
35128
|
-
},
|
|
35129
|
-
"deployment": {
|
|
35130
|
-
"items": {
|
|
35131
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35132
|
-
},
|
|
35133
|
-
"type": "array"
|
|
35134
|
-
},
|
|
35135
|
-
"deploymentCheck": {
|
|
35136
|
-
"items": {
|
|
35137
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35138
|
-
},
|
|
35139
|
-
"type": "array"
|
|
35140
|
-
},
|
|
35141
|
-
"deploymentCheckPreview": {
|
|
35142
|
-
"items": {
|
|
35143
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35144
|
-
},
|
|
35145
|
-
"type": "array"
|
|
35146
|
-
},
|
|
35147
|
-
"deploymentCheckReRunFromProductionBranch": {
|
|
35148
|
-
"items": {
|
|
35149
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35150
|
-
},
|
|
35151
|
-
"type": "array"
|
|
35152
|
-
},
|
|
35153
|
-
"deploymentProductionGit": {
|
|
35154
|
-
"items": {
|
|
35155
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35156
|
-
},
|
|
35157
|
-
"type": "array"
|
|
35158
|
-
},
|
|
35159
|
-
"deploymentV0": {
|
|
35160
|
-
"items": {
|
|
35161
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35162
|
-
},
|
|
35163
|
-
"type": "array"
|
|
35164
|
-
},
|
|
35165
|
-
"deploymentPreview": {
|
|
35166
|
-
"items": {
|
|
35167
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35168
|
-
},
|
|
35169
|
-
"type": "array"
|
|
35170
|
-
},
|
|
35171
|
-
"deploymentPrivate": {
|
|
35172
|
-
"items": {
|
|
35173
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35174
|
-
},
|
|
35175
|
-
"type": "array"
|
|
35176
|
-
},
|
|
35177
|
-
"deploymentPromote": {
|
|
35178
|
-
"items": {
|
|
35179
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35180
|
-
},
|
|
35181
|
-
"type": "array"
|
|
35182
|
-
},
|
|
35183
|
-
"deploymentRollback": {
|
|
35184
|
-
"items": {
|
|
35185
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35186
|
-
},
|
|
35187
|
-
"type": "array"
|
|
35188
|
-
},
|
|
35189
|
-
"edgeCacheNamespace": {
|
|
35190
|
-
"items": {
|
|
35191
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35192
|
-
},
|
|
35193
|
-
"type": "array"
|
|
35194
|
-
},
|
|
35195
|
-
"environments": {
|
|
35196
|
-
"items": {
|
|
35197
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35198
|
-
},
|
|
35199
|
-
"type": "array"
|
|
35200
|
-
},
|
|
35201
|
-
"logs": {
|
|
35202
|
-
"items": {
|
|
35203
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35204
|
-
},
|
|
35205
|
-
"type": "array"
|
|
35206
|
-
},
|
|
35207
|
-
"logsPreset": {
|
|
35208
|
-
"items": {
|
|
35209
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35210
|
-
},
|
|
35211
|
-
"type": "array"
|
|
35212
|
-
},
|
|
35213
|
-
"passwordProtection": {
|
|
35214
|
-
"items": {
|
|
35215
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35216
|
-
},
|
|
35217
|
-
"type": "array"
|
|
35218
|
-
},
|
|
35219
|
-
"optionsAllowlist": {
|
|
35220
|
-
"items": {
|
|
35221
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35222
|
-
},
|
|
35223
|
-
"type": "array"
|
|
35224
|
-
},
|
|
35225
|
-
"job": {
|
|
35226
|
-
"items": {
|
|
35227
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35228
|
-
},
|
|
35229
|
-
"type": "array"
|
|
35230
|
-
},
|
|
35231
|
-
"observabilityData": {
|
|
35232
|
-
"items": {
|
|
35233
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35234
|
-
},
|
|
35235
|
-
"type": "array"
|
|
35236
|
-
},
|
|
35237
|
-
"onDemandBuild": {
|
|
35238
|
-
"items": {
|
|
35239
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35240
|
-
},
|
|
35241
|
-
"type": "array"
|
|
35242
|
-
},
|
|
35243
|
-
"onDemandConcurrency": {
|
|
35244
|
-
"items": {
|
|
35245
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35246
|
-
},
|
|
35247
|
-
"type": "array"
|
|
35248
|
-
},
|
|
35249
|
-
"project": {
|
|
35250
|
-
"items": {
|
|
35251
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35252
|
-
},
|
|
35253
|
-
"type": "array"
|
|
35254
|
-
},
|
|
35255
|
-
"projectFromV0": {
|
|
35256
|
-
"items": {
|
|
35257
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35258
|
-
},
|
|
35259
|
-
"type": "array"
|
|
35260
|
-
},
|
|
35261
|
-
"projectAccessGroup": {
|
|
35262
|
-
"items": {
|
|
35263
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35264
|
-
},
|
|
35265
|
-
"type": "array"
|
|
35266
|
-
},
|
|
35267
|
-
"projectAnalyticsSampling": {
|
|
35268
|
-
"items": {
|
|
35269
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35270
|
-
},
|
|
35271
|
-
"type": "array"
|
|
35272
|
-
},
|
|
35273
|
-
"projectCheck": {
|
|
35274
|
-
"items": {
|
|
35275
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35276
|
-
},
|
|
35277
|
-
"type": "array"
|
|
35278
|
-
},
|
|
35279
|
-
"projectCheckRun": {
|
|
35280
|
-
"items": {
|
|
35281
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35282
|
-
},
|
|
35283
|
-
"type": "array"
|
|
35284
|
-
},
|
|
35285
|
-
"projectDeploymentHook": {
|
|
35286
|
-
"items": {
|
|
35287
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35288
|
-
},
|
|
35289
|
-
"type": "array"
|
|
35290
|
-
},
|
|
35291
|
-
"projectDomain": {
|
|
35292
|
-
"items": {
|
|
35293
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35294
|
-
},
|
|
35295
|
-
"type": "array"
|
|
35296
|
-
},
|
|
35297
|
-
"projectDomainMove": {
|
|
35298
|
-
"items": {
|
|
35299
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35300
|
-
},
|
|
35301
|
-
"type": "array"
|
|
35302
|
-
},
|
|
35303
|
-
"projectDomainCheckConfig": {
|
|
35304
|
-
"items": {
|
|
35305
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35306
|
-
},
|
|
35307
|
-
"type": "array"
|
|
35308
|
-
},
|
|
35309
|
-
"projectEnvVars": {
|
|
35310
|
-
"items": {
|
|
35311
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35312
|
-
},
|
|
35313
|
-
"type": "array"
|
|
35314
|
-
},
|
|
35315
|
-
"projectEnvVarsProduction": {
|
|
35316
|
-
"items": {
|
|
35317
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35318
|
-
},
|
|
35319
|
-
"type": "array"
|
|
35320
|
-
},
|
|
35321
|
-
"projectEnvVarsUnownedByIntegration": {
|
|
35322
|
-
"items": {
|
|
35323
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35324
|
-
},
|
|
35325
|
-
"type": "array"
|
|
35326
|
-
},
|
|
35327
|
-
"projectFlags": {
|
|
35328
|
-
"items": {
|
|
35329
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35330
|
-
},
|
|
35331
|
-
"type": "array"
|
|
35332
|
-
},
|
|
35333
|
-
"projectId": {
|
|
35334
|
-
"items": {
|
|
35335
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35336
|
-
},
|
|
35337
|
-
"type": "array"
|
|
35338
|
-
},
|
|
35339
|
-
"projectIntegrationConfiguration": {
|
|
35340
|
-
"items": {
|
|
35341
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35342
|
-
},
|
|
35343
|
-
"type": "array"
|
|
35344
|
-
},
|
|
35345
|
-
"projectLink": {
|
|
35346
|
-
"items": {
|
|
35347
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35348
|
-
},
|
|
35349
|
-
"type": "array"
|
|
35350
|
-
},
|
|
35351
|
-
"projectMember": {
|
|
35352
|
-
"items": {
|
|
35353
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35354
|
-
},
|
|
35355
|
-
"type": "array"
|
|
35356
|
-
},
|
|
35357
|
-
"projectMonitoring": {
|
|
35358
|
-
"items": {
|
|
35359
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35360
|
-
},
|
|
35361
|
-
"type": "array"
|
|
35362
|
-
},
|
|
35363
|
-
"projectPermissions": {
|
|
35364
|
-
"items": {
|
|
35365
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35366
|
-
},
|
|
35367
|
-
"type": "array"
|
|
35368
|
-
},
|
|
35369
|
-
"projectProductionBranch": {
|
|
35370
|
-
"items": {
|
|
35371
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35372
|
-
},
|
|
35373
|
-
"type": "array"
|
|
35374
|
-
},
|
|
35375
|
-
"projectTransfer": {
|
|
35376
|
-
"items": {
|
|
35377
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35378
|
-
},
|
|
35379
|
-
"type": "array"
|
|
35380
|
-
},
|
|
35381
|
-
"projectTransferOut": {
|
|
35382
|
-
"items": {
|
|
35383
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35384
|
-
},
|
|
35385
|
-
"type": "array"
|
|
35386
|
-
},
|
|
35387
|
-
"projectProtectionBypass": {
|
|
35388
|
-
"items": {
|
|
35389
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35390
|
-
},
|
|
35391
|
-
"type": "array"
|
|
35392
|
-
},
|
|
35393
|
-
"projectUsage": {
|
|
35394
|
-
"items": {
|
|
35395
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35396
|
-
},
|
|
35397
|
-
"type": "array"
|
|
35398
|
-
},
|
|
35399
|
-
"projectAnalyticsUsage": {
|
|
35400
|
-
"items": {
|
|
35401
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35402
|
-
},
|
|
35403
|
-
"type": "array"
|
|
35404
|
-
},
|
|
35405
|
-
"projectSupportCase": {
|
|
35406
|
-
"items": {
|
|
35407
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35408
|
-
},
|
|
35409
|
-
"type": "array"
|
|
35410
|
-
},
|
|
35411
|
-
"projectSupportCaseComment": {
|
|
35412
|
-
"items": {
|
|
35413
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35414
|
-
},
|
|
35415
|
-
"type": "array"
|
|
35416
|
-
},
|
|
35417
|
-
"projectDeploymentExpiration": {
|
|
35418
|
-
"items": {
|
|
35419
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35420
|
-
},
|
|
35421
|
-
"type": "array"
|
|
35422
|
-
},
|
|
35423
|
-
"projectRollingRelease": {
|
|
35424
|
-
"items": {
|
|
35425
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35426
|
-
},
|
|
35427
|
-
"type": "array"
|
|
35428
|
-
},
|
|
35429
|
-
"projectTier": {
|
|
35430
|
-
"items": {
|
|
35431
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35432
|
-
},
|
|
35433
|
-
"type": "array"
|
|
35434
|
-
},
|
|
35435
|
-
"seawallConfig": {
|
|
35436
|
-
"items": {
|
|
35437
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35438
|
-
},
|
|
35439
|
-
"type": "array"
|
|
35440
|
-
},
|
|
35441
|
-
"skewProtection": {
|
|
35442
|
-
"items": {
|
|
35443
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35444
|
-
},
|
|
35445
|
-
"type": "array"
|
|
35446
|
-
},
|
|
35447
|
-
"analytics": {
|
|
35448
|
-
"items": {
|
|
35449
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35450
|
-
},
|
|
35451
|
-
"type": "array"
|
|
35452
|
-
},
|
|
35453
|
-
"trustedIps": {
|
|
35454
|
-
"items": {
|
|
35455
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35456
|
-
},
|
|
35457
|
-
"type": "array"
|
|
35458
|
-
},
|
|
35459
|
-
"webAnalytics": {
|
|
35460
|
-
"items": {
|
|
35461
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35462
|
-
},
|
|
35463
|
-
"type": "array"
|
|
35464
|
-
},
|
|
35465
|
-
"sharedEnvVarConnection": {
|
|
35466
|
-
"items": {
|
|
35467
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35468
|
-
},
|
|
35469
|
-
"type": "array"
|
|
35470
|
-
},
|
|
35471
|
-
"sonar": {
|
|
35472
|
-
"items": {
|
|
35473
|
-
"$ref": "#/components/schemas/ACLAction"
|
|
35474
|
-
},
|
|
35475
|
-
"type": "array"
|
|
35476
36635
|
}
|
|
35477
36636
|
},
|
|
35478
36637
|
"type": "object"
|
|
@@ -35794,8 +36953,8 @@
|
|
|
35794
36953
|
"type": {
|
|
35795
36954
|
"type": "string",
|
|
35796
36955
|
"enum": [
|
|
35797
|
-
"host",
|
|
35798
36956
|
"path",
|
|
36957
|
+
"host",
|
|
35799
36958
|
"method",
|
|
35800
36959
|
"header",
|
|
35801
36960
|
"cookie",
|
|
@@ -35876,8 +37035,8 @@
|
|
|
35876
37035
|
"type": {
|
|
35877
37036
|
"type": "string",
|
|
35878
37037
|
"enum": [
|
|
35879
|
-
"host",
|
|
35880
37038
|
"path",
|
|
37039
|
+
"host",
|
|
35881
37040
|
"method",
|
|
35882
37041
|
"header",
|
|
35883
37042
|
"cookie",
|
|
@@ -36108,6 +37267,9 @@
|
|
|
36108
37267
|
"owasp"
|
|
36109
37268
|
],
|
|
36110
37269
|
"type": "object"
|
|
37270
|
+
},
|
|
37271
|
+
"botIdEnabled": {
|
|
37272
|
+
"type": "boolean"
|
|
36111
37273
|
}
|
|
36112
37274
|
},
|
|
36113
37275
|
"type": "object"
|
|
@@ -36864,10 +38026,10 @@
|
|
|
36864
38026
|
"type": "string",
|
|
36865
38027
|
"enum": [
|
|
36866
38028
|
"system",
|
|
36867
|
-
"secret",
|
|
36868
38029
|
"encrypted",
|
|
36869
38030
|
"plain",
|
|
36870
|
-
"sensitive"
|
|
38031
|
+
"sensitive",
|
|
38032
|
+
"secret"
|
|
36871
38033
|
]
|
|
36872
38034
|
},
|
|
36873
38035
|
"sunsetSecretId": {
|
|
@@ -40273,8 +41435,8 @@
|
|
|
40273
41435
|
"type": {
|
|
40274
41436
|
"type": "string",
|
|
40275
41437
|
"enum": [
|
|
40276
|
-
"host",
|
|
40277
41438
|
"path",
|
|
41439
|
+
"host",
|
|
40278
41440
|
"method",
|
|
40279
41441
|
"header",
|
|
40280
41442
|
"cookie",
|
|
@@ -40355,8 +41517,8 @@
|
|
|
40355
41517
|
"type": {
|
|
40356
41518
|
"type": "string",
|
|
40357
41519
|
"enum": [
|
|
40358
|
-
"host",
|
|
40359
41520
|
"path",
|
|
41521
|
+
"host",
|
|
40360
41522
|
"method",
|
|
40361
41523
|
"header",
|
|
40362
41524
|
"cookie",
|
|
@@ -40587,6 +41749,9 @@
|
|
|
40587
41749
|
"owasp"
|
|
40588
41750
|
],
|
|
40589
41751
|
"type": "object"
|
|
41752
|
+
},
|
|
41753
|
+
"botIdEnabled": {
|
|
41754
|
+
"type": "boolean"
|
|
40590
41755
|
}
|
|
40591
41756
|
},
|
|
40592
41757
|
"type": "object"
|
|
@@ -41013,10 +42178,10 @@
|
|
|
41013
42178
|
"type": "string",
|
|
41014
42179
|
"enum": [
|
|
41015
42180
|
"system",
|
|
41016
|
-
"secret",
|
|
41017
42181
|
"encrypted",
|
|
41018
42182
|
"plain",
|
|
41019
|
-
"sensitive"
|
|
42183
|
+
"sensitive",
|
|
42184
|
+
"secret"
|
|
41020
42185
|
]
|
|
41021
42186
|
},
|
|
41022
42187
|
"sunsetSecretId": {
|
|
@@ -42884,1219 +44049,1219 @@
|
|
|
42884
44049
|
},
|
|
42885
44050
|
"permissions": {
|
|
42886
44051
|
"properties": {
|
|
42887
|
-
"
|
|
44052
|
+
"aliasProject": {
|
|
42888
44053
|
"items": {
|
|
42889
44054
|
"$ref": "#/components/schemas/ACLAction"
|
|
42890
44055
|
},
|
|
42891
44056
|
"type": "array"
|
|
42892
44057
|
},
|
|
42893
|
-
"
|
|
44058
|
+
"aliasProtectionBypass": {
|
|
42894
44059
|
"items": {
|
|
42895
44060
|
"$ref": "#/components/schemas/ACLAction"
|
|
42896
44061
|
},
|
|
42897
44062
|
"type": "array"
|
|
42898
44063
|
},
|
|
42899
|
-
"
|
|
44064
|
+
"buildMachine": {
|
|
42900
44065
|
"items": {
|
|
42901
44066
|
"$ref": "#/components/schemas/ACLAction"
|
|
42902
44067
|
},
|
|
42903
44068
|
"type": "array"
|
|
42904
44069
|
},
|
|
42905
|
-
"
|
|
44070
|
+
"productionAliasProtectionBypass": {
|
|
42906
44071
|
"items": {
|
|
42907
44072
|
"$ref": "#/components/schemas/ACLAction"
|
|
42908
44073
|
},
|
|
42909
44074
|
"type": "array"
|
|
42910
44075
|
},
|
|
42911
|
-
"
|
|
44076
|
+
"connectConfigurationLink": {
|
|
42912
44077
|
"items": {
|
|
42913
44078
|
"$ref": "#/components/schemas/ACLAction"
|
|
42914
44079
|
},
|
|
42915
44080
|
"type": "array"
|
|
42916
44081
|
},
|
|
42917
|
-
"
|
|
44082
|
+
"dataCacheNamespace": {
|
|
42918
44083
|
"items": {
|
|
42919
44084
|
"$ref": "#/components/schemas/ACLAction"
|
|
42920
44085
|
},
|
|
42921
44086
|
"type": "array"
|
|
42922
44087
|
},
|
|
42923
|
-
"
|
|
44088
|
+
"deployment": {
|
|
42924
44089
|
"items": {
|
|
42925
44090
|
"$ref": "#/components/schemas/ACLAction"
|
|
42926
44091
|
},
|
|
42927
44092
|
"type": "array"
|
|
42928
44093
|
},
|
|
42929
|
-
"
|
|
44094
|
+
"deploymentCheck": {
|
|
42930
44095
|
"items": {
|
|
42931
44096
|
"$ref": "#/components/schemas/ACLAction"
|
|
42932
44097
|
},
|
|
42933
44098
|
"type": "array"
|
|
42934
44099
|
},
|
|
42935
|
-
"
|
|
44100
|
+
"deploymentCheckPreview": {
|
|
42936
44101
|
"items": {
|
|
42937
44102
|
"$ref": "#/components/schemas/ACLAction"
|
|
42938
44103
|
},
|
|
42939
44104
|
"type": "array"
|
|
42940
44105
|
},
|
|
42941
|
-
"
|
|
44106
|
+
"deploymentCheckReRunFromProductionBranch": {
|
|
42942
44107
|
"items": {
|
|
42943
44108
|
"$ref": "#/components/schemas/ACLAction"
|
|
42944
44109
|
},
|
|
42945
44110
|
"type": "array"
|
|
42946
44111
|
},
|
|
42947
|
-
"
|
|
44112
|
+
"deploymentProductionGit": {
|
|
42948
44113
|
"items": {
|
|
42949
44114
|
"$ref": "#/components/schemas/ACLAction"
|
|
42950
44115
|
},
|
|
42951
44116
|
"type": "array"
|
|
42952
44117
|
},
|
|
42953
|
-
"
|
|
44118
|
+
"deploymentV0": {
|
|
42954
44119
|
"items": {
|
|
42955
44120
|
"$ref": "#/components/schemas/ACLAction"
|
|
42956
44121
|
},
|
|
42957
44122
|
"type": "array"
|
|
42958
44123
|
},
|
|
42959
|
-
"
|
|
44124
|
+
"deploymentPreview": {
|
|
42960
44125
|
"items": {
|
|
42961
44126
|
"$ref": "#/components/schemas/ACLAction"
|
|
42962
44127
|
},
|
|
42963
44128
|
"type": "array"
|
|
42964
44129
|
},
|
|
42965
|
-
"
|
|
44130
|
+
"deploymentPrivate": {
|
|
42966
44131
|
"items": {
|
|
42967
44132
|
"$ref": "#/components/schemas/ACLAction"
|
|
42968
44133
|
},
|
|
42969
44134
|
"type": "array"
|
|
42970
44135
|
},
|
|
42971
|
-
"
|
|
44136
|
+
"deploymentPromote": {
|
|
42972
44137
|
"items": {
|
|
42973
44138
|
"$ref": "#/components/schemas/ACLAction"
|
|
42974
44139
|
},
|
|
42975
44140
|
"type": "array"
|
|
42976
44141
|
},
|
|
42977
|
-
"
|
|
44142
|
+
"deploymentRollback": {
|
|
42978
44143
|
"items": {
|
|
42979
44144
|
"$ref": "#/components/schemas/ACLAction"
|
|
42980
44145
|
},
|
|
42981
44146
|
"type": "array"
|
|
42982
44147
|
},
|
|
42983
|
-
"
|
|
44148
|
+
"edgeCacheNamespace": {
|
|
42984
44149
|
"items": {
|
|
42985
44150
|
"$ref": "#/components/schemas/ACLAction"
|
|
42986
44151
|
},
|
|
42987
44152
|
"type": "array"
|
|
42988
44153
|
},
|
|
42989
|
-
"
|
|
44154
|
+
"environments": {
|
|
42990
44155
|
"items": {
|
|
42991
44156
|
"$ref": "#/components/schemas/ACLAction"
|
|
42992
44157
|
},
|
|
42993
44158
|
"type": "array"
|
|
42994
44159
|
},
|
|
42995
|
-
"
|
|
44160
|
+
"logs": {
|
|
42996
44161
|
"items": {
|
|
42997
44162
|
"$ref": "#/components/schemas/ACLAction"
|
|
42998
44163
|
},
|
|
42999
44164
|
"type": "array"
|
|
43000
44165
|
},
|
|
43001
|
-
"
|
|
44166
|
+
"logsPreset": {
|
|
43002
44167
|
"items": {
|
|
43003
44168
|
"$ref": "#/components/schemas/ACLAction"
|
|
43004
44169
|
},
|
|
43005
44170
|
"type": "array"
|
|
43006
44171
|
},
|
|
43007
|
-
"
|
|
44172
|
+
"passwordProtection": {
|
|
43008
44173
|
"items": {
|
|
43009
44174
|
"$ref": "#/components/schemas/ACLAction"
|
|
43010
44175
|
},
|
|
43011
44176
|
"type": "array"
|
|
43012
44177
|
},
|
|
43013
|
-
"
|
|
44178
|
+
"optionsAllowlist": {
|
|
43014
44179
|
"items": {
|
|
43015
44180
|
"$ref": "#/components/schemas/ACLAction"
|
|
43016
44181
|
},
|
|
43017
44182
|
"type": "array"
|
|
43018
44183
|
},
|
|
43019
|
-
"
|
|
44184
|
+
"job": {
|
|
43020
44185
|
"items": {
|
|
43021
44186
|
"$ref": "#/components/schemas/ACLAction"
|
|
43022
44187
|
},
|
|
43023
44188
|
"type": "array"
|
|
43024
44189
|
},
|
|
43025
|
-
"
|
|
44190
|
+
"observabilityData": {
|
|
43026
44191
|
"items": {
|
|
43027
44192
|
"$ref": "#/components/schemas/ACLAction"
|
|
43028
44193
|
},
|
|
43029
44194
|
"type": "array"
|
|
43030
44195
|
},
|
|
43031
|
-
"
|
|
44196
|
+
"onDemandBuild": {
|
|
43032
44197
|
"items": {
|
|
43033
44198
|
"$ref": "#/components/schemas/ACLAction"
|
|
43034
44199
|
},
|
|
43035
44200
|
"type": "array"
|
|
43036
44201
|
},
|
|
43037
|
-
"
|
|
44202
|
+
"onDemandConcurrency": {
|
|
43038
44203
|
"items": {
|
|
43039
44204
|
"$ref": "#/components/schemas/ACLAction"
|
|
43040
44205
|
},
|
|
43041
44206
|
"type": "array"
|
|
43042
44207
|
},
|
|
43043
|
-
"
|
|
44208
|
+
"project": {
|
|
43044
44209
|
"items": {
|
|
43045
44210
|
"$ref": "#/components/schemas/ACLAction"
|
|
43046
44211
|
},
|
|
43047
44212
|
"type": "array"
|
|
43048
44213
|
},
|
|
43049
|
-
"
|
|
44214
|
+
"projectFromV0": {
|
|
43050
44215
|
"items": {
|
|
43051
44216
|
"$ref": "#/components/schemas/ACLAction"
|
|
43052
44217
|
},
|
|
43053
44218
|
"type": "array"
|
|
43054
44219
|
},
|
|
43055
|
-
"
|
|
44220
|
+
"projectAccessGroup": {
|
|
43056
44221
|
"items": {
|
|
43057
44222
|
"$ref": "#/components/schemas/ACLAction"
|
|
43058
44223
|
},
|
|
43059
44224
|
"type": "array"
|
|
43060
44225
|
},
|
|
43061
|
-
"
|
|
44226
|
+
"projectAnalyticsSampling": {
|
|
43062
44227
|
"items": {
|
|
43063
44228
|
"$ref": "#/components/schemas/ACLAction"
|
|
43064
44229
|
},
|
|
43065
44230
|
"type": "array"
|
|
43066
44231
|
},
|
|
43067
|
-
"
|
|
44232
|
+
"projectCheck": {
|
|
43068
44233
|
"items": {
|
|
43069
44234
|
"$ref": "#/components/schemas/ACLAction"
|
|
43070
44235
|
},
|
|
43071
44236
|
"type": "array"
|
|
43072
44237
|
},
|
|
43073
|
-
"
|
|
44238
|
+
"projectCheckRun": {
|
|
43074
44239
|
"items": {
|
|
43075
44240
|
"$ref": "#/components/schemas/ACLAction"
|
|
43076
44241
|
},
|
|
43077
44242
|
"type": "array"
|
|
43078
44243
|
},
|
|
43079
|
-
"
|
|
44244
|
+
"projectDeploymentHook": {
|
|
43080
44245
|
"items": {
|
|
43081
44246
|
"$ref": "#/components/schemas/ACLAction"
|
|
43082
44247
|
},
|
|
43083
44248
|
"type": "array"
|
|
43084
44249
|
},
|
|
43085
|
-
"
|
|
44250
|
+
"projectDomain": {
|
|
43086
44251
|
"items": {
|
|
43087
44252
|
"$ref": "#/components/schemas/ACLAction"
|
|
43088
44253
|
},
|
|
43089
44254
|
"type": "array"
|
|
43090
44255
|
},
|
|
43091
|
-
"
|
|
44256
|
+
"projectDomainMove": {
|
|
43092
44257
|
"items": {
|
|
43093
44258
|
"$ref": "#/components/schemas/ACLAction"
|
|
43094
44259
|
},
|
|
43095
44260
|
"type": "array"
|
|
43096
44261
|
},
|
|
43097
|
-
"
|
|
44262
|
+
"projectDomainCheckConfig": {
|
|
43098
44263
|
"items": {
|
|
43099
44264
|
"$ref": "#/components/schemas/ACLAction"
|
|
43100
44265
|
},
|
|
43101
44266
|
"type": "array"
|
|
43102
44267
|
},
|
|
43103
|
-
"
|
|
44268
|
+
"projectEnvVars": {
|
|
43104
44269
|
"items": {
|
|
43105
44270
|
"$ref": "#/components/schemas/ACLAction"
|
|
43106
44271
|
},
|
|
43107
44272
|
"type": "array"
|
|
43108
44273
|
},
|
|
43109
|
-
"
|
|
44274
|
+
"projectEnvVarsProduction": {
|
|
43110
44275
|
"items": {
|
|
43111
44276
|
"$ref": "#/components/schemas/ACLAction"
|
|
43112
44277
|
},
|
|
43113
44278
|
"type": "array"
|
|
43114
44279
|
},
|
|
43115
|
-
"
|
|
44280
|
+
"projectEnvVarsUnownedByIntegration": {
|
|
43116
44281
|
"items": {
|
|
43117
44282
|
"$ref": "#/components/schemas/ACLAction"
|
|
43118
44283
|
},
|
|
43119
44284
|
"type": "array"
|
|
43120
44285
|
},
|
|
43121
|
-
"
|
|
44286
|
+
"projectFlags": {
|
|
43122
44287
|
"items": {
|
|
43123
44288
|
"$ref": "#/components/schemas/ACLAction"
|
|
43124
44289
|
},
|
|
43125
44290
|
"type": "array"
|
|
43126
44291
|
},
|
|
43127
|
-
"
|
|
44292
|
+
"projectId": {
|
|
43128
44293
|
"items": {
|
|
43129
44294
|
"$ref": "#/components/schemas/ACLAction"
|
|
43130
44295
|
},
|
|
43131
44296
|
"type": "array"
|
|
43132
44297
|
},
|
|
43133
|
-
"
|
|
44298
|
+
"projectIntegrationConfiguration": {
|
|
43134
44299
|
"items": {
|
|
43135
44300
|
"$ref": "#/components/schemas/ACLAction"
|
|
43136
44301
|
},
|
|
43137
44302
|
"type": "array"
|
|
43138
44303
|
},
|
|
43139
|
-
"
|
|
44304
|
+
"projectLink": {
|
|
43140
44305
|
"items": {
|
|
43141
44306
|
"$ref": "#/components/schemas/ACLAction"
|
|
43142
44307
|
},
|
|
43143
44308
|
"type": "array"
|
|
43144
44309
|
},
|
|
43145
|
-
"
|
|
44310
|
+
"projectMember": {
|
|
43146
44311
|
"items": {
|
|
43147
44312
|
"$ref": "#/components/schemas/ACLAction"
|
|
43148
44313
|
},
|
|
43149
44314
|
"type": "array"
|
|
43150
44315
|
},
|
|
43151
|
-
"
|
|
44316
|
+
"projectMonitoring": {
|
|
43152
44317
|
"items": {
|
|
43153
44318
|
"$ref": "#/components/schemas/ACLAction"
|
|
43154
44319
|
},
|
|
43155
44320
|
"type": "array"
|
|
43156
44321
|
},
|
|
43157
|
-
"
|
|
44322
|
+
"projectPermissions": {
|
|
43158
44323
|
"items": {
|
|
43159
44324
|
"$ref": "#/components/schemas/ACLAction"
|
|
43160
44325
|
},
|
|
43161
44326
|
"type": "array"
|
|
43162
44327
|
},
|
|
43163
|
-
"
|
|
44328
|
+
"projectProductionBranch": {
|
|
43164
44329
|
"items": {
|
|
43165
44330
|
"$ref": "#/components/schemas/ACLAction"
|
|
43166
44331
|
},
|
|
43167
44332
|
"type": "array"
|
|
43168
44333
|
},
|
|
43169
|
-
"
|
|
44334
|
+
"projectTransfer": {
|
|
43170
44335
|
"items": {
|
|
43171
44336
|
"$ref": "#/components/schemas/ACLAction"
|
|
43172
44337
|
},
|
|
43173
44338
|
"type": "array"
|
|
43174
44339
|
},
|
|
43175
|
-
"
|
|
44340
|
+
"projectTransferOut": {
|
|
43176
44341
|
"items": {
|
|
43177
44342
|
"$ref": "#/components/schemas/ACLAction"
|
|
43178
44343
|
},
|
|
43179
44344
|
"type": "array"
|
|
43180
44345
|
},
|
|
43181
|
-
"
|
|
44346
|
+
"projectProtectionBypass": {
|
|
43182
44347
|
"items": {
|
|
43183
44348
|
"$ref": "#/components/schemas/ACLAction"
|
|
43184
44349
|
},
|
|
43185
44350
|
"type": "array"
|
|
43186
44351
|
},
|
|
43187
|
-
"
|
|
44352
|
+
"projectUsage": {
|
|
43188
44353
|
"items": {
|
|
43189
44354
|
"$ref": "#/components/schemas/ACLAction"
|
|
43190
44355
|
},
|
|
43191
44356
|
"type": "array"
|
|
43192
44357
|
},
|
|
43193
|
-
"
|
|
44358
|
+
"projectAnalyticsUsage": {
|
|
43194
44359
|
"items": {
|
|
43195
44360
|
"$ref": "#/components/schemas/ACLAction"
|
|
43196
44361
|
},
|
|
43197
44362
|
"type": "array"
|
|
43198
44363
|
},
|
|
43199
|
-
"
|
|
44364
|
+
"projectSupportCase": {
|
|
43200
44365
|
"items": {
|
|
43201
44366
|
"$ref": "#/components/schemas/ACLAction"
|
|
43202
44367
|
},
|
|
43203
44368
|
"type": "array"
|
|
43204
44369
|
},
|
|
43205
|
-
"
|
|
44370
|
+
"projectSupportCaseComment": {
|
|
43206
44371
|
"items": {
|
|
43207
44372
|
"$ref": "#/components/schemas/ACLAction"
|
|
43208
44373
|
},
|
|
43209
44374
|
"type": "array"
|
|
43210
44375
|
},
|
|
43211
|
-
"
|
|
44376
|
+
"projectDeploymentExpiration": {
|
|
43212
44377
|
"items": {
|
|
43213
44378
|
"$ref": "#/components/schemas/ACLAction"
|
|
43214
44379
|
},
|
|
43215
44380
|
"type": "array"
|
|
43216
44381
|
},
|
|
43217
|
-
"
|
|
44382
|
+
"projectRollingRelease": {
|
|
43218
44383
|
"items": {
|
|
43219
44384
|
"$ref": "#/components/schemas/ACLAction"
|
|
43220
44385
|
},
|
|
43221
44386
|
"type": "array"
|
|
43222
44387
|
},
|
|
43223
|
-
"
|
|
44388
|
+
"projectTier": {
|
|
43224
44389
|
"items": {
|
|
43225
44390
|
"$ref": "#/components/schemas/ACLAction"
|
|
43226
44391
|
},
|
|
43227
44392
|
"type": "array"
|
|
43228
44393
|
},
|
|
43229
|
-
"
|
|
44394
|
+
"seawallConfig": {
|
|
43230
44395
|
"items": {
|
|
43231
44396
|
"$ref": "#/components/schemas/ACLAction"
|
|
43232
44397
|
},
|
|
43233
44398
|
"type": "array"
|
|
43234
44399
|
},
|
|
43235
|
-
"
|
|
44400
|
+
"skewProtection": {
|
|
43236
44401
|
"items": {
|
|
43237
44402
|
"$ref": "#/components/schemas/ACLAction"
|
|
43238
44403
|
},
|
|
43239
44404
|
"type": "array"
|
|
43240
44405
|
},
|
|
43241
|
-
"
|
|
44406
|
+
"analytics": {
|
|
43242
44407
|
"items": {
|
|
43243
44408
|
"$ref": "#/components/schemas/ACLAction"
|
|
43244
44409
|
},
|
|
43245
44410
|
"type": "array"
|
|
43246
44411
|
},
|
|
43247
|
-
"
|
|
44412
|
+
"trustedIps": {
|
|
43248
44413
|
"items": {
|
|
43249
44414
|
"$ref": "#/components/schemas/ACLAction"
|
|
43250
44415
|
},
|
|
43251
44416
|
"type": "array"
|
|
43252
44417
|
},
|
|
43253
|
-
"
|
|
44418
|
+
"webAnalytics": {
|
|
43254
44419
|
"items": {
|
|
43255
44420
|
"$ref": "#/components/schemas/ACLAction"
|
|
43256
44421
|
},
|
|
43257
44422
|
"type": "array"
|
|
43258
44423
|
},
|
|
43259
|
-
"
|
|
44424
|
+
"sharedEnvVarConnection": {
|
|
43260
44425
|
"items": {
|
|
43261
44426
|
"$ref": "#/components/schemas/ACLAction"
|
|
43262
44427
|
},
|
|
43263
44428
|
"type": "array"
|
|
43264
44429
|
},
|
|
43265
|
-
"
|
|
44430
|
+
"sonar": {
|
|
43266
44431
|
"items": {
|
|
43267
44432
|
"$ref": "#/components/schemas/ACLAction"
|
|
43268
44433
|
},
|
|
43269
44434
|
"type": "array"
|
|
43270
44435
|
},
|
|
43271
|
-
"
|
|
44436
|
+
"user": {
|
|
43272
44437
|
"items": {
|
|
43273
44438
|
"$ref": "#/components/schemas/ACLAction"
|
|
43274
44439
|
},
|
|
43275
44440
|
"type": "array"
|
|
43276
44441
|
},
|
|
43277
|
-
"
|
|
44442
|
+
"userConnection": {
|
|
43278
44443
|
"items": {
|
|
43279
44444
|
"$ref": "#/components/schemas/ACLAction"
|
|
43280
44445
|
},
|
|
43281
44446
|
"type": "array"
|
|
43282
44447
|
},
|
|
43283
|
-
"
|
|
44448
|
+
"userSudo": {
|
|
43284
44449
|
"items": {
|
|
43285
44450
|
"$ref": "#/components/schemas/ACLAction"
|
|
43286
44451
|
},
|
|
43287
44452
|
"type": "array"
|
|
43288
44453
|
},
|
|
43289
|
-
"
|
|
44454
|
+
"webAuthn": {
|
|
43290
44455
|
"items": {
|
|
43291
44456
|
"$ref": "#/components/schemas/ACLAction"
|
|
43292
44457
|
},
|
|
43293
44458
|
"type": "array"
|
|
43294
44459
|
},
|
|
43295
|
-
"
|
|
44460
|
+
"oauth2Connection": {
|
|
43296
44461
|
"items": {
|
|
43297
44462
|
"$ref": "#/components/schemas/ACLAction"
|
|
43298
44463
|
},
|
|
43299
44464
|
"type": "array"
|
|
43300
44465
|
},
|
|
43301
|
-
"
|
|
44466
|
+
"accessGroup": {
|
|
43302
44467
|
"items": {
|
|
43303
44468
|
"$ref": "#/components/schemas/ACLAction"
|
|
43304
44469
|
},
|
|
43305
44470
|
"type": "array"
|
|
43306
44471
|
},
|
|
43307
|
-
"
|
|
44472
|
+
"aliasGlobal": {
|
|
43308
44473
|
"items": {
|
|
43309
44474
|
"$ref": "#/components/schemas/ACLAction"
|
|
43310
44475
|
},
|
|
43311
44476
|
"type": "array"
|
|
43312
44477
|
},
|
|
43313
|
-
"
|
|
44478
|
+
"analyticsSampling": {
|
|
43314
44479
|
"items": {
|
|
43315
44480
|
"$ref": "#/components/schemas/ACLAction"
|
|
43316
44481
|
},
|
|
43317
44482
|
"type": "array"
|
|
43318
44483
|
},
|
|
43319
|
-
"
|
|
44484
|
+
"analyticsUsage": {
|
|
43320
44485
|
"items": {
|
|
43321
44486
|
"$ref": "#/components/schemas/ACLAction"
|
|
43322
44487
|
},
|
|
43323
44488
|
"type": "array"
|
|
43324
44489
|
},
|
|
43325
|
-
"
|
|
44490
|
+
"auditLog": {
|
|
43326
44491
|
"items": {
|
|
43327
44492
|
"$ref": "#/components/schemas/ACLAction"
|
|
43328
44493
|
},
|
|
43329
44494
|
"type": "array"
|
|
43330
44495
|
},
|
|
43331
|
-
"
|
|
44496
|
+
"billingAddress": {
|
|
43332
44497
|
"items": {
|
|
43333
44498
|
"$ref": "#/components/schemas/ACLAction"
|
|
43334
44499
|
},
|
|
43335
44500
|
"type": "array"
|
|
43336
44501
|
},
|
|
43337
|
-
"
|
|
44502
|
+
"billingInformation": {
|
|
43338
44503
|
"items": {
|
|
43339
44504
|
"$ref": "#/components/schemas/ACLAction"
|
|
43340
44505
|
},
|
|
43341
44506
|
"type": "array"
|
|
43342
44507
|
},
|
|
43343
|
-
"
|
|
44508
|
+
"billingInvoice": {
|
|
43344
44509
|
"items": {
|
|
43345
44510
|
"$ref": "#/components/schemas/ACLAction"
|
|
43346
44511
|
},
|
|
43347
44512
|
"type": "array"
|
|
43348
44513
|
},
|
|
43349
|
-
"
|
|
44514
|
+
"billingInvoiceEmailRecipient": {
|
|
43350
44515
|
"items": {
|
|
43351
44516
|
"$ref": "#/components/schemas/ACLAction"
|
|
43352
44517
|
},
|
|
43353
44518
|
"type": "array"
|
|
43354
44519
|
},
|
|
43355
|
-
"
|
|
44520
|
+
"billingInvoiceLanguage": {
|
|
43356
44521
|
"items": {
|
|
43357
44522
|
"$ref": "#/components/schemas/ACLAction"
|
|
43358
44523
|
},
|
|
43359
44524
|
"type": "array"
|
|
43360
44525
|
},
|
|
43361
|
-
"
|
|
44526
|
+
"billingPlan": {
|
|
43362
44527
|
"items": {
|
|
43363
44528
|
"$ref": "#/components/schemas/ACLAction"
|
|
43364
44529
|
},
|
|
43365
44530
|
"type": "array"
|
|
43366
44531
|
},
|
|
43367
|
-
"
|
|
44532
|
+
"billingPurchaseOrder": {
|
|
43368
44533
|
"items": {
|
|
43369
44534
|
"$ref": "#/components/schemas/ACLAction"
|
|
43370
44535
|
},
|
|
43371
44536
|
"type": "array"
|
|
43372
44537
|
},
|
|
43373
|
-
"
|
|
44538
|
+
"billingTaxId": {
|
|
43374
44539
|
"items": {
|
|
43375
44540
|
"$ref": "#/components/schemas/ACLAction"
|
|
43376
44541
|
},
|
|
43377
44542
|
"type": "array"
|
|
43378
44543
|
},
|
|
43379
|
-
"
|
|
44544
|
+
"blob": {
|
|
43380
44545
|
"items": {
|
|
43381
44546
|
"$ref": "#/components/schemas/ACLAction"
|
|
43382
44547
|
},
|
|
43383
44548
|
"type": "array"
|
|
43384
44549
|
},
|
|
43385
|
-
"
|
|
44550
|
+
"budget": {
|
|
43386
44551
|
"items": {
|
|
43387
44552
|
"$ref": "#/components/schemas/ACLAction"
|
|
43388
44553
|
},
|
|
43389
44554
|
"type": "array"
|
|
43390
44555
|
},
|
|
43391
|
-
"
|
|
44556
|
+
"cacheArtifact": {
|
|
43392
44557
|
"items": {
|
|
43393
44558
|
"$ref": "#/components/schemas/ACLAction"
|
|
43394
44559
|
},
|
|
43395
44560
|
"type": "array"
|
|
43396
44561
|
},
|
|
43397
|
-
"
|
|
44562
|
+
"cacheArtifactUsageEvent": {
|
|
43398
44563
|
"items": {
|
|
43399
44564
|
"$ref": "#/components/schemas/ACLAction"
|
|
43400
44565
|
},
|
|
43401
44566
|
"type": "array"
|
|
43402
44567
|
},
|
|
43403
|
-
"
|
|
44568
|
+
"codeChecks": {
|
|
43404
44569
|
"items": {
|
|
43405
44570
|
"$ref": "#/components/schemas/ACLAction"
|
|
43406
44571
|
},
|
|
43407
44572
|
"type": "array"
|
|
43408
44573
|
},
|
|
43409
|
-
"
|
|
44574
|
+
"concurrentBuilds": {
|
|
43410
44575
|
"items": {
|
|
43411
44576
|
"$ref": "#/components/schemas/ACLAction"
|
|
43412
44577
|
},
|
|
43413
44578
|
"type": "array"
|
|
43414
44579
|
},
|
|
43415
|
-
"
|
|
44580
|
+
"connect": {
|
|
43416
44581
|
"items": {
|
|
43417
44582
|
"$ref": "#/components/schemas/ACLAction"
|
|
43418
44583
|
},
|
|
43419
44584
|
"type": "array"
|
|
43420
44585
|
},
|
|
43421
|
-
"
|
|
44586
|
+
"connectConfiguration": {
|
|
43422
44587
|
"items": {
|
|
43423
44588
|
"$ref": "#/components/schemas/ACLAction"
|
|
43424
44589
|
},
|
|
43425
44590
|
"type": "array"
|
|
43426
44591
|
},
|
|
43427
|
-
"
|
|
44592
|
+
"domain": {
|
|
43428
44593
|
"items": {
|
|
43429
44594
|
"$ref": "#/components/schemas/ACLAction"
|
|
43430
44595
|
},
|
|
43431
44596
|
"type": "array"
|
|
43432
44597
|
},
|
|
43433
|
-
"
|
|
44598
|
+
"domainAcceptDelegation": {
|
|
43434
44599
|
"items": {
|
|
43435
44600
|
"$ref": "#/components/schemas/ACLAction"
|
|
43436
44601
|
},
|
|
43437
44602
|
"type": "array"
|
|
43438
44603
|
},
|
|
43439
|
-
"
|
|
44604
|
+
"domainAuthCodes": {
|
|
43440
44605
|
"items": {
|
|
43441
44606
|
"$ref": "#/components/schemas/ACLAction"
|
|
43442
44607
|
},
|
|
43443
44608
|
"type": "array"
|
|
43444
44609
|
},
|
|
43445
|
-
"
|
|
44610
|
+
"domainCertificate": {
|
|
43446
44611
|
"items": {
|
|
43447
44612
|
"$ref": "#/components/schemas/ACLAction"
|
|
43448
44613
|
},
|
|
43449
44614
|
"type": "array"
|
|
43450
44615
|
},
|
|
43451
|
-
"
|
|
44616
|
+
"domainCheckConfig": {
|
|
43452
44617
|
"items": {
|
|
43453
44618
|
"$ref": "#/components/schemas/ACLAction"
|
|
43454
44619
|
},
|
|
43455
44620
|
"type": "array"
|
|
43456
44621
|
},
|
|
43457
|
-
"
|
|
44622
|
+
"domainMove": {
|
|
43458
44623
|
"items": {
|
|
43459
44624
|
"$ref": "#/components/schemas/ACLAction"
|
|
43460
44625
|
},
|
|
43461
44626
|
"type": "array"
|
|
43462
44627
|
},
|
|
43463
|
-
"
|
|
44628
|
+
"domainPurchase": {
|
|
43464
44629
|
"items": {
|
|
43465
44630
|
"$ref": "#/components/schemas/ACLAction"
|
|
43466
44631
|
},
|
|
43467
44632
|
"type": "array"
|
|
43468
44633
|
},
|
|
43469
|
-
"
|
|
44634
|
+
"domainRecord": {
|
|
43470
44635
|
"items": {
|
|
43471
44636
|
"$ref": "#/components/schemas/ACLAction"
|
|
43472
44637
|
},
|
|
43473
44638
|
"type": "array"
|
|
43474
44639
|
},
|
|
43475
|
-
"
|
|
44640
|
+
"domainTransferIn": {
|
|
43476
44641
|
"items": {
|
|
43477
44642
|
"$ref": "#/components/schemas/ACLAction"
|
|
43478
44643
|
},
|
|
43479
44644
|
"type": "array"
|
|
43480
44645
|
},
|
|
43481
|
-
"
|
|
44646
|
+
"event": {
|
|
43482
44647
|
"items": {
|
|
43483
44648
|
"$ref": "#/components/schemas/ACLAction"
|
|
43484
44649
|
},
|
|
43485
44650
|
"type": "array"
|
|
43486
44651
|
},
|
|
43487
|
-
"
|
|
44652
|
+
"ownEvent": {
|
|
43488
44653
|
"items": {
|
|
43489
44654
|
"$ref": "#/components/schemas/ACLAction"
|
|
43490
44655
|
},
|
|
43491
44656
|
"type": "array"
|
|
43492
44657
|
},
|
|
43493
|
-
"
|
|
44658
|
+
"sensitiveEnvironmentVariablePolicy": {
|
|
43494
44659
|
"items": {
|
|
43495
44660
|
"$ref": "#/components/schemas/ACLAction"
|
|
43496
44661
|
},
|
|
43497
44662
|
"type": "array"
|
|
43498
44663
|
},
|
|
43499
|
-
"
|
|
44664
|
+
"fileUpload": {
|
|
43500
44665
|
"items": {
|
|
43501
44666
|
"$ref": "#/components/schemas/ACLAction"
|
|
43502
44667
|
},
|
|
43503
44668
|
"type": "array"
|
|
43504
44669
|
},
|
|
43505
|
-
"
|
|
44670
|
+
"flagsExplorerSubscription": {
|
|
43506
44671
|
"items": {
|
|
43507
44672
|
"$ref": "#/components/schemas/ACLAction"
|
|
43508
44673
|
},
|
|
43509
44674
|
"type": "array"
|
|
43510
44675
|
},
|
|
43511
|
-
"
|
|
44676
|
+
"gitRepository": {
|
|
43512
44677
|
"items": {
|
|
43513
44678
|
"$ref": "#/components/schemas/ACLAction"
|
|
43514
44679
|
},
|
|
43515
44680
|
"type": "array"
|
|
43516
44681
|
},
|
|
43517
|
-
"
|
|
44682
|
+
"ipBlocking": {
|
|
43518
44683
|
"items": {
|
|
43519
44684
|
"$ref": "#/components/schemas/ACLAction"
|
|
43520
44685
|
},
|
|
43521
44686
|
"type": "array"
|
|
43522
44687
|
},
|
|
43523
|
-
"
|
|
44688
|
+
"imageOptimizationNewPrice": {
|
|
43524
44689
|
"items": {
|
|
43525
44690
|
"$ref": "#/components/schemas/ACLAction"
|
|
43526
44691
|
},
|
|
43527
44692
|
"type": "array"
|
|
43528
44693
|
},
|
|
43529
|
-
"
|
|
44694
|
+
"integration": {
|
|
43530
44695
|
"items": {
|
|
43531
44696
|
"$ref": "#/components/schemas/ACLAction"
|
|
43532
44697
|
},
|
|
43533
44698
|
"type": "array"
|
|
43534
44699
|
},
|
|
43535
|
-
"
|
|
44700
|
+
"integrationAccount": {
|
|
43536
44701
|
"items": {
|
|
43537
44702
|
"$ref": "#/components/schemas/ACLAction"
|
|
43538
44703
|
},
|
|
43539
44704
|
"type": "array"
|
|
43540
44705
|
},
|
|
43541
|
-
"
|
|
44706
|
+
"integrationConfiguration": {
|
|
43542
44707
|
"items": {
|
|
43543
44708
|
"$ref": "#/components/schemas/ACLAction"
|
|
43544
44709
|
},
|
|
43545
44710
|
"type": "array"
|
|
43546
44711
|
},
|
|
43547
|
-
"
|
|
44712
|
+
"integrationConfigurationTransfer": {
|
|
43548
44713
|
"items": {
|
|
43549
44714
|
"$ref": "#/components/schemas/ACLAction"
|
|
43550
44715
|
},
|
|
43551
44716
|
"type": "array"
|
|
43552
44717
|
},
|
|
43553
|
-
"
|
|
44718
|
+
"integrationConfigurationProjects": {
|
|
43554
44719
|
"items": {
|
|
43555
44720
|
"$ref": "#/components/schemas/ACLAction"
|
|
43556
44721
|
},
|
|
43557
44722
|
"type": "array"
|
|
43558
44723
|
},
|
|
43559
|
-
"
|
|
44724
|
+
"integrationVercelConfigurationOverride": {
|
|
43560
44725
|
"items": {
|
|
43561
44726
|
"$ref": "#/components/schemas/ACLAction"
|
|
43562
44727
|
},
|
|
43563
44728
|
"type": "array"
|
|
43564
44729
|
},
|
|
43565
|
-
"
|
|
44730
|
+
"integrationConfigurationRole": {
|
|
43566
44731
|
"items": {
|
|
43567
44732
|
"$ref": "#/components/schemas/ACLAction"
|
|
43568
44733
|
},
|
|
43569
44734
|
"type": "array"
|
|
43570
44735
|
},
|
|
43571
|
-
"
|
|
44736
|
+
"integrationSSOSession": {
|
|
43572
44737
|
"items": {
|
|
43573
44738
|
"$ref": "#/components/schemas/ACLAction"
|
|
43574
44739
|
},
|
|
43575
44740
|
"type": "array"
|
|
43576
44741
|
},
|
|
43577
|
-
"
|
|
44742
|
+
"integrationResource": {
|
|
43578
44743
|
"items": {
|
|
43579
44744
|
"$ref": "#/components/schemas/ACLAction"
|
|
43580
44745
|
},
|
|
43581
44746
|
"type": "array"
|
|
43582
44747
|
},
|
|
43583
|
-
"
|
|
44748
|
+
"integrationEvent": {
|
|
43584
44749
|
"items": {
|
|
43585
44750
|
"$ref": "#/components/schemas/ACLAction"
|
|
43586
44751
|
},
|
|
43587
44752
|
"type": "array"
|
|
43588
44753
|
},
|
|
43589
|
-
"
|
|
44754
|
+
"integrationResourceSecrets": {
|
|
43590
44755
|
"items": {
|
|
43591
44756
|
"$ref": "#/components/schemas/ACLAction"
|
|
43592
44757
|
},
|
|
43593
44758
|
"type": "array"
|
|
43594
44759
|
},
|
|
43595
|
-
"
|
|
44760
|
+
"integrationDeploymentAction": {
|
|
43596
44761
|
"items": {
|
|
43597
44762
|
"$ref": "#/components/schemas/ACLAction"
|
|
43598
44763
|
},
|
|
43599
44764
|
"type": "array"
|
|
43600
44765
|
},
|
|
43601
|
-
"
|
|
44766
|
+
"marketplaceInstallationMember": {
|
|
43602
44767
|
"items": {
|
|
43603
44768
|
"$ref": "#/components/schemas/ACLAction"
|
|
43604
44769
|
},
|
|
43605
44770
|
"type": "array"
|
|
43606
44771
|
},
|
|
43607
|
-
"
|
|
44772
|
+
"marketplaceBillingData": {
|
|
43608
44773
|
"items": {
|
|
43609
44774
|
"$ref": "#/components/schemas/ACLAction"
|
|
43610
44775
|
},
|
|
43611
44776
|
"type": "array"
|
|
43612
44777
|
},
|
|
43613
|
-
"
|
|
44778
|
+
"marketplaceInvoice": {
|
|
43614
44779
|
"items": {
|
|
43615
44780
|
"$ref": "#/components/schemas/ACLAction"
|
|
43616
44781
|
},
|
|
43617
44782
|
"type": "array"
|
|
43618
44783
|
},
|
|
43619
|
-
"
|
|
44784
|
+
"marketplaceExperimentationItem": {
|
|
43620
44785
|
"items": {
|
|
43621
44786
|
"$ref": "#/components/schemas/ACLAction"
|
|
43622
44787
|
},
|
|
43623
44788
|
"type": "array"
|
|
43624
44789
|
},
|
|
43625
|
-
"
|
|
44790
|
+
"marketplaceExperimentationEdgeConfigData": {
|
|
43626
44791
|
"items": {
|
|
43627
44792
|
"$ref": "#/components/schemas/ACLAction"
|
|
43628
44793
|
},
|
|
43629
44794
|
"type": "array"
|
|
43630
44795
|
},
|
|
43631
|
-
"
|
|
44796
|
+
"jobGlobal": {
|
|
43632
44797
|
"items": {
|
|
43633
44798
|
"$ref": "#/components/schemas/ACLAction"
|
|
43634
44799
|
},
|
|
43635
44800
|
"type": "array"
|
|
43636
44801
|
},
|
|
43637
|
-
"
|
|
44802
|
+
"drain": {
|
|
43638
44803
|
"items": {
|
|
43639
44804
|
"$ref": "#/components/schemas/ACLAction"
|
|
43640
44805
|
},
|
|
43641
44806
|
"type": "array"
|
|
43642
44807
|
},
|
|
43643
|
-
"
|
|
44808
|
+
"logDrain": {
|
|
43644
44809
|
"items": {
|
|
43645
44810
|
"$ref": "#/components/schemas/ACLAction"
|
|
43646
44811
|
},
|
|
43647
44812
|
"type": "array"
|
|
43648
44813
|
},
|
|
43649
|
-
"
|
|
44814
|
+
"Monitoring": {
|
|
43650
44815
|
"items": {
|
|
43651
44816
|
"$ref": "#/components/schemas/ACLAction"
|
|
43652
44817
|
},
|
|
43653
44818
|
"type": "array"
|
|
43654
44819
|
},
|
|
43655
|
-
"
|
|
44820
|
+
"monitoringSettings": {
|
|
43656
44821
|
"items": {
|
|
43657
44822
|
"$ref": "#/components/schemas/ACLAction"
|
|
43658
44823
|
},
|
|
43659
44824
|
"type": "array"
|
|
43660
44825
|
},
|
|
43661
|
-
"
|
|
44826
|
+
"monitoringQuery": {
|
|
43662
44827
|
"items": {
|
|
43663
44828
|
"$ref": "#/components/schemas/ACLAction"
|
|
43664
44829
|
},
|
|
43665
44830
|
"type": "array"
|
|
43666
44831
|
},
|
|
43667
|
-
"
|
|
44832
|
+
"monitoringChart": {
|
|
43668
44833
|
"items": {
|
|
43669
44834
|
"$ref": "#/components/schemas/ACLAction"
|
|
43670
44835
|
},
|
|
43671
44836
|
"type": "array"
|
|
43672
44837
|
},
|
|
43673
|
-
"
|
|
44838
|
+
"monitoringAlert": {
|
|
43674
44839
|
"items": {
|
|
43675
44840
|
"$ref": "#/components/schemas/ACLAction"
|
|
43676
44841
|
},
|
|
43677
44842
|
"type": "array"
|
|
43678
44843
|
},
|
|
43679
|
-
"
|
|
44844
|
+
"notificationDeploymentFailed": {
|
|
43680
44845
|
"items": {
|
|
43681
44846
|
"$ref": "#/components/schemas/ACLAction"
|
|
43682
44847
|
},
|
|
43683
44848
|
"type": "array"
|
|
43684
44849
|
},
|
|
43685
|
-
"
|
|
44850
|
+
"notificationDomainConfiguration": {
|
|
43686
44851
|
"items": {
|
|
43687
44852
|
"$ref": "#/components/schemas/ACLAction"
|
|
43688
44853
|
},
|
|
43689
44854
|
"type": "array"
|
|
43690
44855
|
},
|
|
43691
|
-
"
|
|
44856
|
+
"notificationDomainExpire": {
|
|
43692
44857
|
"items": {
|
|
43693
44858
|
"$ref": "#/components/schemas/ACLAction"
|
|
43694
44859
|
},
|
|
43695
44860
|
"type": "array"
|
|
43696
44861
|
},
|
|
43697
|
-
"
|
|
44862
|
+
"notificationDomainMoved": {
|
|
43698
44863
|
"items": {
|
|
43699
44864
|
"$ref": "#/components/schemas/ACLAction"
|
|
43700
44865
|
},
|
|
43701
44866
|
"type": "array"
|
|
43702
44867
|
},
|
|
43703
|
-
"
|
|
44868
|
+
"notificationDomainPurchase": {
|
|
43704
44869
|
"items": {
|
|
43705
44870
|
"$ref": "#/components/schemas/ACLAction"
|
|
43706
44871
|
},
|
|
43707
44872
|
"type": "array"
|
|
43708
44873
|
},
|
|
43709
|
-
"
|
|
44874
|
+
"notificationDomainRenewal": {
|
|
43710
44875
|
"items": {
|
|
43711
44876
|
"$ref": "#/components/schemas/ACLAction"
|
|
43712
44877
|
},
|
|
43713
44878
|
"type": "array"
|
|
43714
44879
|
},
|
|
43715
|
-
"
|
|
44880
|
+
"notificationDomainTransfer": {
|
|
43716
44881
|
"items": {
|
|
43717
44882
|
"$ref": "#/components/schemas/ACLAction"
|
|
43718
44883
|
},
|
|
43719
44884
|
"type": "array"
|
|
43720
44885
|
},
|
|
43721
|
-
"
|
|
44886
|
+
"notificationDomainUnverified": {
|
|
43722
44887
|
"items": {
|
|
43723
44888
|
"$ref": "#/components/schemas/ACLAction"
|
|
43724
44889
|
},
|
|
43725
44890
|
"type": "array"
|
|
43726
44891
|
},
|
|
43727
|
-
"
|
|
44892
|
+
"NotificationMonitoringAlert": {
|
|
43728
44893
|
"items": {
|
|
43729
44894
|
"$ref": "#/components/schemas/ACLAction"
|
|
43730
44895
|
},
|
|
43731
44896
|
"type": "array"
|
|
43732
44897
|
},
|
|
43733
|
-
"
|
|
44898
|
+
"notificationPaymentFailed": {
|
|
43734
44899
|
"items": {
|
|
43735
44900
|
"$ref": "#/components/schemas/ACLAction"
|
|
43736
44901
|
},
|
|
43737
44902
|
"type": "array"
|
|
43738
44903
|
},
|
|
43739
|
-
"
|
|
44904
|
+
"notificationUsageAlert": {
|
|
43740
44905
|
"items": {
|
|
43741
44906
|
"$ref": "#/components/schemas/ACLAction"
|
|
43742
44907
|
},
|
|
43743
44908
|
"type": "array"
|
|
43744
44909
|
},
|
|
43745
|
-
"
|
|
44910
|
+
"notificationCustomerBudget": {
|
|
43746
44911
|
"items": {
|
|
43747
44912
|
"$ref": "#/components/schemas/ACLAction"
|
|
43748
44913
|
},
|
|
43749
44914
|
"type": "array"
|
|
43750
44915
|
},
|
|
43751
|
-
"
|
|
44916
|
+
"notificationStatementOfReasons": {
|
|
43752
44917
|
"items": {
|
|
43753
44918
|
"$ref": "#/components/schemas/ACLAction"
|
|
43754
44919
|
},
|
|
43755
44920
|
"type": "array"
|
|
43756
44921
|
},
|
|
43757
|
-
"
|
|
44922
|
+
"observabilityConfiguration": {
|
|
43758
44923
|
"items": {
|
|
43759
44924
|
"$ref": "#/components/schemas/ACLAction"
|
|
43760
44925
|
},
|
|
43761
44926
|
"type": "array"
|
|
43762
44927
|
},
|
|
43763
|
-
"
|
|
44928
|
+
"observabilityNotebook": {
|
|
43764
44929
|
"items": {
|
|
43765
44930
|
"$ref": "#/components/schemas/ACLAction"
|
|
43766
44931
|
},
|
|
43767
44932
|
"type": "array"
|
|
43768
44933
|
},
|
|
43769
|
-
"
|
|
44934
|
+
"openTelemetryEndpoint": {
|
|
43770
44935
|
"items": {
|
|
43771
44936
|
"$ref": "#/components/schemas/ACLAction"
|
|
43772
44937
|
},
|
|
43773
44938
|
"type": "array"
|
|
43774
44939
|
},
|
|
43775
|
-
"
|
|
44940
|
+
"vercelAppInstallation": {
|
|
43776
44941
|
"items": {
|
|
43777
44942
|
"$ref": "#/components/schemas/ACLAction"
|
|
43778
44943
|
},
|
|
43779
44944
|
"type": "array"
|
|
43780
44945
|
},
|
|
43781
|
-
"
|
|
44946
|
+
"paymentMethod": {
|
|
43782
44947
|
"items": {
|
|
43783
44948
|
"$ref": "#/components/schemas/ACLAction"
|
|
43784
44949
|
},
|
|
43785
44950
|
"type": "array"
|
|
43786
44951
|
},
|
|
43787
|
-
"
|
|
44952
|
+
"permissions": {
|
|
43788
44953
|
"items": {
|
|
43789
44954
|
"$ref": "#/components/schemas/ACLAction"
|
|
43790
44955
|
},
|
|
43791
44956
|
"type": "array"
|
|
43792
44957
|
},
|
|
43793
|
-
"
|
|
44958
|
+
"postgres": {
|
|
43794
44959
|
"items": {
|
|
43795
44960
|
"$ref": "#/components/schemas/ACLAction"
|
|
43796
44961
|
},
|
|
43797
44962
|
"type": "array"
|
|
43798
44963
|
},
|
|
43799
|
-
"
|
|
44964
|
+
"previewDeploymentSuffix": {
|
|
43800
44965
|
"items": {
|
|
43801
44966
|
"$ref": "#/components/schemas/ACLAction"
|
|
43802
44967
|
},
|
|
43803
44968
|
"type": "array"
|
|
43804
44969
|
},
|
|
43805
|
-
"
|
|
44970
|
+
"proTrialOnboarding": {
|
|
43806
44971
|
"items": {
|
|
43807
44972
|
"$ref": "#/components/schemas/ACLAction"
|
|
43808
44973
|
},
|
|
43809
44974
|
"type": "array"
|
|
43810
44975
|
},
|
|
43811
|
-
"
|
|
44976
|
+
"sharedEnvVars": {
|
|
43812
44977
|
"items": {
|
|
43813
44978
|
"$ref": "#/components/schemas/ACLAction"
|
|
43814
44979
|
},
|
|
43815
44980
|
"type": "array"
|
|
43816
44981
|
},
|
|
43817
|
-
"
|
|
44982
|
+
"sharedEnvVarsProduction": {
|
|
43818
44983
|
"items": {
|
|
43819
44984
|
"$ref": "#/components/schemas/ACLAction"
|
|
43820
44985
|
},
|
|
43821
44986
|
"type": "array"
|
|
43822
44987
|
},
|
|
43823
|
-
"
|
|
44988
|
+
"space": {
|
|
43824
44989
|
"items": {
|
|
43825
44990
|
"$ref": "#/components/schemas/ACLAction"
|
|
43826
44991
|
},
|
|
43827
44992
|
"type": "array"
|
|
43828
44993
|
},
|
|
43829
|
-
"
|
|
44994
|
+
"spaceRun": {
|
|
43830
44995
|
"items": {
|
|
43831
44996
|
"$ref": "#/components/schemas/ACLAction"
|
|
43832
44997
|
},
|
|
43833
44998
|
"type": "array"
|
|
43834
44999
|
},
|
|
43835
|
-
"
|
|
45000
|
+
"passwordProtectionInvoiceItem": {
|
|
43836
45001
|
"items": {
|
|
43837
45002
|
"$ref": "#/components/schemas/ACLAction"
|
|
43838
45003
|
},
|
|
43839
45004
|
"type": "array"
|
|
43840
45005
|
},
|
|
43841
|
-
"
|
|
45006
|
+
"rateLimit": {
|
|
43842
45007
|
"items": {
|
|
43843
45008
|
"$ref": "#/components/schemas/ACLAction"
|
|
43844
45009
|
},
|
|
43845
45010
|
"type": "array"
|
|
43846
45011
|
},
|
|
43847
|
-
"
|
|
45012
|
+
"redis": {
|
|
43848
45013
|
"items": {
|
|
43849
45014
|
"$ref": "#/components/schemas/ACLAction"
|
|
43850
45015
|
},
|
|
43851
45016
|
"type": "array"
|
|
43852
45017
|
},
|
|
43853
|
-
"
|
|
45018
|
+
"repository": {
|
|
43854
45019
|
"items": {
|
|
43855
45020
|
"$ref": "#/components/schemas/ACLAction"
|
|
43856
45021
|
},
|
|
43857
45022
|
"type": "array"
|
|
43858
45023
|
},
|
|
43859
|
-
"
|
|
45024
|
+
"remoteCaching": {
|
|
43860
45025
|
"items": {
|
|
43861
45026
|
"$ref": "#/components/schemas/ACLAction"
|
|
43862
45027
|
},
|
|
43863
45028
|
"type": "array"
|
|
43864
45029
|
},
|
|
43865
|
-
"
|
|
45030
|
+
"samlConfig": {
|
|
43866
45031
|
"items": {
|
|
43867
45032
|
"$ref": "#/components/schemas/ACLAction"
|
|
43868
45033
|
},
|
|
43869
45034
|
"type": "array"
|
|
43870
45035
|
},
|
|
43871
|
-
"
|
|
45036
|
+
"secret": {
|
|
43872
45037
|
"items": {
|
|
43873
45038
|
"$ref": "#/components/schemas/ACLAction"
|
|
43874
45039
|
},
|
|
43875
45040
|
"type": "array"
|
|
43876
45041
|
},
|
|
43877
|
-
"
|
|
45042
|
+
"redisStoreTokenSet": {
|
|
43878
45043
|
"items": {
|
|
43879
45044
|
"$ref": "#/components/schemas/ACLAction"
|
|
43880
45045
|
},
|
|
43881
45046
|
"type": "array"
|
|
43882
45047
|
},
|
|
43883
|
-
"
|
|
45048
|
+
"blobStoreTokenSet": {
|
|
43884
45049
|
"items": {
|
|
43885
45050
|
"$ref": "#/components/schemas/ACLAction"
|
|
43886
45051
|
},
|
|
43887
45052
|
"type": "array"
|
|
43888
45053
|
},
|
|
43889
|
-
"
|
|
45054
|
+
"postgresStoreTokenSet": {
|
|
43890
45055
|
"items": {
|
|
43891
45056
|
"$ref": "#/components/schemas/ACLAction"
|
|
43892
45057
|
},
|
|
43893
45058
|
"type": "array"
|
|
43894
45059
|
},
|
|
43895
|
-
"
|
|
45060
|
+
"integrationStoreTokenSet": {
|
|
43896
45061
|
"items": {
|
|
43897
45062
|
"$ref": "#/components/schemas/ACLAction"
|
|
43898
45063
|
},
|
|
43899
45064
|
"type": "array"
|
|
43900
45065
|
},
|
|
43901
|
-
"
|
|
45066
|
+
"integrationResourceReplCommand": {
|
|
43902
45067
|
"items": {
|
|
43903
45068
|
"$ref": "#/components/schemas/ACLAction"
|
|
43904
45069
|
},
|
|
43905
45070
|
"type": "array"
|
|
43906
45071
|
},
|
|
43907
|
-
"
|
|
45072
|
+
"storeTransfer": {
|
|
43908
45073
|
"items": {
|
|
43909
45074
|
"$ref": "#/components/schemas/ACLAction"
|
|
43910
45075
|
},
|
|
43911
45076
|
"type": "array"
|
|
43912
45077
|
},
|
|
43913
|
-
"
|
|
45078
|
+
"supportCase": {
|
|
43914
45079
|
"items": {
|
|
43915
45080
|
"$ref": "#/components/schemas/ACLAction"
|
|
43916
45081
|
},
|
|
43917
45082
|
"type": "array"
|
|
43918
45083
|
},
|
|
43919
|
-
"
|
|
45084
|
+
"supportCaseComment": {
|
|
43920
45085
|
"items": {
|
|
43921
45086
|
"$ref": "#/components/schemas/ACLAction"
|
|
43922
45087
|
},
|
|
43923
45088
|
"type": "array"
|
|
43924
45089
|
},
|
|
43925
|
-
"
|
|
45090
|
+
"dataCacheBillingSettings": {
|
|
43926
45091
|
"items": {
|
|
43927
45092
|
"$ref": "#/components/schemas/ACLAction"
|
|
43928
45093
|
},
|
|
43929
45094
|
"type": "array"
|
|
43930
45095
|
},
|
|
43931
|
-
"
|
|
45096
|
+
"team": {
|
|
43932
45097
|
"items": {
|
|
43933
45098
|
"$ref": "#/components/schemas/ACLAction"
|
|
43934
45099
|
},
|
|
43935
45100
|
"type": "array"
|
|
43936
45101
|
},
|
|
43937
|
-
"
|
|
45102
|
+
"teamAccessRequest": {
|
|
43938
45103
|
"items": {
|
|
43939
45104
|
"$ref": "#/components/schemas/ACLAction"
|
|
43940
45105
|
},
|
|
43941
45106
|
"type": "array"
|
|
43942
45107
|
},
|
|
43943
|
-
"
|
|
45108
|
+
"teamFellowMembership": {
|
|
43944
45109
|
"items": {
|
|
43945
45110
|
"$ref": "#/components/schemas/ACLAction"
|
|
43946
45111
|
},
|
|
43947
45112
|
"type": "array"
|
|
43948
45113
|
},
|
|
43949
|
-
"
|
|
45114
|
+
"teamGitExclusivity": {
|
|
43950
45115
|
"items": {
|
|
43951
45116
|
"$ref": "#/components/schemas/ACLAction"
|
|
43952
45117
|
},
|
|
43953
45118
|
"type": "array"
|
|
43954
45119
|
},
|
|
43955
|
-
"
|
|
45120
|
+
"teamInvite": {
|
|
43956
45121
|
"items": {
|
|
43957
45122
|
"$ref": "#/components/schemas/ACLAction"
|
|
43958
45123
|
},
|
|
43959
45124
|
"type": "array"
|
|
43960
45125
|
},
|
|
43961
|
-
"
|
|
45126
|
+
"teamInviteCode": {
|
|
43962
45127
|
"items": {
|
|
43963
45128
|
"$ref": "#/components/schemas/ACLAction"
|
|
43964
45129
|
},
|
|
43965
45130
|
"type": "array"
|
|
43966
45131
|
},
|
|
43967
|
-
"
|
|
45132
|
+
"teamJoin": {
|
|
43968
45133
|
"items": {
|
|
43969
45134
|
"$ref": "#/components/schemas/ACLAction"
|
|
43970
45135
|
},
|
|
43971
45136
|
"type": "array"
|
|
43972
45137
|
},
|
|
43973
|
-
"
|
|
45138
|
+
"teamMemberMfaStatus": {
|
|
43974
45139
|
"items": {
|
|
43975
45140
|
"$ref": "#/components/schemas/ACLAction"
|
|
43976
45141
|
},
|
|
43977
45142
|
"type": "array"
|
|
43978
45143
|
},
|
|
43979
|
-
"
|
|
45144
|
+
"teamMicrofrontends": {
|
|
43980
45145
|
"items": {
|
|
43981
45146
|
"$ref": "#/components/schemas/ACLAction"
|
|
43982
45147
|
},
|
|
43983
45148
|
"type": "array"
|
|
43984
45149
|
},
|
|
43985
|
-
"
|
|
45150
|
+
"teamOwnMembership": {
|
|
43986
45151
|
"items": {
|
|
43987
45152
|
"$ref": "#/components/schemas/ACLAction"
|
|
43988
45153
|
},
|
|
43989
45154
|
"type": "array"
|
|
43990
45155
|
},
|
|
43991
|
-
"
|
|
45156
|
+
"teamOwnMembershipDisconnectSAML": {
|
|
43992
45157
|
"items": {
|
|
43993
45158
|
"$ref": "#/components/schemas/ACLAction"
|
|
43994
45159
|
},
|
|
43995
45160
|
"type": "array"
|
|
43996
45161
|
},
|
|
43997
|
-
"
|
|
45162
|
+
"token": {
|
|
43998
45163
|
"items": {
|
|
43999
45164
|
"$ref": "#/components/schemas/ACLAction"
|
|
44000
45165
|
},
|
|
44001
45166
|
"type": "array"
|
|
44002
45167
|
},
|
|
44003
|
-
"
|
|
45168
|
+
"usage": {
|
|
44004
45169
|
"items": {
|
|
44005
45170
|
"$ref": "#/components/schemas/ACLAction"
|
|
44006
45171
|
},
|
|
44007
45172
|
"type": "array"
|
|
44008
45173
|
},
|
|
44009
|
-
"
|
|
45174
|
+
"usageCycle": {
|
|
44010
45175
|
"items": {
|
|
44011
45176
|
"$ref": "#/components/schemas/ACLAction"
|
|
44012
45177
|
},
|
|
44013
45178
|
"type": "array"
|
|
44014
45179
|
},
|
|
44015
|
-
"
|
|
45180
|
+
"vpcPeeringConnection": {
|
|
44016
45181
|
"items": {
|
|
44017
45182
|
"$ref": "#/components/schemas/ACLAction"
|
|
44018
45183
|
},
|
|
44019
45184
|
"type": "array"
|
|
44020
45185
|
},
|
|
44021
|
-
"
|
|
45186
|
+
"webAnalyticsPlan": {
|
|
44022
45187
|
"items": {
|
|
44023
45188
|
"$ref": "#/components/schemas/ACLAction"
|
|
44024
45189
|
},
|
|
44025
45190
|
"type": "array"
|
|
44026
45191
|
},
|
|
44027
|
-
"
|
|
45192
|
+
"edgeConfig": {
|
|
44028
45193
|
"items": {
|
|
44029
45194
|
"$ref": "#/components/schemas/ACLAction"
|
|
44030
45195
|
},
|
|
44031
45196
|
"type": "array"
|
|
44032
45197
|
},
|
|
44033
|
-
"
|
|
45198
|
+
"edgeConfigItem": {
|
|
44034
45199
|
"items": {
|
|
44035
45200
|
"$ref": "#/components/schemas/ACLAction"
|
|
44036
45201
|
},
|
|
44037
45202
|
"type": "array"
|
|
44038
45203
|
},
|
|
44039
|
-
"
|
|
45204
|
+
"edgeConfigSchema": {
|
|
44040
45205
|
"items": {
|
|
44041
45206
|
"$ref": "#/components/schemas/ACLAction"
|
|
44042
45207
|
},
|
|
44043
45208
|
"type": "array"
|
|
44044
45209
|
},
|
|
44045
|
-
"
|
|
45210
|
+
"edgeConfigToken": {
|
|
44046
45211
|
"items": {
|
|
44047
45212
|
"$ref": "#/components/schemas/ACLAction"
|
|
44048
45213
|
},
|
|
44049
45214
|
"type": "array"
|
|
44050
45215
|
},
|
|
44051
|
-
"
|
|
45216
|
+
"webhook": {
|
|
44052
45217
|
"items": {
|
|
44053
45218
|
"$ref": "#/components/schemas/ACLAction"
|
|
44054
45219
|
},
|
|
44055
45220
|
"type": "array"
|
|
44056
45221
|
},
|
|
44057
|
-
"
|
|
45222
|
+
"webhook-event": {
|
|
44058
45223
|
"items": {
|
|
44059
45224
|
"$ref": "#/components/schemas/ACLAction"
|
|
44060
45225
|
},
|
|
44061
45226
|
"type": "array"
|
|
44062
45227
|
},
|
|
44063
|
-
"
|
|
45228
|
+
"endpointVerification": {
|
|
44064
45229
|
"items": {
|
|
44065
45230
|
"$ref": "#/components/schemas/ACLAction"
|
|
44066
45231
|
},
|
|
44067
45232
|
"type": "array"
|
|
44068
45233
|
},
|
|
44069
|
-
"
|
|
45234
|
+
"projectTransferIn": {
|
|
44070
45235
|
"items": {
|
|
44071
45236
|
"$ref": "#/components/schemas/ACLAction"
|
|
44072
45237
|
},
|
|
44073
45238
|
"type": "array"
|
|
44074
45239
|
},
|
|
44075
|
-
"
|
|
45240
|
+
"oauth2Application": {
|
|
44076
45241
|
"items": {
|
|
44077
45242
|
"$ref": "#/components/schemas/ACLAction"
|
|
44078
45243
|
},
|
|
44079
45244
|
"type": "array"
|
|
44080
45245
|
},
|
|
44081
|
-
"
|
|
45246
|
+
"vercelRun": {
|
|
44082
45247
|
"items": {
|
|
44083
45248
|
"$ref": "#/components/schemas/ACLAction"
|
|
44084
45249
|
},
|
|
44085
45250
|
"type": "array"
|
|
44086
45251
|
},
|
|
44087
|
-
"
|
|
45252
|
+
"vercelRunExec": {
|
|
44088
45253
|
"items": {
|
|
44089
45254
|
"$ref": "#/components/schemas/ACLAction"
|
|
44090
45255
|
},
|
|
44091
45256
|
"type": "array"
|
|
44092
45257
|
},
|
|
44093
|
-
"
|
|
45258
|
+
"apiKey": {
|
|
44094
45259
|
"items": {
|
|
44095
45260
|
"$ref": "#/components/schemas/ACLAction"
|
|
44096
45261
|
},
|
|
44097
45262
|
"type": "array"
|
|
44098
45263
|
},
|
|
44099
|
-
"
|
|
45264
|
+
"apiKeyOwnedBySelf": {
|
|
44100
45265
|
"items": {
|
|
44101
45266
|
"$ref": "#/components/schemas/ACLAction"
|
|
44102
45267
|
},
|
|
@@ -44422,8 +45587,8 @@
|
|
|
44422
45587
|
"type": {
|
|
44423
45588
|
"type": "string",
|
|
44424
45589
|
"enum": [
|
|
44425
|
-
"host",
|
|
44426
45590
|
"path",
|
|
45591
|
+
"host",
|
|
44427
45592
|
"method",
|
|
44428
45593
|
"header",
|
|
44429
45594
|
"cookie",
|
|
@@ -44504,8 +45669,8 @@
|
|
|
44504
45669
|
"type": {
|
|
44505
45670
|
"type": "string",
|
|
44506
45671
|
"enum": [
|
|
44507
|
-
"host",
|
|
44508
45672
|
"path",
|
|
45673
|
+
"host",
|
|
44509
45674
|
"method",
|
|
44510
45675
|
"header",
|
|
44511
45676
|
"cookie",
|
|
@@ -44736,6 +45901,9 @@
|
|
|
44736
45901
|
"owasp"
|
|
44737
45902
|
],
|
|
44738
45903
|
"type": "object"
|
|
45904
|
+
},
|
|
45905
|
+
"botIdEnabled": {
|
|
45906
|
+
"type": "boolean"
|
|
44739
45907
|
}
|
|
44740
45908
|
},
|
|
44741
45909
|
"type": "object"
|
|
@@ -49658,10 +50826,10 @@
|
|
|
49658
50826
|
"type": "string",
|
|
49659
50827
|
"enum": [
|
|
49660
50828
|
"system",
|
|
49661
|
-
"secret",
|
|
49662
50829
|
"encrypted",
|
|
49663
50830
|
"plain",
|
|
49664
|
-
"sensitive"
|
|
50831
|
+
"sensitive",
|
|
50832
|
+
"secret"
|
|
49665
50833
|
]
|
|
49666
50834
|
},
|
|
49667
50835
|
"sunsetSecretId": {
|
|
@@ -50060,10 +51228,10 @@
|
|
|
50060
51228
|
"type": "string",
|
|
50061
51229
|
"enum": [
|
|
50062
51230
|
"system",
|
|
50063
|
-
"secret",
|
|
50064
51231
|
"encrypted",
|
|
50065
51232
|
"plain",
|
|
50066
|
-
"sensitive"
|
|
51233
|
+
"sensitive",
|
|
51234
|
+
"secret"
|
|
50067
51235
|
]
|
|
50068
51236
|
},
|
|
50069
51237
|
"sunsetSecretId": {
|
|
@@ -52143,10 +53311,10 @@
|
|
|
52143
53311
|
"type": "string",
|
|
52144
53312
|
"enum": [
|
|
52145
53313
|
"system",
|
|
52146
|
-
"secret",
|
|
52147
53314
|
"encrypted",
|
|
52148
53315
|
"plain",
|
|
52149
|
-
"sensitive"
|
|
53316
|
+
"sensitive",
|
|
53317
|
+
"secret"
|
|
52150
53318
|
]
|
|
52151
53319
|
},
|
|
52152
53320
|
"sunsetSecretId": {
|
|
@@ -52558,10 +53726,10 @@
|
|
|
52558
53726
|
"type": "string",
|
|
52559
53727
|
"enum": [
|
|
52560
53728
|
"system",
|
|
52561
|
-
"secret",
|
|
52562
53729
|
"encrypted",
|
|
52563
53730
|
"plain",
|
|
52564
|
-
"sensitive"
|
|
53731
|
+
"sensitive",
|
|
53732
|
+
"secret"
|
|
52565
53733
|
]
|
|
52566
53734
|
},
|
|
52567
53735
|
"sunsetSecretId": {
|
|
@@ -52968,10 +54136,10 @@
|
|
|
52968
54136
|
"type": "string",
|
|
52969
54137
|
"enum": [
|
|
52970
54138
|
"system",
|
|
52971
|
-
"secret",
|
|
52972
54139
|
"encrypted",
|
|
52973
54140
|
"plain",
|
|
52974
|
-
"sensitive"
|
|
54141
|
+
"sensitive",
|
|
54142
|
+
"secret"
|
|
52975
54143
|
]
|
|
52976
54144
|
},
|
|
52977
54145
|
"sunsetSecretId": {
|
|
@@ -53486,10 +54654,10 @@
|
|
|
53486
54654
|
"type": "string",
|
|
53487
54655
|
"enum": [
|
|
53488
54656
|
"system",
|
|
53489
|
-
"secret",
|
|
53490
54657
|
"encrypted",
|
|
53491
54658
|
"plain",
|
|
53492
|
-
"sensitive"
|
|
54659
|
+
"sensitive",
|
|
54660
|
+
"secret"
|
|
53493
54661
|
]
|
|
53494
54662
|
},
|
|
53495
54663
|
"sunsetSecretId": {
|
|
@@ -54012,6 +55180,185 @@
|
|
|
54012
55180
|
"x-speakeasy-test": false
|
|
54013
55181
|
}
|
|
54014
55182
|
},
|
|
55183
|
+
"/v1/projects/{idOrName}/rolling-release/billing": {
|
|
55184
|
+
"get": {
|
|
55185
|
+
"description": "Get the Rolling Releases billing status for a project. The team level billing status is used to determine if the project can be configured for rolling releases.",
|
|
55186
|
+
"operationId": "getRollingReleaseBillingStatus",
|
|
55187
|
+
"security": [
|
|
55188
|
+
{
|
|
55189
|
+
"bearerToken": []
|
|
55190
|
+
}
|
|
55191
|
+
],
|
|
55192
|
+
"summary": "Get rolling release billing status",
|
|
55193
|
+
"tags": [
|
|
55194
|
+
"rolling-release"
|
|
55195
|
+
],
|
|
55196
|
+
"responses": {
|
|
55197
|
+
"200": {
|
|
55198
|
+
"description": "",
|
|
55199
|
+
"content": {
|
|
55200
|
+
"application/json": {
|
|
55201
|
+
"schema": {
|
|
55202
|
+
"oneOf": [
|
|
55203
|
+
{
|
|
55204
|
+
"properties": {
|
|
55205
|
+
"availableSlots": {
|
|
55206
|
+
"type": "number"
|
|
55207
|
+
},
|
|
55208
|
+
"reason": {
|
|
55209
|
+
"type": "string",
|
|
55210
|
+
"enum": [
|
|
55211
|
+
"available_slots"
|
|
55212
|
+
]
|
|
55213
|
+
}
|
|
55214
|
+
},
|
|
55215
|
+
"required": [
|
|
55216
|
+
"availableSlots",
|
|
55217
|
+
"reason"
|
|
55218
|
+
],
|
|
55219
|
+
"type": "object"
|
|
55220
|
+
},
|
|
55221
|
+
{
|
|
55222
|
+
"properties": {
|
|
55223
|
+
"availableSlots": {
|
|
55224
|
+
"type": "string",
|
|
55225
|
+
"enum": [
|
|
55226
|
+
"unlimited"
|
|
55227
|
+
]
|
|
55228
|
+
},
|
|
55229
|
+
"reason": {
|
|
55230
|
+
"type": "string",
|
|
55231
|
+
"enum": [
|
|
55232
|
+
"unlimited_slots"
|
|
55233
|
+
]
|
|
55234
|
+
}
|
|
55235
|
+
},
|
|
55236
|
+
"required": [
|
|
55237
|
+
"availableSlots",
|
|
55238
|
+
"reason"
|
|
55239
|
+
],
|
|
55240
|
+
"type": "object"
|
|
55241
|
+
},
|
|
55242
|
+
{
|
|
55243
|
+
"properties": {
|
|
55244
|
+
"availableSlots": {
|
|
55245
|
+
"type": "number",
|
|
55246
|
+
"enum": [
|
|
55247
|
+
0
|
|
55248
|
+
]
|
|
55249
|
+
},
|
|
55250
|
+
"reason": {
|
|
55251
|
+
"type": "string",
|
|
55252
|
+
"enum": [
|
|
55253
|
+
"plan_not_supported"
|
|
55254
|
+
]
|
|
55255
|
+
}
|
|
55256
|
+
},
|
|
55257
|
+
"required": [
|
|
55258
|
+
"availableSlots",
|
|
55259
|
+
"reason"
|
|
55260
|
+
],
|
|
55261
|
+
"type": "object"
|
|
55262
|
+
},
|
|
55263
|
+
{
|
|
55264
|
+
"properties": {
|
|
55265
|
+
"availableSlots": {
|
|
55266
|
+
"type": "number",
|
|
55267
|
+
"enum": [
|
|
55268
|
+
0
|
|
55269
|
+
]
|
|
55270
|
+
},
|
|
55271
|
+
"reason": {
|
|
55272
|
+
"type": "string",
|
|
55273
|
+
"enum": [
|
|
55274
|
+
"no_available_slots"
|
|
55275
|
+
]
|
|
55276
|
+
},
|
|
55277
|
+
"enabledProjects": {
|
|
55278
|
+
"items": {
|
|
55279
|
+
"type": "string"
|
|
55280
|
+
},
|
|
55281
|
+
"type": "array"
|
|
55282
|
+
}
|
|
55283
|
+
},
|
|
55284
|
+
"required": [
|
|
55285
|
+
"availableSlots",
|
|
55286
|
+
"reason",
|
|
55287
|
+
"enabledProjects"
|
|
55288
|
+
],
|
|
55289
|
+
"type": "object"
|
|
55290
|
+
}
|
|
55291
|
+
]
|
|
55292
|
+
}
|
|
55293
|
+
}
|
|
55294
|
+
}
|
|
55295
|
+
},
|
|
55296
|
+
"400": {
|
|
55297
|
+
"description": "One of the provided values in the request query is invalid.",
|
|
55298
|
+
"content": {
|
|
55299
|
+
"application/json": {
|
|
55300
|
+
"schema": {
|
|
55301
|
+
"$ref": "#/components/schemas/VercelBadRequestError"
|
|
55302
|
+
}
|
|
55303
|
+
}
|
|
55304
|
+
}
|
|
55305
|
+
},
|
|
55306
|
+
"401": {
|
|
55307
|
+
"description": "",
|
|
55308
|
+
"content": {
|
|
55309
|
+
"application/json": {
|
|
55310
|
+
"schema": {
|
|
55311
|
+
"$ref": "#/components/schemas/VercelForbiddenError"
|
|
55312
|
+
}
|
|
55313
|
+
}
|
|
55314
|
+
}
|
|
55315
|
+
},
|
|
55316
|
+
"403": {
|
|
55317
|
+
"description": "You do not have permission to access this resource."
|
|
55318
|
+
},
|
|
55319
|
+
"404": {
|
|
55320
|
+
"description": "",
|
|
55321
|
+
"content": {
|
|
55322
|
+
"application/json": {
|
|
55323
|
+
"schema": {
|
|
55324
|
+
"$ref": "#/components/schemas/VercelNotFoundError"
|
|
55325
|
+
}
|
|
55326
|
+
}
|
|
55327
|
+
}
|
|
55328
|
+
}
|
|
55329
|
+
},
|
|
55330
|
+
"parameters": [
|
|
55331
|
+
{
|
|
55332
|
+
"name": "idOrName",
|
|
55333
|
+
"description": "Project ID or project name (URL-encoded)",
|
|
55334
|
+
"in": "path",
|
|
55335
|
+
"required": true,
|
|
55336
|
+
"schema": {
|
|
55337
|
+
"description": "Project ID or project name (URL-encoded)",
|
|
55338
|
+
"type": "string"
|
|
55339
|
+
}
|
|
55340
|
+
},
|
|
55341
|
+
{
|
|
55342
|
+
"description": "The Team identifier to perform the request on behalf of.",
|
|
55343
|
+
"in": "query",
|
|
55344
|
+
"name": "teamId",
|
|
55345
|
+
"schema": {
|
|
55346
|
+
"type": "string",
|
|
55347
|
+
"example": "team_1a2b3c4d5e6f7g8h9i0j1k2l"
|
|
55348
|
+
}
|
|
55349
|
+
},
|
|
55350
|
+
{
|
|
55351
|
+
"description": "The Team slug to perform the request on behalf of.",
|
|
55352
|
+
"in": "query",
|
|
55353
|
+
"name": "slug",
|
|
55354
|
+
"schema": {
|
|
55355
|
+
"type": "string",
|
|
55356
|
+
"example": "my-team-url-slug"
|
|
55357
|
+
}
|
|
55358
|
+
}
|
|
55359
|
+
]
|
|
55360
|
+
}
|
|
55361
|
+
},
|
|
54015
55362
|
"/v1/projects/{idOrName}/rolling-release/config": {
|
|
54016
55363
|
"get": {
|
|
54017
55364
|
"description": "Get the Rolling Releases configuration for a project. The project-level config is simply a template that will be used for any future rolling release, and not the configuration for any active rolling release.",
|
|
@@ -57464,6 +58811,9 @@
|
|
|
57464
58811
|
}
|
|
57465
58812
|
},
|
|
57466
58813
|
"type": "object"
|
|
58814
|
+
},
|
|
58815
|
+
"botIdEnabled": {
|
|
58816
|
+
"type": "boolean"
|
|
57467
58817
|
}
|
|
57468
58818
|
},
|
|
57469
58819
|
"required": [
|
|
@@ -58078,6 +59428,9 @@
|
|
|
58078
59428
|
],
|
|
58079
59429
|
"additionalProperties": false
|
|
58080
59430
|
}
|
|
59431
|
+
},
|
|
59432
|
+
"botIdEnabled": {
|
|
59433
|
+
"type": "boolean"
|
|
58081
59434
|
}
|
|
58082
59435
|
},
|
|
58083
59436
|
"required": [
|
|
@@ -59030,6 +60383,26 @@
|
|
|
59030
60383
|
"value"
|
|
59031
60384
|
],
|
|
59032
60385
|
"additionalProperties": false
|
|
60386
|
+
},
|
|
60387
|
+
{
|
|
60388
|
+
"description": "Toggle botID",
|
|
60389
|
+
"type": "object",
|
|
60390
|
+
"properties": {
|
|
60391
|
+
"action": {
|
|
60392
|
+
"type": "string"
|
|
60393
|
+
},
|
|
60394
|
+
"id": {
|
|
60395
|
+
"type": "string"
|
|
60396
|
+
},
|
|
60397
|
+
"value": {
|
|
60398
|
+
"type": "boolean"
|
|
60399
|
+
}
|
|
60400
|
+
},
|
|
60401
|
+
"required": [
|
|
60402
|
+
"action",
|
|
60403
|
+
"value"
|
|
60404
|
+
],
|
|
60405
|
+
"additionalProperties": false
|
|
59033
60406
|
}
|
|
59034
60407
|
]
|
|
59035
60408
|
}
|
|
@@ -59653,6 +61026,9 @@
|
|
|
59653
61026
|
}
|
|
59654
61027
|
},
|
|
59655
61028
|
"type": "object"
|
|
61029
|
+
},
|
|
61030
|
+
"botIdEnabled": {
|
|
61031
|
+
"type": "boolean"
|
|
59656
61032
|
}
|
|
59657
61033
|
},
|
|
59658
61034
|
"required": [
|
|
@@ -63672,6 +65048,7 @@
|
|
|
63672
65048
|
"deployment.integration.action.start",
|
|
63673
65049
|
"deployment.integration.action.cancel",
|
|
63674
65050
|
"deployment.integration.action.cleanup",
|
|
65051
|
+
"deployment.checkrun.start",
|
|
63675
65052
|
"edge-config.created",
|
|
63676
65053
|
"edge-config.deleted",
|
|
63677
65054
|
"edge-config.items.updated",
|
|
@@ -63741,6 +65118,7 @@
|
|
|
63741
65118
|
"deployment.integration.action.start",
|
|
63742
65119
|
"deployment.integration.action.cancel",
|
|
63743
65120
|
"deployment.integration.action.cleanup",
|
|
65121
|
+
"deployment.checkrun.start",
|
|
63744
65122
|
"edge-config.created",
|
|
63745
65123
|
"edge-config.deleted",
|
|
63746
65124
|
"edge-config.items.updated",
|
|
@@ -63928,6 +65306,7 @@
|
|
|
63928
65306
|
"deployment.integration.action.start",
|
|
63929
65307
|
"deployment.integration.action.cancel",
|
|
63930
65308
|
"deployment.integration.action.cleanup",
|
|
65309
|
+
"deployment.checkrun.start",
|
|
63931
65310
|
"edge-config.created",
|
|
63932
65311
|
"edge-config.deleted",
|
|
63933
65312
|
"edge-config.items.updated",
|
|
@@ -63995,6 +65374,7 @@
|
|
|
63995
65374
|
"deployment.integration.action.start",
|
|
63996
65375
|
"deployment.integration.action.cancel",
|
|
63997
65376
|
"deployment.integration.action.cleanup",
|
|
65377
|
+
"deployment.checkrun.start",
|
|
63998
65378
|
"edge-config.created",
|
|
63999
65379
|
"edge-config.deleted",
|
|
64000
65380
|
"edge-config.items.updated",
|
|
@@ -64179,6 +65559,7 @@
|
|
|
64179
65559
|
"deployment.integration.action.start",
|
|
64180
65560
|
"deployment.integration.action.cancel",
|
|
64181
65561
|
"deployment.integration.action.cleanup",
|
|
65562
|
+
"deployment.checkrun.start",
|
|
64182
65563
|
"edge-config.created",
|
|
64183
65564
|
"edge-config.deleted",
|
|
64184
65565
|
"edge-config.items.updated",
|
|
@@ -64248,6 +65629,7 @@
|
|
|
64248
65629
|
"deployment.integration.action.start",
|
|
64249
65630
|
"deployment.integration.action.cancel",
|
|
64250
65631
|
"deployment.integration.action.cleanup",
|
|
65632
|
+
"deployment.checkrun.start",
|
|
64251
65633
|
"edge-config.created",
|
|
64252
65634
|
"edge-config.deleted",
|
|
64253
65635
|
"edge-config.items.updated",
|
|
@@ -64375,6 +65757,7 @@
|
|
|
64375
65757
|
"deployment.integration.action.start",
|
|
64376
65758
|
"deployment.integration.action.cancel",
|
|
64377
65759
|
"deployment.integration.action.cleanup",
|
|
65760
|
+
"deployment.checkrun.start",
|
|
64378
65761
|
"edge-config.created",
|
|
64379
65762
|
"edge-config.deleted",
|
|
64380
65763
|
"edge-config.items.updated",
|
|
@@ -64444,6 +65827,7 @@
|
|
|
64444
65827
|
"deployment.integration.action.start",
|
|
64445
65828
|
"deployment.integration.action.cancel",
|
|
64446
65829
|
"deployment.integration.action.cleanup",
|
|
65830
|
+
"deployment.checkrun.start",
|
|
64447
65831
|
"edge-config.created",
|
|
64448
65832
|
"edge-config.deleted",
|
|
64449
65833
|
"edge-config.items.updated",
|
|
@@ -64646,6 +66030,7 @@
|
|
|
64646
66030
|
"deployment.integration.action.start",
|
|
64647
66031
|
"deployment.integration.action.cancel",
|
|
64648
66032
|
"deployment.integration.action.cleanup",
|
|
66033
|
+
"deployment.checkrun.start",
|
|
64649
66034
|
"edge-config.created",
|
|
64650
66035
|
"edge-config.deleted",
|
|
64651
66036
|
"edge-config.items.updated",
|
|
@@ -64715,6 +66100,7 @@
|
|
|
64715
66100
|
"deployment.integration.action.start",
|
|
64716
66101
|
"deployment.integration.action.cancel",
|
|
64717
66102
|
"deployment.integration.action.cleanup",
|
|
66103
|
+
"deployment.checkrun.start",
|
|
64718
66104
|
"edge-config.created",
|
|
64719
66105
|
"edge-config.deleted",
|
|
64720
66106
|
"edge-config.items.updated",
|
|
@@ -72317,6 +73703,10 @@
|
|
|
72317
73703
|
"increasedOnDemandEmailSentAt": {
|
|
72318
73704
|
"type": "number",
|
|
72319
73705
|
"description": "Tracks the last time we sent a increased on-demand email."
|
|
73706
|
+
},
|
|
73707
|
+
"increasedOnDemandEmailAttemptedAt": {
|
|
73708
|
+
"type": "number",
|
|
73709
|
+
"description": "Tracks the last time we attempted to send an increased on-demand email. This check is to limit the number of attempts per day."
|
|
72320
73710
|
}
|
|
72321
73711
|
},
|
|
72322
73712
|
"type": "object",
|