mirror of
git://git.proxmox.com/git/pve-docs.git
synced 2025-02-01 05:47:08 +03:00
run make update-static
Signed-off-by: Thomas Lamprecht <t.lamprecht@proxmox.com>
This commit is contained in:
parent
76834d385d
commit
bb4c8cf8d8
@ -19584,7 +19584,9 @@ var pveapi = [
|
|||||||
"description" : "Lock/unlock the VM.",
|
"description" : "Lock/unlock the VM.",
|
||||||
"enum" : [
|
"enum" : [
|
||||||
"backup",
|
"backup",
|
||||||
|
"create",
|
||||||
"disk",
|
"disk",
|
||||||
|
"fstrim",
|
||||||
"migrate",
|
"migrate",
|
||||||
"mounted",
|
"mounted",
|
||||||
"rollback",
|
"rollback",
|
||||||
@ -20037,7 +20039,9 @@ var pveapi = [
|
|||||||
"description" : "Lock/unlock the VM.",
|
"description" : "Lock/unlock the VM.",
|
||||||
"enum" : [
|
"enum" : [
|
||||||
"backup",
|
"backup",
|
||||||
|
"create",
|
||||||
"disk",
|
"disk",
|
||||||
|
"fstrim",
|
||||||
"migrate",
|
"migrate",
|
||||||
"mounted",
|
"mounted",
|
||||||
"rollback",
|
"rollback",
|
||||||
@ -24691,7 +24695,9 @@ var pveapi = [
|
|||||||
"description" : "Lock/unlock the VM.",
|
"description" : "Lock/unlock the VM.",
|
||||||
"enum" : [
|
"enum" : [
|
||||||
"backup",
|
"backup",
|
||||||
|
"create",
|
||||||
"disk",
|
"disk",
|
||||||
|
"fstrim",
|
||||||
"migrate",
|
"migrate",
|
||||||
"mounted",
|
"mounted",
|
||||||
"rollback",
|
"rollback",
|
||||||
@ -27705,6 +27711,20 @@ var pveapi = [
|
|||||||
"type" : "boolean",
|
"type" : "boolean",
|
||||||
"typetext" : "<boolean>"
|
"typetext" : "<boolean>"
|
||||||
},
|
},
|
||||||
|
"cidr" : {
|
||||||
|
"description" : "IPv4 CIDR.",
|
||||||
|
"format" : "CIDRv4",
|
||||||
|
"optional" : 1,
|
||||||
|
"type" : "string",
|
||||||
|
"typetext" : "<string>"
|
||||||
|
},
|
||||||
|
"cidr6" : {
|
||||||
|
"description" : "IPv6 CIDR.",
|
||||||
|
"format" : "CIDRv6",
|
||||||
|
"optional" : 1,
|
||||||
|
"type" : "string",
|
||||||
|
"typetext" : "<string>"
|
||||||
|
},
|
||||||
"comments" : {
|
"comments" : {
|
||||||
"description" : "Comments",
|
"description" : "Comments",
|
||||||
"optional" : 1,
|
"optional" : 1,
|
||||||
@ -28001,6 +28021,20 @@ var pveapi = [
|
|||||||
"type" : "boolean",
|
"type" : "boolean",
|
||||||
"typetext" : "<boolean>"
|
"typetext" : "<boolean>"
|
||||||
},
|
},
|
||||||
|
"cidr" : {
|
||||||
|
"description" : "IPv4 CIDR.",
|
||||||
|
"format" : "CIDRv4",
|
||||||
|
"optional" : 1,
|
||||||
|
"type" : "string",
|
||||||
|
"typetext" : "<string>"
|
||||||
|
},
|
||||||
|
"cidr6" : {
|
||||||
|
"description" : "IPv6 CIDR.",
|
||||||
|
"format" : "CIDRv6",
|
||||||
|
"optional" : 1,
|
||||||
|
"type" : "string",
|
||||||
|
"typetext" : "<string>"
|
||||||
|
},
|
||||||
"comments" : {
|
"comments" : {
|
||||||
"description" : "Comments",
|
"description" : "Comments",
|
||||||
"optional" : 1,
|
"optional" : 1,
|
||||||
@ -33232,6 +33266,79 @@ var pveapi = [
|
|||||||
"path" : "/nodes/{node}/syslog",
|
"path" : "/nodes/{node}/syslog",
|
||||||
"text" : "syslog"
|
"text" : "syslog"
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
"info" : {
|
||||||
|
"GET" : {
|
||||||
|
"description" : "Read Journal",
|
||||||
|
"method" : "GET",
|
||||||
|
"name" : "journal",
|
||||||
|
"parameters" : {
|
||||||
|
"additionalProperties" : 0,
|
||||||
|
"properties" : {
|
||||||
|
"endcursor" : {
|
||||||
|
"description" : "End before the given Cursor. Conflicts with 'until'",
|
||||||
|
"optional" : 1,
|
||||||
|
"type" : "string",
|
||||||
|
"typetext" : "<string>"
|
||||||
|
},
|
||||||
|
"lastentries" : {
|
||||||
|
"description" : "Limit to the last X lines. Conflicts with a range.",
|
||||||
|
"minimum" : 0,
|
||||||
|
"optional" : 1,
|
||||||
|
"type" : "integer",
|
||||||
|
"typetext" : "<integer> (0 - N)"
|
||||||
|
},
|
||||||
|
"node" : {
|
||||||
|
"description" : "The cluster node name.",
|
||||||
|
"format" : "pve-node",
|
||||||
|
"type" : "string",
|
||||||
|
"typetext" : "<string>"
|
||||||
|
},
|
||||||
|
"since" : {
|
||||||
|
"description" : "Display all log since this UNIX epoch. Conflicts with 'startcursor'.",
|
||||||
|
"minimum" : 0,
|
||||||
|
"optional" : 1,
|
||||||
|
"type" : "integer",
|
||||||
|
"typetext" : "<integer> (0 - N)"
|
||||||
|
},
|
||||||
|
"startcursor" : {
|
||||||
|
"description" : "Start after the given Cursor. Conflicts with 'since'",
|
||||||
|
"optional" : 1,
|
||||||
|
"type" : "string",
|
||||||
|
"typetext" : "<string>"
|
||||||
|
},
|
||||||
|
"until" : {
|
||||||
|
"description" : "Display all log until this UNIX epoch. Conflicts with 'endcursor'.",
|
||||||
|
"minimum" : 0,
|
||||||
|
"optional" : 1,
|
||||||
|
"type" : "integer",
|
||||||
|
"typetext" : "<integer> (0 - N)"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"permissions" : {
|
||||||
|
"check" : [
|
||||||
|
"perm",
|
||||||
|
"/nodes/{node}",
|
||||||
|
[
|
||||||
|
"Sys.Syslog"
|
||||||
|
]
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"protected" : 1,
|
||||||
|
"proxyto" : "node",
|
||||||
|
"returns" : {
|
||||||
|
"items" : {
|
||||||
|
"type" : "string"
|
||||||
|
},
|
||||||
|
"type" : "array"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"leaf" : 1,
|
||||||
|
"path" : "/nodes/{node}/journal",
|
||||||
|
"text" : "journal"
|
||||||
|
},
|
||||||
{
|
{
|
||||||
"info" : {
|
"info" : {
|
||||||
"POST" : {
|
"POST" : {
|
||||||
@ -33245,9 +33352,9 @@ var pveapi = [
|
|||||||
"default" : "login",
|
"default" : "login",
|
||||||
"description" : "Run specific command or default to login.",
|
"description" : "Run specific command or default to login.",
|
||||||
"enum" : [
|
"enum" : [
|
||||||
"upgrade",
|
|
||||||
"ceph_install",
|
"ceph_install",
|
||||||
"login"
|
"login",
|
||||||
|
"upgrade"
|
||||||
],
|
],
|
||||||
"optional" : 1,
|
"optional" : 1,
|
||||||
"type" : "string"
|
"type" : "string"
|
||||||
@ -33339,9 +33446,9 @@ var pveapi = [
|
|||||||
"default" : "login",
|
"default" : "login",
|
||||||
"description" : "Run specific command or default to login.",
|
"description" : "Run specific command or default to login.",
|
||||||
"enum" : [
|
"enum" : [
|
||||||
"upgrade",
|
|
||||||
"ceph_install",
|
"ceph_install",
|
||||||
"login"
|
"login",
|
||||||
|
"upgrade"
|
||||||
],
|
],
|
||||||
"optional" : 1,
|
"optional" : 1,
|
||||||
"type" : "string"
|
"type" : "string"
|
||||||
@ -33462,9 +33569,9 @@ var pveapi = [
|
|||||||
"default" : "login",
|
"default" : "login",
|
||||||
"description" : "Run specific command or default to login.",
|
"description" : "Run specific command or default to login.",
|
||||||
"enum" : [
|
"enum" : [
|
||||||
"upgrade",
|
|
||||||
"ceph_install",
|
"ceph_install",
|
||||||
"login"
|
"login",
|
||||||
|
"upgrade"
|
||||||
],
|
],
|
||||||
"optional" : 1,
|
"optional" : 1,
|
||||||
"type" : "string"
|
"type" : "string"
|
||||||
@ -35021,6 +35128,73 @@ var pveapi = [
|
|||||||
{
|
{
|
||||||
"children" : [
|
"children" : [
|
||||||
{
|
{
|
||||||
|
"children" : [
|
||||||
|
{
|
||||||
|
"info" : {
|
||||||
|
"GET" : {
|
||||||
|
"description" : "Get user TFA types (Personal and Realm).",
|
||||||
|
"method" : "GET",
|
||||||
|
"name" : "read_user_tfa_type",
|
||||||
|
"parameters" : {
|
||||||
|
"additionalProperties" : 0,
|
||||||
|
"properties" : {
|
||||||
|
"userid" : {
|
||||||
|
"description" : "User ID",
|
||||||
|
"format" : "pve-userid",
|
||||||
|
"maxLength" : 64,
|
||||||
|
"type" : "string",
|
||||||
|
"typetext" : "<string>"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"permissions" : {
|
||||||
|
"check" : [
|
||||||
|
"or",
|
||||||
|
[
|
||||||
|
"userid-param",
|
||||||
|
"self"
|
||||||
|
],
|
||||||
|
[
|
||||||
|
"userid-group",
|
||||||
|
[
|
||||||
|
"User.Modify",
|
||||||
|
"Sys.Audit"
|
||||||
|
]
|
||||||
|
]
|
||||||
|
]
|
||||||
|
},
|
||||||
|
"protected" : 1,
|
||||||
|
"returns" : {
|
||||||
|
"additionalProperties" : 0,
|
||||||
|
"properties" : {
|
||||||
|
"realm" : {
|
||||||
|
"description" : "The type of TFA the users realm has set, if any.",
|
||||||
|
"enum" : [
|
||||||
|
"oath",
|
||||||
|
"yubico"
|
||||||
|
],
|
||||||
|
"optional" : 1,
|
||||||
|
"type" : "string"
|
||||||
|
},
|
||||||
|
"user" : {
|
||||||
|
"description" : "The type of TFA the user has set, if any.",
|
||||||
|
"enum" : [
|
||||||
|
"oath",
|
||||||
|
"u2f"
|
||||||
|
],
|
||||||
|
"optional" : 1,
|
||||||
|
"type" : "string"
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"type" : "object"
|
||||||
|
}
|
||||||
|
}
|
||||||
|
},
|
||||||
|
"leaf" : 1,
|
||||||
|
"path" : "/access/users/{userid}/tfa",
|
||||||
|
"text" : "tfa"
|
||||||
|
}
|
||||||
|
],
|
||||||
"info" : {
|
"info" : {
|
||||||
"DELETE" : {
|
"DELETE" : {
|
||||||
"description" : "Delete user.",
|
"description" : "Delete user.",
|
||||||
@ -35212,7 +35386,7 @@ var pveapi = [
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"leaf" : 1,
|
"leaf" : 0,
|
||||||
"path" : "/access/users/{userid}",
|
"path" : "/access/users/{userid}",
|
||||||
"text" : "{userid}"
|
"text" : "{userid}"
|
||||||
}
|
}
|
||||||
|
@ -140,7 +140,7 @@ Set a host name for the container.
|
|||||||
|
|
||||||
Ignore errors when extracting the template.
|
Ignore errors when extracting the template.
|
||||||
|
|
||||||
`--lock` `<backup | disk | migrate | mounted | rollback | snapshot | snapshot-delete>` ::
|
`--lock` `<backup | create | disk | fstrim | migrate | mounted | rollback | snapshot | snapshot-delete>` ::
|
||||||
|
|
||||||
Lock/unlock the VM.
|
Lock/unlock the VM.
|
||||||
|
|
||||||
@ -560,7 +560,7 @@ Set a host name for the container.
|
|||||||
|
|
||||||
Ignore errors when extracting the template.
|
Ignore errors when extracting the template.
|
||||||
|
|
||||||
`--lock` `<backup | disk | migrate | mounted | rollback | snapshot | snapshot-delete>` ::
|
`--lock` `<backup | create | disk | fstrim | migrate | mounted | rollback | snapshot | snapshot-delete>` ::
|
||||||
|
|
||||||
Lock/unlock the VM.
|
Lock/unlock the VM.
|
||||||
|
|
||||||
@ -730,7 +730,7 @@ Script that will be exectued during various steps in the containers lifetime.
|
|||||||
|
|
||||||
Set a host name for the container.
|
Set a host name for the container.
|
||||||
|
|
||||||
`--lock` `<backup | disk | migrate | mounted | rollback | snapshot | snapshot-delete>` ::
|
`--lock` `<backup | create | disk | fstrim | migrate | mounted | rollback | snapshot | snapshot-delete>` ::
|
||||||
|
|
||||||
Lock/unlock the VM.
|
Lock/unlock the VM.
|
||||||
|
|
||||||
|
@ -58,7 +58,7 @@ Script that will be exectued during various steps in the containers lifetime.
|
|||||||
|
|
||||||
Set a host name for the container.
|
Set a host name for the container.
|
||||||
|
|
||||||
`lock`: `<backup | disk | migrate | mounted | rollback | snapshot | snapshot-delete>` ::
|
`lock`: `<backup | create | disk | fstrim | migrate | mounted | rollback | snapshot | snapshot-delete>` ::
|
||||||
|
|
||||||
Lock/unlock the VM.
|
Lock/unlock the VM.
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user