mirror of
https://github.com/kubevela/kubevela.git
synced 2026-03-05 11:11:28 +00:00
19 lines
296 B
CUE
19 lines
296 B
CUE
#Do: {
|
|
#do: "do"
|
|
#provider: "http"
|
|
|
|
method: *"GET" | "POST" | "PUT" | "DELETE"
|
|
url: string
|
|
request?: {
|
|
body: string
|
|
header: [string]: string
|
|
trailer: [string]: string
|
|
}
|
|
response: {
|
|
body: string
|
|
header?: [string]: [...string]
|
|
trailer?: [string]: [...string]
|
|
}
|
|
...
|
|
}
|