Class: Aws::APIGateway::Types::UpdateDeploymentRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::UpdateDeploymentRequest
- Defined in:
- gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb
Overview
Note:
When making an API call, you may pass UpdateDeploymentRequest data as a hash:
{
rest_api_id: "String", # required
deployment_id: "String", # required
patch_operations: [
{
op: "add", # accepts add, remove, replace, move, copy, test
path: "String",
value: "String",
from: "String",
},
],
}
Requests API Gateway to change information about a Deployment resource.
Constant Summary collapse
- SENSITIVE =
[]
Instance Attribute Summary collapse
-
#deployment_id ⇒ String
The replacement identifier for the Deployment resource to change information about.
-
#patch_operations ⇒ Array<Types::PatchOperation>
For more information about supported patch operations, see [Patch Operations][1].
-
#rest_api_id ⇒ String
The string identifier of the associated RestApi.
Instance Attribute Details
#deployment_id ⇒ String
The replacement identifier for the Deployment resource to change information about.
6574 6575 6576 6577 6578 6579 6580 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 6574 class UpdateDeploymentRequest < Struct.new( :rest_api_id, :deployment_id, :patch_operations) SENSITIVE = [] include Aws::Structure end |
#patch_operations ⇒ Array<Types::PatchOperation>
For more information about supported patch operations, see Patch Operations.
6574 6575 6576 6577 6578 6579 6580 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 6574 class UpdateDeploymentRequest < Struct.new( :rest_api_id, :deployment_id, :patch_operations) SENSITIVE = [] include Aws::Structure end |
#rest_api_id ⇒ String
The string identifier of the associated RestApi.
6574 6575 6576 6577 6578 6579 6580 |
# File 'gems/aws-sdk-apigateway/lib/aws-sdk-apigateway/types.rb', line 6574 class UpdateDeploymentRequest < Struct.new( :rest_api_id, :deployment_id, :patch_operations) SENSITIVE = [] include Aws::Structure end |