Class: Aws::APIGateway::Types::UpdateDeploymentRequest
- Inherits:
-
Struct
- Object
- Struct
- Aws::APIGateway::Types::UpdateDeploymentRequest
- Includes:
- Structure
- Defined in:
- 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>
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
#deployment_id ⇒ String
The replacement identifier for the Deployment resource to change information about.
7385 7386 7387 7388 7389 7390 7391 |
# File 'lib/aws-sdk-apigateway/types.rb', line 7385 class UpdateDeploymentRequest < Struct.new( :rest_api_id, :deployment_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.
7385 7386 7387 7388 7389 7390 7391 |
# File 'lib/aws-sdk-apigateway/types.rb', line 7385 class UpdateDeploymentRequest < Struct.new( :rest_api_id, :deployment_id, :patch_operations) SENSITIVE = [] include Aws::Structure end |
#rest_api_id ⇒ String
[Required] The string identifier of the associated RestApi.
7385 7386 7387 7388 7389 7390 7391 |
# File 'lib/aws-sdk-apigateway/types.rb', line 7385 class UpdateDeploymentRequest < Struct.new( :rest_api_id, :deployment_id, :patch_operations) SENSITIVE = [] include Aws::Structure end |