blob: ac6f59e2b9a98720fb1b7acf3471547bd80edf2b [file] [log] [blame]
/*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
import request from '@/utils/request'
const BASE_URL_V2 = '/admin/v2'
const SPRING_BASE_URL_V2 = '/pulsar-manager/admin/v2'
export function fetchClusters(query) {
return request({
url: SPRING_BASE_URL_V2 + '/clusters',
method: 'get',
params: { query }
})
}
export function fetchClusterConfig(cluster) {
return request({
url: BASE_URL_V2 + `/clusters/${cluster}`,
method: 'get'
})
}
export function putCluster(cluster, data) {
return request({
url: BASE_URL_V2 + `/clusters/${cluster}`,
method: 'put',
data
})
}
export function updateCluster(cluster, data) {
return request({
url: BASE_URL_V2 + `/clusters/${cluster}`,
method: 'post',
data
})
}
export function deleteCluster(cluster) {
return request({
url: BASE_URL_V2 + `/clusters/${cluster}`,
method: 'delete'
})
}
export function updateClusterPeer(cluster, data) {
return request({
headers: { 'Content-Type': 'application/json' },
url: BASE_URL_V2 + `/clusters/${cluster}/peers`,
method: 'post',
data
})
}
export function getClusterPeer(cluster) {
return request({
url: BASE_URL_V2 + `/clusters/${cluster}/peers`,
method: 'get'
})
}
export function listClusterDomainName(cluster) {
return request({
url: BASE_URL_V2 + `/clusters/${cluster}/failureDomains`,
method: 'get'
})
}
export function getClusterDomainName(cluster, domainName) {
return request({
url: BASE_URL_V2 + `/clusters/${cluster}/failureDomains/${domainName}`,
method: 'get'
})
}
export function createClusterDomainName(cluster, domainName, data) {
return request({
headers: { 'Content-Type': 'application/json' },
url: BASE_URL_V2 + `/clusters/${cluster}/failureDomains/${domainName}`,
method: 'post',
data
})
}
export function updateClusterDomainName(cluster, domainName, data) {
return request({
headers: { 'Content-Type': 'application/json' },
url: BASE_URL_V2 + `/clusters/${cluster}/failureDomains/${domainName}`,
method: 'post',
data
})
}
export function deleteClusterDomainName(cluster, domainName) {
return request({
headers: { 'Content-Type': 'application/json' },
url: BASE_URL_V2 + `/clusters/${cluster}/failureDomains/${domainName}`,
method: 'post'
})
}