aws-sdk-qbusiness 1.27.0 → 1.28.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-qbusiness/async_client.rb +1 -1
- data/lib/aws-sdk-qbusiness/client.rb +12 -4
- data/lib/aws-sdk-qbusiness/client_api.rb +11 -0
- data/lib/aws-sdk-qbusiness/types.rb +70 -0
- data/lib/aws-sdk-qbusiness.rb +1 -1
- data/sig/client.rbs +4 -0
- data/sig/types.rbs +12 -0
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 62b456dec4529787ac3584b4751473ae9d456f7765f886ad6ea27f29cc8aed44
|
4
|
+
data.tar.gz: 257980094a3be5846bfc719f7db7f6be152c01d2dbb56e7efc2ca3154257e390
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: eae31689ddfd86de331d9a2f74c5eb975148906e0fdd08404c0385d8f6e179d6bd9acccd3f132c95c1b961b0f517219be7a817cb1c353e694f708e8dd08b46ae
|
7
|
+
data.tar.gz: b3c811c5836b08e04d2d90b95670fcab2b483e38f97f1b1d09ec3baf3789f593a6d2bdc33f95a10046e74b0985838cf8c5dc8ad0a139b61e1eb59c70646b729e
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.28.0 (2025-02-04)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Adds functionality to enable/disable a new Q Business Chat orchestration feature. If enabled, Q Business can orchestrate over datasources and plugins without the need for customers to select specific chat modes.
|
8
|
+
|
4
9
|
1.27.0 (2025-01-30)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.28.0
|
@@ -2530,8 +2530,8 @@ module Aws::QBusiness
|
|
2530
2530
|
req.send_request(options)
|
2531
2531
|
end
|
2532
2532
|
|
2533
|
-
# Gets information about
|
2534
|
-
#
|
2533
|
+
# Gets information about chat controls configured for an existing Amazon
|
2534
|
+
# Q Business application.
|
2535
2535
|
#
|
2536
2536
|
# @option params [required, String] :application_id
|
2537
2537
|
# The identifier of the application for which the chat controls are
|
@@ -2549,6 +2549,7 @@ module Aws::QBusiness
|
|
2549
2549
|
# @return [Types::GetChatControlsConfigurationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
2550
2550
|
#
|
2551
2551
|
# * {Types::GetChatControlsConfigurationResponse#response_scope #response_scope} => String
|
2552
|
+
# * {Types::GetChatControlsConfigurationResponse#orchestration_configuration #orchestration_configuration} => Types::AppliedOrchestrationConfiguration
|
2552
2553
|
# * {Types::GetChatControlsConfigurationResponse#blocked_phrases #blocked_phrases} => Types::BlockedPhrasesConfiguration
|
2553
2554
|
# * {Types::GetChatControlsConfigurationResponse#topic_configurations #topic_configurations} => Array<Types::TopicConfiguration>
|
2554
2555
|
# * {Types::GetChatControlsConfigurationResponse#creator_mode_configuration #creator_mode_configuration} => Types::AppliedCreatorModeConfiguration
|
@@ -2567,6 +2568,7 @@ module Aws::QBusiness
|
|
2567
2568
|
# @example Response structure
|
2568
2569
|
#
|
2569
2570
|
# resp.response_scope #=> String, one of "ENTERPRISE_CONTENT_ONLY", "EXTENDED_KNOWLEDGE_ENABLED"
|
2571
|
+
# resp.orchestration_configuration.control #=> String, one of "ENABLED", "DISABLED"
|
2570
2572
|
# resp.blocked_phrases.blocked_phrases #=> Array
|
2571
2573
|
# resp.blocked_phrases.blocked_phrases[0] #=> String
|
2572
2574
|
# resp.blocked_phrases.system_message_override #=> String
|
@@ -4761,7 +4763,7 @@ module Aws::QBusiness
|
|
4761
4763
|
req.send_request(options)
|
4762
4764
|
end
|
4763
4765
|
|
4764
|
-
# Updates
|
4766
|
+
# Updates a set of chat controls configured for an existing Amazon Q
|
4765
4767
|
# Business application.
|
4766
4768
|
#
|
4767
4769
|
# @option params [required, String] :application_id
|
@@ -4782,6 +4784,9 @@ module Aws::QBusiness
|
|
4782
4784
|
# uses the large language models (LLM) knowledge to respons to end user
|
4783
4785
|
# questions in chat.
|
4784
4786
|
#
|
4787
|
+
# @option params [Types::OrchestrationConfiguration] :orchestration_configuration
|
4788
|
+
# The chat response orchestration settings for your application.
|
4789
|
+
#
|
4785
4790
|
# @option params [Types::BlockedPhrasesConfigurationUpdate] :blocked_phrases_configuration_update
|
4786
4791
|
# The phrases blocked from chat by your chat control configuration.
|
4787
4792
|
#
|
@@ -4802,6 +4807,9 @@ module Aws::QBusiness
|
|
4802
4807
|
# application_id: "ApplicationId", # required
|
4803
4808
|
# client_token: "ClientToken",
|
4804
4809
|
# response_scope: "ENTERPRISE_CONTENT_ONLY", # accepts ENTERPRISE_CONTENT_ONLY, EXTENDED_KNOWLEDGE_ENABLED
|
4810
|
+
# orchestration_configuration: {
|
4811
|
+
# control: "ENABLED", # required, accepts ENABLED, DISABLED
|
4812
|
+
# },
|
4805
4813
|
# blocked_phrases_configuration_update: {
|
4806
4814
|
# blocked_phrases_to_create_or_update: ["BlockedPhrase"],
|
4807
4815
|
# blocked_phrases_to_delete: ["BlockedPhrase"],
|
@@ -5602,7 +5610,7 @@ module Aws::QBusiness
|
|
5602
5610
|
tracer: tracer
|
5603
5611
|
)
|
5604
5612
|
context[:gem_name] = 'aws-sdk-qbusiness'
|
5605
|
-
context[:gem_version] = '1.
|
5613
|
+
context[:gem_version] = '1.28.0'
|
5606
5614
|
Seahorse::Client::Request.new(handlers, context)
|
5607
5615
|
end
|
5608
5616
|
|
@@ -49,6 +49,7 @@ module Aws::QBusiness
|
|
49
49
|
Applications = Shapes::ListShape.new(name: 'Applications')
|
50
50
|
AppliedAttachmentsConfiguration = Shapes::StructureShape.new(name: 'AppliedAttachmentsConfiguration')
|
51
51
|
AppliedCreatorModeConfiguration = Shapes::StructureShape.new(name: 'AppliedCreatorModeConfiguration')
|
52
|
+
AppliedOrchestrationConfiguration = Shapes::StructureShape.new(name: 'AppliedOrchestrationConfiguration')
|
52
53
|
AssociatePermissionRequest = Shapes::StructureShape.new(name: 'AssociatePermissionRequest')
|
53
54
|
AssociatePermissionResponse = Shapes::StructureShape.new(name: 'AssociatePermissionResponse')
|
54
55
|
Attachment = Shapes::StructureShape.new(name: 'Attachment')
|
@@ -376,6 +377,8 @@ module Aws::QBusiness
|
|
376
377
|
NumberAttributeBoostingType = Shapes::StringShape.new(name: 'NumberAttributeBoostingType')
|
377
378
|
OAuth2ClientCredentialConfiguration = Shapes::StructureShape.new(name: 'OAuth2ClientCredentialConfiguration')
|
378
379
|
OpenIDConnectProviderConfiguration = Shapes::StructureShape.new(name: 'OpenIDConnectProviderConfiguration')
|
380
|
+
OrchestrationConfiguration = Shapes::StructureShape.new(name: 'OrchestrationConfiguration')
|
381
|
+
OrchestrationControl = Shapes::StringShape.new(name: 'OrchestrationControl')
|
379
382
|
Origin = Shapes::StringShape.new(name: 'Origin')
|
380
383
|
Payload = Shapes::StringShape.new(name: 'Payload')
|
381
384
|
PersonalizationConfiguration = Shapes::StructureShape.new(name: 'PersonalizationConfiguration')
|
@@ -642,6 +645,9 @@ module Aws::QBusiness
|
|
642
645
|
AppliedCreatorModeConfiguration.add_member(:creator_mode_control, Shapes::ShapeRef.new(shape: CreatorModeControl, required: true, location_name: "creatorModeControl"))
|
643
646
|
AppliedCreatorModeConfiguration.struct_class = Types::AppliedCreatorModeConfiguration
|
644
647
|
|
648
|
+
AppliedOrchestrationConfiguration.add_member(:control, Shapes::ShapeRef.new(shape: OrchestrationControl, required: true, location_name: "control"))
|
649
|
+
AppliedOrchestrationConfiguration.struct_class = Types::AppliedOrchestrationConfiguration
|
650
|
+
|
645
651
|
AssociatePermissionRequest.add_member(:application_id, Shapes::ShapeRef.new(shape: ApplicationId, required: true, location: "uri", location_name: "applicationId"))
|
646
652
|
AssociatePermissionRequest.add_member(:statement_id, Shapes::ShapeRef.new(shape: StatementId, required: true, location_name: "statementId"))
|
647
653
|
AssociatePermissionRequest.add_member(:actions, Shapes::ShapeRef.new(shape: QIamActions, required: true, location_name: "actions"))
|
@@ -1294,6 +1300,7 @@ module Aws::QBusiness
|
|
1294
1300
|
GetChatControlsConfigurationRequest.struct_class = Types::GetChatControlsConfigurationRequest
|
1295
1301
|
|
1296
1302
|
GetChatControlsConfigurationResponse.add_member(:response_scope, Shapes::ShapeRef.new(shape: ResponseScope, location_name: "responseScope"))
|
1303
|
+
GetChatControlsConfigurationResponse.add_member(:orchestration_configuration, Shapes::ShapeRef.new(shape: AppliedOrchestrationConfiguration, location_name: "orchestrationConfiguration"))
|
1297
1304
|
GetChatControlsConfigurationResponse.add_member(:blocked_phrases, Shapes::ShapeRef.new(shape: BlockedPhrasesConfiguration, location_name: "blockedPhrases"))
|
1298
1305
|
GetChatControlsConfigurationResponse.add_member(:topic_configurations, Shapes::ShapeRef.new(shape: TopicConfigurations, location_name: "topicConfigurations"))
|
1299
1306
|
GetChatControlsConfigurationResponse.add_member(:creator_mode_configuration, Shapes::ShapeRef.new(shape: AppliedCreatorModeConfiguration, location_name: "creatorModeConfiguration"))
|
@@ -1757,6 +1764,9 @@ module Aws::QBusiness
|
|
1757
1764
|
OpenIDConnectProviderConfiguration.add_member(:secrets_role, Shapes::ShapeRef.new(shape: RoleArn, required: true, location_name: "secretsRole"))
|
1758
1765
|
OpenIDConnectProviderConfiguration.struct_class = Types::OpenIDConnectProviderConfiguration
|
1759
1766
|
|
1767
|
+
OrchestrationConfiguration.add_member(:control, Shapes::ShapeRef.new(shape: OrchestrationControl, required: true, location_name: "control"))
|
1768
|
+
OrchestrationConfiguration.struct_class = Types::OrchestrationConfiguration
|
1769
|
+
|
1760
1770
|
PersonalizationConfiguration.add_member(:personalization_control_mode, Shapes::ShapeRef.new(shape: PersonalizationControlMode, required: true, location_name: "personalizationControlMode"))
|
1761
1771
|
PersonalizationConfiguration.struct_class = Types::PersonalizationConfiguration
|
1762
1772
|
|
@@ -2054,6 +2064,7 @@ module Aws::QBusiness
|
|
2054
2064
|
UpdateChatControlsConfigurationRequest.add_member(:application_id, Shapes::ShapeRef.new(shape: ApplicationId, required: true, location: "uri", location_name: "applicationId"))
|
2055
2065
|
UpdateChatControlsConfigurationRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
2056
2066
|
UpdateChatControlsConfigurationRequest.add_member(:response_scope, Shapes::ShapeRef.new(shape: ResponseScope, location_name: "responseScope"))
|
2067
|
+
UpdateChatControlsConfigurationRequest.add_member(:orchestration_configuration, Shapes::ShapeRef.new(shape: OrchestrationConfiguration, location_name: "orchestrationConfiguration"))
|
2057
2068
|
UpdateChatControlsConfigurationRequest.add_member(:blocked_phrases_configuration_update, Shapes::ShapeRef.new(shape: BlockedPhrasesConfigurationUpdate, location_name: "blockedPhrasesConfigurationUpdate"))
|
2058
2069
|
UpdateChatControlsConfigurationRequest.add_member(:topic_configurations_to_create_or_update, Shapes::ShapeRef.new(shape: TopicConfigurations, location_name: "topicConfigurationsToCreateOrUpdate"))
|
2059
2070
|
UpdateChatControlsConfigurationRequest.add_member(:topic_configurations_to_delete, Shapes::ShapeRef.new(shape: TopicConfigurations, location_name: "topicConfigurationsToDelete"))
|
@@ -511,6 +511,30 @@ module Aws::QBusiness
|
|
511
511
|
include Aws::Structure
|
512
512
|
end
|
513
513
|
|
514
|
+
# The chat orchestration specific admin controls configured for an
|
515
|
+
# Amazon Q Business application. Determines whether Amazon Q Business
|
516
|
+
# automatically routes chat requests across configured plugins and data
|
517
|
+
# sources in your Amazon Q Business application.
|
518
|
+
#
|
519
|
+
# For more information, see [Chat orchestration settings][1].
|
520
|
+
#
|
521
|
+
#
|
522
|
+
#
|
523
|
+
# [1]: https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/guardrails-global-controls.html#guardrails-global-orchestration
|
524
|
+
#
|
525
|
+
# @!attribute [rw] control
|
526
|
+
# Information about whether chat orchestration is enabled or disabled
|
527
|
+
# for an Amazon Q Business application.
|
528
|
+
# @return [String]
|
529
|
+
#
|
530
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/qbusiness-2023-11-27/AppliedOrchestrationConfiguration AWS API Documentation
|
531
|
+
#
|
532
|
+
class AppliedOrchestrationConfiguration < Struct.new(
|
533
|
+
:control)
|
534
|
+
SENSITIVE = []
|
535
|
+
include Aws::Structure
|
536
|
+
end
|
537
|
+
|
514
538
|
# @!attribute [rw] application_id
|
515
539
|
# The unique identifier of the Amazon Q Business application.
|
516
540
|
# @return [String]
|
@@ -3764,6 +3788,20 @@ module Aws::QBusiness
|
|
3764
3788
|
# knowledge to respons to end user questions in chat.
|
3765
3789
|
# @return [String]
|
3766
3790
|
#
|
3791
|
+
# @!attribute [rw] orchestration_configuration
|
3792
|
+
# The chat response orchestration settings for your application.
|
3793
|
+
#
|
3794
|
+
# <note markdown="1"> Chat orchestration is optimized to work for English language
|
3795
|
+
# content. For more details on language support in Amazon Q Business,
|
3796
|
+
# see [Supported languages][1].
|
3797
|
+
#
|
3798
|
+
# </note>
|
3799
|
+
#
|
3800
|
+
#
|
3801
|
+
#
|
3802
|
+
# [1]: https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/supported-languages.html
|
3803
|
+
# @return [Types::AppliedOrchestrationConfiguration]
|
3804
|
+
#
|
3767
3805
|
# @!attribute [rw] blocked_phrases
|
3768
3806
|
# The phrases blocked from chat by your chat control configuration.
|
3769
3807
|
# @return [Types::BlockedPhrasesConfiguration]
|
@@ -3788,6 +3826,7 @@ module Aws::QBusiness
|
|
3788
3826
|
#
|
3789
3827
|
class GetChatControlsConfigurationResponse < Struct.new(
|
3790
3828
|
:response_scope,
|
3829
|
+
:orchestration_configuration,
|
3791
3830
|
:blocked_phrases,
|
3792
3831
|
:topic_configurations,
|
3793
3832
|
:creator_mode_configuration,
|
@@ -6122,6 +6161,32 @@ module Aws::QBusiness
|
|
6122
6161
|
include Aws::Structure
|
6123
6162
|
end
|
6124
6163
|
|
6164
|
+
# Configuration information required to enable chat orchestration for
|
6165
|
+
# your Amazon Q Business application.
|
6166
|
+
#
|
6167
|
+
# <note markdown="1"> Chat orchestration is optimized to work for English language content.
|
6168
|
+
# For more details on language support in Amazon Q Business, see
|
6169
|
+
# [Supported languages][1].
|
6170
|
+
#
|
6171
|
+
# </note>
|
6172
|
+
#
|
6173
|
+
#
|
6174
|
+
#
|
6175
|
+
# [1]: https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/supported-languages.html
|
6176
|
+
#
|
6177
|
+
# @!attribute [rw] control
|
6178
|
+
# Status information about whether chat orchestration is activated or
|
6179
|
+
# deactivated for your Amazon Q Business application.
|
6180
|
+
# @return [String]
|
6181
|
+
#
|
6182
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/qbusiness-2023-11-27/OrchestrationConfiguration AWS API Documentation
|
6183
|
+
#
|
6184
|
+
class OrchestrationConfiguration < Struct.new(
|
6185
|
+
:control)
|
6186
|
+
SENSITIVE = []
|
6187
|
+
include Aws::Structure
|
6188
|
+
end
|
6189
|
+
|
6125
6190
|
# Configuration information about chat response personalization. For
|
6126
6191
|
# more information, see [Personalizing chat responses][1].
|
6127
6192
|
#
|
@@ -7486,6 +7551,10 @@ module Aws::QBusiness
|
|
7486
7551
|
# end user questions in chat.
|
7487
7552
|
# @return [String]
|
7488
7553
|
#
|
7554
|
+
# @!attribute [rw] orchestration_configuration
|
7555
|
+
# The chat response orchestration settings for your application.
|
7556
|
+
# @return [Types::OrchestrationConfiguration]
|
7557
|
+
#
|
7489
7558
|
# @!attribute [rw] blocked_phrases_configuration_update
|
7490
7559
|
# The phrases blocked from chat by your chat control configuration.
|
7491
7560
|
# @return [Types::BlockedPhrasesConfigurationUpdate]
|
@@ -7508,6 +7577,7 @@ module Aws::QBusiness
|
|
7508
7577
|
:application_id,
|
7509
7578
|
:client_token,
|
7510
7579
|
:response_scope,
|
7580
|
+
:orchestration_configuration,
|
7511
7581
|
:blocked_phrases_configuration_update,
|
7512
7582
|
:topic_configurations_to_create_or_update,
|
7513
7583
|
:topic_configurations_to_delete,
|
data/lib/aws-sdk-qbusiness.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -967,6 +967,7 @@ module Aws
|
|
967
967
|
interface _GetChatControlsConfigurationResponseSuccess
|
968
968
|
include ::Seahorse::Client::_ResponseSuccess[Types::GetChatControlsConfigurationResponse]
|
969
969
|
def response_scope: () -> ("ENTERPRISE_CONTENT_ONLY" | "EXTENDED_KNOWLEDGE_ENABLED")
|
970
|
+
def orchestration_configuration: () -> Types::AppliedOrchestrationConfiguration
|
970
971
|
def blocked_phrases: () -> Types::BlockedPhrasesConfiguration
|
971
972
|
def topic_configurations: () -> ::Array[Types::TopicConfiguration]
|
972
973
|
def creator_mode_configuration: () -> Types::AppliedCreatorModeConfiguration
|
@@ -1633,6 +1634,9 @@ module Aws
|
|
1633
1634
|
application_id: ::String,
|
1634
1635
|
?client_token: ::String,
|
1635
1636
|
?response_scope: ("ENTERPRISE_CONTENT_ONLY" | "EXTENDED_KNOWLEDGE_ENABLED"),
|
1637
|
+
?orchestration_configuration: {
|
1638
|
+
control: ("ENABLED" | "DISABLED")
|
1639
|
+
},
|
1636
1640
|
?blocked_phrases_configuration_update: {
|
1637
1641
|
blocked_phrases_to_create_or_update: Array[::String]?,
|
1638
1642
|
blocked_phrases_to_delete: Array[::String]?,
|
data/sig/types.rbs
CHANGED
@@ -138,6 +138,11 @@ module Aws::QBusiness
|
|
138
138
|
SENSITIVE: []
|
139
139
|
end
|
140
140
|
|
141
|
+
class AppliedOrchestrationConfiguration
|
142
|
+
attr_accessor control: ("ENABLED" | "DISABLED")
|
143
|
+
SENSITIVE: []
|
144
|
+
end
|
145
|
+
|
141
146
|
class AssociatePermissionRequest
|
142
147
|
attr_accessor application_id: ::String
|
143
148
|
attr_accessor statement_id: ::String
|
@@ -956,6 +961,7 @@ module Aws::QBusiness
|
|
956
961
|
|
957
962
|
class GetChatControlsConfigurationResponse
|
958
963
|
attr_accessor response_scope: ("ENTERPRISE_CONTENT_ONLY" | "EXTENDED_KNOWLEDGE_ENABLED")
|
964
|
+
attr_accessor orchestration_configuration: Types::AppliedOrchestrationConfiguration
|
959
965
|
attr_accessor blocked_phrases: Types::BlockedPhrasesConfiguration
|
960
966
|
attr_accessor topic_configurations: ::Array[Types::TopicConfiguration]
|
961
967
|
attr_accessor creator_mode_configuration: Types::AppliedCreatorModeConfiguration
|
@@ -1572,6 +1578,11 @@ module Aws::QBusiness
|
|
1572
1578
|
SENSITIVE: []
|
1573
1579
|
end
|
1574
1580
|
|
1581
|
+
class OrchestrationConfiguration
|
1582
|
+
attr_accessor control: ("ENABLED" | "DISABLED")
|
1583
|
+
SENSITIVE: []
|
1584
|
+
end
|
1585
|
+
|
1575
1586
|
class PersonalizationConfiguration
|
1576
1587
|
attr_accessor personalization_control_mode: ("ENABLED" | "DISABLED")
|
1577
1588
|
SENSITIVE: []
|
@@ -1960,6 +1971,7 @@ module Aws::QBusiness
|
|
1960
1971
|
attr_accessor application_id: ::String
|
1961
1972
|
attr_accessor client_token: ::String
|
1962
1973
|
attr_accessor response_scope: ("ENTERPRISE_CONTENT_ONLY" | "EXTENDED_KNOWLEDGE_ENABLED")
|
1974
|
+
attr_accessor orchestration_configuration: Types::OrchestrationConfiguration
|
1963
1975
|
attr_accessor blocked_phrases_configuration_update: Types::BlockedPhrasesConfigurationUpdate
|
1964
1976
|
attr_accessor topic_configurations_to_create_or_update: ::Array[Types::TopicConfiguration]
|
1965
1977
|
attr_accessor topic_configurations_to_delete: ::Array[Types::TopicConfiguration]
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: aws-sdk-qbusiness
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.
|
4
|
+
version: 1.28.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Amazon Web Services
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-02-04 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|