Skip to content

Commit

Permalink
feat(blob): add blob endpoint (#255)
Browse files Browse the repository at this point in the history
Because

wee need the endpoints for blob

This commit

adds the necessary endpoints
  • Loading branch information
Yougigun authored Oct 21, 2024
1 parent e49857c commit 7734452
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions config/settings-env/endpoints.json
Original file line number Diff line number Diff line change
Expand Up @@ -2996,6 +2996,20 @@
"fileId",
"fileUid"
]
},
{
"endpoint": "/v1alpha/namespaces/{namespace_id}/object-upload-url",
"url_pattern": "/v1alpha/namespaces/{namespace_id}/object-upload-url",
"method": "GET",
"timeout": "30s",
"input_query_strings": ["objectName", "urlExpireDays","lastModifiedTime","contentType","objectExpireDays"]
},
{
"endpoint": "/v1alpha/namespaces/{namespace_id}/object-download-url",
"url_pattern": "/v1alpha/namespaces/{namespace_id}/object-download-url",
"method": "GET",
"timeout": "30s",
"input_query_strings": ["objectUid","objectName","urlExpireDays"]
}
],
"grpc_auth": [
Expand Down Expand Up @@ -3082,6 +3096,18 @@
"url_pattern": "/artifact.artifact.v1alpha.ArtifactPublicService/GetFileCatalog",
"method": "POST",
"timeout": "30s"
},
{
"endpoint": "/artifact.artifact.v1alpha.ArtifactPublicService/GetObjectUploadURL",
"url_pattern": "/artifact.artifact.v1alpha.ArtifactPublicService/GetObjectUploadURL",
"method": "POST",
"timeout": "30s"
},
{
"endpoint": "/artifact.artifact.v1alpha.ArtifactPublicService/GetObjectDownloadURL",
"url_pattern": "/artifact.artifact.v1alpha.ArtifactPublicService/GetObjectDownloadURL",
"method": "POST",
"timeout": "30s"
}
],
"grpc_no_auth": [
Expand Down

0 comments on commit 7734452

Please sign in to comment.