aws-sdk-devopsagent 1.2.0 → 1.3.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 +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-devopsagent/client.rb +15 -46
- data/lib/aws-sdk-devopsagent/client_api.rb +3 -33
- data/lib/aws-sdk-devopsagent/types.rb +8 -41
- data/lib/aws-sdk-devopsagent.rb +2 -2
- data/sig/client.rbs +3 -15
- data/sig/types.rbs +0 -12
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 92f38f045ab5550e6f792065913ae7edf5e97b78fb4b9d3ef75fb6d1b20f51ac
|
|
4
|
+
data.tar.gz: 27aa1352eb5bba2e30da306dba79230153a13d77edebd085094615c888645e46
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: b450f51795d41e5bef2bcd2ffa24a9c5f99c3bf89ef34ea53eaa2a742fc6ecc2c4ac161fcd0c5062836aa115ac47b43ff631b6ff1c103b6520d254d13c155273
|
|
7
|
+
data.tar.gz: 86a8c0f76c5c77c041897584d018a27770492455f02f415e26088b42d4d21b34f266e2e04c92295cef5a33762c4ed1fa8a66ac656b8ccb1594c672cc8b0ebe91
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,11 @@
|
|
|
1
1
|
Unreleased Changes
|
|
2
2
|
------------------
|
|
3
3
|
|
|
4
|
+
1.3.0 (2026-04-16)
|
|
5
|
+
------------------
|
|
6
|
+
|
|
7
|
+
* Feature - Deprecate the userId from the Chat operations. This update also removes support of AllowVendedLogDeliveryForResource API from AWS SDKs.
|
|
8
|
+
|
|
4
9
|
1.2.0 (2026-04-10)
|
|
5
10
|
------------------
|
|
6
11
|
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
1.
|
|
1
|
+
1.3.0
|
|
@@ -487,42 +487,6 @@ module Aws::DevOpsAgent
|
|
|
487
487
|
|
|
488
488
|
# @!group API Operations
|
|
489
489
|
|
|
490
|
-
# Authorize Ingestion Hub subscription operation.
|
|
491
|
-
#
|
|
492
|
-
# @option params [required, String] :resource_arn_being_authorized
|
|
493
|
-
# The ARN of the resource being authorized for vended log delivery.
|
|
494
|
-
#
|
|
495
|
-
# @option params [required, String] :delivery_source_arn
|
|
496
|
-
# The ARN of the delivery source for vended log delivery.
|
|
497
|
-
#
|
|
498
|
-
# @option params [String] :log_type
|
|
499
|
-
# The type of log to be delivered.
|
|
500
|
-
#
|
|
501
|
-
# @return [Types::AllowVendedLogDeliveryForResourceOutput] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
502
|
-
#
|
|
503
|
-
# * {Types::AllowVendedLogDeliveryForResourceOutput#message #message} => String
|
|
504
|
-
#
|
|
505
|
-
# @example Request syntax with placeholder values
|
|
506
|
-
#
|
|
507
|
-
# resp = client.allow_vended_log_delivery_for_resource({
|
|
508
|
-
# resource_arn_being_authorized: "String", # required
|
|
509
|
-
# delivery_source_arn: "AllowVendedLogDeliveryForResourceInputDeliverySourceArnString", # required
|
|
510
|
-
# log_type: "String",
|
|
511
|
-
# })
|
|
512
|
-
#
|
|
513
|
-
# @example Response structure
|
|
514
|
-
#
|
|
515
|
-
# resp.message #=> String
|
|
516
|
-
#
|
|
517
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/AllowVendedLogDeliveryForResource AWS API Documentation
|
|
518
|
-
#
|
|
519
|
-
# @overload allow_vended_log_delivery_for_resource(params = {})
|
|
520
|
-
# @param [Hash] params ({})
|
|
521
|
-
def allow_vended_log_delivery_for_resource(params = {}, options = {})
|
|
522
|
-
req = build_request(:allow_vended_log_delivery_for_resource, params)
|
|
523
|
-
req.send_request(options)
|
|
524
|
-
end
|
|
525
|
-
|
|
526
490
|
# Adds a specific service association to an AgentSpace. It overwrites
|
|
527
491
|
# the existing association of the same service. Returns 201 Created on
|
|
528
492
|
# success.
|
|
@@ -844,8 +808,10 @@ module Aws::DevOpsAgent
|
|
|
844
808
|
# Unique identifier for an agent space (allows alphanumeric characters
|
|
845
809
|
# and hyphens; 1-64 characters)
|
|
846
810
|
#
|
|
847
|
-
# @option params [
|
|
848
|
-
# The user identifier for the chat
|
|
811
|
+
# @option params [String] :user_id
|
|
812
|
+
# The user identifier for the chat. This field is deprecated and will be
|
|
813
|
+
# ignored — the service resolves user identity from the authenticated
|
|
814
|
+
# session.
|
|
849
815
|
#
|
|
850
816
|
# @option params [String] :user_type
|
|
851
817
|
# The authentication type of the user
|
|
@@ -859,7 +825,7 @@ module Aws::DevOpsAgent
|
|
|
859
825
|
#
|
|
860
826
|
# resp = client.create_chat({
|
|
861
827
|
# agent_space_id: "AgentSpaceId", # required
|
|
862
|
-
# user_id: "ResourceId",
|
|
828
|
+
# user_id: "ResourceId",
|
|
863
829
|
# user_type: "IAM", # accepts IAM, IDC, IDP
|
|
864
830
|
# })
|
|
865
831
|
#
|
|
@@ -1802,8 +1768,10 @@ module Aws::DevOpsAgent
|
|
|
1802
1768
|
# Unique identifier for an agent space (allows alphanumeric characters
|
|
1803
1769
|
# and hyphens; 1-64 characters)
|
|
1804
1770
|
#
|
|
1805
|
-
# @option params [
|
|
1806
|
-
# The user identifier to list chats for
|
|
1771
|
+
# @option params [String] :user_id
|
|
1772
|
+
# The user identifier to list chats for. This field is deprecated and
|
|
1773
|
+
# will be ignored — the service resolves user identity from the
|
|
1774
|
+
# authenticated session.
|
|
1807
1775
|
#
|
|
1808
1776
|
# @option params [Integer] :max_results
|
|
1809
1777
|
# Maximum number of results to return
|
|
@@ -1820,7 +1788,7 @@ module Aws::DevOpsAgent
|
|
|
1820
1788
|
#
|
|
1821
1789
|
# resp = client.list_chats({
|
|
1822
1790
|
# agent_space_id: "AgentSpaceId", # required
|
|
1823
|
-
# user_id: "ResourceId",
|
|
1791
|
+
# user_id: "ResourceId",
|
|
1824
1792
|
# max_results: 1,
|
|
1825
1793
|
# next_token: "String",
|
|
1826
1794
|
# })
|
|
@@ -2588,8 +2556,9 @@ module Aws::DevOpsAgent
|
|
|
2588
2556
|
# @option params [Types::SendMessageContext] :context
|
|
2589
2557
|
# Optional context for the message
|
|
2590
2558
|
#
|
|
2591
|
-
# @option params [
|
|
2592
|
-
#
|
|
2559
|
+
# @option params [String] :user_id
|
|
2560
|
+
# User identifier. This field is deprecated and will be ignored — the
|
|
2561
|
+
# service resolves user identity from the authenticated session.
|
|
2593
2562
|
#
|
|
2594
2563
|
# @return [Types::SendMessageResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
|
2595
2564
|
#
|
|
@@ -2767,7 +2736,7 @@ module Aws::DevOpsAgent
|
|
|
2767
2736
|
# last_message: "String",
|
|
2768
2737
|
# user_action_response: "String",
|
|
2769
2738
|
# },
|
|
2770
|
-
# user_id: "ResourceId",
|
|
2739
|
+
# user_id: "ResourceId",
|
|
2771
2740
|
# })
|
|
2772
2741
|
#
|
|
2773
2742
|
# @example Response structure
|
|
@@ -3428,7 +3397,7 @@ module Aws::DevOpsAgent
|
|
|
3428
3397
|
tracer: tracer
|
|
3429
3398
|
)
|
|
3430
3399
|
context[:gem_name] = 'aws-sdk-devopsagent'
|
|
3431
|
-
context[:gem_version] = '1.
|
|
3400
|
+
context[:gem_version] = '1.3.0'
|
|
3432
3401
|
Seahorse::Client::Request.new(handlers, context)
|
|
3433
3402
|
end
|
|
3434
3403
|
|
|
@@ -23,9 +23,6 @@ module Aws::DevOpsAgent
|
|
|
23
23
|
AgentSpaceId = Shapes::StringShape.new(name: 'AgentSpaceId')
|
|
24
24
|
AgentSpaceList = Shapes::ListShape.new(name: 'AgentSpaceList')
|
|
25
25
|
AgentSpaceName = Shapes::StringShape.new(name: 'AgentSpaceName')
|
|
26
|
-
AllowVendedLogDeliveryForResourceInput = Shapes::StructureShape.new(name: 'AllowVendedLogDeliveryForResourceInput')
|
|
27
|
-
AllowVendedLogDeliveryForResourceInputDeliverySourceArnString = Shapes::StringShape.new(name: 'AllowVendedLogDeliveryForResourceInputDeliverySourceArnString')
|
|
28
|
-
AllowVendedLogDeliveryForResourceOutput = Shapes::StructureShape.new(name: 'AllowVendedLogDeliveryForResourceOutput')
|
|
29
26
|
ApiKeyValue = Shapes::StringShape.new(name: 'ApiKeyValue')
|
|
30
27
|
AssistantMessage = Shapes::ListShape.new(name: 'AssistantMessage')
|
|
31
28
|
AssistantMessageBlock = Shapes::UnionShape.new(name: 'AssistantMessageBlock')
|
|
@@ -445,14 +442,6 @@ module Aws::DevOpsAgent
|
|
|
445
442
|
|
|
446
443
|
AgentSpaceList.member = Shapes::ShapeRef.new(shape: AgentSpace)
|
|
447
444
|
|
|
448
|
-
AllowVendedLogDeliveryForResourceInput.add_member(:resource_arn_being_authorized, Shapes::ShapeRef.new(shape: String, required: true, location_name: "resourceArnBeingAuthorized"))
|
|
449
|
-
AllowVendedLogDeliveryForResourceInput.add_member(:delivery_source_arn, Shapes::ShapeRef.new(shape: AllowVendedLogDeliveryForResourceInputDeliverySourceArnString, required: true, location_name: "deliverySourceArn"))
|
|
450
|
-
AllowVendedLogDeliveryForResourceInput.add_member(:log_type, Shapes::ShapeRef.new(shape: String, location_name: "logType"))
|
|
451
|
-
AllowVendedLogDeliveryForResourceInput.struct_class = Types::AllowVendedLogDeliveryForResourceInput
|
|
452
|
-
|
|
453
|
-
AllowVendedLogDeliveryForResourceOutput.add_member(:message, Shapes::ShapeRef.new(shape: String, location_name: "message"))
|
|
454
|
-
AllowVendedLogDeliveryForResourceOutput.struct_class = Types::AllowVendedLogDeliveryForResourceOutput
|
|
455
|
-
|
|
456
445
|
AssistantMessage.member = Shapes::ShapeRef.new(shape: AssistantMessageBlock)
|
|
457
446
|
|
|
458
447
|
AssistantMessageBlock.add_member(:text, Shapes::ShapeRef.new(shape: String, location_name: "text"))
|
|
@@ -530,7 +519,7 @@ module Aws::DevOpsAgent
|
|
|
530
519
|
CreateBacklogTaskResponse.struct_class = Types::CreateBacklogTaskResponse
|
|
531
520
|
|
|
532
521
|
CreateChatRequest.add_member(:agent_space_id, Shapes::ShapeRef.new(shape: AgentSpaceId, required: true, location: "uri", location_name: "agentSpaceId"))
|
|
533
|
-
CreateChatRequest.add_member(:user_id, Shapes::ShapeRef.new(shape: ResourceId,
|
|
522
|
+
CreateChatRequest.add_member(:user_id, Shapes::ShapeRef.new(shape: ResourceId, deprecated: true, location: "querystring", location_name: "userId", metadata: {"deprecatedMessage" => "userId is managed by the service and should not be provided by the caller", "deprecatedSince" => "2026-04-15"}))
|
|
534
523
|
CreateChatRequest.add_member(:user_type, Shapes::ShapeRef.new(shape: UserType, location: "querystring", location_name: "userType"))
|
|
535
524
|
CreateChatRequest.struct_class = Types::CreateChatRequest
|
|
536
525
|
|
|
@@ -853,7 +842,7 @@ module Aws::DevOpsAgent
|
|
|
853
842
|
ListBacklogTasksResponse.struct_class = Types::ListBacklogTasksResponse
|
|
854
843
|
|
|
855
844
|
ListChatsRequest.add_member(:agent_space_id, Shapes::ShapeRef.new(shape: AgentSpaceId, required: true, location: "uri", location_name: "agentSpaceId"))
|
|
856
|
-
ListChatsRequest.add_member(:user_id, Shapes::ShapeRef.new(shape: ResourceId,
|
|
845
|
+
ListChatsRequest.add_member(:user_id, Shapes::ShapeRef.new(shape: ResourceId, deprecated: true, location: "querystring", location_name: "userId", metadata: {"deprecatedMessage" => "userId is managed by the service and should not be provided by the caller", "deprecatedSince" => "2026-04-15"}))
|
|
857
846
|
ListChatsRequest.add_member(:max_results, Shapes::ShapeRef.new(shape: ListChatsRequestMaxResultsInteger, location: "querystring", location_name: "maxResults"))
|
|
858
847
|
ListChatsRequest.add_member(:next_token, Shapes::ShapeRef.new(shape: String, location: "querystring", location_name: "nextToken"))
|
|
859
848
|
ListChatsRequest.struct_class = Types::ListChatsRequest
|
|
@@ -1273,7 +1262,7 @@ module Aws::DevOpsAgent
|
|
|
1273
1262
|
SendMessageRequest.add_member(:execution_id, Shapes::ShapeRef.new(shape: ResourceId, required: true, location_name: "executionId"))
|
|
1274
1263
|
SendMessageRequest.add_member(:content, Shapes::ShapeRef.new(shape: MessageContent, required: true, location_name: "content"))
|
|
1275
1264
|
SendMessageRequest.add_member(:context, Shapes::ShapeRef.new(shape: SendMessageContext, location_name: "context"))
|
|
1276
|
-
SendMessageRequest.add_member(:user_id, Shapes::ShapeRef.new(shape: ResourceId,
|
|
1265
|
+
SendMessageRequest.add_member(:user_id, Shapes::ShapeRef.new(shape: ResourceId, deprecated: true, location_name: "userId", metadata: {"deprecatedMessage" => "userId is managed by the service and should not be provided by the caller", "deprecatedSince" => "2026-04-15"}))
|
|
1277
1266
|
SendMessageRequest.struct_class = Types::SendMessageRequest
|
|
1278
1267
|
|
|
1279
1268
|
SendMessageResponse.add_member(:events, Shapes::ShapeRef.new(shape: SendMessageEvents, required: true, eventstream: true, location_name: "events"))
|
|
@@ -1612,25 +1601,6 @@ module Aws::DevOpsAgent
|
|
|
1612
1601
|
"uid" => "devops-agent-2026-01-01",
|
|
1613
1602
|
}
|
|
1614
1603
|
|
|
1615
|
-
api.add_operation(:allow_vended_log_delivery_for_resource, Seahorse::Model::Operation.new.tap do |o|
|
|
1616
|
-
o.name = "AllowVendedLogDeliveryForResource"
|
|
1617
|
-
o.http_method = "POST"
|
|
1618
|
-
o.http_request_uri = "/allow-vended-log-delivery-for-resource"
|
|
1619
|
-
o.endpoint_pattern = {
|
|
1620
|
-
"hostPrefix" => "cp.",
|
|
1621
|
-
}
|
|
1622
|
-
o.input = Shapes::ShapeRef.new(shape: AllowVendedLogDeliveryForResourceInput)
|
|
1623
|
-
o.output = Shapes::ShapeRef.new(shape: AllowVendedLogDeliveryForResourceOutput)
|
|
1624
|
-
o.errors << Shapes::ShapeRef.new(shape: ContentSizeExceededException)
|
|
1625
|
-
o.errors << Shapes::ShapeRef.new(shape: ServiceQuotaExceededException)
|
|
1626
|
-
o.errors << Shapes::ShapeRef.new(shape: ConflictException)
|
|
1627
|
-
o.errors << Shapes::ShapeRef.new(shape: InternalServerException)
|
|
1628
|
-
o.errors << Shapes::ShapeRef.new(shape: AccessDeniedException)
|
|
1629
|
-
o.errors << Shapes::ShapeRef.new(shape: ThrottlingException)
|
|
1630
|
-
o.errors << Shapes::ShapeRef.new(shape: ResourceNotFoundException)
|
|
1631
|
-
o.errors << Shapes::ShapeRef.new(shape: InvalidParameterException)
|
|
1632
|
-
end)
|
|
1633
|
-
|
|
1634
1604
|
api.add_operation(:associate_service, Seahorse::Model::Operation.new.tap do |o|
|
|
1635
1605
|
o.name = "AssociateService"
|
|
1636
1606
|
o.http_method = "POST"
|
|
@@ -205,44 +205,6 @@ module Aws::DevOpsAgent
|
|
|
205
205
|
include Aws::Structure
|
|
206
206
|
end
|
|
207
207
|
|
|
208
|
-
# Input for authorizing vended log delivery for a resource.
|
|
209
|
-
#
|
|
210
|
-
# @!attribute [rw] resource_arn_being_authorized
|
|
211
|
-
# The ARN of the resource being authorized for vended log delivery.
|
|
212
|
-
# @return [String]
|
|
213
|
-
#
|
|
214
|
-
# @!attribute [rw] delivery_source_arn
|
|
215
|
-
# The ARN of the delivery source for vended log delivery.
|
|
216
|
-
# @return [String]
|
|
217
|
-
#
|
|
218
|
-
# @!attribute [rw] log_type
|
|
219
|
-
# The type of log to be delivered.
|
|
220
|
-
# @return [String]
|
|
221
|
-
#
|
|
222
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/AllowVendedLogDeliveryForResourceInput AWS API Documentation
|
|
223
|
-
#
|
|
224
|
-
class AllowVendedLogDeliveryForResourceInput < Struct.new(
|
|
225
|
-
:resource_arn_being_authorized,
|
|
226
|
-
:delivery_source_arn,
|
|
227
|
-
:log_type)
|
|
228
|
-
SENSITIVE = []
|
|
229
|
-
include Aws::Structure
|
|
230
|
-
end
|
|
231
|
-
|
|
232
|
-
# Output for the vended log delivery authorization operation.
|
|
233
|
-
#
|
|
234
|
-
# @!attribute [rw] message
|
|
235
|
-
# A message describing the result of the authorization operation.
|
|
236
|
-
# @return [String]
|
|
237
|
-
#
|
|
238
|
-
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/AllowVendedLogDeliveryForResourceOutput AWS API Documentation
|
|
239
|
-
#
|
|
240
|
-
class AllowVendedLogDeliveryForResourceOutput < Struct.new(
|
|
241
|
-
:message)
|
|
242
|
-
SENSITIVE = []
|
|
243
|
-
include Aws::Structure
|
|
244
|
-
end
|
|
245
|
-
|
|
246
208
|
# A block of content in an assistant message.
|
|
247
209
|
#
|
|
248
210
|
# @note AssistantMessageBlock is a union - when returned from an API call exactly one value will be set and the returned type will be a subclass of AssistantMessageBlock corresponding to the set member.
|
|
@@ -593,7 +555,9 @@ module Aws::DevOpsAgent
|
|
|
593
555
|
# @return [String]
|
|
594
556
|
#
|
|
595
557
|
# @!attribute [rw] user_id
|
|
596
|
-
# The user identifier for the chat
|
|
558
|
+
# The user identifier for the chat. This field is deprecated and will
|
|
559
|
+
# be ignored — the service resolves user identity from the
|
|
560
|
+
# authenticated session.
|
|
597
561
|
# @return [String]
|
|
598
562
|
#
|
|
599
563
|
# @!attribute [rw] user_type
|
|
@@ -2108,7 +2072,9 @@ module Aws::DevOpsAgent
|
|
|
2108
2072
|
# @return [String]
|
|
2109
2073
|
#
|
|
2110
2074
|
# @!attribute [rw] user_id
|
|
2111
|
-
# The user identifier to list chats for
|
|
2075
|
+
# The user identifier to list chats for. This field is deprecated and
|
|
2076
|
+
# will be ignored — the service resolves user identity from the
|
|
2077
|
+
# authenticated session.
|
|
2112
2078
|
# @return [String]
|
|
2113
2079
|
#
|
|
2114
2080
|
# @!attribute [rw] max_results
|
|
@@ -3898,7 +3864,8 @@ module Aws::DevOpsAgent
|
|
|
3898
3864
|
# @return [Types::SendMessageContext]
|
|
3899
3865
|
#
|
|
3900
3866
|
# @!attribute [rw] user_id
|
|
3901
|
-
#
|
|
3867
|
+
# User identifier. This field is deprecated and will be ignored — the
|
|
3868
|
+
# service resolves user identity from the authenticated session.
|
|
3902
3869
|
# @return [String]
|
|
3903
3870
|
#
|
|
3904
3871
|
# @see http://docs.aws.amazon.com/goto/WebAPI/devops-agent-2026-01-01/SendMessageRequest AWS API Documentation
|
data/lib/aws-sdk-devopsagent.rb
CHANGED
|
@@ -23,7 +23,7 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:devopsagent)
|
|
|
23
23
|
# structure.
|
|
24
24
|
#
|
|
25
25
|
# dev_ops_agent = Aws::DevOpsAgent::Client.new
|
|
26
|
-
# resp = dev_ops_agent.
|
|
26
|
+
# resp = dev_ops_agent.associate_service(params)
|
|
27
27
|
#
|
|
28
28
|
# See {Client} for more information.
|
|
29
29
|
#
|
|
@@ -55,7 +55,7 @@ module Aws::DevOpsAgent
|
|
|
55
55
|
autoload :Endpoints, 'aws-sdk-devopsagent/endpoints'
|
|
56
56
|
autoload :EventStreams, 'aws-sdk-devopsagent/event_streams'
|
|
57
57
|
|
|
58
|
-
GEM_VERSION = '1.
|
|
58
|
+
GEM_VERSION = '1.3.0'
|
|
59
59
|
|
|
60
60
|
end
|
|
61
61
|
|
data/sig/client.rbs
CHANGED
|
@@ -81,18 +81,6 @@ module Aws
|
|
|
81
81
|
| (?Hash[Symbol, untyped]) -> instance
|
|
82
82
|
|
|
83
83
|
|
|
84
|
-
interface _AllowVendedLogDeliveryForResourceResponseSuccess
|
|
85
|
-
include ::Seahorse::Client::_ResponseSuccess[Types::AllowVendedLogDeliveryForResourceOutput]
|
|
86
|
-
def message: () -> ::String
|
|
87
|
-
end
|
|
88
|
-
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#allow_vended_log_delivery_for_resource-instance_method
|
|
89
|
-
def allow_vended_log_delivery_for_resource: (
|
|
90
|
-
resource_arn_being_authorized: ::String,
|
|
91
|
-
delivery_source_arn: ::String,
|
|
92
|
-
?log_type: ::String
|
|
93
|
-
) -> _AllowVendedLogDeliveryForResourceResponseSuccess
|
|
94
|
-
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _AllowVendedLogDeliveryForResourceResponseSuccess
|
|
95
|
-
|
|
96
84
|
interface _AssociateServiceResponseSuccess
|
|
97
85
|
include ::Seahorse::Client::_ResponseSuccess[Types::AssociateServiceOutput]
|
|
98
86
|
def association: () -> Types::Association
|
|
@@ -228,7 +216,7 @@ module Aws
|
|
|
228
216
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#create_chat-instance_method
|
|
229
217
|
def create_chat: (
|
|
230
218
|
agent_space_id: ::String,
|
|
231
|
-
user_id: ::String,
|
|
219
|
+
?user_id: ::String,
|
|
232
220
|
?user_type: ("IAM" | "IDC" | "IDP")
|
|
233
221
|
) -> _CreateChatResponseSuccess
|
|
234
222
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateChatResponseSuccess
|
|
@@ -491,7 +479,7 @@ module Aws
|
|
|
491
479
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/DevOpsAgent/Client.html#list_chats-instance_method
|
|
492
480
|
def list_chats: (
|
|
493
481
|
agent_space_id: ::String,
|
|
494
|
-
user_id: ::String,
|
|
482
|
+
?user_id: ::String,
|
|
495
483
|
?max_results: ::Integer,
|
|
496
484
|
?next_token: ::String
|
|
497
485
|
) -> _ListChatsResponseSuccess
|
|
@@ -836,7 +824,7 @@ module Aws
|
|
|
836
824
|
last_message: ::String?,
|
|
837
825
|
user_action_response: ::String?
|
|
838
826
|
},
|
|
839
|
-
user_id: ::String
|
|
827
|
+
?user_id: ::String
|
|
840
828
|
) ?{ (*untyped) -> void } -> _SendMessageResponseSuccess
|
|
841
829
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) ?{ (*untyped) -> void } -> _SendMessageResponseSuccess
|
|
842
830
|
|
data/sig/types.rbs
CHANGED
|
@@ -86,18 +86,6 @@ module Aws::DevOpsAgent
|
|
|
86
86
|
SENSITIVE: [:description]
|
|
87
87
|
end
|
|
88
88
|
|
|
89
|
-
class AllowVendedLogDeliveryForResourceInput
|
|
90
|
-
attr_accessor resource_arn_being_authorized: ::String
|
|
91
|
-
attr_accessor delivery_source_arn: ::String
|
|
92
|
-
attr_accessor log_type: ::String
|
|
93
|
-
SENSITIVE: []
|
|
94
|
-
end
|
|
95
|
-
|
|
96
|
-
class AllowVendedLogDeliveryForResourceOutput
|
|
97
|
-
attr_accessor message: ::String
|
|
98
|
-
SENSITIVE: []
|
|
99
|
-
end
|
|
100
|
-
|
|
101
89
|
class AssistantMessageBlock
|
|
102
90
|
attr_accessor text: ::String
|
|
103
91
|
attr_accessor tool_use: untyped
|