Files
kubevela/pkg/stdlib/pkgs/http.cue
2022-08-09 15:19:32 +08:00

23 lines
358 B
CUE

#Do: {
#do: "do"
#provider: "http"
method: *"GET" | "POST" | "PUT" | "DELETE"
url: string
request?: {
body: string
header: [string]: string
trailer: [string]: string
...
}
tls_config?: secret: string
response: {
body: string
header?: [string]: [...string]
trailer?: [string]: [...string]
statusCode: number
...
}
...
}