Update documentation version
apigateway_update_documentation_version(restApiId, documentationVersion,
patchOperations)[required] [Required] The string identifier of the associated RestApi..
[required] [Required] The version identifier of the to-be-updated documentation version.
A list of update operations to be applied to the specified resource and in the order specified in this list.
A list with the following syntax:
list(
version = "string",
createdDate = as.POSIXct(
"2015-01-01"
),
description = "string"
)
svc$update_documentation_version(
restApiId = "string",
documentationVersion = "string",
patchOperations = list(
list(
op = "add"|"remove"|"replace"|"move"|"copy"|"test",
path = "string",
value = "string",
from = "string"
)
)
)