mirror of
https://github.com/k3s-io/kubernetes.git
synced 2025-09-19 17:16:12 +00:00
Use versioned objects for GET and CONNECT operations
This commit is contained in:
@@ -5706,6 +5706,54 @@
|
||||
"summary": "connect GET requests to exec of Pod",
|
||||
"nickname": "connectGetNamespacedPodExec",
|
||||
"parameters": [
|
||||
{
|
||||
"type": "boolean",
|
||||
"paramType": "query",
|
||||
"name": "stdin",
|
||||
"description": "redirect the standard input stream of the pod for this call; defaults to false",
|
||||
"required": false,
|
||||
"allowMultiple": false
|
||||
},
|
||||
{
|
||||
"type": "boolean",
|
||||
"paramType": "query",
|
||||
"name": "stdout",
|
||||
"description": "redirect the standard output stream of the pod for this call; defaults to true",
|
||||
"required": false,
|
||||
"allowMultiple": false
|
||||
},
|
||||
{
|
||||
"type": "boolean",
|
||||
"paramType": "query",
|
||||
"name": "stderr",
|
||||
"description": "redirect the standard error stream of the pod for this call; defaults to true",
|
||||
"required": false,
|
||||
"allowMultiple": false
|
||||
},
|
||||
{
|
||||
"type": "boolean",
|
||||
"paramType": "query",
|
||||
"name": "tty",
|
||||
"description": "allocate a terminal for this exec call; defaults to false",
|
||||
"required": false,
|
||||
"allowMultiple": false
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"paramType": "query",
|
||||
"name": "container",
|
||||
"description": "the container in which to execute the command. Defaults to only container if there is only one container in the pod.",
|
||||
"required": false,
|
||||
"allowMultiple": false
|
||||
},
|
||||
{
|
||||
"type": "",
|
||||
"paramType": "query",
|
||||
"name": "command",
|
||||
"description": "the command to execute; argv array; not executed within a shell",
|
||||
"required": false,
|
||||
"allowMultiple": false
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"paramType": "path",
|
||||
@@ -5736,6 +5784,54 @@
|
||||
"summary": "connect POST requests to exec of Pod",
|
||||
"nickname": "connectPostNamespacedPodExec",
|
||||
"parameters": [
|
||||
{
|
||||
"type": "boolean",
|
||||
"paramType": "query",
|
||||
"name": "stdin",
|
||||
"description": "redirect the standard input stream of the pod for this call; defaults to false",
|
||||
"required": false,
|
||||
"allowMultiple": false
|
||||
},
|
||||
{
|
||||
"type": "boolean",
|
||||
"paramType": "query",
|
||||
"name": "stdout",
|
||||
"description": "redirect the standard output stream of the pod for this call; defaults to true",
|
||||
"required": false,
|
||||
"allowMultiple": false
|
||||
},
|
||||
{
|
||||
"type": "boolean",
|
||||
"paramType": "query",
|
||||
"name": "stderr",
|
||||
"description": "redirect the standard error stream of the pod for this call; defaults to true",
|
||||
"required": false,
|
||||
"allowMultiple": false
|
||||
},
|
||||
{
|
||||
"type": "boolean",
|
||||
"paramType": "query",
|
||||
"name": "tty",
|
||||
"description": "allocate a terminal for this exec call; defaults to false",
|
||||
"required": false,
|
||||
"allowMultiple": false
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"paramType": "query",
|
||||
"name": "container",
|
||||
"description": "the container in which to execute the command. Defaults to only container if there is only one container in the pod.",
|
||||
"required": false,
|
||||
"allowMultiple": false
|
||||
},
|
||||
{
|
||||
"type": "",
|
||||
"paramType": "query",
|
||||
"name": "command",
|
||||
"description": "the command to execute; argv array; not executed within a shell",
|
||||
"required": false,
|
||||
"allowMultiple": false
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"paramType": "path",
|
||||
@@ -5780,6 +5876,30 @@
|
||||
"required": false,
|
||||
"allowMultiple": false
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"paramType": "query",
|
||||
"name": "container",
|
||||
"description": "the container for which to stream logs; defaults to only container if there is one container in the pod",
|
||||
"required": false,
|
||||
"allowMultiple": false
|
||||
},
|
||||
{
|
||||
"type": "boolean",
|
||||
"paramType": "query",
|
||||
"name": "follow",
|
||||
"description": "follow the log stream of the pod; defaults to false",
|
||||
"required": false,
|
||||
"allowMultiple": false
|
||||
},
|
||||
{
|
||||
"type": "boolean",
|
||||
"paramType": "query",
|
||||
"name": "previous",
|
||||
"description": "return previous terminated container logs; defaults to false",
|
||||
"required": false,
|
||||
"allowMultiple": false
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"paramType": "path",
|
||||
@@ -5889,6 +6009,14 @@
|
||||
"summary": "connect GET requests to proxy of Pod",
|
||||
"nickname": "connectGetNamespacedPodProxy",
|
||||
"parameters": [
|
||||
{
|
||||
"type": "string",
|
||||
"paramType": "query",
|
||||
"name": "path",
|
||||
"description": "URL path to use in proxy request to pod",
|
||||
"required": false,
|
||||
"allowMultiple": false
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"paramType": "path",
|
||||
@@ -5919,6 +6047,14 @@
|
||||
"summary": "connect POST requests to proxy of Pod",
|
||||
"nickname": "connectPostNamespacedPodProxy",
|
||||
"parameters": [
|
||||
{
|
||||
"type": "string",
|
||||
"paramType": "query",
|
||||
"name": "path",
|
||||
"description": "URL path to use in proxy request to pod",
|
||||
"required": false,
|
||||
"allowMultiple": false
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"paramType": "path",
|
||||
@@ -5949,6 +6085,14 @@
|
||||
"summary": "connect PUT requests to proxy of Pod",
|
||||
"nickname": "connectPutNamespacedPodProxy",
|
||||
"parameters": [
|
||||
{
|
||||
"type": "string",
|
||||
"paramType": "query",
|
||||
"name": "path",
|
||||
"description": "URL path to use in proxy request to pod",
|
||||
"required": false,
|
||||
"allowMultiple": false
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"paramType": "path",
|
||||
@@ -5979,6 +6123,14 @@
|
||||
"summary": "connect DELETE requests to proxy of Pod",
|
||||
"nickname": "connectDeleteNamespacedPodProxy",
|
||||
"parameters": [
|
||||
{
|
||||
"type": "string",
|
||||
"paramType": "query",
|
||||
"name": "path",
|
||||
"description": "URL path to use in proxy request to pod",
|
||||
"required": false,
|
||||
"allowMultiple": false
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"paramType": "path",
|
||||
@@ -6009,6 +6161,14 @@
|
||||
"summary": "connect HEAD requests to proxy of Pod",
|
||||
"nickname": "connectHeadNamespacedPodProxy",
|
||||
"parameters": [
|
||||
{
|
||||
"type": "string",
|
||||
"paramType": "query",
|
||||
"name": "path",
|
||||
"description": "URL path to use in proxy request to pod",
|
||||
"required": false,
|
||||
"allowMultiple": false
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"paramType": "path",
|
||||
@@ -6039,6 +6199,14 @@
|
||||
"summary": "connect OPTIONS requests to proxy of Pod",
|
||||
"nickname": "connectOptionsNamespacedPodProxy",
|
||||
"parameters": [
|
||||
{
|
||||
"type": "string",
|
||||
"paramType": "query",
|
||||
"name": "path",
|
||||
"description": "URL path to use in proxy request to pod",
|
||||
"required": false,
|
||||
"allowMultiple": false
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"paramType": "path",
|
||||
@@ -6075,6 +6243,14 @@
|
||||
"summary": "connect GET requests to proxy of Pod",
|
||||
"nickname": "connectGetNamespacedPodProxy",
|
||||
"parameters": [
|
||||
{
|
||||
"type": "string",
|
||||
"paramType": "query",
|
||||
"name": "path",
|
||||
"description": "URL path to use in proxy request to pod",
|
||||
"required": false,
|
||||
"allowMultiple": false
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"paramType": "path",
|
||||
@@ -6113,6 +6289,14 @@
|
||||
"summary": "connect POST requests to proxy of Pod",
|
||||
"nickname": "connectPostNamespacedPodProxy",
|
||||
"parameters": [
|
||||
{
|
||||
"type": "string",
|
||||
"paramType": "query",
|
||||
"name": "path",
|
||||
"description": "URL path to use in proxy request to pod",
|
||||
"required": false,
|
||||
"allowMultiple": false
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"paramType": "path",
|
||||
@@ -6151,6 +6335,14 @@
|
||||
"summary": "connect PUT requests to proxy of Pod",
|
||||
"nickname": "connectPutNamespacedPodProxy",
|
||||
"parameters": [
|
||||
{
|
||||
"type": "string",
|
||||
"paramType": "query",
|
||||
"name": "path",
|
||||
"description": "URL path to use in proxy request to pod",
|
||||
"required": false,
|
||||
"allowMultiple": false
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"paramType": "path",
|
||||
@@ -6189,6 +6381,14 @@
|
||||
"summary": "connect DELETE requests to proxy of Pod",
|
||||
"nickname": "connectDeleteNamespacedPodProxy",
|
||||
"parameters": [
|
||||
{
|
||||
"type": "string",
|
||||
"paramType": "query",
|
||||
"name": "path",
|
||||
"description": "URL path to use in proxy request to pod",
|
||||
"required": false,
|
||||
"allowMultiple": false
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"paramType": "path",
|
||||
@@ -6227,6 +6427,14 @@
|
||||
"summary": "connect HEAD requests to proxy of Pod",
|
||||
"nickname": "connectHeadNamespacedPodProxy",
|
||||
"parameters": [
|
||||
{
|
||||
"type": "string",
|
||||
"paramType": "query",
|
||||
"name": "path",
|
||||
"description": "URL path to use in proxy request to pod",
|
||||
"required": false,
|
||||
"allowMultiple": false
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"paramType": "path",
|
||||
@@ -6265,6 +6473,14 @@
|
||||
"summary": "connect OPTIONS requests to proxy of Pod",
|
||||
"nickname": "connectOptionsNamespacedPodProxy",
|
||||
"parameters": [
|
||||
{
|
||||
"type": "string",
|
||||
"paramType": "query",
|
||||
"name": "path",
|
||||
"description": "URL path to use in proxy request to pod",
|
||||
"required": false,
|
||||
"allowMultiple": false
|
||||
},
|
||||
{
|
||||
"type": "string",
|
||||
"paramType": "path",
|
||||
|
Reference in New Issue
Block a user