aws-sdk-bedrockagentcorecontrol 1.13.0 → 1.14.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: 2a0209ac8921a6957e03f29ca82d46b5e08c3297ab5bf9b04ccbfe7b2608092a
4
- data.tar.gz: 6ce02e3096c35376499187a8e3a31693c4cb20ce1854d9fb62f0be757d81e6c7
3
+ metadata.gz: ed09ddd82e1cccc46ff28d6643442f086e9a0271aa136c8a8f5a83abc61d76f6
4
+ data.tar.gz: cc9a2648ce01392a6b4171300dcfab528dcd3413cf35935367b03838e8926904
5
5
  SHA512:
6
- metadata.gz: 1eeb30929c8f2f70b2fb5ae66e55ff1867266e67ae2aff06648a7400303d9821e62893272a4822d518ca16f71e0170f43f4179fbe4a88c9021ffe75732b802bd
7
- data.tar.gz: e367b803c6e037128846f40a7abf1a3e750e9df457f04a53c492a86ba9c67fd942e89a14b572383652d20845e75a98f3916c744bfc7d04fad81d094755734273
6
+ metadata.gz: dcb0d28c96352e846b1049bad9cdf4c48d2094ee3d5f36995b7d7e7b680d1d19b116c72fb7b2faf0ab331777b99de05e2d19c5be690c82e3988c6a53ad961e66
7
+ data.tar.gz: 82640d7f265d234592cc06469f16f0bc4b44d30130d8dd1cfef7eda9d515d65ac8721ccfbe258fba8df487098529bfff59207ede57bdfc2c461d63cf7a34a7b4
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.14.0 (2025-11-03)
5
+ ------------------
6
+
7
+ * Feature - Adds support for direct code deploy with CreateAgentRuntime and UpdateAgentRuntime
8
+
4
9
  1.13.0 (2025-10-30)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.13.0
1
+ 1.14.0
@@ -539,6 +539,17 @@ module Aws::BedrockAgentCoreControl
539
539
  # container_configuration: {
540
540
  # container_uri: "RuntimeContainerUri", # required
541
541
  # },
542
+ # code_configuration: {
543
+ # code: { # required
544
+ # s3: {
545
+ # bucket: "S3LocationBucketString", # required
546
+ # prefix: "S3LocationPrefixString", # required
547
+ # version_id: "S3LocationVersionIdString",
548
+ # },
549
+ # },
550
+ # runtime: "PYTHON_3_10", # required, accepts PYTHON_3_10, PYTHON_3_11, PYTHON_3_12, PYTHON_3_13
551
+ # entry_point: ["entryPoint"], # required
552
+ # },
542
553
  # },
543
554
  # role_arn: "RoleArn", # required
544
555
  # network_configuration: { # required
@@ -772,6 +783,7 @@ module Aws::BedrockAgentCoreControl
772
783
  # s3_location: {
773
784
  # bucket: "S3LocationBucketString", # required
774
785
  # prefix: "S3LocationPrefixString", # required
786
+ # version_id: "S3LocationVersionIdString",
775
787
  # },
776
788
  # },
777
789
  # browser_signing: {
@@ -1644,6 +1656,14 @@ module Aws::BedrockAgentCoreControl
1644
1656
  # @option params [required, String] :agent_runtime_id
1645
1657
  # The unique identifier of the AgentCore Runtime to delete.
1646
1658
  #
1659
+ # @option params [String] :client_token
1660
+ # A unique, case-sensitive identifier to ensure that the operation
1661
+ # completes no more than one time. If this token matches a previous
1662
+ # request, the service ignores the request but does not return an error.
1663
+ #
1664
+ # **A suitable default value is auto-generated.** You should normally
1665
+ # not need to pass this option.**
1666
+ #
1647
1667
  # @return [Types::DeleteAgentRuntimeResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1648
1668
  #
1649
1669
  # * {Types::DeleteAgentRuntimeResponse#status #status} => String
@@ -1653,6 +1673,7 @@ module Aws::BedrockAgentCoreControl
1653
1673
  #
1654
1674
  # resp = client.delete_agent_runtime({
1655
1675
  # agent_runtime_id: "AgentRuntimeId", # required
1676
+ # client_token: "ClientToken",
1656
1677
  # })
1657
1678
  #
1658
1679
  # @example Response structure
@@ -2026,6 +2047,12 @@ module Aws::BedrockAgentCoreControl
2026
2047
  # resp.description #=> String
2027
2048
  # resp.workload_identity_details.workload_identity_arn #=> String
2028
2049
  # resp.agent_runtime_artifact.container_configuration.container_uri #=> String
2050
+ # resp.agent_runtime_artifact.code_configuration.code.s3.bucket #=> String
2051
+ # resp.agent_runtime_artifact.code_configuration.code.s3.prefix #=> String
2052
+ # resp.agent_runtime_artifact.code_configuration.code.s3.version_id #=> String
2053
+ # resp.agent_runtime_artifact.code_configuration.runtime #=> String, one of "PYTHON_3_10", "PYTHON_3_11", "PYTHON_3_12", "PYTHON_3_13"
2054
+ # resp.agent_runtime_artifact.code_configuration.entry_point #=> Array
2055
+ # resp.agent_runtime_artifact.code_configuration.entry_point[0] #=> String
2029
2056
  # resp.protocol_configuration.server_protocol #=> String, one of "MCP", "HTTP", "A2A"
2030
2057
  # resp.environment_variables #=> Hash
2031
2058
  # resp.environment_variables["EnvironmentVariableKey"] #=> String
@@ -2176,6 +2203,7 @@ module Aws::BedrockAgentCoreControl
2176
2203
  # resp.recording.enabled #=> Boolean
2177
2204
  # resp.recording.s3_location.bucket #=> String
2178
2205
  # resp.recording.s3_location.prefix #=> String
2206
+ # resp.recording.s3_location.version_id #=> String
2179
2207
  # resp.browser_signing.enabled #=> Boolean
2180
2208
  # resp.status #=> String, one of "CREATING", "CREATE_FAILED", "READY", "DELETING", "DELETE_FAILED", "DELETED"
2181
2209
  # resp.failure_reason #=> String
@@ -3449,6 +3477,17 @@ module Aws::BedrockAgentCoreControl
3449
3477
  # container_configuration: {
3450
3478
  # container_uri: "RuntimeContainerUri", # required
3451
3479
  # },
3480
+ # code_configuration: {
3481
+ # code: { # required
3482
+ # s3: {
3483
+ # bucket: "S3LocationBucketString", # required
3484
+ # prefix: "S3LocationPrefixString", # required
3485
+ # version_id: "S3LocationVersionIdString",
3486
+ # },
3487
+ # },
3488
+ # runtime: "PYTHON_3_10", # required, accepts PYTHON_3_10, PYTHON_3_11, PYTHON_3_12, PYTHON_3_13
3489
+ # entry_point: ["entryPoint"], # required
3490
+ # },
3452
3491
  # },
3453
3492
  # role_arn: "RoleArn", # required
3454
3493
  # network_configuration: { # required
@@ -4383,7 +4422,7 @@ module Aws::BedrockAgentCoreControl
4383
4422
  tracer: tracer
4384
4423
  )
4385
4424
  context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
4386
- context[:gem_version] = '1.13.0'
4425
+ context[:gem_version] = '1.14.0'
4387
4426
  Seahorse::Client::Request.new(handlers, context)
4388
4427
  end
4389
4428
 
@@ -16,6 +16,7 @@ module Aws::BedrockAgentCoreControl
16
16
 
17
17
  AccessDeniedException = Shapes::StructureShape.new(name: 'AccessDeniedException')
18
18
  AgentEndpointDescription = Shapes::StringShape.new(name: 'AgentEndpointDescription')
19
+ AgentManagedRuntimeType = Shapes::StringShape.new(name: 'AgentManagedRuntimeType')
19
20
  AgentRuntime = Shapes::StructureShape.new(name: 'AgentRuntime')
20
21
  AgentRuntimeArn = Shapes::StringShape.new(name: 'AgentRuntimeArn')
21
22
  AgentRuntimeArtifact = Shapes::UnionShape.new(name: 'AgentRuntimeArtifact')
@@ -63,6 +64,9 @@ module Aws::BedrockAgentCoreControl
63
64
  ClientIdType = Shapes::StringShape.new(name: 'ClientIdType')
64
65
  ClientSecretType = Shapes::StringShape.new(name: 'ClientSecretType')
65
66
  ClientToken = Shapes::StringShape.new(name: 'ClientToken')
67
+ Code = Shapes::UnionShape.new(name: 'Code')
68
+ CodeConfiguration = Shapes::StructureShape.new(name: 'CodeConfiguration')
69
+ CodeConfigurationEntryPointList = Shapes::ListShape.new(name: 'CodeConfigurationEntryPointList')
66
70
  CodeInterpreterArn = Shapes::StringShape.new(name: 'CodeInterpreterArn')
67
71
  CodeInterpreterId = Shapes::StringShape.new(name: 'CodeInterpreterId')
68
72
  CodeInterpreterNetworkConfiguration = Shapes::StructureShape.new(name: 'CodeInterpreterNetworkConfiguration')
@@ -313,6 +317,7 @@ module Aws::BedrockAgentCoreControl
313
317
  S3Location = Shapes::StructureShape.new(name: 'S3Location')
314
318
  S3LocationBucketString = Shapes::StringShape.new(name: 'S3LocationBucketString')
315
319
  S3LocationPrefixString = Shapes::StringShape.new(name: 'S3LocationPrefixString')
320
+ S3LocationVersionIdString = Shapes::StringShape.new(name: 'S3LocationVersionIdString')
316
321
  SalesforceOauth2ProviderConfigInput = Shapes::StructureShape.new(name: 'SalesforceOauth2ProviderConfigInput')
317
322
  SalesforceOauth2ProviderConfigOutput = Shapes::StructureShape.new(name: 'SalesforceOauth2ProviderConfigOutput')
318
323
  SandboxName = Shapes::StringShape.new(name: 'SandboxName')
@@ -428,6 +433,7 @@ module Aws::BedrockAgentCoreControl
428
433
  WorkloadIdentityList = Shapes::ListShape.new(name: 'WorkloadIdentityList')
429
434
  WorkloadIdentityNameType = Shapes::StringShape.new(name: 'WorkloadIdentityNameType')
430
435
  WorkloadIdentityType = Shapes::StructureShape.new(name: 'WorkloadIdentityType')
436
+ entryPoint = Shapes::StringShape.new(name: 'entryPoint')
431
437
 
432
438
  AccessDeniedException.add_member(:message, Shapes::ShapeRef.new(shape: NonBlankString, location_name: "message"))
433
439
  AccessDeniedException.struct_class = Types::AccessDeniedException
@@ -442,8 +448,10 @@ module Aws::BedrockAgentCoreControl
442
448
  AgentRuntime.struct_class = Types::AgentRuntime
443
449
 
444
450
  AgentRuntimeArtifact.add_member(:container_configuration, Shapes::ShapeRef.new(shape: ContainerConfiguration, location_name: "containerConfiguration"))
451
+ AgentRuntimeArtifact.add_member(:code_configuration, Shapes::ShapeRef.new(shape: CodeConfiguration, location_name: "codeConfiguration"))
445
452
  AgentRuntimeArtifact.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
446
453
  AgentRuntimeArtifact.add_member_subclass(:container_configuration, Types::AgentRuntimeArtifact::ContainerConfiguration)
454
+ AgentRuntimeArtifact.add_member_subclass(:code_configuration, Types::AgentRuntimeArtifact::CodeConfiguration)
447
455
  AgentRuntimeArtifact.add_member_subclass(:unknown, Types::AgentRuntimeArtifact::Unknown)
448
456
  AgentRuntimeArtifact.struct_class = Types::AgentRuntimeArtifact
449
457
 
@@ -524,6 +532,19 @@ module Aws::BedrockAgentCoreControl
524
532
  BrowserSummary.add_member(:last_updated_at, Shapes::ShapeRef.new(shape: DateTimestamp, location_name: "lastUpdatedAt"))
525
533
  BrowserSummary.struct_class = Types::BrowserSummary
526
534
 
535
+ Code.add_member(:s3, Shapes::ShapeRef.new(shape: S3Location, location_name: "s3"))
536
+ Code.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
537
+ Code.add_member_subclass(:s3, Types::Code::S3)
538
+ Code.add_member_subclass(:unknown, Types::Code::Unknown)
539
+ Code.struct_class = Types::Code
540
+
541
+ CodeConfiguration.add_member(:code, Shapes::ShapeRef.new(shape: Code, required: true, location_name: "code"))
542
+ CodeConfiguration.add_member(:runtime, Shapes::ShapeRef.new(shape: AgentManagedRuntimeType, required: true, location_name: "runtime"))
543
+ CodeConfiguration.add_member(:entry_point, Shapes::ShapeRef.new(shape: CodeConfigurationEntryPointList, required: true, location_name: "entryPoint"))
544
+ CodeConfiguration.struct_class = Types::CodeConfiguration
545
+
546
+ CodeConfigurationEntryPointList.member = Shapes::ShapeRef.new(shape: entryPoint)
547
+
527
548
  CodeInterpreterNetworkConfiguration.add_member(:network_mode, Shapes::ShapeRef.new(shape: CodeInterpreterNetworkMode, required: true, location_name: "networkMode"))
528
549
  CodeInterpreterNetworkConfiguration.add_member(:vpc_config, Shapes::ShapeRef.new(shape: VpcConfig, location_name: "vpcConfig"))
529
550
  CodeInterpreterNetworkConfiguration.struct_class = Types::CodeInterpreterNetworkConfiguration
@@ -818,6 +839,7 @@ module Aws::BedrockAgentCoreControl
818
839
  DeleteAgentRuntimeEndpointResponse.struct_class = Types::DeleteAgentRuntimeEndpointResponse
819
840
 
820
841
  DeleteAgentRuntimeRequest.add_member(:agent_runtime_id, Shapes::ShapeRef.new(shape: AgentRuntimeId, required: true, location: "uri", location_name: "agentRuntimeId"))
842
+ DeleteAgentRuntimeRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location: "querystring", location_name: "clientToken", metadata: {"idempotencyToken" => true}))
821
843
  DeleteAgentRuntimeRequest.struct_class = Types::DeleteAgentRuntimeRequest
822
844
 
823
845
  DeleteAgentRuntimeResponse.add_member(:status, Shapes::ShapeRef.new(shape: AgentRuntimeStatus, required: true, location_name: "status"))
@@ -1491,6 +1513,7 @@ module Aws::BedrockAgentCoreControl
1491
1513
 
1492
1514
  S3Location.add_member(:bucket, Shapes::ShapeRef.new(shape: S3LocationBucketString, required: true, location_name: "bucket"))
1493
1515
  S3Location.add_member(:prefix, Shapes::ShapeRef.new(shape: S3LocationPrefixString, required: true, location_name: "prefix"))
1516
+ S3Location.add_member(:version_id, Shapes::ShapeRef.new(shape: S3LocationVersionIdString, location_name: "versionId"))
1494
1517
  S3Location.struct_class = Types::S3Location
1495
1518
 
1496
1519
  SalesforceOauth2ProviderConfigInput.add_member(:client_id, Shapes::ShapeRef.new(shape: ClientIdType, required: true, location_name: "clientId"))
@@ -79,16 +79,23 @@ module Aws::BedrockAgentCoreControl
79
79
  # The container configuration for the agent artifact.
80
80
  # @return [Types::ContainerConfiguration]
81
81
  #
82
+ # @!attribute [rw] code_configuration
83
+ # The code configuration for the agent runtime artifact, including the
84
+ # source code location and execution settings.
85
+ # @return [Types::CodeConfiguration]
86
+ #
82
87
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/AgentRuntimeArtifact AWS API Documentation
83
88
  #
84
89
  class AgentRuntimeArtifact < Struct.new(
85
90
  :container_configuration,
91
+ :code_configuration,
86
92
  :unknown)
87
93
  SENSITIVE = []
88
94
  include Aws::Structure
89
95
  include Aws::Structure::Union
90
96
 
91
97
  class ContainerConfiguration < AgentRuntimeArtifact; end
98
+ class CodeConfiguration < AgentRuntimeArtifact; end
92
99
  class Unknown < AgentRuntimeArtifact; end
93
100
  end
94
101
 
@@ -419,6 +426,59 @@ module Aws::BedrockAgentCoreControl
419
426
  include Aws::Structure
420
427
  end
421
428
 
429
+ # The source code configuration that specifies the location and details
430
+ # of the code to be executed.
431
+ #
432
+ # @note Code is a union - when making an API calls you must set exactly one of the members.
433
+ #
434
+ # @note Code is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of Code corresponding to the set member.
435
+ #
436
+ # @!attribute [rw] s3
437
+ # The Amazon Amazon S3 object that contains the source code for the
438
+ # agent runtime.
439
+ # @return [Types::S3Location]
440
+ #
441
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/Code AWS API Documentation
442
+ #
443
+ class Code < Struct.new(
444
+ :s3,
445
+ :unknown)
446
+ SENSITIVE = []
447
+ include Aws::Structure
448
+ include Aws::Structure::Union
449
+
450
+ class S3 < Code; end
451
+ class Unknown < Code; end
452
+ end
453
+
454
+ # The configuration for the source code that defines how the agent
455
+ # runtime code should be executed, including the code location, runtime
456
+ # environment, and entry point.
457
+ #
458
+ # @!attribute [rw] code
459
+ # The source code location and configuration details.
460
+ # @return [Types::Code]
461
+ #
462
+ # @!attribute [rw] runtime
463
+ # The runtime environment for executing the code (for example, Python
464
+ # 3.9 or Node.js 18).
465
+ # @return [String]
466
+ #
467
+ # @!attribute [rw] entry_point
468
+ # The entry point for the code execution, specifying the function or
469
+ # method that should be invoked when the code runs.
470
+ # @return [Array<String>]
471
+ #
472
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/CodeConfiguration AWS API Documentation
473
+ #
474
+ class CodeConfiguration < Struct.new(
475
+ :code,
476
+ :runtime,
477
+ :entry_point)
478
+ SENSITIVE = []
479
+ include Aws::Structure
480
+ end
481
+
422
482
  # The network configuration for a code interpreter. This structure
423
483
  # defines how the code interpreter connects to the network.
424
484
  #
@@ -1839,10 +1899,21 @@ module Aws::BedrockAgentCoreControl
1839
1899
  # The unique identifier of the AgentCore Runtime to delete.
1840
1900
  # @return [String]
1841
1901
  #
1902
+ # @!attribute [rw] client_token
1903
+ # A unique, case-sensitive identifier to ensure that the operation
1904
+ # completes no more than one time. If this token matches a previous
1905
+ # request, the service ignores the request but does not return an
1906
+ # error.
1907
+ #
1908
+ # **A suitable default value is auto-generated.** You should normally
1909
+ # not need to pass this option.
1910
+ # @return [String]
1911
+ #
1842
1912
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/DeleteAgentRuntimeRequest AWS API Documentation
1843
1913
  #
1844
1914
  class DeleteAgentRuntimeRequest < Struct.new(
1845
- :agent_runtime_id)
1915
+ :agent_runtime_id,
1916
+ :client_token)
1846
1917
  SENSITIVE = []
1847
1918
  include Aws::Structure
1848
1919
  end
@@ -4747,11 +4818,17 @@ module Aws::BedrockAgentCoreControl
4747
4818
  # to the object keys to organize the data.
4748
4819
  # @return [String]
4749
4820
  #
4821
+ # @!attribute [rw] version_id
4822
+ # The version ID of the Amazon Amazon S3 object. If not specified, the
4823
+ # latest version of the object is used.
4824
+ # @return [String]
4825
+ #
4750
4826
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/S3Location AWS API Documentation
4751
4827
  #
4752
4828
  class S3Location < Struct.new(
4753
4829
  :bucket,
4754
- :prefix)
4830
+ :prefix,
4831
+ :version_id)
4755
4832
  SENSITIVE = []
4756
4833
  include Aws::Structure
4757
4834
  end
@@ -55,7 +55,7 @@ module Aws::BedrockAgentCoreControl
55
55
  autoload :EndpointProvider, 'aws-sdk-bedrockagentcorecontrol/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-bedrockagentcorecontrol/endpoints'
57
57
 
58
- GEM_VERSION = '1.13.0'
58
+ GEM_VERSION = '1.14.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -93,6 +93,17 @@ module Aws
93
93
  agent_runtime_artifact: {
94
94
  container_configuration: {
95
95
  container_uri: ::String
96
+ }?,
97
+ code_configuration: {
98
+ code: {
99
+ s3: {
100
+ bucket: ::String,
101
+ prefix: ::String,
102
+ version_id: ::String?
103
+ }?
104
+ },
105
+ runtime: ("PYTHON_3_10" | "PYTHON_3_11" | "PYTHON_3_12" | "PYTHON_3_13"),
106
+ entry_point: Array[::String]
96
107
  }?
97
108
  },
98
109
  role_arn: ::String,
@@ -185,7 +196,8 @@ module Aws
185
196
  enabled: bool?,
186
197
  s3_location: {
187
198
  bucket: ::String,
188
- prefix: ::String
199
+ prefix: ::String,
200
+ version_id: ::String?
189
201
  }?
190
202
  },
191
203
  ?browser_signing: {
@@ -536,7 +548,8 @@ module Aws
536
548
  end
537
549
  # https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/BedrockAgentCoreControl/Client.html#delete_agent_runtime-instance_method
538
550
  def delete_agent_runtime: (
539
- agent_runtime_id: ::String
551
+ agent_runtime_id: ::String,
552
+ ?client_token: ::String
540
553
  ) -> _DeleteAgentRuntimeResponseSuccess
541
554
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _DeleteAgentRuntimeResponseSuccess
542
555
 
@@ -1057,6 +1070,17 @@ module Aws
1057
1070
  agent_runtime_artifact: {
1058
1071
  container_configuration: {
1059
1072
  container_uri: ::String
1073
+ }?,
1074
+ code_configuration: {
1075
+ code: {
1076
+ s3: {
1077
+ bucket: ::String,
1078
+ prefix: ::String,
1079
+ version_id: ::String?
1080
+ }?
1081
+ },
1082
+ runtime: ("PYTHON_3_10" | "PYTHON_3_11" | "PYTHON_3_12" | "PYTHON_3_13"),
1083
+ entry_point: Array[::String]
1060
1084
  }?
1061
1085
  },
1062
1086
  role_arn: ::String,
data/sig/types.rbs CHANGED
@@ -26,11 +26,14 @@ module Aws::BedrockAgentCoreControl
26
26
 
27
27
  class AgentRuntimeArtifact
28
28
  attr_accessor container_configuration: Types::ContainerConfiguration
29
+ attr_accessor code_configuration: Types::CodeConfiguration
29
30
  attr_accessor unknown: untyped
30
31
  SENSITIVE: []
31
32
 
32
33
  class ContainerConfiguration < AgentRuntimeArtifact
33
34
  end
35
+ class CodeConfiguration < AgentRuntimeArtifact
36
+ end
34
37
  class Unknown < AgentRuntimeArtifact
35
38
  end
36
39
  end
@@ -129,6 +132,24 @@ module Aws::BedrockAgentCoreControl
129
132
  SENSITIVE: [:description]
130
133
  end
131
134
 
135
+ class Code
136
+ attr_accessor s3: Types::S3Location
137
+ attr_accessor unknown: untyped
138
+ SENSITIVE: []
139
+
140
+ class S3 < Code
141
+ end
142
+ class Unknown < Code
143
+ end
144
+ end
145
+
146
+ class CodeConfiguration
147
+ attr_accessor code: Types::Code
148
+ attr_accessor runtime: ("PYTHON_3_10" | "PYTHON_3_11" | "PYTHON_3_12" | "PYTHON_3_13")
149
+ attr_accessor entry_point: ::Array[::String]
150
+ SENSITIVE: []
151
+ end
152
+
132
153
  class CodeInterpreterNetworkConfiguration
133
154
  attr_accessor network_mode: ("PUBLIC" | "SANDBOX" | "VPC")
134
155
  attr_accessor vpc_config: Types::VpcConfig
@@ -531,6 +552,7 @@ module Aws::BedrockAgentCoreControl
531
552
 
532
553
  class DeleteAgentRuntimeRequest
533
554
  attr_accessor agent_runtime_id: ::String
555
+ attr_accessor client_token: ::String
534
556
  SENSITIVE: []
535
557
  end
536
558
 
@@ -1448,6 +1470,7 @@ module Aws::BedrockAgentCoreControl
1448
1470
  class S3Location
1449
1471
  attr_accessor bucket: ::String
1450
1472
  attr_accessor prefix: ::String
1473
+ attr_accessor version_id: ::String
1451
1474
  SENSITIVE: []
1452
1475
  end
1453
1476
 
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-bedrockagentcorecontrol
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.13.0
4
+ version: 1.14.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services