Class: Aws::APIGateway::Types::UpdateDocumentationPartRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::UpdateDocumentationPartRequest
- Includes:
- Structure
- Defined in:
- lib/aws-sdk-apigateway/types.rb
Overview
Note:
When making an API call, you may pass UpdateDocumentationPartRequest data as a hash:
{
rest_api_id: "String", # required
documentation_part_id: "String", # required
patch_operations: [
{
op: "add", # accepts add, remove, replace, move, copy, test
path: "String",
value: "String",
from: "String",
},
],
}
Updates an existing documentation part of a given API.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#documentation_part_id ⇒ String
[Required] The identifier of the to-be-updated documentation part.
-
#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_part_id ⇒ String
[Required] The identifier of the to-be-updated documentation part.
7424 7425 7426 7427 7428 7429 7430 |
# File 'lib/aws-sdk-apigateway/types.rb', line 7424 class UpdateDocumentationPartRequest < Struct.new( :rest_api_id, :documentation_part_id, :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.
7424 7425 7426 7427 7428 7429 7430 |
# File 'lib/aws-sdk-apigateway/types.rb', line 7424 class UpdateDocumentationPartRequest < Struct.new( :rest_api_id, :documentation_part_id, :patch_operations) SENSITIVE = [] include Aws::Structure end |
#rest_api_id ⇒ String
[Required] The string identifier of the associated RestApi.
7424 7425 7426 7427 7428 7429 7430 |
# File 'lib/aws-sdk-apigateway/types.rb', line 7424 class UpdateDocumentationPartRequest < Struct.new( :rest_api_id, :documentation_part_id, :patch_operations) SENSITIVE = [] include Aws::Structure end |