This is an automated email from the ASF dual-hosted git repository.
yuqi4733 pushed a commit to branch branch-1.0
in repository https://gitbox.apache.org/repos/asf/gravitino.git
The following commit(s) were added to refs/heads/branch-1.0 by this push:
new 904b74003f [#8706] fix(openAPI): fix missing policy ops in the openAPI
entrance (#8713)
904b74003f is described below
commit 904b74003fa59674b06443ea3d95582b27c4f0e6
Author: github-actions[bot]
<41898282+github-actions[bot]@users.noreply.github.com>
AuthorDate: Mon Sep 29 10:53:19 2025 +0800
[#8706] fix(openAPI): fix missing policy ops in the openAPI entrance (#8713)
### What changes were proposed in this pull request?
fix missing policy ops in the openAPI entrance
### Why are the changes needed?
Fix: #8706
### Does this PR introduce _any_ user-facing change?
no
### How was this patch tested?
CI pass
Co-authored-by: mchades <[email protected]>
---
docs/open-api/openapi.yaml | 6 ++++++
1 file changed, 6 insertions(+)
diff --git a/docs/open-api/openapi.yaml b/docs/open-api/openapi.yaml
index e43d805081..7e887cd5b0 100644
--- a/docs/open-api/openapi.yaml
+++ b/docs/open-api/openapi.yaml
@@ -65,6 +65,9 @@ paths:
/metalakes/{metalake}/objects/{metadataObjectType}/{metadataObjectFullName}/tags:
$ref:
"./tags.yaml#/paths/~1metalakes~1%7Bmetalake%7D~1objects~1%7BmetadataObjectType%7D~1%7BmetadataObjectFullName%7D~1tags"
+
/metalakes/{metalake}/objects/{metadataObjectType}/{metadataObjectFullName}/policies:
+ $ref:
"./policies.yaml#/paths/~1metalakes~1%7Bmetalake%7D~1objects~1%7BmetadataObjectType%7D~1%7BmetadataObjectFullName%7D~1policies"
+
/metalakes/{metalake}/objects/{metadataObjectType}/{metadataObjectFullName}/statistics:
$ref:
"./statistics.yaml#/paths/~1metalakes~1%7Bmetalake%7D~1objects~1%7BmetadataObjectType%7D~1%7BmetadataObjectFullName%7D~1statistics"
@@ -89,6 +92,9 @@ paths:
/metalakes/{metalake}/objects/{metadataObjectType}/{metadataObjectFullName}/tags/{tag}:
$ref:
"./tags.yaml#/paths/~1metalakes~1%7Bmetalake%7D~1objects~1%7BmetadataObjectType%7D~1%7BmetadataObjectFullName%7D~1tags~1%7Btag%7D"
+
/metalakes/{metalake}/objects/{metadataObjectType}/{metadataObjectFullName}/policies/{policy}:
+ $ref:
"./policies.yaml#/paths/~1metalakes~1%7Bmetalake%7D~1objects~1%7BmetadataObjectType%7D~1%7BmetadataObjectFullName%7D~1policies~1%7Bpolicy%7D"
+
/metalakes/{metalake}/tags/{tag}/objects:
$ref:
"./tags.yaml#/paths/~1metalakes~1%7Bmetalake%7D~1tags~1%7Btag%7D~1objects"