aws-sdk-devopsagent 1.0.0 → 1.1.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: 435c718bacbb6bba769dbba2781f22c069725ea00d9851b78b1c0fb3161c6d81
4
- data.tar.gz: b3159a44393727f776616e0f306aee4b05ca9d363e038853accdf1fb91982bf2
3
+ metadata.gz: f3b7e17e2f37f024080f3c58e1c36c813e30b9eca79e372170ee8bc9832b9685
4
+ data.tar.gz: 53c793e998c280d88d4eb512c2eab656eabbf96cd44b4abdcc57dd7eb494fe83
5
5
  SHA512:
6
- metadata.gz: b40826f97ab89f2fb64c3e957044ebf10c55bdc0bea78cb6d8d5a0933d58125569f10849ae74dba697046aa0dc20a54a87d076ff1ffc13aefcfbeabb82683a49
7
- data.tar.gz: e329fbb8f83db27a885c21b31ce1b18e6954f4f5cd28a827e849832ffa3ee362690ac6c330e93acaf9fc110cfd4296484fdf0a404d83ddaf314af6f5a61d0ecf
6
+ metadata.gz: c9fe0c0abc3eab33c7d7164cf3ba1077226eafadd13039bb5ded6e6f09f3d593e01033fbb457ab06ddb78cf8b32240b78a14978b25051433a3465fc693c6c005
7
+ data.tar.gz: 0f3e147b4d7aae02b8d6a9e218e565fd99d5d50fc4e8e079bbe372f6bc516603f92594fe9d2592864ea2705e7f25a7281463cc2dbc573dfe45d17f3621619061
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.1.0 (2026-03-31)
5
+ ------------------
6
+
7
+ * Feature - AWS DevOps Agent service General Availability release.
8
+
4
9
  1.0.0 (2026-03-30)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.0.0
1
+ 1.1.0
@@ -487,8 +487,7 @@ module Aws::DevOpsAgent
487
487
 
488
488
  # @!group API Operations
489
489
 
490
- # Authorize Ingestion Hub subscription operation. Looks to see if the
491
- # derived accountId from FAS has an AgentSpace.
490
+ # Authorize Ingestion Hub subscription operation.
492
491
  #
493
492
  # @option params [required, String] :resource_arn_being_authorized
494
493
  # The ARN of the resource being authorized for vended log delivery.
@@ -617,20 +616,6 @@ module Aws::DevOpsAgent
617
616
  # services: ["String"], # required
618
617
  # customer_email: "EmailAddress", # required
619
618
  # },
620
- # msteams: {
621
- # team_id: "Guid", # required
622
- # team_name: "String", # required
623
- # transmission_target: { # required
624
- # ops_oncall_target: {
625
- # channel_name: "String", # required
626
- # channel_id: "Guid", # required
627
- # },
628
- # ops_sre_target: {
629
- # channel_name: "String", # required
630
- # channel_id: "Guid", # required
631
- # },
632
- # },
633
- # },
634
619
  # },
635
620
  # })
636
621
  #
@@ -682,12 +667,6 @@ module Aws::DevOpsAgent
682
667
  # resp.association.configuration.pagerduty.services #=> Array
683
668
  # resp.association.configuration.pagerduty.services[0] #=> String
684
669
  # resp.association.configuration.pagerduty.customer_email #=> String
685
- # resp.association.configuration.msteams.team_id #=> String
686
- # resp.association.configuration.msteams.team_name #=> String
687
- # resp.association.configuration.msteams.transmission_target.ops_oncall_target.channel_name #=> String
688
- # resp.association.configuration.msteams.transmission_target.ops_oncall_target.channel_id #=> String
689
- # resp.association.configuration.msteams.transmission_target.ops_sre_target.channel_name #=> String
690
- # resp.association.configuration.msteams.transmission_target.ops_sre_target.channel_id #=> String
691
670
  # resp.webhook.webhook_url #=> String
692
671
  # resp.webhook.webhook_id #=> String
693
672
  # resp.webhook.webhook_type #=> String, one of "hmac", "apikey", "gitlab", "pagerduty"
@@ -1081,44 +1060,6 @@ module Aws::DevOpsAgent
1081
1060
  req.send_request(options)
1082
1061
  end
1083
1062
 
1084
- # Describe the support level of a CloudSmith customer account.
1085
- #
1086
- # @option params [required, String] :agent_space_id
1087
- # The unique identifier for the agent space containing the task
1088
- #
1089
- # @option params [required, String] :task_id
1090
- # The unique identifier for this task
1091
- #
1092
- # @return [Types::DescribeSupportLevelResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1093
- #
1094
- # * {Types::DescribeSupportLevelResponse#support_level #support_level} => Types::SupportLevel
1095
- # * {Types::DescribeSupportLevelResponse#mosaic_support_level #mosaic_support_level} => Types::SupportLevel
1096
- # * {Types::DescribeSupportLevelResponse#active_subscription #active_subscription} => Boolean
1097
- #
1098
- # @example Request syntax with placeholder values
1099
- #
1100
- # resp = client.describe_support_level({
1101
- # agent_space_id: "AgentSpaceId", # required
1102
- # task_id: "String", # required
1103
- # })
1104
- #
1105
- # @example Response structure
1106
- #
1107
- # resp.support_level.code #=> String
1108
- # resp.support_level.name #=> String
1109
- # resp.mosaic_support_level.code #=> String
1110
- # resp.mosaic_support_level.name #=> String
1111
- # resp.active_subscription #=> Boolean
1112
- #
1113
- # @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/DescribeSupportLevel AWS API Documentation
1114
- #
1115
- # @overload describe_support_level(params = {})
1116
- # @param [Hash] params ({})
1117
- def describe_support_level(params = {}, options = {})
1118
- req = build_request(:describe_support_level, params)
1119
- req.send_request(options)
1120
- end
1121
-
1122
1063
  # Disable the Operator App for the specified AgentSpace
1123
1064
  #
1124
1065
  # @option params [required, String] :agent_space_id
@@ -1247,59 +1188,6 @@ module Aws::DevOpsAgent
1247
1188
  req.send_request(options)
1248
1189
  end
1249
1190
 
1250
- # End a chat session for a support case in the specified agent space
1251
- #
1252
- # @option params [required, String] :agent_space_id
1253
- # The unique identifier for the agent space containing the task
1254
- #
1255
- # @option params [required, String] :task_id
1256
- # The unique identifier for the task execution to end
1257
- #
1258
- # @option params [String] :reason
1259
- # Reason for ending the chat session (optional, defaults to 'Chat Ended
1260
- # by CloudSmith')
1261
- #
1262
- # @option params [String] :requester
1263
- # Who initiated the chat end request (optional, defaults to
1264
- # 'CloudSmith')
1265
- #
1266
- # @option params [String] :client_token
1267
- # Client-provided token for idempotent operations
1268
- #
1269
- # **A suitable default value is auto-generated.** You should normally
1270
- # not need to pass this option.**
1271
- #
1272
- # @return [Types::EndChatForCaseResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1273
- #
1274
- # * {Types::EndChatForCaseResponse#is_disconnected #is_disconnected} => Boolean
1275
- # * {Types::EndChatForCaseResponse#execution_id #execution_id} => String
1276
- # * {Types::EndChatForCaseResponse#error_message #error_message} => String
1277
- #
1278
- # @example Request syntax with placeholder values
1279
- #
1280
- # resp = client.end_chat_for_case({
1281
- # agent_space_id: "AgentSpaceId", # required
1282
- # task_id: "String", # required
1283
- # reason: "String",
1284
- # requester: "String",
1285
- # client_token: "String",
1286
- # })
1287
- #
1288
- # @example Response structure
1289
- #
1290
- # resp.is_disconnected #=> Boolean
1291
- # resp.execution_id #=> String
1292
- # resp.error_message #=> String
1293
- #
1294
- # @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/EndChatForCase AWS API Documentation
1295
- #
1296
- # @overload end_chat_for_case(params = {})
1297
- # @param [Hash] params ({})
1298
- def end_chat_for_case(params = {}, options = {})
1299
- req = build_request(:end_chat_for_case, params)
1300
- req.send_request(options)
1301
- end
1302
-
1303
1191
  # Retrieves monthly account usage metrics and limits for the AWS
1304
1192
  # account.
1305
1193
  #
@@ -1308,6 +1196,7 @@ module Aws::DevOpsAgent
1308
1196
  # * {Types::GetAccountUsageOutput#monthly_account_investigation_hours #monthly_account_investigation_hours} => Types::UsageMetric
1309
1197
  # * {Types::GetAccountUsageOutput#monthly_account_evaluation_hours #monthly_account_evaluation_hours} => Types::UsageMetric
1310
1198
  # * {Types::GetAccountUsageOutput#monthly_account_system_learning_hours #monthly_account_system_learning_hours} => Types::UsageMetric
1199
+ # * {Types::GetAccountUsageOutput#monthly_account_on_demand_hours #monthly_account_on_demand_hours} => Types::UsageMetric
1311
1200
  # * {Types::GetAccountUsageOutput#usage_period_start_time #usage_period_start_time} => Time
1312
1201
  # * {Types::GetAccountUsageOutput#usage_period_end_time #usage_period_end_time} => Time
1313
1202
  #
@@ -1319,6 +1208,8 @@ module Aws::DevOpsAgent
1319
1208
  # resp.monthly_account_evaluation_hours.usage #=> Float
1320
1209
  # resp.monthly_account_system_learning_hours.limit #=> Integer
1321
1210
  # resp.monthly_account_system_learning_hours.usage #=> Float
1211
+ # resp.monthly_account_on_demand_hours.limit #=> Integer
1212
+ # resp.monthly_account_on_demand_hours.usage #=> Float
1322
1213
  # resp.usage_period_start_time #=> Time
1323
1214
  # resp.usage_period_end_time #=> Time
1324
1215
  #
@@ -1435,12 +1326,6 @@ module Aws::DevOpsAgent
1435
1326
  # resp.association.configuration.pagerduty.services #=> Array
1436
1327
  # resp.association.configuration.pagerduty.services[0] #=> String
1437
1328
  # resp.association.configuration.pagerduty.customer_email #=> String
1438
- # resp.association.configuration.msteams.team_id #=> String
1439
- # resp.association.configuration.msteams.team_name #=> String
1440
- # resp.association.configuration.msteams.transmission_target.ops_oncall_target.channel_name #=> String
1441
- # resp.association.configuration.msteams.transmission_target.ops_oncall_target.channel_id #=> String
1442
- # resp.association.configuration.msteams.transmission_target.ops_sre_target.channel_name #=> String
1443
- # resp.association.configuration.msteams.transmission_target.ops_sre_target.channel_id #=> String
1444
1329
  #
1445
1330
  # @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/GetAssociation AWS API Documentation
1446
1331
  #
@@ -1615,7 +1500,7 @@ module Aws::DevOpsAgent
1615
1500
  # @example Response structure
1616
1501
  #
1617
1502
  # resp.service.service_id #=> String
1618
- # resp.service.service_type #=> String, one of "github", "slack", "azure", "azuredevops", "msteams", "dynatrace", "servicenow", "pagerduty", "gitlab", "eventChannel", "mcpservernewrelic", "mcpservergrafana", "mcpserverdatadog", "mcpserver", "mcpserversplunk", "azureidentity", "mcpserversigv4"
1503
+ # resp.service.service_type #=> String, one of "github", "slack", "azure", "azuredevops", "dynatrace", "servicenow", "pagerduty", "gitlab", "eventChannel", "mcpservernewrelic", "mcpservergrafana", "mcpserverdatadog", "mcpserver", "mcpserversplunk", "azureidentity"
1619
1504
  # resp.service.name #=> String
1620
1505
  # resp.service.accessible_resources #=> Array
1621
1506
  # resp.service.additional_service_details.github.owner #=> String
@@ -1655,12 +1540,6 @@ module Aws::DevOpsAgent
1655
1540
  # resp.service.additional_service_details.mcpservergrafana.authorization_method #=> String, one of "oauth-client-credentials", "oauth-3lo", "api-key", "bearer-token"
1656
1541
  # resp.service.additional_service_details.pagerduty.scopes #=> Array
1657
1542
  # resp.service.additional_service_details.pagerduty.scopes[0] #=> String
1658
- # resp.service.additional_service_details.mcpserversigv4.name #=> String
1659
- # resp.service.additional_service_details.mcpserversigv4.endpoint #=> String
1660
- # resp.service.additional_service_details.mcpserversigv4.description #=> String
1661
- # resp.service.additional_service_details.mcpserversigv4.region #=> String
1662
- # resp.service.additional_service_details.mcpserversigv4.service #=> String
1663
- # resp.service.additional_service_details.mcpserversigv4.role_arn #=> String
1664
1543
  # resp.service.kms_key_arn #=> String
1665
1544
  # resp.service.private_connection_name #=> String
1666
1545
  # resp.tags #=> Hash
@@ -1675,47 +1554,6 @@ module Aws::DevOpsAgent
1675
1554
  req.send_request(options)
1676
1555
  end
1677
1556
 
1678
- # Initiate a chat for support case in the specified agent space
1679
- #
1680
- # @option params [required, String] :agent_space_id
1681
- # The unique identifier for the agent space containing the task
1682
- #
1683
- # @option params [required, String] :task_id
1684
- # The unique identifier for this task
1685
- #
1686
- # @option params [String] :client_token
1687
- # Client-provided token for idempotent operations
1688
- #
1689
- # **A suitable default value is auto-generated.** You should normally
1690
- # not need to pass this option.**
1691
- #
1692
- # @return [Types::InitiateChatForCaseResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
1693
- #
1694
- # * {Types::InitiateChatForCaseResponse#chat_participant_connection #chat_participant_connection} => Types::ChatParticipantConnection
1695
- #
1696
- # @example Request syntax with placeholder values
1697
- #
1698
- # resp = client.initiate_chat_for_case({
1699
- # agent_space_id: "AgentSpaceId", # required
1700
- # task_id: "String", # required
1701
- # client_token: "String",
1702
- # })
1703
- #
1704
- # @example Response structure
1705
- #
1706
- # resp.chat_participant_connection.initial_contact_id #=> String
1707
- # resp.chat_participant_connection.participant_id #=> String
1708
- # resp.chat_participant_connection.participant_token #=> String
1709
- #
1710
- # @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/InitiateChatForCase AWS API Documentation
1711
- #
1712
- # @overload initiate_chat_for_case(params = {})
1713
- # @param [Hash] params ({})
1714
- def initiate_chat_for_case(params = {}, options = {})
1715
- req = build_request(:initiate_chat_for_case, params)
1716
- req.send_request(options)
1717
- end
1718
-
1719
1557
  # Lists all AgentSpaces with optional pagination.
1720
1558
  #
1721
1559
  # @option params [Integer] :max_results
@@ -1840,12 +1678,6 @@ module Aws::DevOpsAgent
1840
1678
  # resp.associations[0].configuration.pagerduty.services #=> Array
1841
1679
  # resp.associations[0].configuration.pagerduty.services[0] #=> String
1842
1680
  # resp.associations[0].configuration.pagerduty.customer_email #=> String
1843
- # resp.associations[0].configuration.msteams.team_id #=> String
1844
- # resp.associations[0].configuration.msteams.team_name #=> String
1845
- # resp.associations[0].configuration.msteams.transmission_target.ops_oncall_target.channel_name #=> String
1846
- # resp.associations[0].configuration.msteams.transmission_target.ops_oncall_target.channel_id #=> String
1847
- # resp.associations[0].configuration.msteams.transmission_target.ops_sre_target.channel_name #=> String
1848
- # resp.associations[0].configuration.msteams.transmission_target.ops_sre_target.channel_id #=> String
1849
1681
  #
1850
1682
  # @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/ListAssociations AWS API Documentation
1851
1683
  #
@@ -2339,7 +2171,7 @@ module Aws::DevOpsAgent
2339
2171
  # resp = client.list_services({
2340
2172
  # max_results: 1,
2341
2173
  # next_token: "NextToken",
2342
- # filter_service_type: "github", # accepts github, slack, azure, azuredevops, msteams, dynatrace, servicenow, pagerduty, gitlab, eventChannel, mcpservernewrelic, mcpservergrafana, mcpserverdatadog, mcpserver, mcpserversplunk, azureidentity, mcpserversigv4
2174
+ # filter_service_type: "github", # accepts github, slack, azure, azuredevops, dynatrace, servicenow, pagerduty, gitlab, eventChannel, mcpservernewrelic, mcpservergrafana, mcpserverdatadog, mcpserver, mcpserversplunk, azureidentity
2343
2175
  # })
2344
2176
  #
2345
2177
  # @example Response structure
@@ -2347,7 +2179,7 @@ module Aws::DevOpsAgent
2347
2179
  # resp.next_token #=> String
2348
2180
  # resp.services #=> Array
2349
2181
  # resp.services[0].service_id #=> String
2350
- # resp.services[0].service_type #=> String, one of "github", "slack", "azure", "azuredevops", "msteams", "dynatrace", "servicenow", "pagerduty", "gitlab", "eventChannel", "mcpservernewrelic", "mcpservergrafana", "mcpserverdatadog", "mcpserver", "mcpserversplunk", "azureidentity", "mcpserversigv4"
2182
+ # resp.services[0].service_type #=> String, one of "github", "slack", "azure", "azuredevops", "dynatrace", "servicenow", "pagerduty", "gitlab", "eventChannel", "mcpservernewrelic", "mcpservergrafana", "mcpserverdatadog", "mcpserver", "mcpserversplunk", "azureidentity"
2351
2183
  # resp.services[0].name #=> String
2352
2184
  # resp.services[0].accessible_resources #=> Array
2353
2185
  # resp.services[0].additional_service_details.github.owner #=> String
@@ -2387,12 +2219,6 @@ module Aws::DevOpsAgent
2387
2219
  # resp.services[0].additional_service_details.mcpservergrafana.authorization_method #=> String, one of "oauth-client-credentials", "oauth-3lo", "api-key", "bearer-token"
2388
2220
  # resp.services[0].additional_service_details.pagerduty.scopes #=> Array
2389
2221
  # resp.services[0].additional_service_details.pagerduty.scopes[0] #=> String
2390
- # resp.services[0].additional_service_details.mcpserversigv4.name #=> String
2391
- # resp.services[0].additional_service_details.mcpserversigv4.endpoint #=> String
2392
- # resp.services[0].additional_service_details.mcpserversigv4.description #=> String
2393
- # resp.services[0].additional_service_details.mcpserversigv4.region #=> String
2394
- # resp.services[0].additional_service_details.mcpserversigv4.service #=> String
2395
- # resp.services[0].additional_service_details.mcpserversigv4.role_arn #=> String
2396
2222
  # resp.services[0].kms_key_arn #=> String
2397
2223
  # resp.services[0].private_connection_name #=> String
2398
2224
  #
@@ -2501,7 +2327,7 @@ module Aws::DevOpsAgent
2501
2327
  # @example Request syntax with placeholder values
2502
2328
  #
2503
2329
  # resp = client.register_service({
2504
- # service: "dynatrace", # required, accepts dynatrace, servicenow, pagerduty, gitlab, eventChannel, mcpservernewrelic, mcpservergrafana, mcpserverdatadog, mcpserver, mcpserversplunk, azureidentity, mcpserversigv4
2330
+ # service: "dynatrace", # required, accepts dynatrace, servicenow, pagerduty, gitlab, eventChannel, mcpservernewrelic, mcpservergrafana, mcpserverdatadog, mcpserver, mcpserversplunk, azureidentity
2505
2331
  # service_details: { # required
2506
2332
  # dynatrace: {
2507
2333
  # account_urn: "DynatraceServiceDetailsAccountUrnString", # required
@@ -2708,16 +2534,6 @@ module Aws::DevOpsAgent
2708
2534
  # web_identity_role_arn: "RoleArn", # required
2709
2535
  # web_identity_token_audiences: ["String"], # required
2710
2536
  # },
2711
- # mcpserversigv4: {
2712
- # name: "MCPServerSigV4ServiceDetailsNameString", # required
2713
- # endpoint: "MCPServerSigV4ServiceDetailsEndpointString", # required
2714
- # description: "MCPServerSigV4ServiceDetailsDescriptionString",
2715
- # authorization_config: { # required
2716
- # region: "AwsRegion", # required
2717
- # service: "MCPServerSigV4AuthorizationConfigServiceString", # required
2718
- # role_arn: "RoleArn", # required
2719
- # },
2720
- # },
2721
2537
  # },
2722
2538
  # kms_key_arn: "KmsKeyArn",
2723
2539
  # private_connection_name: "PrivateConnectionName",
@@ -3215,20 +3031,6 @@ module Aws::DevOpsAgent
3215
3031
  # services: ["String"], # required
3216
3032
  # customer_email: "EmailAddress", # required
3217
3033
  # },
3218
- # msteams: {
3219
- # team_id: "Guid", # required
3220
- # team_name: "String", # required
3221
- # transmission_target: { # required
3222
- # ops_oncall_target: {
3223
- # channel_name: "String", # required
3224
- # channel_id: "Guid", # required
3225
- # },
3226
- # ops_sre_target: {
3227
- # channel_name: "String", # required
3228
- # channel_id: "Guid", # required
3229
- # },
3230
- # },
3231
- # },
3232
3034
  # },
3233
3035
  # })
3234
3036
  #
@@ -3280,12 +3082,6 @@ module Aws::DevOpsAgent
3280
3082
  # resp.association.configuration.pagerduty.services #=> Array
3281
3083
  # resp.association.configuration.pagerduty.services[0] #=> String
3282
3084
  # resp.association.configuration.pagerduty.customer_email #=> String
3283
- # resp.association.configuration.msteams.team_id #=> String
3284
- # resp.association.configuration.msteams.team_name #=> String
3285
- # resp.association.configuration.msteams.transmission_target.ops_oncall_target.channel_name #=> String
3286
- # resp.association.configuration.msteams.transmission_target.ops_oncall_target.channel_id #=> String
3287
- # resp.association.configuration.msteams.transmission_target.ops_sre_target.channel_name #=> String
3288
- # resp.association.configuration.msteams.transmission_target.ops_sre_target.channel_id #=> String
3289
3085
  # resp.webhook.webhook_url #=> String
3290
3086
  # resp.webhook.webhook_id #=> String
3291
3087
  # resp.webhook.webhook_type #=> String, one of "hmac", "apikey", "gitlab", "pagerduty"
@@ -3610,7 +3406,7 @@ module Aws::DevOpsAgent
3610
3406
  tracer: tracer
3611
3407
  )
3612
3408
  context[:gem_name] = 'aws-sdk-devopsagent'
3613
- context[:gem_version] = '1.0.0'
3409
+ context[:gem_version] = '1.1.0'
3614
3410
  Seahorse::Client::Request.new(handlers, context)
3615
3411
  end
3616
3412