aws-sdk-bedrockagentcorecontrol 1.49.0 → 1.50.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: d6706d12ac148c838aa7d8a15bebb78b05325979b102f7aa4662333b5a63ba09
4
- data.tar.gz: '039059ee8e8b35e077cc32fcfbf7498d23bf11719ecf22f99d7f30d92fbc25bc'
3
+ metadata.gz: be8454a45d2bc4788d3ecaec1204b0266d535291cd283b2f9df4fd2bf2decff9
4
+ data.tar.gz: b5b02644131f50b51e9989720e2cdfdb6ab63bf1d8b718315b62d2e87f7e75c2
5
5
  SHA512:
6
- metadata.gz: ee222db6ada48a9130d0236d7edfa71cf40d8f39f667521db1ae0065850746cdd5645b29f3404062c374e620ee10688b33c7c45978393d9dae2a94e165bd6b96
7
- data.tar.gz: a8f7f107e6df524204ac69ac62462a1eb835d5ee80f96f13beccf27d1a0b5933dc19d950346310c3e1b25a1b0512dc020dcf6ff53301a9f2847767527a0bdac5
6
+ metadata.gz: 7947612ab12f65031d4bedfb2b7fd5ab87ffaf5a8d8a9be79f3217e9df3346ef81835a77806c52fb72b94fdf6a5ff5dd20f98c0040370b77124d236b19981265
7
+ data.tar.gz: 8415e402d8eec50aa602cf4554cda1cbb3b2bd7becd2148cd51f483c314fca012beea4a233625af7474fbc5dd4bed37d61a521bdaf9c1e430aab7c2b1c116084
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.50.0 (2026-05-28)
5
+ ------------------
6
+
7
+ * Feature - Added Harness support for LiteLLM model configuration for third-party model providers. Added S3 and Git skill source types. Added Responses API format for OpenAI and Bedrock models. Added runtimeUserId parameter to InvokeHarness for end-user identification.
8
+
4
9
  1.49.0 (2026-05-26)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.49.0
1
+ 1.50.0
@@ -2454,6 +2454,9 @@ module Aws::BedrockAgentCoreControl
2454
2454
  # max_tokens: 1,
2455
2455
  # temperature: 1.0,
2456
2456
  # top_p: 1.0,
2457
+ # api_format: "converse_stream", # accepts converse_stream, responses, chat_completions
2458
+ # additional_params: {
2459
+ # },
2457
2460
  # },
2458
2461
  # open_ai_model_config: {
2459
2462
  # model_id: "ModelId", # required
@@ -2461,6 +2464,9 @@ module Aws::BedrockAgentCoreControl
2461
2464
  # max_tokens: 1,
2462
2465
  # temperature: 1.0,
2463
2466
  # top_p: 1.0,
2467
+ # api_format: "chat_completions", # accepts chat_completions, responses
2468
+ # additional_params: {
2469
+ # },
2464
2470
  # },
2465
2471
  # gemini_model_config: {
2466
2472
  # model_id: "ModelId", # required
@@ -2470,6 +2476,16 @@ module Aws::BedrockAgentCoreControl
2470
2476
  # top_p: 1.0,
2471
2477
  # top_k: 1,
2472
2478
  # },
2479
+ # lite_llm_model_config: {
2480
+ # model_id: "ModelId", # required
2481
+ # api_key_arn: "ApiKeyArn",
2482
+ # api_base: "HarnessLiteLlmApiBase",
2483
+ # max_tokens: 1,
2484
+ # temperature: 1.0,
2485
+ # top_p: 1.0,
2486
+ # additional_params: {
2487
+ # },
2488
+ # },
2473
2489
  # },
2474
2490
  # system_prompt: [
2475
2491
  # {
@@ -2488,7 +2504,7 @@ module Aws::BedrockAgentCoreControl
2488
2504
  # },
2489
2505
  # },
2490
2506
  # agent_core_browser: {
2491
- # browser_arn: "BrowserArn",
2507
+ # browser_arn: "HarnessBrowserArn",
2492
2508
  # },
2493
2509
  # agent_core_gateway: {
2494
2510
  # gateway_arn: "GatewayArn", # required
@@ -2514,7 +2530,7 @@ module Aws::BedrockAgentCoreControl
2514
2530
  # },
2515
2531
  # },
2516
2532
  # agent_core_code_interpreter: {
2517
- # code_interpreter_arn: "CodeInterpreterArn",
2533
+ # code_interpreter_arn: "HarnessCodeInterpreterArn",
2518
2534
  # },
2519
2535
  # },
2520
2536
  # },
@@ -2522,6 +2538,17 @@ module Aws::BedrockAgentCoreControl
2522
2538
  # skills: [
2523
2539
  # {
2524
2540
  # path: "HarnessSkillPath",
2541
+ # s3: {
2542
+ # uri: "HarnessSkillS3Uri", # required
2543
+ # },
2544
+ # git: {
2545
+ # url: "HarnessSkillGitUrl", # required
2546
+ # path: "String",
2547
+ # auth: {
2548
+ # credential_arn: "ApiKeyArn", # required
2549
+ # username: "String",
2550
+ # },
2551
+ # },
2525
2552
  # },
2526
2553
  # ],
2527
2554
  # allowed_tools: ["HarnessAllowedTool"],
@@ -2573,17 +2600,25 @@ module Aws::BedrockAgentCoreControl
2573
2600
  # resp.harness.model.bedrock_model_config.max_tokens #=> Integer
2574
2601
  # resp.harness.model.bedrock_model_config.temperature #=> Float
2575
2602
  # resp.harness.model.bedrock_model_config.top_p #=> Float
2603
+ # resp.harness.model.bedrock_model_config.api_format #=> String, one of "converse_stream", "responses", "chat_completions"
2576
2604
  # resp.harness.model.open_ai_model_config.model_id #=> String
2577
2605
  # resp.harness.model.open_ai_model_config.api_key_arn #=> String
2578
2606
  # resp.harness.model.open_ai_model_config.max_tokens #=> Integer
2579
2607
  # resp.harness.model.open_ai_model_config.temperature #=> Float
2580
2608
  # resp.harness.model.open_ai_model_config.top_p #=> Float
2609
+ # resp.harness.model.open_ai_model_config.api_format #=> String, one of "chat_completions", "responses"
2581
2610
  # resp.harness.model.gemini_model_config.model_id #=> String
2582
2611
  # resp.harness.model.gemini_model_config.api_key_arn #=> String
2583
2612
  # resp.harness.model.gemini_model_config.max_tokens #=> Integer
2584
2613
  # resp.harness.model.gemini_model_config.temperature #=> Float
2585
2614
  # resp.harness.model.gemini_model_config.top_p #=> Float
2586
2615
  # resp.harness.model.gemini_model_config.top_k #=> Integer
2616
+ # resp.harness.model.lite_llm_model_config.model_id #=> String
2617
+ # resp.harness.model.lite_llm_model_config.api_key_arn #=> String
2618
+ # resp.harness.model.lite_llm_model_config.api_base #=> String
2619
+ # resp.harness.model.lite_llm_model_config.max_tokens #=> Integer
2620
+ # resp.harness.model.lite_llm_model_config.temperature #=> Float
2621
+ # resp.harness.model.lite_llm_model_config.top_p #=> Float
2587
2622
  # resp.harness.system_prompt #=> Array
2588
2623
  # resp.harness.system_prompt[0].text #=> String
2589
2624
  # resp.harness.tools #=> Array
@@ -2605,6 +2640,11 @@ module Aws::BedrockAgentCoreControl
2605
2640
  # resp.harness.tools[0].config.agent_core_code_interpreter.code_interpreter_arn #=> String
2606
2641
  # resp.harness.skills #=> Array
2607
2642
  # resp.harness.skills[0].path #=> String
2643
+ # resp.harness.skills[0].s3.uri #=> String
2644
+ # resp.harness.skills[0].git.url #=> String
2645
+ # resp.harness.skills[0].git.path #=> String
2646
+ # resp.harness.skills[0].git.auth.credential_arn #=> String
2647
+ # resp.harness.skills[0].git.auth.username #=> String
2608
2648
  # resp.harness.allowed_tools #=> Array
2609
2649
  # resp.harness.allowed_tools[0] #=> String
2610
2650
  # resp.harness.truncation.strategy #=> String, one of "sliding_window", "summarization", "none"
@@ -5034,17 +5074,25 @@ module Aws::BedrockAgentCoreControl
5034
5074
  # resp.harness.model.bedrock_model_config.max_tokens #=> Integer
5035
5075
  # resp.harness.model.bedrock_model_config.temperature #=> Float
5036
5076
  # resp.harness.model.bedrock_model_config.top_p #=> Float
5077
+ # resp.harness.model.bedrock_model_config.api_format #=> String, one of "converse_stream", "responses", "chat_completions"
5037
5078
  # resp.harness.model.open_ai_model_config.model_id #=> String
5038
5079
  # resp.harness.model.open_ai_model_config.api_key_arn #=> String
5039
5080
  # resp.harness.model.open_ai_model_config.max_tokens #=> Integer
5040
5081
  # resp.harness.model.open_ai_model_config.temperature #=> Float
5041
5082
  # resp.harness.model.open_ai_model_config.top_p #=> Float
5083
+ # resp.harness.model.open_ai_model_config.api_format #=> String, one of "chat_completions", "responses"
5042
5084
  # resp.harness.model.gemini_model_config.model_id #=> String
5043
5085
  # resp.harness.model.gemini_model_config.api_key_arn #=> String
5044
5086
  # resp.harness.model.gemini_model_config.max_tokens #=> Integer
5045
5087
  # resp.harness.model.gemini_model_config.temperature #=> Float
5046
5088
  # resp.harness.model.gemini_model_config.top_p #=> Float
5047
5089
  # resp.harness.model.gemini_model_config.top_k #=> Integer
5090
+ # resp.harness.model.lite_llm_model_config.model_id #=> String
5091
+ # resp.harness.model.lite_llm_model_config.api_key_arn #=> String
5092
+ # resp.harness.model.lite_llm_model_config.api_base #=> String
5093
+ # resp.harness.model.lite_llm_model_config.max_tokens #=> Integer
5094
+ # resp.harness.model.lite_llm_model_config.temperature #=> Float
5095
+ # resp.harness.model.lite_llm_model_config.top_p #=> Float
5048
5096
  # resp.harness.system_prompt #=> Array
5049
5097
  # resp.harness.system_prompt[0].text #=> String
5050
5098
  # resp.harness.tools #=> Array
@@ -5066,6 +5114,11 @@ module Aws::BedrockAgentCoreControl
5066
5114
  # resp.harness.tools[0].config.agent_core_code_interpreter.code_interpreter_arn #=> String
5067
5115
  # resp.harness.skills #=> Array
5068
5116
  # resp.harness.skills[0].path #=> String
5117
+ # resp.harness.skills[0].s3.uri #=> String
5118
+ # resp.harness.skills[0].git.url #=> String
5119
+ # resp.harness.skills[0].git.path #=> String
5120
+ # resp.harness.skills[0].git.auth.credential_arn #=> String
5121
+ # resp.harness.skills[0].git.auth.username #=> String
5069
5122
  # resp.harness.allowed_tools #=> Array
5070
5123
  # resp.harness.allowed_tools[0] #=> String
5071
5124
  # resp.harness.truncation.strategy #=> String, one of "sliding_window", "summarization", "none"
@@ -6588,17 +6641,25 @@ module Aws::BedrockAgentCoreControl
6588
6641
  # resp.harness.model.bedrock_model_config.max_tokens #=> Integer
6589
6642
  # resp.harness.model.bedrock_model_config.temperature #=> Float
6590
6643
  # resp.harness.model.bedrock_model_config.top_p #=> Float
6644
+ # resp.harness.model.bedrock_model_config.api_format #=> String, one of "converse_stream", "responses", "chat_completions"
6591
6645
  # resp.harness.model.open_ai_model_config.model_id #=> String
6592
6646
  # resp.harness.model.open_ai_model_config.api_key_arn #=> String
6593
6647
  # resp.harness.model.open_ai_model_config.max_tokens #=> Integer
6594
6648
  # resp.harness.model.open_ai_model_config.temperature #=> Float
6595
6649
  # resp.harness.model.open_ai_model_config.top_p #=> Float
6650
+ # resp.harness.model.open_ai_model_config.api_format #=> String, one of "chat_completions", "responses"
6596
6651
  # resp.harness.model.gemini_model_config.model_id #=> String
6597
6652
  # resp.harness.model.gemini_model_config.api_key_arn #=> String
6598
6653
  # resp.harness.model.gemini_model_config.max_tokens #=> Integer
6599
6654
  # resp.harness.model.gemini_model_config.temperature #=> Float
6600
6655
  # resp.harness.model.gemini_model_config.top_p #=> Float
6601
6656
  # resp.harness.model.gemini_model_config.top_k #=> Integer
6657
+ # resp.harness.model.lite_llm_model_config.model_id #=> String
6658
+ # resp.harness.model.lite_llm_model_config.api_key_arn #=> String
6659
+ # resp.harness.model.lite_llm_model_config.api_base #=> String
6660
+ # resp.harness.model.lite_llm_model_config.max_tokens #=> Integer
6661
+ # resp.harness.model.lite_llm_model_config.temperature #=> Float
6662
+ # resp.harness.model.lite_llm_model_config.top_p #=> Float
6602
6663
  # resp.harness.system_prompt #=> Array
6603
6664
  # resp.harness.system_prompt[0].text #=> String
6604
6665
  # resp.harness.tools #=> Array
@@ -6620,6 +6681,11 @@ module Aws::BedrockAgentCoreControl
6620
6681
  # resp.harness.tools[0].config.agent_core_code_interpreter.code_interpreter_arn #=> String
6621
6682
  # resp.harness.skills #=> Array
6622
6683
  # resp.harness.skills[0].path #=> String
6684
+ # resp.harness.skills[0].s3.uri #=> String
6685
+ # resp.harness.skills[0].git.url #=> String
6686
+ # resp.harness.skills[0].git.path #=> String
6687
+ # resp.harness.skills[0].git.auth.credential_arn #=> String
6688
+ # resp.harness.skills[0].git.auth.username #=> String
6623
6689
  # resp.harness.allowed_tools #=> Array
6624
6690
  # resp.harness.allowed_tools[0] #=> String
6625
6691
  # resp.harness.truncation.strategy #=> String, one of "sliding_window", "summarization", "none"
@@ -8283,6 +8349,7 @@ module Aws::BedrockAgentCoreControl
8283
8349
  # resp.bundles[0].bundle_id #=> String
8284
8350
  # resp.bundles[0].bundle_name #=> String
8285
8351
  # resp.bundles[0].description #=> String
8352
+ # resp.bundles[0].created_at #=> Time
8286
8353
  # resp.next_token #=> String
8287
8354
  #
8288
8355
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ListConfigurationBundles AWS API Documentation
@@ -11638,6 +11705,9 @@ module Aws::BedrockAgentCoreControl
11638
11705
  # max_tokens: 1,
11639
11706
  # temperature: 1.0,
11640
11707
  # top_p: 1.0,
11708
+ # api_format: "converse_stream", # accepts converse_stream, responses, chat_completions
11709
+ # additional_params: {
11710
+ # },
11641
11711
  # },
11642
11712
  # open_ai_model_config: {
11643
11713
  # model_id: "ModelId", # required
@@ -11645,6 +11715,9 @@ module Aws::BedrockAgentCoreControl
11645
11715
  # max_tokens: 1,
11646
11716
  # temperature: 1.0,
11647
11717
  # top_p: 1.0,
11718
+ # api_format: "chat_completions", # accepts chat_completions, responses
11719
+ # additional_params: {
11720
+ # },
11648
11721
  # },
11649
11722
  # gemini_model_config: {
11650
11723
  # model_id: "ModelId", # required
@@ -11654,6 +11727,16 @@ module Aws::BedrockAgentCoreControl
11654
11727
  # top_p: 1.0,
11655
11728
  # top_k: 1,
11656
11729
  # },
11730
+ # lite_llm_model_config: {
11731
+ # model_id: "ModelId", # required
11732
+ # api_key_arn: "ApiKeyArn",
11733
+ # api_base: "HarnessLiteLlmApiBase",
11734
+ # max_tokens: 1,
11735
+ # temperature: 1.0,
11736
+ # top_p: 1.0,
11737
+ # additional_params: {
11738
+ # },
11739
+ # },
11657
11740
  # },
11658
11741
  # system_prompt: [
11659
11742
  # {
@@ -11672,7 +11755,7 @@ module Aws::BedrockAgentCoreControl
11672
11755
  # },
11673
11756
  # },
11674
11757
  # agent_core_browser: {
11675
- # browser_arn: "BrowserArn",
11758
+ # browser_arn: "HarnessBrowserArn",
11676
11759
  # },
11677
11760
  # agent_core_gateway: {
11678
11761
  # gateway_arn: "GatewayArn", # required
@@ -11698,7 +11781,7 @@ module Aws::BedrockAgentCoreControl
11698
11781
  # },
11699
11782
  # },
11700
11783
  # agent_core_code_interpreter: {
11701
- # code_interpreter_arn: "CodeInterpreterArn",
11784
+ # code_interpreter_arn: "HarnessCodeInterpreterArn",
11702
11785
  # },
11703
11786
  # },
11704
11787
  # },
@@ -11706,6 +11789,17 @@ module Aws::BedrockAgentCoreControl
11706
11789
  # skills: [
11707
11790
  # {
11708
11791
  # path: "HarnessSkillPath",
11792
+ # s3: {
11793
+ # uri: "HarnessSkillS3Uri", # required
11794
+ # },
11795
+ # git: {
11796
+ # url: "HarnessSkillGitUrl", # required
11797
+ # path: "String",
11798
+ # auth: {
11799
+ # credential_arn: "ApiKeyArn", # required
11800
+ # username: "String",
11801
+ # },
11802
+ # },
11709
11803
  # },
11710
11804
  # ],
11711
11805
  # allowed_tools: ["HarnessAllowedTool"],
@@ -11756,17 +11850,25 @@ module Aws::BedrockAgentCoreControl
11756
11850
  # resp.harness.model.bedrock_model_config.max_tokens #=> Integer
11757
11851
  # resp.harness.model.bedrock_model_config.temperature #=> Float
11758
11852
  # resp.harness.model.bedrock_model_config.top_p #=> Float
11853
+ # resp.harness.model.bedrock_model_config.api_format #=> String, one of "converse_stream", "responses", "chat_completions"
11759
11854
  # resp.harness.model.open_ai_model_config.model_id #=> String
11760
11855
  # resp.harness.model.open_ai_model_config.api_key_arn #=> String
11761
11856
  # resp.harness.model.open_ai_model_config.max_tokens #=> Integer
11762
11857
  # resp.harness.model.open_ai_model_config.temperature #=> Float
11763
11858
  # resp.harness.model.open_ai_model_config.top_p #=> Float
11859
+ # resp.harness.model.open_ai_model_config.api_format #=> String, one of "chat_completions", "responses"
11764
11860
  # resp.harness.model.gemini_model_config.model_id #=> String
11765
11861
  # resp.harness.model.gemini_model_config.api_key_arn #=> String
11766
11862
  # resp.harness.model.gemini_model_config.max_tokens #=> Integer
11767
11863
  # resp.harness.model.gemini_model_config.temperature #=> Float
11768
11864
  # resp.harness.model.gemini_model_config.top_p #=> Float
11769
11865
  # resp.harness.model.gemini_model_config.top_k #=> Integer
11866
+ # resp.harness.model.lite_llm_model_config.model_id #=> String
11867
+ # resp.harness.model.lite_llm_model_config.api_key_arn #=> String
11868
+ # resp.harness.model.lite_llm_model_config.api_base #=> String
11869
+ # resp.harness.model.lite_llm_model_config.max_tokens #=> Integer
11870
+ # resp.harness.model.lite_llm_model_config.temperature #=> Float
11871
+ # resp.harness.model.lite_llm_model_config.top_p #=> Float
11770
11872
  # resp.harness.system_prompt #=> Array
11771
11873
  # resp.harness.system_prompt[0].text #=> String
11772
11874
  # resp.harness.tools #=> Array
@@ -11788,6 +11890,11 @@ module Aws::BedrockAgentCoreControl
11788
11890
  # resp.harness.tools[0].config.agent_core_code_interpreter.code_interpreter_arn #=> String
11789
11891
  # resp.harness.skills #=> Array
11790
11892
  # resp.harness.skills[0].path #=> String
11893
+ # resp.harness.skills[0].s3.uri #=> String
11894
+ # resp.harness.skills[0].git.url #=> String
11895
+ # resp.harness.skills[0].git.path #=> String
11896
+ # resp.harness.skills[0].git.auth.credential_arn #=> String
11897
+ # resp.harness.skills[0].git.auth.username #=> String
11791
11898
  # resp.harness.allowed_tools #=> Array
11792
11899
  # resp.harness.allowed_tools[0] #=> String
11793
11900
  # resp.harness.truncation.strategy #=> String, one of "sliding_window", "summarization", "none"
@@ -13791,7 +13898,7 @@ module Aws::BedrockAgentCoreControl
13791
13898
  tracer: tracer
13792
13899
  )
13793
13900
  context[:gem_name] = 'aws-sdk-bedrockagentcorecontrol'
13794
- context[:gem_version] = '1.49.0'
13901
+ context[:gem_version] = '1.50.0'
13795
13902
  Seahorse::Client::Request.new(handlers, context)
13796
13903
  end
13797
13904
 
@@ -488,7 +488,10 @@ module Aws::BedrockAgentCoreControl
488
488
  HarnessAllowedTool = Shapes::StringShape.new(name: 'HarnessAllowedTool')
489
489
  HarnessAllowedTools = Shapes::ListShape.new(name: 'HarnessAllowedTools')
490
490
  HarnessArn = Shapes::StringShape.new(name: 'HarnessArn')
491
+ HarnessBedrockApiFormat = Shapes::StringShape.new(name: 'HarnessBedrockApiFormat')
491
492
  HarnessBedrockModelConfig = Shapes::StructureShape.new(name: 'HarnessBedrockModelConfig')
493
+ HarnessBrowserArn = Shapes::StringShape.new(name: 'HarnessBrowserArn')
494
+ HarnessCodeInterpreterArn = Shapes::StringShape.new(name: 'HarnessCodeInterpreterArn')
492
495
  HarnessEnvironmentArtifact = Shapes::UnionShape.new(name: 'HarnessEnvironmentArtifact')
493
496
  HarnessEnvironmentProvider = Shapes::UnionShape.new(name: 'HarnessEnvironmentProvider')
494
497
  HarnessEnvironmentProviderRequest = Shapes::UnionShape.new(name: 'HarnessEnvironmentProviderRequest')
@@ -497,14 +500,22 @@ module Aws::BedrockAgentCoreControl
497
500
  HarnessId = Shapes::StringShape.new(name: 'HarnessId')
498
501
  HarnessInlineFunctionConfig = Shapes::StructureShape.new(name: 'HarnessInlineFunctionConfig')
499
502
  HarnessInlineFunctionDescription = Shapes::StringShape.new(name: 'HarnessInlineFunctionDescription')
503
+ HarnessLiteLlmApiBase = Shapes::StringShape.new(name: 'HarnessLiteLlmApiBase')
504
+ HarnessLiteLlmModelConfig = Shapes::StructureShape.new(name: 'HarnessLiteLlmModelConfig')
500
505
  HarnessMemoryConfiguration = Shapes::UnionShape.new(name: 'HarnessMemoryConfiguration')
501
506
  HarnessModelConfiguration = Shapes::UnionShape.new(name: 'HarnessModelConfiguration')
502
507
  HarnessName = Shapes::StringShape.new(name: 'HarnessName')
508
+ HarnessOpenAiApiFormat = Shapes::StringShape.new(name: 'HarnessOpenAiApiFormat')
503
509
  HarnessOpenAiModelConfig = Shapes::StructureShape.new(name: 'HarnessOpenAiModelConfig')
504
510
  HarnessRemoteMcpConfig = Shapes::StructureShape.new(name: 'HarnessRemoteMcpConfig')
505
511
  HarnessRemoteMcpUrl = Shapes::StringShape.new(name: 'HarnessRemoteMcpUrl')
506
512
  HarnessSkill = Shapes::UnionShape.new(name: 'HarnessSkill')
513
+ HarnessSkillGitAuth = Shapes::StructureShape.new(name: 'HarnessSkillGitAuth')
514
+ HarnessSkillGitSource = Shapes::StructureShape.new(name: 'HarnessSkillGitSource')
515
+ HarnessSkillGitUrl = Shapes::StringShape.new(name: 'HarnessSkillGitUrl')
507
516
  HarnessSkillPath = Shapes::StringShape.new(name: 'HarnessSkillPath')
517
+ HarnessSkillS3Source = Shapes::StructureShape.new(name: 'HarnessSkillS3Source')
518
+ HarnessSkillS3Uri = Shapes::StringShape.new(name: 'HarnessSkillS3Uri')
508
519
  HarnessSkills = Shapes::ListShape.new(name: 'HarnessSkills')
509
520
  HarnessSlidingWindowConfiguration = Shapes::StructureShape.new(name: 'HarnessSlidingWindowConfiguration')
510
521
  HarnessStatus = Shapes::StringShape.new(name: 'HarnessStatus')
@@ -1458,6 +1469,7 @@ module Aws::BedrockAgentCoreControl
1458
1469
  ConfigurationBundleSummary.add_member(:bundle_id, Shapes::ShapeRef.new(shape: ConfigurationBundleId, required: true, location_name: "bundleId"))
1459
1470
  ConfigurationBundleSummary.add_member(:bundle_name, Shapes::ShapeRef.new(shape: ConfigurationBundleName, required: true, location_name: "bundleName"))
1460
1471
  ConfigurationBundleSummary.add_member(:description, Shapes::ShapeRef.new(shape: ConfigurationBundleDescription, location_name: "description"))
1472
+ ConfigurationBundleSummary.add_member(:created_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "createdAt"))
1461
1473
  ConfigurationBundleSummary.struct_class = Types::ConfigurationBundleSummary
1462
1474
 
1463
1475
  ConfigurationBundleSummaryList.member = Shapes::ShapeRef.new(shape: ConfigurationBundleSummary)
@@ -3068,10 +3080,10 @@ module Aws::BedrockAgentCoreControl
3068
3080
  Harness.add_member(:failure_reason, Shapes::ShapeRef.new(shape: String, location_name: "failureReason"))
3069
3081
  Harness.struct_class = Types::Harness
3070
3082
 
3071
- HarnessAgentCoreBrowserConfig.add_member(:browser_arn, Shapes::ShapeRef.new(shape: BrowserArn, location_name: "browserArn"))
3083
+ HarnessAgentCoreBrowserConfig.add_member(:browser_arn, Shapes::ShapeRef.new(shape: HarnessBrowserArn, location_name: "browserArn"))
3072
3084
  HarnessAgentCoreBrowserConfig.struct_class = Types::HarnessAgentCoreBrowserConfig
3073
3085
 
3074
- HarnessAgentCoreCodeInterpreterConfig.add_member(:code_interpreter_arn, Shapes::ShapeRef.new(shape: CodeInterpreterArn, location_name: "codeInterpreterArn"))
3086
+ HarnessAgentCoreCodeInterpreterConfig.add_member(:code_interpreter_arn, Shapes::ShapeRef.new(shape: HarnessCodeInterpreterArn, location_name: "codeInterpreterArn"))
3075
3087
  HarnessAgentCoreCodeInterpreterConfig.struct_class = Types::HarnessAgentCoreCodeInterpreterConfig
3076
3088
 
3077
3089
  HarnessAgentCoreGatewayConfig.add_member(:gateway_arn, Shapes::ShapeRef.new(shape: GatewayArn, required: true, location_name: "gatewayArn"))
@@ -3111,6 +3123,8 @@ module Aws::BedrockAgentCoreControl
3111
3123
  HarnessBedrockModelConfig.add_member(:max_tokens, Shapes::ShapeRef.new(shape: MaxTokens, location_name: "maxTokens"))
3112
3124
  HarnessBedrockModelConfig.add_member(:temperature, Shapes::ShapeRef.new(shape: Temperature, location_name: "temperature"))
3113
3125
  HarnessBedrockModelConfig.add_member(:top_p, Shapes::ShapeRef.new(shape: TopP, location_name: "topP"))
3126
+ HarnessBedrockModelConfig.add_member(:api_format, Shapes::ShapeRef.new(shape: HarnessBedrockApiFormat, location_name: "apiFormat"))
3127
+ HarnessBedrockModelConfig.add_member(:additional_params, Shapes::ShapeRef.new(shape: Document, location_name: "additionalParams"))
3114
3128
  HarnessBedrockModelConfig.struct_class = Types::HarnessBedrockModelConfig
3115
3129
 
3116
3130
  HarnessEnvironmentArtifact.add_member(:container_configuration, Shapes::ShapeRef.new(shape: ContainerConfiguration, location_name: "containerConfiguration"))
@@ -3153,6 +3167,15 @@ module Aws::BedrockAgentCoreControl
3153
3167
  HarnessInlineFunctionConfig.add_member(:input_schema, Shapes::ShapeRef.new(shape: SensitiveJson, required: true, location_name: "inputSchema"))
3154
3168
  HarnessInlineFunctionConfig.struct_class = Types::HarnessInlineFunctionConfig
3155
3169
 
3170
+ HarnessLiteLlmModelConfig.add_member(:model_id, Shapes::ShapeRef.new(shape: ModelId, required: true, location_name: "modelId"))
3171
+ HarnessLiteLlmModelConfig.add_member(:api_key_arn, Shapes::ShapeRef.new(shape: ApiKeyArn, location_name: "apiKeyArn"))
3172
+ HarnessLiteLlmModelConfig.add_member(:api_base, Shapes::ShapeRef.new(shape: HarnessLiteLlmApiBase, location_name: "apiBase"))
3173
+ HarnessLiteLlmModelConfig.add_member(:max_tokens, Shapes::ShapeRef.new(shape: MaxTokens, location_name: "maxTokens"))
3174
+ HarnessLiteLlmModelConfig.add_member(:temperature, Shapes::ShapeRef.new(shape: Temperature, location_name: "temperature"))
3175
+ HarnessLiteLlmModelConfig.add_member(:top_p, Shapes::ShapeRef.new(shape: TopP, location_name: "topP"))
3176
+ HarnessLiteLlmModelConfig.add_member(:additional_params, Shapes::ShapeRef.new(shape: Document, location_name: "additionalParams"))
3177
+ HarnessLiteLlmModelConfig.struct_class = Types::HarnessLiteLlmModelConfig
3178
+
3156
3179
  HarnessMemoryConfiguration.add_member(:agent_core_memory_configuration, Shapes::ShapeRef.new(shape: HarnessAgentCoreMemoryConfiguration, location_name: "agentCoreMemoryConfiguration"))
3157
3180
  HarnessMemoryConfiguration.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
3158
3181
  HarnessMemoryConfiguration.add_member_subclass(:agent_core_memory_configuration, Types::HarnessMemoryConfiguration::AgentCoreMemoryConfiguration)
@@ -3162,10 +3185,12 @@ module Aws::BedrockAgentCoreControl
3162
3185
  HarnessModelConfiguration.add_member(:bedrock_model_config, Shapes::ShapeRef.new(shape: HarnessBedrockModelConfig, location_name: "bedrockModelConfig"))
3163
3186
  HarnessModelConfiguration.add_member(:open_ai_model_config, Shapes::ShapeRef.new(shape: HarnessOpenAiModelConfig, location_name: "openAiModelConfig"))
3164
3187
  HarnessModelConfiguration.add_member(:gemini_model_config, Shapes::ShapeRef.new(shape: HarnessGeminiModelConfig, location_name: "geminiModelConfig"))
3188
+ HarnessModelConfiguration.add_member(:lite_llm_model_config, Shapes::ShapeRef.new(shape: HarnessLiteLlmModelConfig, location_name: "liteLlmModelConfig"))
3165
3189
  HarnessModelConfiguration.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
3166
3190
  HarnessModelConfiguration.add_member_subclass(:bedrock_model_config, Types::HarnessModelConfiguration::BedrockModelConfig)
3167
3191
  HarnessModelConfiguration.add_member_subclass(:open_ai_model_config, Types::HarnessModelConfiguration::OpenAiModelConfig)
3168
3192
  HarnessModelConfiguration.add_member_subclass(:gemini_model_config, Types::HarnessModelConfiguration::GeminiModelConfig)
3193
+ HarnessModelConfiguration.add_member_subclass(:lite_llm_model_config, Types::HarnessModelConfiguration::LiteLlmModelConfig)
3169
3194
  HarnessModelConfiguration.add_member_subclass(:unknown, Types::HarnessModelConfiguration::Unknown)
3170
3195
  HarnessModelConfiguration.struct_class = Types::HarnessModelConfiguration
3171
3196
 
@@ -3174,6 +3199,8 @@ module Aws::BedrockAgentCoreControl
3174
3199
  HarnessOpenAiModelConfig.add_member(:max_tokens, Shapes::ShapeRef.new(shape: MaxTokens, location_name: "maxTokens"))
3175
3200
  HarnessOpenAiModelConfig.add_member(:temperature, Shapes::ShapeRef.new(shape: Temperature, location_name: "temperature"))
3176
3201
  HarnessOpenAiModelConfig.add_member(:top_p, Shapes::ShapeRef.new(shape: TopP, location_name: "topP"))
3202
+ HarnessOpenAiModelConfig.add_member(:api_format, Shapes::ShapeRef.new(shape: HarnessOpenAiApiFormat, location_name: "apiFormat"))
3203
+ HarnessOpenAiModelConfig.add_member(:additional_params, Shapes::ShapeRef.new(shape: Document, location_name: "additionalParams"))
3177
3204
  HarnessOpenAiModelConfig.struct_class = Types::HarnessOpenAiModelConfig
3178
3205
 
3179
3206
  HarnessRemoteMcpConfig.add_member(:url, Shapes::ShapeRef.new(shape: HarnessRemoteMcpUrl, required: true, location_name: "url"))
@@ -3181,11 +3208,27 @@ module Aws::BedrockAgentCoreControl
3181
3208
  HarnessRemoteMcpConfig.struct_class = Types::HarnessRemoteMcpConfig
3182
3209
 
3183
3210
  HarnessSkill.add_member(:path, Shapes::ShapeRef.new(shape: HarnessSkillPath, location_name: "path"))
3211
+ HarnessSkill.add_member(:s3, Shapes::ShapeRef.new(shape: HarnessSkillS3Source, location_name: "s3"))
3212
+ HarnessSkill.add_member(:git, Shapes::ShapeRef.new(shape: HarnessSkillGitSource, location_name: "git"))
3184
3213
  HarnessSkill.add_member(:unknown, Shapes::ShapeRef.new(shape: nil, location_name: 'unknown'))
3185
3214
  HarnessSkill.add_member_subclass(:path, Types::HarnessSkill::Path)
3215
+ HarnessSkill.add_member_subclass(:s3, Types::HarnessSkill::S3)
3216
+ HarnessSkill.add_member_subclass(:git, Types::HarnessSkill::Git)
3186
3217
  HarnessSkill.add_member_subclass(:unknown, Types::HarnessSkill::Unknown)
3187
3218
  HarnessSkill.struct_class = Types::HarnessSkill
3188
3219
 
3220
+ HarnessSkillGitAuth.add_member(:credential_arn, Shapes::ShapeRef.new(shape: ApiKeyArn, required: true, location_name: "credentialArn"))
3221
+ HarnessSkillGitAuth.add_member(:username, Shapes::ShapeRef.new(shape: String, location_name: "username"))
3222
+ HarnessSkillGitAuth.struct_class = Types::HarnessSkillGitAuth
3223
+
3224
+ HarnessSkillGitSource.add_member(:url, Shapes::ShapeRef.new(shape: HarnessSkillGitUrl, required: true, location_name: "url"))
3225
+ HarnessSkillGitSource.add_member(:path, Shapes::ShapeRef.new(shape: String, location_name: "path"))
3226
+ HarnessSkillGitSource.add_member(:auth, Shapes::ShapeRef.new(shape: HarnessSkillGitAuth, location_name: "auth"))
3227
+ HarnessSkillGitSource.struct_class = Types::HarnessSkillGitSource
3228
+
3229
+ HarnessSkillS3Source.add_member(:uri, Shapes::ShapeRef.new(shape: HarnessSkillS3Uri, required: true, location_name: "uri"))
3230
+ HarnessSkillS3Source.struct_class = Types::HarnessSkillS3Source
3231
+
3189
3232
  HarnessSkills.member = Shapes::ShapeRef.new(shape: HarnessSkill)
3190
3233
 
3191
3234
  HarnessSlidingWindowConfiguration.add_member(:messages_count, Shapes::ShapeRef.new(shape: Integer, location_name: "messagesCount"))
@@ -1348,13 +1348,18 @@ module Aws::BedrockAgentCoreControl
1348
1348
  # The description of the configuration bundle.
1349
1349
  # @return [String]
1350
1350
  #
1351
+ # @!attribute [rw] created_at
1352
+ # The timestamp when the configuration bundle was created.
1353
+ # @return [Time]
1354
+ #
1351
1355
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/ConfigurationBundleSummary AWS API Documentation
1352
1356
  #
1353
1357
  class ConfigurationBundleSummary < Struct.new(
1354
1358
  :bundle_arn,
1355
1359
  :bundle_id,
1356
1360
  :bundle_name,
1357
- :description)
1361
+ :description,
1362
+ :created_at)
1358
1363
  SENSITIVE = [:description]
1359
1364
  include Aws::Structure
1360
1365
  end
@@ -9510,13 +9515,24 @@ module Aws::BedrockAgentCoreControl
9510
9515
  # The topP set when calling the model.
9511
9516
  # @return [Float]
9512
9517
  #
9518
+ # @!attribute [rw] api_format
9519
+ # The API format to use when calling the Bedrock provider.
9520
+ # @return [String]
9521
+ #
9522
+ # @!attribute [rw] additional_params
9523
+ # Provider-specific parameters passed through to the model provider
9524
+ # unchanged.
9525
+ # @return [Hash,Array,String,Numeric,Boolean]
9526
+ #
9513
9527
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/HarnessBedrockModelConfig AWS API Documentation
9514
9528
  #
9515
9529
  class HarnessBedrockModelConfig < Struct.new(
9516
9530
  :model_id,
9517
9531
  :max_tokens,
9518
9532
  :temperature,
9519
- :top_p)
9533
+ :top_p,
9534
+ :api_format,
9535
+ :additional_params)
9520
9536
  SENSITIVE = []
9521
9537
  include Aws::Structure
9522
9538
  end
@@ -9602,9 +9618,7 @@ module Aws::BedrockAgentCoreControl
9602
9618
  # @return [Types::Unit]
9603
9619
  #
9604
9620
  # @!attribute [rw] oauth
9605
- # An OAuth credential provider for gateway authentication. This
9606
- # structure contains the configuration for authenticating with the
9607
- # target endpoint using OAuth.
9621
+ # Use OAuth credentials for outbound authentication to the gateway.
9608
9622
  # @return [Types::OAuthCredentialProvider]
9609
9623
  #
9610
9624
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/HarnessGatewayOutboundAuth AWS API Documentation
@@ -9685,6 +9699,54 @@ module Aws::BedrockAgentCoreControl
9685
9699
  include Aws::Structure
9686
9700
  end
9687
9701
 
9702
+ # Configuration for a LiteLLM model provider, enabling connection to
9703
+ # third-party model providers.
9704
+ #
9705
+ # @!attribute [rw] model_id
9706
+ # The LiteLLM model identifier (e.g., "anthropic/claude-3-sonnet").
9707
+ # @return [String]
9708
+ #
9709
+ # @!attribute [rw] api_key_arn
9710
+ # The ARN of the API key in AgentCore Identity for authenticating with
9711
+ # the model provider.
9712
+ # @return [String]
9713
+ #
9714
+ # @!attribute [rw] api_base
9715
+ # The base URL for the model provider's API endpoint.
9716
+ # @return [String]
9717
+ #
9718
+ # @!attribute [rw] max_tokens
9719
+ # The maximum number of tokens to allow in the generated response per
9720
+ # iteration.
9721
+ # @return [Integer]
9722
+ #
9723
+ # @!attribute [rw] temperature
9724
+ # The temperature to set when calling the model.
9725
+ # @return [Float]
9726
+ #
9727
+ # @!attribute [rw] top_p
9728
+ # The topP set when calling the model.
9729
+ # @return [Float]
9730
+ #
9731
+ # @!attribute [rw] additional_params
9732
+ # Provider-specific parameters passed through to the model provider
9733
+ # unchanged.
9734
+ # @return [Hash,Array,String,Numeric,Boolean]
9735
+ #
9736
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/HarnessLiteLlmModelConfig AWS API Documentation
9737
+ #
9738
+ class HarnessLiteLlmModelConfig < Struct.new(
9739
+ :model_id,
9740
+ :api_key_arn,
9741
+ :api_base,
9742
+ :max_tokens,
9743
+ :temperature,
9744
+ :top_p,
9745
+ :additional_params)
9746
+ SENSITIVE = [:api_base]
9747
+ include Aws::Structure
9748
+ end
9749
+
9688
9750
  # The memory configuration for a harness.
9689
9751
  #
9690
9752
  # @note HarnessMemoryConfiguration is a union - when making an API calls you must set exactly one of the members.
@@ -9726,12 +9788,18 @@ module Aws::BedrockAgentCoreControl
9726
9788
  # Configuration for a Google Gemini model.
9727
9789
  # @return [Types::HarnessGeminiModelConfig]
9728
9790
  #
9791
+ # @!attribute [rw] lite_llm_model_config
9792
+ # The LiteLLM model configuration for connecting to third-party model
9793
+ # providers.
9794
+ # @return [Types::HarnessLiteLlmModelConfig]
9795
+ #
9729
9796
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/HarnessModelConfiguration AWS API Documentation
9730
9797
  #
9731
9798
  class HarnessModelConfiguration < Struct.new(
9732
9799
  :bedrock_model_config,
9733
9800
  :open_ai_model_config,
9734
9801
  :gemini_model_config,
9802
+ :lite_llm_model_config,
9735
9803
  :unknown)
9736
9804
  SENSITIVE = []
9737
9805
  include Aws::Structure
@@ -9740,6 +9808,7 @@ module Aws::BedrockAgentCoreControl
9740
9808
  class BedrockModelConfig < HarnessModelConfiguration; end
9741
9809
  class OpenAiModelConfig < HarnessModelConfiguration; end
9742
9810
  class GeminiModelConfig < HarnessModelConfiguration; end
9811
+ class LiteLlmModelConfig < HarnessModelConfiguration; end
9743
9812
  class Unknown < HarnessModelConfiguration; end
9744
9813
  end
9745
9814
 
@@ -9767,6 +9836,15 @@ module Aws::BedrockAgentCoreControl
9767
9836
  # The topP set when calling the model.
9768
9837
  # @return [Float]
9769
9838
  #
9839
+ # @!attribute [rw] api_format
9840
+ # The API format to use when calling the OpenAI provider.
9841
+ # @return [String]
9842
+ #
9843
+ # @!attribute [rw] additional_params
9844
+ # Provider-specific parameters passed through to the model provider
9845
+ # unchanged.
9846
+ # @return [Hash,Array,String,Numeric,Boolean]
9847
+ #
9770
9848
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/HarnessOpenAiModelConfig AWS API Documentation
9771
9849
  #
9772
9850
  class HarnessOpenAiModelConfig < Struct.new(
@@ -9774,7 +9852,9 @@ module Aws::BedrockAgentCoreControl
9774
9852
  :api_key_arn,
9775
9853
  :max_tokens,
9776
9854
  :temperature,
9777
- :top_p)
9855
+ :top_p,
9856
+ :api_format,
9857
+ :additional_params)
9778
9858
  SENSITIVE = []
9779
9859
  include Aws::Structure
9780
9860
  end
@@ -9808,19 +9888,91 @@ module Aws::BedrockAgentCoreControl
9808
9888
  # The filesystem path to the skill definition.
9809
9889
  # @return [String]
9810
9890
  #
9891
+ # @!attribute [rw] s3
9892
+ # An S3 source containing the skill.
9893
+ # @return [Types::HarnessSkillS3Source]
9894
+ #
9895
+ # @!attribute [rw] git
9896
+ # A git repository containing the skill.
9897
+ # @return [Types::HarnessSkillGitSource]
9898
+ #
9811
9899
  # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/HarnessSkill AWS API Documentation
9812
9900
  #
9813
9901
  class HarnessSkill < Struct.new(
9814
9902
  :path,
9903
+ :s3,
9904
+ :git,
9815
9905
  :unknown)
9816
9906
  SENSITIVE = []
9817
9907
  include Aws::Structure
9818
9908
  include Aws::Structure::Union
9819
9909
 
9820
9910
  class Path < HarnessSkill; end
9911
+ class S3 < HarnessSkill; end
9912
+ class Git < HarnessSkill; end
9821
9913
  class Unknown < HarnessSkill; end
9822
9914
  end
9823
9915
 
9916
+ # Authentication configuration for accessing a private git repository.
9917
+ #
9918
+ # @!attribute [rw] credential_arn
9919
+ # The ARN of the credential in AgentCore Identity containing the
9920
+ # password or personal access token.
9921
+ # @return [String]
9922
+ #
9923
+ # @!attribute [rw] username
9924
+ # Username for authentication. Defaults to 'oauth2' if not
9925
+ # specified.
9926
+ # @return [String]
9927
+ #
9928
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/HarnessSkillGitAuth AWS API Documentation
9929
+ #
9930
+ class HarnessSkillGitAuth < Struct.new(
9931
+ :credential_arn,
9932
+ :username)
9933
+ SENSITIVE = []
9934
+ include Aws::Structure
9935
+ end
9936
+
9937
+ # A git repository source for a skill.
9938
+ #
9939
+ # @!attribute [rw] url
9940
+ # The HTTPS URL of the git repository.
9941
+ # @return [String]
9942
+ #
9943
+ # @!attribute [rw] path
9944
+ # Subdirectory within the repository containing the skill.
9945
+ # @return [String]
9946
+ #
9947
+ # @!attribute [rw] auth
9948
+ # Authentication configuration for private repositories.
9949
+ # @return [Types::HarnessSkillGitAuth]
9950
+ #
9951
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/HarnessSkillGitSource AWS API Documentation
9952
+ #
9953
+ class HarnessSkillGitSource < Struct.new(
9954
+ :url,
9955
+ :path,
9956
+ :auth)
9957
+ SENSITIVE = []
9958
+ include Aws::Structure
9959
+ end
9960
+
9961
+ # An S3 source for a skill.
9962
+ #
9963
+ # @!attribute [rw] uri
9964
+ # The S3 URI pointing to the skill directory (e.g.,
9965
+ # s3://bucket/skills/my-skill/).
9966
+ # @return [String]
9967
+ #
9968
+ # @see http://docs.aws.amazon.com/goto/WebAPI/bedrock-agentcore-control-2023-06-05/HarnessSkillS3Source AWS API Documentation
9969
+ #
9970
+ class HarnessSkillS3Source < Struct.new(
9971
+ :uri)
9972
+ SENSITIVE = []
9973
+ include Aws::Structure
9974
+ end
9975
+
9824
9976
  # Configuration for sliding window truncation strategy.
9825
9977
  #
9826
9978
  # @!attribute [rw] messages_count
@@ -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.49.0'
58
+ GEM_VERSION = '1.50.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -489,9 +489,7 @@ module Aws
489
489
  Params::harness_tool
490
490
  ],
491
491
  ?skills: Array[
492
- {
493
- path: ::String?
494
- }
492
+ Params::harness_skill
495
493
  ],
496
494
  ?allowed_tools: Array[::String],
497
495
  ?memory: Params::harness_memory_configuration,
@@ -2516,9 +2514,7 @@ module Aws
2516
2514
  Params::harness_tool
2517
2515
  ],
2518
2516
  ?skills: Array[
2519
- {
2520
- path: ::String?
2521
- }
2517
+ Params::harness_skill
2522
2518
  ],
2523
2519
  ?allowed_tools: Array[::String],
2524
2520
  ?memory: {
data/sig/params.rbs CHANGED
@@ -404,6 +404,27 @@ module Aws
404
404
  agent_core_runtime_environment: Params::harness_agent_core_runtime_environment_request?
405
405
  }
406
406
 
407
+ type harness_bedrock_model_config = {
408
+ model_id: ::String,
409
+ max_tokens: ::Integer?,
410
+ temperature: ::Float?,
411
+ top_p: ::Float?,
412
+ api_format: ("converse_stream" | "responses" | "chat_completions")?,
413
+ additional_params: {
414
+ }?
415
+ }
416
+
417
+ type harness_open_ai_model_config = {
418
+ model_id: ::String,
419
+ api_key_arn: ::String,
420
+ max_tokens: ::Integer?,
421
+ temperature: ::Float?,
422
+ top_p: ::Float?,
423
+ api_format: ("chat_completions" | "responses")?,
424
+ additional_params: {
425
+ }?
426
+ }
427
+
407
428
  type harness_gemini_model_config = {
408
429
  model_id: ::String,
409
430
  api_key_arn: ::String,
@@ -413,21 +434,22 @@ module Aws
413
434
  top_k: ::Integer?
414
435
  }
415
436
 
437
+ type harness_lite_llm_model_config = {
438
+ model_id: ::String,
439
+ api_key_arn: ::String?,
440
+ api_base: ::String?,
441
+ max_tokens: ::Integer?,
442
+ temperature: ::Float?,
443
+ top_p: ::Float?,
444
+ additional_params: {
445
+ }?
446
+ }
447
+
416
448
  type harness_model_configuration = {
417
- bedrock_model_config: {
418
- model_id: ::String,
419
- max_tokens: ::Integer?,
420
- temperature: ::Float?,
421
- top_p: ::Float?
422
- }?,
423
- open_ai_model_config: {
424
- model_id: ::String,
425
- api_key_arn: ::String,
426
- max_tokens: ::Integer?,
427
- temperature: ::Float?,
428
- top_p: ::Float?
429
- }?,
430
- gemini_model_config: Params::harness_gemini_model_config?
449
+ bedrock_model_config: Params::harness_bedrock_model_config?,
450
+ open_ai_model_config: Params::harness_open_ai_model_config?,
451
+ gemini_model_config: Params::harness_gemini_model_config?,
452
+ lite_llm_model_config: Params::harness_lite_llm_model_config?
431
453
  }
432
454
 
433
455
  type harness_gateway_outbound_auth = {
@@ -474,6 +496,23 @@ module Aws
474
496
  config: Params::harness_tool_configuration?
475
497
  }
476
498
 
499
+ type harness_skill_git_source = {
500
+ url: ::String,
501
+ path: ::String?,
502
+ auth: {
503
+ credential_arn: ::String,
504
+ username: ::String?
505
+ }?
506
+ }
507
+
508
+ type harness_skill = {
509
+ path: ::String?,
510
+ s3: {
511
+ uri: ::String
512
+ }?,
513
+ git: Params::harness_skill_git_source?
514
+ }
515
+
477
516
  type harness_agent_core_memory_configuration = {
478
517
  arn: ::String,
479
518
  actor_id: ::String?,
data/sig/types.rbs CHANGED
@@ -417,6 +417,7 @@ module Aws::BedrockAgentCoreControl
417
417
  attr_accessor bundle_id: ::String
418
418
  attr_accessor bundle_name: ::String
419
419
  attr_accessor description: ::String
420
+ attr_accessor created_at: ::Time
420
421
  SENSITIVE: [:description]
421
422
  end
422
423
 
@@ -2565,6 +2566,8 @@ module Aws::BedrockAgentCoreControl
2565
2566
  attr_accessor max_tokens: ::Integer
2566
2567
  attr_accessor temperature: ::Float
2567
2568
  attr_accessor top_p: ::Float
2569
+ attr_accessor api_format: ("converse_stream" | "responses" | "chat_completions")
2570
+ attr_accessor additional_params: untyped
2568
2571
  SENSITIVE: []
2569
2572
  end
2570
2573
 
@@ -2634,6 +2637,17 @@ module Aws::BedrockAgentCoreControl
2634
2637
  SENSITIVE: [:description, :input_schema]
2635
2638
  end
2636
2639
 
2640
+ class HarnessLiteLlmModelConfig
2641
+ attr_accessor model_id: ::String
2642
+ attr_accessor api_key_arn: ::String
2643
+ attr_accessor api_base: ::String
2644
+ attr_accessor max_tokens: ::Integer
2645
+ attr_accessor temperature: ::Float
2646
+ attr_accessor top_p: ::Float
2647
+ attr_accessor additional_params: untyped
2648
+ SENSITIVE: [:api_base]
2649
+ end
2650
+
2637
2651
  class HarnessMemoryConfiguration
2638
2652
  attr_accessor agent_core_memory_configuration: Types::HarnessAgentCoreMemoryConfiguration
2639
2653
  attr_accessor unknown: untyped
@@ -2649,6 +2663,7 @@ module Aws::BedrockAgentCoreControl
2649
2663
  attr_accessor bedrock_model_config: Types::HarnessBedrockModelConfig
2650
2664
  attr_accessor open_ai_model_config: Types::HarnessOpenAiModelConfig
2651
2665
  attr_accessor gemini_model_config: Types::HarnessGeminiModelConfig
2666
+ attr_accessor lite_llm_model_config: Types::HarnessLiteLlmModelConfig
2652
2667
  attr_accessor unknown: untyped
2653
2668
  SENSITIVE: []
2654
2669
 
@@ -2658,6 +2673,8 @@ module Aws::BedrockAgentCoreControl
2658
2673
  end
2659
2674
  class GeminiModelConfig < HarnessModelConfiguration
2660
2675
  end
2676
+ class LiteLlmModelConfig < HarnessModelConfiguration
2677
+ end
2661
2678
  class Unknown < HarnessModelConfiguration
2662
2679
  end
2663
2680
  end
@@ -2668,6 +2685,8 @@ module Aws::BedrockAgentCoreControl
2668
2685
  attr_accessor max_tokens: ::Integer
2669
2686
  attr_accessor temperature: ::Float
2670
2687
  attr_accessor top_p: ::Float
2688
+ attr_accessor api_format: ("chat_completions" | "responses")
2689
+ attr_accessor additional_params: untyped
2671
2690
  SENSITIVE: []
2672
2691
  end
2673
2692
 
@@ -2679,15 +2698,39 @@ module Aws::BedrockAgentCoreControl
2679
2698
 
2680
2699
  class HarnessSkill
2681
2700
  attr_accessor path: ::String
2701
+ attr_accessor s3: Types::HarnessSkillS3Source
2702
+ attr_accessor git: Types::HarnessSkillGitSource
2682
2703
  attr_accessor unknown: untyped
2683
2704
  SENSITIVE: []
2684
2705
 
2685
2706
  class Path < HarnessSkill
2686
2707
  end
2708
+ class S3 < HarnessSkill
2709
+ end
2710
+ class Git < HarnessSkill
2711
+ end
2687
2712
  class Unknown < HarnessSkill
2688
2713
  end
2689
2714
  end
2690
2715
 
2716
+ class HarnessSkillGitAuth
2717
+ attr_accessor credential_arn: ::String
2718
+ attr_accessor username: ::String
2719
+ SENSITIVE: []
2720
+ end
2721
+
2722
+ class HarnessSkillGitSource
2723
+ attr_accessor url: ::String
2724
+ attr_accessor path: ::String
2725
+ attr_accessor auth: Types::HarnessSkillGitAuth
2726
+ SENSITIVE: []
2727
+ end
2728
+
2729
+ class HarnessSkillS3Source
2730
+ attr_accessor uri: ::String
2731
+ SENSITIVE: []
2732
+ end
2733
+
2691
2734
  class HarnessSlidingWindowConfiguration
2692
2735
  attr_accessor messages_count: ::Integer
2693
2736
  SENSITIVE: []
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.49.0
4
+ version: 1.50.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services