aws-sdk-devopsagent 1.9.0 → 1.10.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: 9591d58698c10366b038fcbbf7396539b2f4ced9534589eb4e8c76c39a3557e0
4
- data.tar.gz: d84b894f592d3dde78246e5dc2634772ef5215ad9124abf936c5a527b89a6f7f
3
+ metadata.gz: 9ec03279cc5b782bbd6b12c11507c1a90eadfe0f4fb07dd9752f3908e29f4ea9
4
+ data.tar.gz: 667eb5faf13f708fdf22046ed28c0ecd6ce55003d462cdac6dba09d82592bd39
5
5
  SHA512:
6
- metadata.gz: b2d7326791c735b4c98166046a931367f33c729d349f203c257d6bffc77aa77dbea45c7b054994fd5b26cb13df1258e3bd09d52e56c57d458db8636c65f7b41a
7
- data.tar.gz: 4b9143325c08147bdb9674573c838cdf42a9583eefc46135255d1929c79327653134c4501500fce0518b315d09ebe8c67ee07fa0b59d78e754003d02de227de1
6
+ metadata.gz: 6aa6598cad27bc42fd2991863825433d1ecd30c3969da7c405730e10f20645a67411f8fe5d6d367308e193785c1cd459a30f864739ffd17f66c5a09636981547
7
+ data.tar.gz: 2a12e869e5f9340779a28276fc0fbefce52298c5a67284eea53176c71727922bb8634c0caf417598ce3bd7ab5a1333bfaee7fd1b1dec35a0ece0fedec7bd6889
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.10.0 (2026-06-17)
5
+ ------------------
6
+
7
+ * Feature - Adds support for Remote A2A (Agent-to-Agent) agent registration and management. Adds new Release Readiness Review and Release Testing capabilities. Adds support for Git managed skills in AWS DevOps Agent.
8
+
4
9
  1.9.0 (2026-06-12)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.9.0
1
+ 1.10.0
@@ -499,6 +499,9 @@ module Aws::DevOpsAgent
499
499
  # The configuration that directs how AgentSpace interacts with the given
500
500
  # service.
501
501
  #
502
+ # @option params [Hash<String,Types::CapabilityConfiguration>] :capabilities
503
+ # Enabled capabilities for this association.
504
+ #
502
505
  # @return [Types::AssociateServiceOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
503
506
  #
504
507
  # * {Types::AssociateServiceOutput#association #association} => Types::Association
@@ -527,6 +530,7 @@ module Aws::DevOpsAgent
527
530
  # owner: "String", # required
528
531
  # owner_type: "organization", # required, accepts organization, user
529
532
  # instance_identifier: "String",
533
+ # runtime_role_arn: "RoleArn",
530
534
  # },
531
535
  # slack: {
532
536
  # workspace_id: "SlackConfigurationWorkspaceIdString", # required
@@ -563,6 +567,7 @@ module Aws::DevOpsAgent
563
567
  # project_id: "String", # required
564
568
  # project_path: "String", # required
565
569
  # instance_identifier: "String",
570
+ # runtime_role_arn: "RoleArn",
566
571
  # },
567
572
  # mcpserversplunk: {
568
573
  # },
@@ -588,6 +593,15 @@ module Aws::DevOpsAgent
588
593
  # mcpserversigv4: {
589
594
  # tools: ["MCPToolsListMemberString"], # required
590
595
  # },
596
+ # remoteagent: {
597
+ # },
598
+ # remoteagentsigv4: {
599
+ # },
600
+ # },
601
+ # capabilities: {
602
+ # "RELEASE_READINESS_REVIEW" => {
603
+ # enabled: false,
604
+ # },
591
605
  # },
592
606
  # })
593
607
  #
@@ -611,6 +625,7 @@ module Aws::DevOpsAgent
611
625
  # resp.association.configuration.github.owner #=> String
612
626
  # resp.association.configuration.github.owner_type #=> String, one of "organization", "user"
613
627
  # resp.association.configuration.github.instance_identifier #=> String
628
+ # resp.association.configuration.github.runtime_role_arn #=> String
614
629
  # resp.association.configuration.slack.workspace_id #=> String
615
630
  # resp.association.configuration.slack.workspace_name #=> String
616
631
  # resp.association.configuration.slack.transmission_target.ops_oncall_target.channel_name #=> String
@@ -630,6 +645,7 @@ module Aws::DevOpsAgent
630
645
  # resp.association.configuration.gitlab.project_id #=> String
631
646
  # resp.association.configuration.gitlab.project_path #=> String
632
647
  # resp.association.configuration.gitlab.instance_identifier #=> String
648
+ # resp.association.configuration.gitlab.runtime_role_arn #=> String
633
649
  # resp.association.configuration.azure.subscription_id #=> String
634
650
  # resp.association.configuration.azuredevops.organization_name #=> String
635
651
  # resp.association.configuration.azuredevops.project_id #=> String
@@ -643,6 +659,8 @@ module Aws::DevOpsAgent
643
659
  # resp.association.configuration.pagerduty.customer_email #=> String
644
660
  # resp.association.configuration.mcpserversigv4.tools #=> Array
645
661
  # resp.association.configuration.mcpserversigv4.tools[0] #=> String
662
+ # resp.association.capabilities #=> Hash
663
+ # resp.association.capabilities["CapabilityType"].enabled #=> Boolean
646
664
  # resp.webhook.webhook_url #=> String
647
665
  # resp.webhook.webhook_id #=> String
648
666
  # resp.webhook.webhook_type #=> String, one of "hmac", "apikey", "gitlab", "pagerduty"
@@ -743,7 +761,8 @@ module Aws::DevOpsAgent
743
761
  # additional encoding or escaping.
744
762
  #
745
763
  # @option params [required, Types::AssetContent] :content
746
- # The content for the asset. Provide a single file or a zip bundle.
764
+ # The content for the asset. Provide a single file, a zip bundle, or a
765
+ # sourceUrl to import from an external source.
747
766
  #
748
767
  # @option params [String] :client_token
749
768
  # A unique, case-sensitive identifier used for idempotent asset creation
@@ -775,6 +794,9 @@ module Aws::DevOpsAgent
775
794
  # zip: {
776
795
  # zip_file: "data", # required
777
796
  # },
797
+ # source_url: {
798
+ # url: "AssetContentUrl", # required
799
+ # },
778
800
  # },
779
801
  # client_token: "CreateAssetRequestClientTokenString",
780
802
  # })
@@ -904,7 +926,7 @@ module Aws::DevOpsAgent
904
926
  # reference_url: "ReferenceInputReferenceUrlString", # required
905
927
  # association_id: "ResourceId", # required
906
928
  # },
907
- # task_type: "INVESTIGATION", # required, accepts INVESTIGATION, EVALUATION
929
+ # task_type: "INVESTIGATION", # required, accepts INVESTIGATION, EVALUATION, RELEASE_READINESS_REVIEW, RELEASE_TESTING
908
930
  # title: "BacklogTaskTitle", # required
909
931
  # description: "BacklogTaskDescription",
910
932
  # priority: "CRITICAL", # required, accepts CRITICAL, HIGH, MEDIUM, LOW, MINIMAL
@@ -923,7 +945,7 @@ module Aws::DevOpsAgent
923
945
  # resp.task.reference.reference_id #=> String
924
946
  # resp.task.reference.reference_url #=> String
925
947
  # resp.task.reference.association_id #=> String
926
- # resp.task.task_type #=> String, one of "INVESTIGATION", "EVALUATION"
948
+ # resp.task.task_type #=> String, one of "INVESTIGATION", "EVALUATION", "RELEASE_READINESS_REVIEW", "RELEASE_TESTING"
927
949
  # resp.task.priority #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "MINIMAL"
928
950
  # resp.task.status #=> String, one of "PENDING_TRIAGE", "LINKED", "PENDING_START", "IN_PROGRESS", "PENDING_CUSTOMER_APPROVAL", "COMPLETED", "FAILED", "TIMED_OUT", "CANCELED", "SKIPPED"
929
951
  # resp.task.created_at #=> Time
@@ -1061,8 +1083,8 @@ module Aws::DevOpsAgent
1061
1083
  # Creates a new Trigger in the specified agent space
1062
1084
  #
1063
1085
  # @option params [required, String] :agent_space_id
1064
- # Unique identifier for an agent space (allows alphanumeric characters
1065
- # and hyphens; 1-64 characters)
1086
+ # The unique identifier for the agent space where the Trigger will be
1087
+ # created
1066
1088
  #
1067
1089
  # @option params [required, String] :type
1068
1090
  # How the new Trigger fires
@@ -1240,12 +1262,10 @@ module Aws::DevOpsAgent
1240
1262
  # Deletes a Trigger from the specified agent space
1241
1263
  #
1242
1264
  # @option params [required, String] :agent_space_id
1243
- # Unique identifier for an agent space (allows alphanumeric characters
1244
- # and hyphens; 1-64 characters)
1265
+ # The unique identifier for the agent space containing the Trigger
1245
1266
  #
1246
1267
  # @option params [required, String] :trigger_id
1247
- # Generic resource identifier (allows alphanumeric characters, hyphens,
1248
- # and underscores; 1-128 characters)
1268
+ # The unique identifier of the Trigger to delete
1249
1269
  #
1250
1270
  # @return [Struct] Returns an empty {Seahorse::Client::Response response}.
1251
1271
  #
@@ -1703,6 +1723,7 @@ module Aws::DevOpsAgent
1703
1723
  # resp.association.configuration.github.owner #=> String
1704
1724
  # resp.association.configuration.github.owner_type #=> String, one of "organization", "user"
1705
1725
  # resp.association.configuration.github.instance_identifier #=> String
1726
+ # resp.association.configuration.github.runtime_role_arn #=> String
1706
1727
  # resp.association.configuration.slack.workspace_id #=> String
1707
1728
  # resp.association.configuration.slack.workspace_name #=> String
1708
1729
  # resp.association.configuration.slack.transmission_target.ops_oncall_target.channel_name #=> String
@@ -1722,6 +1743,7 @@ module Aws::DevOpsAgent
1722
1743
  # resp.association.configuration.gitlab.project_id #=> String
1723
1744
  # resp.association.configuration.gitlab.project_path #=> String
1724
1745
  # resp.association.configuration.gitlab.instance_identifier #=> String
1746
+ # resp.association.configuration.gitlab.runtime_role_arn #=> String
1725
1747
  # resp.association.configuration.azure.subscription_id #=> String
1726
1748
  # resp.association.configuration.azuredevops.organization_name #=> String
1727
1749
  # resp.association.configuration.azuredevops.project_id #=> String
@@ -1735,6 +1757,8 @@ module Aws::DevOpsAgent
1735
1757
  # resp.association.configuration.pagerduty.customer_email #=> String
1736
1758
  # resp.association.configuration.mcpserversigv4.tools #=> Array
1737
1759
  # resp.association.configuration.mcpserversigv4.tools[0] #=> String
1760
+ # resp.association.capabilities #=> Hash
1761
+ # resp.association.capabilities["CapabilityType"].enabled #=> Boolean
1738
1762
  #
1739
1763
  # @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/GetAssociation AWS API Documentation
1740
1764
  #
@@ -1776,7 +1800,7 @@ module Aws::DevOpsAgent
1776
1800
  # resp.task.reference.reference_id #=> String
1777
1801
  # resp.task.reference.reference_url #=> String
1778
1802
  # resp.task.reference.association_id #=> String
1779
- # resp.task.task_type #=> String, one of "INVESTIGATION", "EVALUATION"
1803
+ # resp.task.task_type #=> String, one of "INVESTIGATION", "EVALUATION", "RELEASE_READINESS_REVIEW", "RELEASE_TESTING"
1780
1804
  # resp.task.priority #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "MINIMAL"
1781
1805
  # resp.task.status #=> String, one of "PENDING_TRIAGE", "LINKED", "PENDING_START", "IN_PROGRESS", "PENDING_CUSTOMER_APPROVAL", "COMPLETED", "FAILED", "TIMED_OUT", "CANCELED", "SKIPPED"
1782
1806
  # resp.task.created_at #=> Time
@@ -1913,7 +1937,7 @@ module Aws::DevOpsAgent
1913
1937
  # @example Response structure
1914
1938
  #
1915
1939
  # resp.service.service_id #=> String
1916
- # resp.service.service_type #=> String, one of "github", "slack", "azure", "azuredevops", "dynatrace", "servicenow", "pagerduty", "gitlab", "eventChannel", "mcpservernewrelic", "mcpservergrafana", "mcpserverdatadog", "mcpserver", "mcpserversplunk", "azureidentity", "mcpserversigv4"
1940
+ # resp.service.service_type #=> String, one of "github", "slack", "azure", "azuredevops", "dynatrace", "servicenow", "pagerduty", "gitlab", "eventChannel", "mcpservernewrelic", "mcpservergrafana", "mcpserverdatadog", "mcpserver", "mcpserversplunk", "azureidentity", "mcpserversigv4", "remoteagent", "remoteagentsigv4"
1917
1941
  # resp.service.name #=> String
1918
1942
  # resp.service.accessible_resources #=> Array
1919
1943
  # resp.service.additional_service_details.github.owner #=> String
@@ -1962,6 +1986,17 @@ module Aws::DevOpsAgent
1962
1986
  # resp.service.additional_service_details.mcpserversigv4.mcp_role_arn #=> String
1963
1987
  # resp.service.additional_service_details.mcpserversigv4.custom_headers #=> Hash
1964
1988
  # resp.service.additional_service_details.mcpserversigv4.custom_headers["CustomHeaderName"] #=> String
1989
+ # resp.service.additional_service_details.remoteagent.name #=> String
1990
+ # resp.service.additional_service_details.remoteagent.endpoint #=> String
1991
+ # resp.service.additional_service_details.remoteagent.description #=> String
1992
+ # resp.service.additional_service_details.remoteagent.authorization_method #=> String, one of "oauth-client-credentials", "api-key", "bearer-token"
1993
+ # resp.service.additional_service_details.remoteagent.api_key_header #=> String
1994
+ # resp.service.additional_service_details.remoteagentsigv4.name #=> String
1995
+ # resp.service.additional_service_details.remoteagentsigv4.endpoint #=> String
1996
+ # resp.service.additional_service_details.remoteagentsigv4.description #=> String
1997
+ # resp.service.additional_service_details.remoteagentsigv4.region #=> String
1998
+ # resp.service.additional_service_details.remoteagentsigv4.service #=> String
1999
+ # resp.service.additional_service_details.remoteagentsigv4.role_arn #=> String
1965
2000
  # resp.service.kms_key_arn #=> String
1966
2001
  # resp.service.private_connection_name #=> String
1967
2002
  # resp.tags #=> Hash
@@ -1979,12 +2014,10 @@ module Aws::DevOpsAgent
1979
2014
  # Gets a Trigger from the specified agent space
1980
2015
  #
1981
2016
  # @option params [required, String] :agent_space_id
1982
- # Unique identifier for an agent space (allows alphanumeric characters
1983
- # and hyphens; 1-64 characters)
2017
+ # The unique identifier for the agent space containing the Trigger
1984
2018
  #
1985
2019
  # @option params [required, String] :trigger_id
1986
- # Generic resource identifier (allows alphanumeric characters, hyphens,
1987
- # and underscores; 1-128 characters)
2020
+ # The unique identifier of the Trigger to retrieve
1988
2021
  #
1989
2022
  # @return [Types::GetTriggerResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1990
2023
  #
@@ -2311,6 +2344,7 @@ module Aws::DevOpsAgent
2311
2344
  # resp.associations[0].configuration.github.owner #=> String
2312
2345
  # resp.associations[0].configuration.github.owner_type #=> String, one of "organization", "user"
2313
2346
  # resp.associations[0].configuration.github.instance_identifier #=> String
2347
+ # resp.associations[0].configuration.github.runtime_role_arn #=> String
2314
2348
  # resp.associations[0].configuration.slack.workspace_id #=> String
2315
2349
  # resp.associations[0].configuration.slack.workspace_name #=> String
2316
2350
  # resp.associations[0].configuration.slack.transmission_target.ops_oncall_target.channel_name #=> String
@@ -2330,6 +2364,7 @@ module Aws::DevOpsAgent
2330
2364
  # resp.associations[0].configuration.gitlab.project_id #=> String
2331
2365
  # resp.associations[0].configuration.gitlab.project_path #=> String
2332
2366
  # resp.associations[0].configuration.gitlab.instance_identifier #=> String
2367
+ # resp.associations[0].configuration.gitlab.runtime_role_arn #=> String
2333
2368
  # resp.associations[0].configuration.azure.subscription_id #=> String
2334
2369
  # resp.associations[0].configuration.azuredevops.organization_name #=> String
2335
2370
  # resp.associations[0].configuration.azuredevops.project_id #=> String
@@ -2343,6 +2378,8 @@ module Aws::DevOpsAgent
2343
2378
  # resp.associations[0].configuration.pagerduty.customer_email #=> String
2344
2379
  # resp.associations[0].configuration.mcpserversigv4.tools #=> Array
2345
2380
  # resp.associations[0].configuration.mcpserversigv4.tools[0] #=> String
2381
+ # resp.associations[0].capabilities #=> Hash
2382
+ # resp.associations[0].capabilities["CapabilityType"].enabled #=> Boolean
2346
2383
  #
2347
2384
  # @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/ListAssociations AWS API Documentation
2348
2385
  #
@@ -2398,7 +2435,7 @@ module Aws::DevOpsAgent
2398
2435
  # created_before: Time.now,
2399
2436
  # priority: ["CRITICAL"], # accepts CRITICAL, HIGH, MEDIUM, LOW, MINIMAL
2400
2437
  # status: ["PENDING_TRIAGE"], # accepts PENDING_TRIAGE, LINKED, PENDING_START, IN_PROGRESS, PENDING_CUSTOMER_APPROVAL, COMPLETED, FAILED, TIMED_OUT, CANCELED, SKIPPED
2401
- # task_type: ["INVESTIGATION"], # accepts INVESTIGATION, EVALUATION
2438
+ # task_type: ["INVESTIGATION"], # accepts INVESTIGATION, EVALUATION, RELEASE_READINESS_REVIEW, RELEASE_TESTING
2402
2439
  # primary_task_id: "ResourceId",
2403
2440
  # },
2404
2441
  # limit: 1,
@@ -2420,7 +2457,7 @@ module Aws::DevOpsAgent
2420
2457
  # resp.tasks[0].reference.reference_id #=> String
2421
2458
  # resp.tasks[0].reference.reference_url #=> String
2422
2459
  # resp.tasks[0].reference.association_id #=> String
2423
- # resp.tasks[0].task_type #=> String, one of "INVESTIGATION", "EVALUATION"
2460
+ # resp.tasks[0].task_type #=> String, one of "INVESTIGATION", "EVALUATION", "RELEASE_READINESS_REVIEW", "RELEASE_TESTING"
2424
2461
  # resp.tasks[0].priority #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "MINIMAL"
2425
2462
  # resp.tasks[0].status #=> String, one of "PENDING_TRIAGE", "LINKED", "PENDING_START", "IN_PROGRESS", "PENDING_CUSTOMER_APPROVAL", "COMPLETED", "FAILED", "TIMED_OUT", "CANCELED", "SKIPPED"
2426
2463
  # resp.tasks[0].created_at #=> Time
@@ -2834,7 +2871,7 @@ module Aws::DevOpsAgent
2834
2871
  # resp = client.list_services({
2835
2872
  # max_results: 1,
2836
2873
  # next_token: "NextToken",
2837
- # filter_service_type: "github", # accepts github, slack, azure, azuredevops, dynatrace, servicenow, pagerduty, gitlab, eventChannel, mcpservernewrelic, mcpservergrafana, mcpserverdatadog, mcpserver, mcpserversplunk, azureidentity, mcpserversigv4
2874
+ # filter_service_type: "github", # accepts github, slack, azure, azuredevops, dynatrace, servicenow, pagerduty, gitlab, eventChannel, mcpservernewrelic, mcpservergrafana, mcpserverdatadog, mcpserver, mcpserversplunk, azureidentity, mcpserversigv4, remoteagent, remoteagentsigv4
2838
2875
  # })
2839
2876
  #
2840
2877
  # @example Response structure
@@ -2842,7 +2879,7 @@ module Aws::DevOpsAgent
2842
2879
  # resp.next_token #=> String
2843
2880
  # resp.services #=> Array
2844
2881
  # resp.services[0].service_id #=> String
2845
- # resp.services[0].service_type #=> String, one of "github", "slack", "azure", "azuredevops", "dynatrace", "servicenow", "pagerduty", "gitlab", "eventChannel", "mcpservernewrelic", "mcpservergrafana", "mcpserverdatadog", "mcpserver", "mcpserversplunk", "azureidentity", "mcpserversigv4"
2882
+ # resp.services[0].service_type #=> String, one of "github", "slack", "azure", "azuredevops", "dynatrace", "servicenow", "pagerduty", "gitlab", "eventChannel", "mcpservernewrelic", "mcpservergrafana", "mcpserverdatadog", "mcpserver", "mcpserversplunk", "azureidentity", "mcpserversigv4", "remoteagent", "remoteagentsigv4"
2846
2883
  # resp.services[0].name #=> String
2847
2884
  # resp.services[0].accessible_resources #=> Array
2848
2885
  # resp.services[0].additional_service_details.github.owner #=> String
@@ -2891,6 +2928,17 @@ module Aws::DevOpsAgent
2891
2928
  # resp.services[0].additional_service_details.mcpserversigv4.mcp_role_arn #=> String
2892
2929
  # resp.services[0].additional_service_details.mcpserversigv4.custom_headers #=> Hash
2893
2930
  # resp.services[0].additional_service_details.mcpserversigv4.custom_headers["CustomHeaderName"] #=> String
2931
+ # resp.services[0].additional_service_details.remoteagent.name #=> String
2932
+ # resp.services[0].additional_service_details.remoteagent.endpoint #=> String
2933
+ # resp.services[0].additional_service_details.remoteagent.description #=> String
2934
+ # resp.services[0].additional_service_details.remoteagent.authorization_method #=> String, one of "oauth-client-credentials", "api-key", "bearer-token"
2935
+ # resp.services[0].additional_service_details.remoteagent.api_key_header #=> String
2936
+ # resp.services[0].additional_service_details.remoteagentsigv4.name #=> String
2937
+ # resp.services[0].additional_service_details.remoteagentsigv4.endpoint #=> String
2938
+ # resp.services[0].additional_service_details.remoteagentsigv4.description #=> String
2939
+ # resp.services[0].additional_service_details.remoteagentsigv4.region #=> String
2940
+ # resp.services[0].additional_service_details.remoteagentsigv4.service #=> String
2941
+ # resp.services[0].additional_service_details.remoteagentsigv4.role_arn #=> String
2894
2942
  # resp.services[0].kms_key_arn #=> String
2895
2943
  # resp.services[0].private_connection_name #=> String
2896
2944
  #
@@ -2935,8 +2983,8 @@ module Aws::DevOpsAgent
2935
2983
  # Lists Triggers in the specified agent space
2936
2984
  #
2937
2985
  # @option params [required, String] :agent_space_id
2938
- # Unique identifier for an agent space (allows alphanumeric characters
2939
- # and hyphens; 1-64 characters)
2986
+ # The unique identifier for the agent space whose Triggers should be
2987
+ # listed
2940
2988
  #
2941
2989
  # @option params [String] :status
2942
2990
  # Filter results to Triggers in this status
@@ -3061,7 +3109,7 @@ module Aws::DevOpsAgent
3061
3109
  # @example Request syntax with placeholder values
3062
3110
  #
3063
3111
  # resp = client.register_service({
3064
- # service: "dynatrace", # required, accepts dynatrace, servicenow, pagerduty, gitlab, eventChannel, mcpservernewrelic, mcpservergrafana, mcpserverdatadog, mcpserver, mcpserversplunk, azureidentity, mcpserversigv4
3112
+ # service: "dynatrace", # required, accepts dynatrace, servicenow, pagerduty, gitlab, eventChannel, mcpservernewrelic, mcpservergrafana, mcpserverdatadog, mcpserver, mcpserversplunk, azureidentity, mcpserversigv4, remoteagent, remoteagentsigv4
3065
3113
  # service_details: { # required
3066
3114
  # dynatrace: {
3067
3115
  # account_urn: "DynatraceServiceDetailsAccountUrnString", # required
@@ -3123,7 +3171,7 @@ module Aws::DevOpsAgent
3123
3171
  # return_to_endpoint: "MCPServerOAuth3LOConfigReturnToEndpointString", # required
3124
3172
  # authorization_url: "MCPServerOAuth3LOConfigAuthorizationUrlString", # required
3125
3173
  # exchange_url: "MCPServerOAuth3LOConfigExchangeUrlString", # required
3126
- # client_secret: "ClientSecret",
3174
+ # client_secret: "MCPServerOAuth3LOConfigClientSecretString",
3127
3175
  # support_code_challenge: false,
3128
3176
  # scopes: ["OAuthScope"],
3129
3177
  # },
@@ -3172,7 +3220,7 @@ module Aws::DevOpsAgent
3172
3220
  # return_to_endpoint: "MCPServerOAuth3LOConfigReturnToEndpointString", # required
3173
3221
  # authorization_url: "MCPServerOAuth3LOConfigAuthorizationUrlString", # required
3174
3222
  # exchange_url: "MCPServerOAuth3LOConfigExchangeUrlString", # required
3175
- # client_secret: "ClientSecret",
3223
+ # client_secret: "MCPServerOAuth3LOConfigClientSecretString",
3176
3224
  # support_code_challenge: false,
3177
3225
  # scopes: ["OAuthScope"],
3178
3226
  # },
@@ -3230,7 +3278,7 @@ module Aws::DevOpsAgent
3230
3278
  # return_to_endpoint: "MCPServerOAuth3LOConfigReturnToEndpointString", # required
3231
3279
  # authorization_url: "MCPServerOAuth3LOConfigAuthorizationUrlString", # required
3232
3280
  # exchange_url: "MCPServerOAuth3LOConfigExchangeUrlString", # required
3233
- # client_secret: "ClientSecret",
3281
+ # client_secret: "MCPServerOAuth3LOConfigClientSecretString",
3234
3282
  # support_code_challenge: false,
3235
3283
  # scopes: ["OAuthScope"],
3236
3284
  # },
@@ -3282,6 +3330,43 @@ module Aws::DevOpsAgent
3282
3330
  # },
3283
3331
  # },
3284
3332
  # },
3333
+ # remoteagent: {
3334
+ # name: "RemoteAgentName", # required
3335
+ # endpoint: "RemoteAgentEndpoint", # required
3336
+ # description: "RemoteAgentServiceDetailsDescriptionString",
3337
+ # authorization_config: { # required
3338
+ # api_key: {
3339
+ # api_key_name: "RemoteAgentAPIKeyConfigApiKeyNameString", # required
3340
+ # api_key_value: "RemoteAgentAPIKeyConfigApiKeyValueString", # required
3341
+ # api_key_header: "RemoteAgentAPIKeyConfigApiKeyHeaderString", # required
3342
+ # },
3343
+ # o_auth_client_credentials: {
3344
+ # client_name: "RemoteAgentOAuthClientCredentialsConfigClientNameString",
3345
+ # client_id: "ClientId", # required
3346
+ # exchange_parameters: {
3347
+ # "String" => "ExchangeParameterValue",
3348
+ # },
3349
+ # client_secret: "ClientSecret", # required
3350
+ # exchange_url: "RemoteAgentOAuthClientCredentialsConfigExchangeUrlString", # required
3351
+ # scopes: ["OAuthScope"],
3352
+ # },
3353
+ # bearer_token: {
3354
+ # token_name: "RemoteAgentBearerTokenConfigTokenNameString", # required
3355
+ # token_value: "RemoteAgentBearerTokenConfigTokenValueString", # required
3356
+ # authorization_header: "RemoteAgentBearerTokenConfigAuthorizationHeaderString",
3357
+ # },
3358
+ # },
3359
+ # },
3360
+ # remoteagentsigv4: {
3361
+ # name: "RemoteAgentName", # required
3362
+ # endpoint: "RemoteAgentEndpoint", # required
3363
+ # description: "RemoteAgentSigV4ServiceDetailsDescriptionString",
3364
+ # authorization_config: { # required
3365
+ # region: "SigV4Region", # required
3366
+ # service: "RemoteAgentSigV4AuthorizationConfigServiceString", # required
3367
+ # role_arn: "RoleArn",
3368
+ # },
3369
+ # },
3285
3370
  # },
3286
3371
  # kms_key_arn: "KmsKeyArn",
3287
3372
  # private_connection_name: "PrivateConnectionName",
@@ -3711,8 +3796,8 @@ module Aws::DevOpsAgent
3711
3796
  # additional encoding or escaping.
3712
3797
  #
3713
3798
  # @option params [Types::AssetContent] :content
3714
- # Optional content to set or replace. A single file adds or replaces one
3715
- # file; a zip replaces all files.
3799
+ # Optional content update. A single file adds or replaces one file; a
3800
+ # zip replaces all files; a sourceUrl re-syncs from the original source.
3716
3801
  #
3717
3802
  # @option params [String] :client_token
3718
3803
  # A unique, case-sensitive identifier used for idempotent asset update
@@ -3744,6 +3829,9 @@ module Aws::DevOpsAgent
3744
3829
  # zip: {
3745
3830
  # zip_file: "data", # required
3746
3831
  # },
3832
+ # source_url: {
3833
+ # url: "AssetContentUrl", # required
3834
+ # },
3747
3835
  # },
3748
3836
  # client_token: "UpdateAssetRequestClientTokenString",
3749
3837
  # })
@@ -3846,6 +3934,9 @@ module Aws::DevOpsAgent
3846
3934
  # The configuration that directs how AgentSpace interacts with the given
3847
3935
  # service. The entire configuration is replaced on update.
3848
3936
  #
3937
+ # @option params [Hash<String,Types::CapabilityConfiguration>] :capabilities
3938
+ # Enabled capabilities for this association.
3939
+ #
3849
3940
  # @return [Types::UpdateAssociationOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
3850
3941
  #
3851
3942
  # * {Types::UpdateAssociationOutput#association #association} => Types::Association
@@ -3874,6 +3965,7 @@ module Aws::DevOpsAgent
3874
3965
  # owner: "String", # required
3875
3966
  # owner_type: "organization", # required, accepts organization, user
3876
3967
  # instance_identifier: "String",
3968
+ # runtime_role_arn: "RoleArn",
3877
3969
  # },
3878
3970
  # slack: {
3879
3971
  # workspace_id: "SlackConfigurationWorkspaceIdString", # required
@@ -3910,6 +4002,7 @@ module Aws::DevOpsAgent
3910
4002
  # project_id: "String", # required
3911
4003
  # project_path: "String", # required
3912
4004
  # instance_identifier: "String",
4005
+ # runtime_role_arn: "RoleArn",
3913
4006
  # },
3914
4007
  # mcpserversplunk: {
3915
4008
  # },
@@ -3935,6 +4028,15 @@ module Aws::DevOpsAgent
3935
4028
  # mcpserversigv4: {
3936
4029
  # tools: ["MCPToolsListMemberString"], # required
3937
4030
  # },
4031
+ # remoteagent: {
4032
+ # },
4033
+ # remoteagentsigv4: {
4034
+ # },
4035
+ # },
4036
+ # capabilities: {
4037
+ # "RELEASE_READINESS_REVIEW" => {
4038
+ # enabled: false,
4039
+ # },
3938
4040
  # },
3939
4041
  # })
3940
4042
  #
@@ -3958,6 +4060,7 @@ module Aws::DevOpsAgent
3958
4060
  # resp.association.configuration.github.owner #=> String
3959
4061
  # resp.association.configuration.github.owner_type #=> String, one of "organization", "user"
3960
4062
  # resp.association.configuration.github.instance_identifier #=> String
4063
+ # resp.association.configuration.github.runtime_role_arn #=> String
3961
4064
  # resp.association.configuration.slack.workspace_id #=> String
3962
4065
  # resp.association.configuration.slack.workspace_name #=> String
3963
4066
  # resp.association.configuration.slack.transmission_target.ops_oncall_target.channel_name #=> String
@@ -3977,6 +4080,7 @@ module Aws::DevOpsAgent
3977
4080
  # resp.association.configuration.gitlab.project_id #=> String
3978
4081
  # resp.association.configuration.gitlab.project_path #=> String
3979
4082
  # resp.association.configuration.gitlab.instance_identifier #=> String
4083
+ # resp.association.configuration.gitlab.runtime_role_arn #=> String
3980
4084
  # resp.association.configuration.azure.subscription_id #=> String
3981
4085
  # resp.association.configuration.azuredevops.organization_name #=> String
3982
4086
  # resp.association.configuration.azuredevops.project_id #=> String
@@ -3990,6 +4094,8 @@ module Aws::DevOpsAgent
3990
4094
  # resp.association.configuration.pagerduty.customer_email #=> String
3991
4095
  # resp.association.configuration.mcpserversigv4.tools #=> Array
3992
4096
  # resp.association.configuration.mcpserversigv4.tools[0] #=> String
4097
+ # resp.association.capabilities #=> Hash
4098
+ # resp.association.capabilities["CapabilityType"].enabled #=> Boolean
3993
4099
  # resp.webhook.webhook_url #=> String
3994
4100
  # resp.webhook.webhook_id #=> String
3995
4101
  # resp.webhook.webhook_type #=> String, one of "hmac", "apikey", "gitlab", "pagerduty"
@@ -4047,7 +4153,7 @@ module Aws::DevOpsAgent
4047
4153
  # resp.task.reference.reference_id #=> String
4048
4154
  # resp.task.reference.reference_url #=> String
4049
4155
  # resp.task.reference.association_id #=> String
4050
- # resp.task.task_type #=> String, one of "INVESTIGATION", "EVALUATION"
4156
+ # resp.task.task_type #=> String, one of "INVESTIGATION", "EVALUATION", "RELEASE_READINESS_REVIEW", "RELEASE_TESTING"
4051
4157
  # resp.task.priority #=> String, one of "CRITICAL", "HIGH", "MEDIUM", "LOW", "MINIMAL"
4052
4158
  # resp.task.status #=> String, one of "PENDING_TRIAGE", "LINKED", "PENDING_START", "IN_PROGRESS", "PENDING_CUSTOMER_APPROVAL", "COMPLETED", "FAILED", "TIMED_OUT", "CANCELED", "SKIPPED"
4053
4159
  # resp.task.created_at #=> Time
@@ -4282,12 +4388,10 @@ module Aws::DevOpsAgent
4282
4388
  # Updates the status of an existing Trigger
4283
4389
  #
4284
4390
  # @option params [required, String] :agent_space_id
4285
- # Unique identifier for an agent space (allows alphanumeric characters
4286
- # and hyphens; 1-64 characters)
4391
+ # The unique identifier for the agent space containing the Trigger
4287
4392
  #
4288
4393
  # @option params [required, String] :trigger_id
4289
- # Generic resource identifier (allows alphanumeric characters, hyphens,
4290
- # and underscores; 1-128 characters)
4394
+ # The unique identifier of the Trigger to update
4291
4395
  #
4292
4396
  # @option params [String] :status
4293
4397
  # The new status for the Trigger
@@ -4371,7 +4475,7 @@ module Aws::DevOpsAgent
4371
4475
  tracer: tracer
4372
4476
  )
4373
4477
  context[:gem_name] = 'aws-sdk-devopsagent'
4374
- context[:gem_version] = '1.9.0'
4478
+ context[:gem_version] = '1.10.0'
4375
4479
  Seahorse::Client::Request.new(handlers, context)
4376
4480
  end
4377
4481