Class: Aws::APIGateway::Types::UpdateDocumentationVersionRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::UpdateDocumentationVersionRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Note:
When making an API call, you may pass UpdateDocumentationVersionRequest data as a hash:
{
rest_api_id: "String", # required
documentation_version: "String", # required
patch_operations: [
{
op: "add", # accepts add, remove, replace, move, copy, test
path: "String",
value: "String",
from: "String",
},
],
}
Updates an existing documentation version of an API.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#documentation_version ⇒ String
[Required] The version identifier of the to-be-updated documentation version.
-
#patch_operations ⇒ Array<Types::PatchOperation>
A list of update operations to be applied to the specified resource and in the order specified in this list.
-
#rest_api_id ⇒ String
[Required] The string identifier of the associated RestApi..
Instance Attribute Details
#documentation_version ⇒ String
[Required] The version identifier of the to-be-updated documentation version.
7464 7465 7466 7467 7468 7469 7470 |
# File 'lib/aws-sdk-apigateway/types.rb', line 7464 class UpdateDocumentationVersionRequest < Struct.new( :rest_api_id, :documentation_version, :patch_operations) SENSITIVE = [] include Aws::Structure end |
#patch_operations ⇒ Array<Types::PatchOperation>
A list of update operations to be applied to the specified resource and in the order specified in this list.
7464 7465 7466 7467 7468 7469 7470 |
# File 'lib/aws-sdk-apigateway/types.rb', line 7464 class UpdateDocumentationVersionRequest < Struct.new( :rest_api_id, :documentation_version, :patch_operations) SENSITIVE = [] include Aws::Structure end |
#rest_api_id ⇒ String
[Required] The string identifier of the associated RestApi..
7464 7465 7466 7467 7468 7469 7470 |
# File 'lib/aws-sdk-apigateway/types.rb', line 7464 class UpdateDocumentationVersionRequest < Struct.new( :rest_api_id, :documentation_version, :patch_operations) SENSITIVE = [] include Aws::Structure end |