aws-sdk-ecs 1.235.0 → 1.236.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: bfe1040d9c4d4ed524b853b5e24240cc866d443372cc211d19232fe4dc650a02
4
- data.tar.gz: 5db29d609a707d75c4b094241aa67476033f46b05c4d376736b66beb26ac0c72
3
+ metadata.gz: e7a766db64a652a9b9cf78f5b0e741778269d306df11f2638f64fbb144ae95c1
4
+ data.tar.gz: 66a333a5bf3e6fa60de495a249b01604b91dbd8a5f8e94db0eba3bfd916c6956
5
5
  SHA512:
6
- metadata.gz: 9a2a36b115a2b1798a56e0b5b54af48eee7949bba7e168a3722c2410253db5b35f09deeea51dfaedcb2541baf61c9cc7ab2dfbade3e929ff3cf66b0bdf8fece8
7
- data.tar.gz: c27d1024943d1d94ed61dd6179940e6123c42a453cd6c1afed3eb6348da5fac156fdf6c853d3f572fe7f1c429e59070cb636674cbb2ccb72d8e0f12fcd21af99
6
+ metadata.gz: 7c82b107776f99d2b50cffbd3f668ef40bdf53ee485102e59719793be3d69c0428b7106b663e7a6f2b579aed6c59f1ac09e12b6ecf7e770b46418de16ee0745e
7
+ data.tar.gz: 484a9c0f0278554dfa83d960b40281d58ea8764d8294099c69345856b698e9018cfbeddb32610646980bd343651a4b78dccc26b76f4fa8f025ffad70b61f2b41
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.236.0 (2026-06-10)
5
+ ------------------
6
+
7
+ * Feature - Amazon ECS Managed Daemon task definitions now support pidMode and ipcMode parameters. Set shared to allow daemons to share PID or IPC namespaces with co-located tasks on Managed Instances, enabling process tracing and shared memory communication.
8
+
4
9
  1.235.0 (2026-06-01)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.235.0
1
+ 1.236.0
@@ -5888,6 +5888,8 @@ module Aws::ECS
5888
5888
  # resp.daemon_task_definition.registered_at #=> Time
5889
5889
  # resp.daemon_task_definition.delete_requested_at #=> Time
5890
5890
  # resp.daemon_task_definition.registered_by #=> String
5891
+ # resp.daemon_task_definition.pid_mode #=> String, one of "none", "shared"
5892
+ # resp.daemon_task_definition.ipc_mode #=> String, one of "none", "shared"
5891
5893
  #
5892
5894
  #
5893
5895
  # The following waiters are defined for this operation (see {Client#wait_until} for detailed usage):
@@ -10390,6 +10392,20 @@ module Aws::ECS
10390
10392
  # values with this prefix. Tags with this prefix do not count against
10391
10393
  # your tags per resource limit.
10392
10394
  #
10395
+ # @option params [String] :pid_mode
10396
+ # The process namespace mode for the daemon. When set to `shared`, the
10397
+ # daemon shares the PID namespace with co-located tasks on the same
10398
+ # container instance, giving the daemon visibility into application
10399
+ # processes. When set to `none`, the daemon gets its own isolated PID
10400
+ # namespace. The default is `none`.
10401
+ #
10402
+ # @option params [String] :ipc_mode
10403
+ # The IPC namespace mode for the daemon. When set to `shared`, the
10404
+ # daemon shares the IPC namespace with co-located tasks on the same
10405
+ # container instance, allowing communication through POSIX shared
10406
+ # memory, semaphores, and message queues. When set to `none`, the daemon
10407
+ # gets its own isolated IPC namespace. The default is `none`.
10408
+ #
10393
10409
  # @return [Types::RegisterDaemonTaskDefinitionResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
10394
10410
  #
10395
10411
  # * {Types::RegisterDaemonTaskDefinitionResponse#daemon_task_definition_arn #daemon_task_definition_arn} => String
@@ -10576,6 +10592,8 @@ module Aws::ECS
10576
10592
  # value: "TagValue",
10577
10593
  # },
10578
10594
  # ],
10595
+ # pid_mode: "none", # accepts none, shared
10596
+ # ipc_mode: "none", # accepts none, shared
10579
10597
  # })
10580
10598
  #
10581
10599
  # @example Response structure
@@ -16010,7 +16028,7 @@ module Aws::ECS
16010
16028
  tracer: tracer
16011
16029
  )
16012
16030
  context[:gem_name] = 'aws-sdk-ecs'
16013
- context[:gem_version] = '1.235.0'
16031
+ context[:gem_version] = '1.236.0'
16014
16032
  Seahorse::Client::Request.new(handlers, context)
16015
16033
  end
16016
16034
 
@@ -149,9 +149,11 @@ module Aws::ECS
149
149
  DaemonDeploymentSummaryList = Shapes::ListShape.new(name: 'DaemonDeploymentSummaryList')
150
150
  DaemonDetail = Shapes::StructureShape.new(name: 'DaemonDetail')
151
151
  DaemonDrainPercent = Shapes::FloatShape.new(name: 'DaemonDrainPercent')
152
+ DaemonIpcMode = Shapes::StringShape.new(name: 'DaemonIpcMode')
152
153
  DaemonLinuxParameters = Shapes::StructureShape.new(name: 'DaemonLinuxParameters')
153
154
  DaemonNotActiveException = Shapes::StructureShape.new(name: 'DaemonNotActiveException')
154
155
  DaemonNotFoundException = Shapes::StructureShape.new(name: 'DaemonNotFoundException')
156
+ DaemonPidMode = Shapes::StringShape.new(name: 'DaemonPidMode')
155
157
  DaemonPropagateTags = Shapes::StringShape.new(name: 'DaemonPropagateTags')
156
158
  DaemonRevision = Shapes::StructureShape.new(name: 'DaemonRevision')
157
159
  DaemonRevisionDetail = Shapes::StructureShape.new(name: 'DaemonRevisionDetail')
@@ -1259,6 +1261,8 @@ module Aws::ECS
1259
1261
  DaemonTaskDefinition.add_member(:registered_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "registeredAt"))
1260
1262
  DaemonTaskDefinition.add_member(:delete_requested_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "deleteRequestedAt"))
1261
1263
  DaemonTaskDefinition.add_member(:registered_by, Shapes::ShapeRef.new(shape: String, location_name: "registeredBy"))
1264
+ DaemonTaskDefinition.add_member(:pid_mode, Shapes::ShapeRef.new(shape: DaemonPidMode, location_name: "pidMode"))
1265
+ DaemonTaskDefinition.add_member(:ipc_mode, Shapes::ShapeRef.new(shape: DaemonIpcMode, location_name: "ipcMode"))
1262
1266
  DaemonTaskDefinition.struct_class = Types::DaemonTaskDefinition
1263
1267
 
1264
1268
  DaemonTaskDefinitionSummaries.member = Shapes::ShapeRef.new(shape: DaemonTaskDefinitionSummary)
@@ -2331,6 +2335,8 @@ module Aws::ECS
2331
2335
  RegisterDaemonTaskDefinitionRequest.add_member(:memory, Shapes::ShapeRef.new(shape: String, location_name: "memory"))
2332
2336
  RegisterDaemonTaskDefinitionRequest.add_member(:volumes, Shapes::ShapeRef.new(shape: DaemonVolumeList, location_name: "volumes"))
2333
2337
  RegisterDaemonTaskDefinitionRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
2338
+ RegisterDaemonTaskDefinitionRequest.add_member(:pid_mode, Shapes::ShapeRef.new(shape: DaemonPidMode, location_name: "pidMode"))
2339
+ RegisterDaemonTaskDefinitionRequest.add_member(:ipc_mode, Shapes::ShapeRef.new(shape: DaemonIpcMode, location_name: "ipcMode"))
2334
2340
  RegisterDaemonTaskDefinitionRequest.struct_class = Types::RegisterDaemonTaskDefinitionRequest
2335
2341
 
2336
2342
  RegisterDaemonTaskDefinitionResponse.add_member(:daemon_task_definition_arn, Shapes::ShapeRef.new(shape: String, location_name: "daemonTaskDefinitionArn"))
@@ -4951,6 +4951,21 @@ module Aws::ECS
4951
4951
  # The principal that registered the daemon task definition.
4952
4952
  # @return [String]
4953
4953
  #
4954
+ # @!attribute [rw] pid_mode
4955
+ # The process namespace mode for the daemon. A value of `shared` means
4956
+ # the daemon shares the PID namespace with co-located tasks, giving it
4957
+ # visibility into application processes. A value of `none` means the
4958
+ # daemon has its own isolated PID namespace.
4959
+ # @return [String]
4960
+ #
4961
+ # @!attribute [rw] ipc_mode
4962
+ # The IPC namespace mode for the daemon. A value of `shared` means the
4963
+ # daemon shares the IPC namespace with co-located tasks, allowing
4964
+ # communication through POSIX shared memory, semaphores, and message
4965
+ # queues. A value of `none` means the daemon has its own isolated IPC
4966
+ # namespace.
4967
+ # @return [String]
4968
+ #
4954
4969
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/DaemonTaskDefinition AWS API Documentation
4955
4970
  #
4956
4971
  class DaemonTaskDefinition < Struct.new(
@@ -4966,7 +4981,9 @@ module Aws::ECS
4966
4981
  :status,
4967
4982
  :registered_at,
4968
4983
  :delete_requested_at,
4969
- :registered_by)
4984
+ :registered_by,
4985
+ :pid_mode,
4986
+ :ipc_mode)
4970
4987
  SENSITIVE = []
4971
4988
  include Aws::Structure
4972
4989
  end
@@ -13002,6 +13019,22 @@ module Aws::ECS
13002
13019
  # against your tags per resource limit.
13003
13020
  # @return [Array<Types::Tag>]
13004
13021
  #
13022
+ # @!attribute [rw] pid_mode
13023
+ # The process namespace mode for the daemon. When set to `shared`, the
13024
+ # daemon shares the PID namespace with co-located tasks on the same
13025
+ # container instance, giving the daemon visibility into application
13026
+ # processes. When set to `none`, the daemon gets its own isolated PID
13027
+ # namespace. The default is `none`.
13028
+ # @return [String]
13029
+ #
13030
+ # @!attribute [rw] ipc_mode
13031
+ # The IPC namespace mode for the daemon. When set to `shared`, the
13032
+ # daemon shares the IPC namespace with co-located tasks on the same
13033
+ # container instance, allowing communication through POSIX shared
13034
+ # memory, semaphores, and message queues. When set to `none`, the
13035
+ # daemon gets its own isolated IPC namespace. The default is `none`.
13036
+ # @return [String]
13037
+ #
13005
13038
  # @see http://docs.aws.amazon.com/goto/WebAPI/ecs-2014-11-13/RegisterDaemonTaskDefinitionRequest AWS API Documentation
13006
13039
  #
13007
13040
  class RegisterDaemonTaskDefinitionRequest < Struct.new(
@@ -13012,7 +13045,9 @@ module Aws::ECS
13012
13045
  :cpu,
13013
13046
  :memory,
13014
13047
  :volumes,
13015
- :tags)
13048
+ :tags,
13049
+ :pid_mode,
13050
+ :ipc_mode)
13016
13051
  SENSITIVE = []
13017
13052
  include Aws::Structure
13018
13053
  end
data/lib/aws-sdk-ecs.rb CHANGED
@@ -55,7 +55,7 @@ module Aws::ECS
55
55
  autoload :EndpointProvider, 'aws-sdk-ecs/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-ecs/endpoints'
57
57
 
58
- GEM_VERSION = '1.235.0'
58
+ GEM_VERSION = '1.236.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -1184,7 +1184,9 @@ module Aws
1184
1184
  key: ::String?,
1185
1185
  value: ::String?
1186
1186
  }
1187
- ]
1187
+ ],
1188
+ ?pid_mode: ("none" | "shared"),
1189
+ ?ipc_mode: ("none" | "shared")
1188
1190
  ) -> _RegisterDaemonTaskDefinitionResponseSuccess
1189
1191
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _RegisterDaemonTaskDefinitionResponseSuccess
1190
1192
 
data/sig/types.rbs CHANGED
@@ -704,6 +704,8 @@ module Aws::ECS
704
704
  attr_accessor registered_at: ::Time
705
705
  attr_accessor delete_requested_at: ::Time
706
706
  attr_accessor registered_by: ::String
707
+ attr_accessor pid_mode: ("none" | "shared")
708
+ attr_accessor ipc_mode: ("none" | "shared")
707
709
  SENSITIVE: []
708
710
  end
709
711
 
@@ -2057,6 +2059,8 @@ module Aws::ECS
2057
2059
  attr_accessor memory: ::String
2058
2060
  attr_accessor volumes: ::Array[Types::DaemonVolume]
2059
2061
  attr_accessor tags: ::Array[Types::Tag]
2062
+ attr_accessor pid_mode: ("none" | "shared")
2063
+ attr_accessor ipc_mode: ("none" | "shared")
2060
2064
  SENSITIVE: []
2061
2065
  end
2062
2066
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-ecs
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.235.0
4
+ version: 1.236.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services