add host list
This commit is contained in:
parent
e491b99b53
commit
d1f552e8a5
3 changed files with 27 additions and 10 deletions
|
@ -48,12 +48,19 @@ export type Account = {
|
|||
status?: string
|
||||
};
|
||||
|
||||
export type Host = {
|
||||
serviceId: string,
|
||||
isSslEnabled: boolean,
|
||||
hostname: string
|
||||
};
|
||||
|
||||
export type Service = {
|
||||
serviceId: string,
|
||||
serviceName: string,
|
||||
namespace: string,
|
||||
containerUrl: string,
|
||||
ownerId: string
|
||||
ownerId: string,
|
||||
hostnames: Host[]
|
||||
}
|
||||
|
||||
export type ApiError = {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue