Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: add mountable endpoint #31

Merged
merged 1 commit into from
Oct 25, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions rpadmin/api_mount.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,9 @@ import (
)

const (
baseMountEndpoint = "/v1/topics/mount"
baseUnmountEndpoint = "/v1/topics/unmount"
baseMountEndpoint = "/v1/topics/mount"
baseUnmountEndpoint = "/v1/topics/unmount"
baseMountableEndpoint = "/v1/topics/mountable"
)

// NamespacedTopic represents a topic with an optional namespace
Expand Down Expand Up @@ -73,6 +74,6 @@ type ListMountableTopicsResponse struct {
// ListMountableTopics retrieves a list of topics that can be mounted from cloud storage
func (a *AdminAPI) ListMountableTopics(ctx context.Context) (ListMountableTopicsResponse, error) {
var response ListMountableTopicsResponse
err := a.sendAny(ctx, http.MethodGet, baseMountEndpoint, nil, &response)
err := a.sendAny(ctx, http.MethodGet, baseMountableEndpoint, nil, &response)
return response, err
}
Loading