Class: Aws::APIGateway::Types::UpdateDeploymentRequest

Inherits:
Struct
  • Object
show all
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.

Instance Attribute Summary collapse

Instance Attribute Details

#deployment_idString

The replacement identifier for the Deployment resource to change information about.

Returns:

  • (String)


7119
7120
7121
7122
7123
7124
# File 'lib/aws-sdk-apigateway/types.rb', line 7119

class UpdateDeploymentRequest < Struct.new(
  :rest_api_id,
  :deployment_id,
  :patch_operations)
  include Aws::Structure
end

#patch_operationsArray<Types::PatchOperation>

A list of update operations to be applied to the specified resource and in the order specified in this list.

Returns:



7119
7120
7121
7122
7123
7124
# File 'lib/aws-sdk-apigateway/types.rb', line 7119

class UpdateDeploymentRequest < Struct.new(
  :rest_api_id,
  :deployment_id,
  :patch_operations)
  include Aws::Structure
end

#rest_api_idString

[Required] The string identifier of the associated RestApi.

Returns:

  • (String)


7119
7120
7121
7122
7123
7124
# File 'lib/aws-sdk-apigateway/types.rb', line 7119

class UpdateDeploymentRequest < Struct.new(
  :rest_api_id,
  :deployment_id,
  :patch_operations)
  include Aws::Structure
end