Update documentation part
apigateway_update_documentation_part(restApiId, documentationPartId,
patchOperations)[required] [Required] The string identifier of the associated RestApi.
[required] [Required] The identifier of the to-be-updated documentation part.
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(
id = "string",
location = list(
type = "API"|"AUTHORIZER"|"MODEL"|"RESOURCE"|"METHOD"|"PATH_PARAMETER"|"QUERY_PARAMETER"|"REQUEST_HEADER"|"REQUEST_BODY"|"RESPONSE"|"RESPONSE_HEADER"|"RESPONSE_BODY",
path = "string",
method = "string",
statusCode = "string",
name = "string"
),
properties = "string"
)
svc$update_documentation_part(
restApiId = "string",
documentationPartId = "string",
patchOperations = list(
list(
op = "add"|"remove"|"replace"|"move"|"copy"|"test",
path = "string",
value = "string",
from = "string"
)
)
)