aws-sdk-qconnect 1.37.0 → 1.39.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 +10 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-qconnect/client.rb +32 -13
- data/lib/aws-sdk-qconnect/client_api.rb +1 -0
- data/lib/aws-sdk-qconnect/types.rb +15 -1
- data/lib/aws-sdk-qconnect.rb +1 -1
- data/sig/client.rbs +2 -1
- data/sig/types.rbs +1 -0
- 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: 2a204daffe3b42f3c45cd6c8b52b0dc404bb6bdc5190b8a1b03ba3cf1bd7874d
|
4
|
+
data.tar.gz: c48681aea1b679cf3588f310f6d366eebec589c9b97163e683723b860f9fa71c
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: ca2741d922cad786c8eed652f8a3292d3e8a8474236a76601b8bc3f5aeb5e59a70be29b57cbd2ac3192e5be4f821cd32b3fd6a25dc9b16cf8f243336ae1eac2e
|
7
|
+
data.tar.gz: ff3f6a7002e7ea89c9c4b916e8d8726cc7f2e912815afd9d422595fb586e40ca60e739e85c3788863b2d12020f3f96770f04eea4281370aff96060d7f4a42e2a
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,16 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.39.0 (2025-08-22)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Releasing model ID support for UpdateAIPrompt
|
8
|
+
|
9
|
+
1.38.0 (2025-08-04)
|
10
|
+
------------------
|
11
|
+
|
12
|
+
* Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
|
13
|
+
|
4
14
|
1.37.0 (2025-07-31)
|
5
15
|
------------------
|
6
16
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.39.0
|
@@ -95,8 +95,8 @@ module Aws::QConnect
|
|
95
95
|
# class name or an instance of a plugin class.
|
96
96
|
#
|
97
97
|
# @option options [required, Aws::CredentialProvider] :credentials
|
98
|
-
# Your AWS credentials used for authentication. This can be
|
99
|
-
# following classes:
|
98
|
+
# Your AWS credentials used for authentication. This can be any class that includes and implements
|
99
|
+
# `Aws::CredentialProvider`, or instance of any one of the following classes:
|
100
100
|
#
|
101
101
|
# * `Aws::Credentials` - Used for configuring static, non-refreshing
|
102
102
|
# credentials.
|
@@ -124,8 +124,7 @@ module Aws::QConnect
|
|
124
124
|
# * `Aws::CognitoIdentityCredentials` - Used for loading credentials
|
125
125
|
# from the Cognito Identity service.
|
126
126
|
#
|
127
|
-
# When `:credentials` are not configured directly, the following
|
128
|
-
# locations will be searched for credentials:
|
127
|
+
# When `:credentials` are not configured directly, the following locations will be searched for credentials:
|
129
128
|
#
|
130
129
|
# * `Aws.config[:credentials]`
|
131
130
|
#
|
@@ -139,12 +138,10 @@ module Aws::QConnect
|
|
139
138
|
#
|
140
139
|
# * `~/.aws/config`
|
141
140
|
#
|
142
|
-
# * EC2/ECS IMDS instance profile - When used by default, the timeouts
|
143
|
-
#
|
144
|
-
#
|
145
|
-
#
|
146
|
-
# fetching can be disabled by setting `ENV['AWS_EC2_METADATA_DISABLED']`
|
147
|
-
# to `true`.
|
141
|
+
# * EC2/ECS IMDS instance profile - When used by default, the timeouts are very aggressive.
|
142
|
+
# Construct and pass an instance of `Aws::InstanceProfileCredentials` or `Aws::ECSCredentials` to
|
143
|
+
# enable retries and extended timeouts. Instance profile credential fetching can be disabled by
|
144
|
+
# setting `ENV['AWS_EC2_METADATA_DISABLED']` to `true`.
|
148
145
|
#
|
149
146
|
# @option options [required, String] :region
|
150
147
|
# The AWS region to connect to. The configured `:region` is
|
@@ -377,8 +374,8 @@ module Aws::QConnect
|
|
377
374
|
# `Aws::Telemetry::OTelProvider` for telemetry provider.
|
378
375
|
#
|
379
376
|
# @option options [Aws::TokenProvider] :token_provider
|
380
|
-
# Your Bearer token used for authentication. This can be
|
381
|
-
# following classes:
|
377
|
+
# Your Bearer token used for authentication. This can be any class that includes and implements
|
378
|
+
# `Aws::TokenProvider`, or instance of any one of the following classes:
|
382
379
|
#
|
383
380
|
# * `Aws::StaticTokenProvider` - Used for configuring static, non-refreshing
|
384
381
|
# tokens.
|
@@ -1194,6 +1191,15 @@ module Aws::QConnect
|
|
1194
1191
|
|
1195
1192
|
# Creates an Amazon Q in Connect AI Prompt.
|
1196
1193
|
#
|
1194
|
+
# <note markdown="1"> For more information on supported models, see [Supported models for
|
1195
|
+
# system and custom prompts][1].
|
1196
|
+
#
|
1197
|
+
# </note>
|
1198
|
+
#
|
1199
|
+
#
|
1200
|
+
#
|
1201
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/create-ai-prompts.html#cli-create-aiprompt
|
1202
|
+
#
|
1197
1203
|
# @option params [String] :client_token
|
1198
1204
|
# A unique, case-sensitive identifier that you provide to ensure the
|
1199
1205
|
# idempotency of the request. If not provided, the Amazon Web Services
|
@@ -6848,6 +6854,18 @@ module Aws::QConnect
|
|
6848
6854
|
# @option params [String] :description
|
6849
6855
|
# The description of the Amazon Q in Connect AI Prompt.
|
6850
6856
|
#
|
6857
|
+
# @option params [String] :model_id
|
6858
|
+
# The identifier of the model used for this AI Prompt.
|
6859
|
+
#
|
6860
|
+
# <note markdown="1"> For more information on supported models, see [Supported models for
|
6861
|
+
# system and custom prompts][1].
|
6862
|
+
#
|
6863
|
+
# </note>
|
6864
|
+
#
|
6865
|
+
#
|
6866
|
+
#
|
6867
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/create-ai-prompts.html#cli-create-aiprompt
|
6868
|
+
#
|
6851
6869
|
# @return [Types::UpdateAIPromptResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
6852
6870
|
#
|
6853
6871
|
# * {Types::UpdateAIPromptResponse#ai_prompt #ai_prompt} => Types::AIPromptData
|
@@ -6865,6 +6883,7 @@ module Aws::QConnect
|
|
6865
6883
|
# },
|
6866
6884
|
# },
|
6867
6885
|
# description: "Description",
|
6886
|
+
# model_id: "AIPromptModelIdentifier",
|
6868
6887
|
# })
|
6869
6888
|
#
|
6870
6889
|
# @example Response structure
|
@@ -7809,7 +7828,7 @@ module Aws::QConnect
|
|
7809
7828
|
tracer: tracer
|
7810
7829
|
)
|
7811
7830
|
context[:gem_name] = 'aws-sdk-qconnect'
|
7812
|
-
context[:gem_version] = '1.
|
7831
|
+
context[:gem_version] = '1.39.0'
|
7813
7832
|
Seahorse::Client::Request.new(handlers, context)
|
7814
7833
|
end
|
7815
7834
|
|
@@ -2548,6 +2548,7 @@ module Aws::QConnect
|
|
2548
2548
|
UpdateAIPromptRequest.add_member(:visibility_status, Shapes::ShapeRef.new(shape: VisibilityStatus, required: true, location_name: "visibilityStatus"))
|
2549
2549
|
UpdateAIPromptRequest.add_member(:template_configuration, Shapes::ShapeRef.new(shape: AIPromptTemplateConfiguration, location_name: "templateConfiguration"))
|
2550
2550
|
UpdateAIPromptRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
2551
|
+
UpdateAIPromptRequest.add_member(:model_id, Shapes::ShapeRef.new(shape: AIPromptModelIdentifier, location_name: "modelId"))
|
2551
2552
|
UpdateAIPromptRequest.struct_class = Types::UpdateAIPromptRequest
|
2552
2553
|
|
2553
2554
|
UpdateAIPromptResponse.add_member(:ai_prompt, Shapes::ShapeRef.new(shape: AIPromptData, location_name: "aiPrompt"))
|
@@ -9710,6 +9710,19 @@ module Aws::QConnect
|
|
9710
9710
|
# The description of the Amazon Q in Connect AI Prompt.
|
9711
9711
|
# @return [String]
|
9712
9712
|
#
|
9713
|
+
# @!attribute [rw] model_id
|
9714
|
+
# The identifier of the model used for this AI Prompt.
|
9715
|
+
#
|
9716
|
+
# <note markdown="1"> For more information on supported models, see [Supported models for
|
9717
|
+
# system and custom prompts][1].
|
9718
|
+
#
|
9719
|
+
# </note>
|
9720
|
+
#
|
9721
|
+
#
|
9722
|
+
#
|
9723
|
+
# [1]: https://docs.aws.amazon.com/connect/latest/adminguide/create-ai-prompts.html#cli-create-aiprompt
|
9724
|
+
# @return [String]
|
9725
|
+
#
|
9713
9726
|
# @see http://docs.aws.amazon.com/goto/WebAPI/qconnect-2020-10-19/UpdateAIPromptRequest AWS API Documentation
|
9714
9727
|
#
|
9715
9728
|
class UpdateAIPromptRequest < Struct.new(
|
@@ -9718,7 +9731,8 @@ module Aws::QConnect
|
|
9718
9731
|
:ai_prompt_id,
|
9719
9732
|
:visibility_status,
|
9720
9733
|
:template_configuration,
|
9721
|
-
:description
|
9734
|
+
:description,
|
9735
|
+
:model_id)
|
9722
9736
|
SENSITIVE = []
|
9723
9737
|
include Aws::Structure
|
9724
9738
|
end
|
data/lib/aws-sdk-qconnect.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -1926,7 +1926,8 @@ module Aws
|
|
1926
1926
|
text: ::String
|
1927
1927
|
}?
|
1928
1928
|
},
|
1929
|
-
?description: ::String
|
1929
|
+
?description: ::String,
|
1930
|
+
?model_id: ::String
|
1930
1931
|
) -> _UpdateAIPromptResponseSuccess
|
1931
1932
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateAIPromptResponseSuccess
|
1932
1933
|
|
data/sig/types.rbs
CHANGED
@@ -2550,6 +2550,7 @@ module Aws::QConnect
|
|
2550
2550
|
attr_accessor visibility_status: ("SAVED" | "PUBLISHED")
|
2551
2551
|
attr_accessor template_configuration: Types::AIPromptTemplateConfiguration
|
2552
2552
|
attr_accessor description: ::String
|
2553
|
+
attr_accessor model_id: ::String
|
2553
2554
|
SENSITIVE: []
|
2554
2555
|
end
|
2555
2556
|
|