aws-sdk-qbusiness 1.7.0 → 1.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/CHANGELOG.md +5 -0
- data/VERSION +1 -1
- data/lib/aws-sdk-qbusiness/async_client.rb +1 -3
- data/lib/aws-sdk-qbusiness/client.rb +27 -9
- data/lib/aws-sdk-qbusiness/client_api.rb +9 -0
- data/lib/aws-sdk-qbusiness/types.rb +41 -10
- data/lib/aws-sdk-qbusiness.rb +1 -1
- data/sig/client.rbs +7 -0
- data/sig/types.rbs +8 -0
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 30c0ddf19fe77617d5f130e89d342ed245cfd630e1137f097cc92383e17ec5d0
|
4
|
+
data.tar.gz: d2f79a211ef84356f652100dac9ee9cdab25374ef046feda303a3538a2533b21
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: c744e8772afe8170c756f6f8d5857ac62e018efa2716e75bbe8c9914242e2f2c4d12f60666fb50c68a1cc0e85e1a8f3d6ddb654cbf6976a195a80515a79a8e67
|
7
|
+
data.tar.gz: a5612a36452bfd8aec84c922ad8ef50b48a92a750208ac1b14c33cc9db0c5bab9a33ae2b57c2a64525fe8035aba2348debc909816e54712853b5ad3a654f4841
|
data/CHANGELOG.md
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
Unreleased Changes
|
2
2
|
------------------
|
3
3
|
|
4
|
+
1.8.0 (2024-06-24)
|
5
|
+
------------------
|
6
|
+
|
7
|
+
* Feature - Allow enable/disable Q Apps when creating/updating a Q application; Return the Q Apps enablement information when getting a Q application.
|
8
|
+
|
4
9
|
1.7.0 (2024-06-05)
|
5
10
|
------------------
|
6
11
|
|
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
1.
|
1
|
+
1.8.0
|
@@ -158,7 +158,6 @@ module Aws::QBusiness
|
|
158
158
|
# 'https://example.com'
|
159
159
|
# 'http://example.com:123'
|
160
160
|
#
|
161
|
-
#
|
162
161
|
# @option options [Proc] :event_stream_handler
|
163
162
|
# When an EventStream or Proc object is provided, it will be used as callback for each chunk of event stream response received along the way.
|
164
163
|
#
|
@@ -241,7 +240,6 @@ module Aws::QBusiness
|
|
241
240
|
# throttling. This is a provisional mode that may change behavior
|
242
241
|
# in the future.
|
243
242
|
#
|
244
|
-
#
|
245
243
|
# @option options [String] :sdk_ua_app_id
|
246
244
|
# A unique and opaque application ID that is appended to the
|
247
245
|
# User-Agent header as app/sdk_ua_app_id. It should have a
|
@@ -573,7 +571,7 @@ module Aws::QBusiness
|
|
573
571
|
http_response: Seahorse::Client::Http::AsyncResponse.new,
|
574
572
|
config: config)
|
575
573
|
context[:gem_name] = 'aws-sdk-qbusiness'
|
576
|
-
context[:gem_version] = '1.
|
574
|
+
context[:gem_version] = '1.8.0'
|
577
575
|
Seahorse::Client::Request.new(handlers, context)
|
578
576
|
end
|
579
577
|
|
@@ -91,6 +91,11 @@ module Aws::QBusiness
|
|
91
91
|
|
92
92
|
# @overload initialize(options)
|
93
93
|
# @param [Hash] options
|
94
|
+
#
|
95
|
+
# @option options [Array<Seahorse::Client::Plugin>] :plugins ([]])
|
96
|
+
# A list of plugins to apply to the client. Each plugin is either a
|
97
|
+
# class name or an instance of a plugin class.
|
98
|
+
#
|
94
99
|
# @option options [required, Aws::CredentialProvider] :credentials
|
95
100
|
# Your AWS credentials. This can be an instance of any one of the
|
96
101
|
# following classes:
|
@@ -211,7 +216,6 @@ module Aws::QBusiness
|
|
211
216
|
# 'https://example.com'
|
212
217
|
# 'http://example.com:123'
|
213
218
|
#
|
214
|
-
#
|
215
219
|
# @option options [Integer] :endpoint_cache_max_entries (1000)
|
216
220
|
# Used for the maximum size limit of the LRU cache storing endpoints data
|
217
221
|
# for endpoint discovery enabled operations. Defaults to 1000.
|
@@ -309,7 +313,6 @@ module Aws::QBusiness
|
|
309
313
|
# throttling. This is a provisional mode that may change behavior
|
310
314
|
# in the future.
|
311
315
|
#
|
312
|
-
#
|
313
316
|
# @option options [String] :sdk_ua_app_id
|
314
317
|
# A unique and opaque application ID that is appended to the
|
315
318
|
# User-Agent header as app/sdk_ua_app_id. It should have a
|
@@ -675,8 +678,7 @@ module Aws::QBusiness
|
|
675
678
|
# The identifier of the Amazon Q Business conversation.
|
676
679
|
#
|
677
680
|
# @option params [String] :parent_message_id
|
678
|
-
# The identifier of the previous
|
679
|
-
# conversation.
|
681
|
+
# The identifier of the previous system message in a conversation.
|
680
682
|
#
|
681
683
|
# @option params [Types::AttributeFilter] :attribute_filter
|
682
684
|
# Enables filtering of Amazon Q Business web experience responses based
|
@@ -899,7 +901,7 @@ module Aws::QBusiness
|
|
899
901
|
#
|
900
902
|
#
|
901
903
|
#
|
902
|
-
# [1]: https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/
|
904
|
+
# [1]: https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/tiers.html#user-sub-tiers
|
903
905
|
#
|
904
906
|
# @option params [required, String] :display_name
|
905
907
|
# A name for the Amazon Q Business application.
|
@@ -937,6 +939,10 @@ module Aws::QBusiness
|
|
937
939
|
# @option params [Types::AttachmentsConfiguration] :attachments_configuration
|
938
940
|
# An option to allow end users to upload files directly during chat.
|
939
941
|
#
|
942
|
+
# @option params [Types::QAppsConfiguration] :q_apps_configuration
|
943
|
+
# An option to allow end users to create and use Amazon Q Apps in the
|
944
|
+
# web experience.
|
945
|
+
#
|
940
946
|
# @return [Types::CreateApplicationResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods:
|
941
947
|
#
|
942
948
|
# * {Types::CreateApplicationResponse#application_id #application_id} => String
|
@@ -962,6 +968,9 @@ module Aws::QBusiness
|
|
962
968
|
# attachments_configuration: {
|
963
969
|
# attachments_control_mode: "ENABLED", # required, accepts ENABLED, DISABLED
|
964
970
|
# },
|
971
|
+
# q_apps_configuration: {
|
972
|
+
# q_apps_control_mode: "ENABLED", # required, accepts ENABLED, DISABLED
|
973
|
+
# },
|
965
974
|
# })
|
966
975
|
#
|
967
976
|
# @example Response structure
|
@@ -1182,12 +1191,12 @@ module Aws::QBusiness
|
|
1182
1191
|
#
|
1183
1192
|
# @option params [String] :type
|
1184
1193
|
# The index type that's suitable for your needs. For more information
|
1185
|
-
# on what's included in each type of index
|
1186
|
-
#
|
1194
|
+
# on what's included in each type of index, see [Amazon Q Business
|
1195
|
+
# tiers][1].
|
1187
1196
|
#
|
1188
1197
|
#
|
1189
1198
|
#
|
1190
|
-
# [1]: https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/
|
1199
|
+
# [1]: https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/tiers.html#index-tiers
|
1191
1200
|
#
|
1192
1201
|
# @option params [String] :description
|
1193
1202
|
# A description for the Amazon Q Business index.
|
@@ -1878,6 +1887,7 @@ module Aws::QBusiness
|
|
1878
1887
|
# * {Types::GetApplicationResponse#updated_at #updated_at} => Time
|
1879
1888
|
# * {Types::GetApplicationResponse#error #error} => Types::ErrorDetail
|
1880
1889
|
# * {Types::GetApplicationResponse#attachments_configuration #attachments_configuration} => Types::AppliedAttachmentsConfiguration
|
1890
|
+
# * {Types::GetApplicationResponse#q_apps_configuration #q_apps_configuration} => Types::QAppsConfiguration
|
1881
1891
|
#
|
1882
1892
|
# @example Request syntax with placeholder values
|
1883
1893
|
#
|
@@ -1900,6 +1910,7 @@ module Aws::QBusiness
|
|
1900
1910
|
# resp.error.error_message #=> String
|
1901
1911
|
# resp.error.error_code #=> String, one of "InternalError", "InvalidRequest", "ResourceInactive", "ResourceNotFound"
|
1902
1912
|
# resp.attachments_configuration.attachments_control_mode #=> String, one of "ENABLED", "DISABLED"
|
1913
|
+
# resp.q_apps_configuration.q_apps_control_mode #=> String, one of "ENABLED", "DISABLED"
|
1903
1914
|
#
|
1904
1915
|
# @see http://docs.aws.amazon.com/goto/WebAPI/qbusiness-2023-11-27/GetApplication AWS API Documentation
|
1905
1916
|
#
|
@@ -3374,6 +3385,10 @@ module Aws::QBusiness
|
|
3374
3385
|
# @option params [Types::AttachmentsConfiguration] :attachments_configuration
|
3375
3386
|
# An option to allow end users to upload files directly during chat.
|
3376
3387
|
#
|
3388
|
+
# @option params [Types::QAppsConfiguration] :q_apps_configuration
|
3389
|
+
# An option to allow end users to create and use Amazon Q Apps in the
|
3390
|
+
# web experience.
|
3391
|
+
#
|
3377
3392
|
# @return [Struct] Returns an empty {Seahorse::Client::Response response}.
|
3378
3393
|
#
|
3379
3394
|
# @example Request syntax with placeholder values
|
@@ -3387,6 +3402,9 @@ module Aws::QBusiness
|
|
3387
3402
|
# attachments_configuration: {
|
3388
3403
|
# attachments_control_mode: "ENABLED", # required, accepts ENABLED, DISABLED
|
3389
3404
|
# },
|
3405
|
+
# q_apps_configuration: {
|
3406
|
+
# q_apps_control_mode: "ENABLED", # required, accepts ENABLED, DISABLED
|
3407
|
+
# },
|
3390
3408
|
# })
|
3391
3409
|
#
|
3392
3410
|
# @see http://docs.aws.amazon.com/goto/WebAPI/qbusiness-2023-11-27/UpdateApplication AWS API Documentation
|
@@ -3993,7 +4011,7 @@ module Aws::QBusiness
|
|
3993
4011
|
params: params,
|
3994
4012
|
config: config)
|
3995
4013
|
context[:gem_name] = 'aws-sdk-qbusiness'
|
3996
|
-
context[:gem_version] = '1.
|
4014
|
+
context[:gem_version] = '1.8.0'
|
3997
4015
|
Seahorse::Client::Request.new(handlers, context)
|
3998
4016
|
end
|
3999
4017
|
|
@@ -313,6 +313,8 @@ module Aws::QBusiness
|
|
313
313
|
PutFeedbackRequest = Shapes::StructureShape.new(name: 'PutFeedbackRequest')
|
314
314
|
PutGroupRequest = Shapes::StructureShape.new(name: 'PutGroupRequest')
|
315
315
|
PutGroupResponse = Shapes::StructureShape.new(name: 'PutGroupResponse')
|
316
|
+
QAppsConfiguration = Shapes::StructureShape.new(name: 'QAppsConfiguration')
|
317
|
+
QAppsControlMode = Shapes::StringShape.new(name: 'QAppsControlMode')
|
316
318
|
ReadAccessType = Shapes::StringShape.new(name: 'ReadAccessType')
|
317
319
|
ResourceNotFoundException = Shapes::StructureShape.new(name: 'ResourceNotFoundException')
|
318
320
|
ResponseScope = Shapes::StringShape.new(name: 'ResponseScope')
|
@@ -679,6 +681,7 @@ module Aws::QBusiness
|
|
679
681
|
CreateApplicationRequest.add_member(:tags, Shapes::ShapeRef.new(shape: Tags, location_name: "tags"))
|
680
682
|
CreateApplicationRequest.add_member(:client_token, Shapes::ShapeRef.new(shape: ClientToken, location_name: "clientToken", metadata: {"idempotencyToken"=>true}))
|
681
683
|
CreateApplicationRequest.add_member(:attachments_configuration, Shapes::ShapeRef.new(shape: AttachmentsConfiguration, location_name: "attachmentsConfiguration"))
|
684
|
+
CreateApplicationRequest.add_member(:q_apps_configuration, Shapes::ShapeRef.new(shape: QAppsConfiguration, location_name: "qAppsConfiguration"))
|
682
685
|
CreateApplicationRequest.struct_class = Types::CreateApplicationRequest
|
683
686
|
|
684
687
|
CreateApplicationResponse.add_member(:application_id, Shapes::ShapeRef.new(shape: ApplicationId, location_name: "applicationId"))
|
@@ -1010,6 +1013,7 @@ module Aws::QBusiness
|
|
1010
1013
|
GetApplicationResponse.add_member(:updated_at, Shapes::ShapeRef.new(shape: Timestamp, location_name: "updatedAt"))
|
1011
1014
|
GetApplicationResponse.add_member(:error, Shapes::ShapeRef.new(shape: ErrorDetail, location_name: "error"))
|
1012
1015
|
GetApplicationResponse.add_member(:attachments_configuration, Shapes::ShapeRef.new(shape: AppliedAttachmentsConfiguration, location_name: "attachmentsConfiguration"))
|
1016
|
+
GetApplicationResponse.add_member(:q_apps_configuration, Shapes::ShapeRef.new(shape: QAppsConfiguration, location_name: "qAppsConfiguration"))
|
1013
1017
|
GetApplicationResponse.struct_class = Types::GetApplicationResponse
|
1014
1018
|
|
1015
1019
|
GetChatControlsConfigurationRequest.add_member(:application_id, Shapes::ShapeRef.new(shape: ApplicationId, required: true, location: "uri", location_name: "applicationId"))
|
@@ -1422,6 +1426,9 @@ module Aws::QBusiness
|
|
1422
1426
|
|
1423
1427
|
PutGroupResponse.struct_class = Types::PutGroupResponse
|
1424
1428
|
|
1429
|
+
QAppsConfiguration.add_member(:q_apps_control_mode, Shapes::ShapeRef.new(shape: QAppsControlMode, required: true, location_name: "qAppsControlMode"))
|
1430
|
+
QAppsConfiguration.struct_class = Types::QAppsConfiguration
|
1431
|
+
|
1425
1432
|
ResourceNotFoundException.add_member(:message, Shapes::ShapeRef.new(shape: ErrorMessage, required: true, location_name: "message"))
|
1426
1433
|
ResourceNotFoundException.add_member(:resource_id, Shapes::ShapeRef.new(shape: String, required: true, location_name: "resourceId"))
|
1427
1434
|
ResourceNotFoundException.add_member(:resource_type, Shapes::ShapeRef.new(shape: String, required: true, location_name: "resourceType"))
|
@@ -1574,6 +1581,7 @@ module Aws::QBusiness
|
|
1574
1581
|
UpdateApplicationRequest.add_member(:description, Shapes::ShapeRef.new(shape: Description, location_name: "description"))
|
1575
1582
|
UpdateApplicationRequest.add_member(:role_arn, Shapes::ShapeRef.new(shape: RoleArn, location_name: "roleArn"))
|
1576
1583
|
UpdateApplicationRequest.add_member(:attachments_configuration, Shapes::ShapeRef.new(shape: AttachmentsConfiguration, location_name: "attachmentsConfiguration"))
|
1584
|
+
UpdateApplicationRequest.add_member(:q_apps_configuration, Shapes::ShapeRef.new(shape: QAppsConfiguration, location_name: "qAppsConfiguration"))
|
1577
1585
|
UpdateApplicationRequest.struct_class = Types::UpdateApplicationRequest
|
1578
1586
|
|
1579
1587
|
UpdateApplicationResponse.struct_class = Types::UpdateApplicationResponse
|
@@ -1705,6 +1713,7 @@ module Aws::QBusiness
|
|
1705
1713
|
|
1706
1714
|
api.metadata = {
|
1707
1715
|
"apiVersion" => "2023-11-27",
|
1716
|
+
"auth" => ["aws.auth#sigv4"],
|
1708
1717
|
"endpointPrefix" => "qbusiness",
|
1709
1718
|
"protocol" => "rest-json",
|
1710
1719
|
"protocolSettings" => {"h2"=>"eventstream"},
|
@@ -535,8 +535,7 @@ module Aws::QBusiness
|
|
535
535
|
# @!attribute [rw] contains_any
|
536
536
|
# Returns `true` when a document contains any of the specified
|
537
537
|
# document attributes or metadata fields. Supported for the following
|
538
|
-
# [document attribute value types][1]: `
|
539
|
-
# `stringListValue` and `stringValue`.
|
538
|
+
# [document attribute value types][1]: `stringListValue`.
|
540
539
|
#
|
541
540
|
#
|
542
541
|
#
|
@@ -959,8 +958,7 @@ module Aws::QBusiness
|
|
959
958
|
# @return [String]
|
960
959
|
#
|
961
960
|
# @!attribute [rw] parent_message_id
|
962
|
-
# The identifier of the previous
|
963
|
-
# conversation.
|
961
|
+
# The identifier of the previous system message in a conversation.
|
964
962
|
# @return [String]
|
965
963
|
#
|
966
964
|
# @!attribute [rw] attribute_filter
|
@@ -1260,6 +1258,11 @@ module Aws::QBusiness
|
|
1260
1258
|
# An option to allow end users to upload files directly during chat.
|
1261
1259
|
# @return [Types::AttachmentsConfiguration]
|
1262
1260
|
#
|
1261
|
+
# @!attribute [rw] q_apps_configuration
|
1262
|
+
# An option to allow end users to create and use Amazon Q Apps in the
|
1263
|
+
# web experience.
|
1264
|
+
# @return [Types::QAppsConfiguration]
|
1265
|
+
#
|
1263
1266
|
# @see http://docs.aws.amazon.com/goto/WebAPI/qbusiness-2023-11-27/CreateApplicationRequest AWS API Documentation
|
1264
1267
|
#
|
1265
1268
|
class CreateApplicationRequest < Struct.new(
|
@@ -1270,7 +1273,8 @@ module Aws::QBusiness
|
|
1270
1273
|
:encryption_configuration,
|
1271
1274
|
:tags,
|
1272
1275
|
:client_token,
|
1273
|
-
:attachments_configuration
|
1276
|
+
:attachments_configuration,
|
1277
|
+
:q_apps_configuration)
|
1274
1278
|
SENSITIVE = []
|
1275
1279
|
include Aws::Structure
|
1276
1280
|
end
|
@@ -1420,12 +1424,12 @@ module Aws::QBusiness
|
|
1420
1424
|
#
|
1421
1425
|
# @!attribute [rw] type
|
1422
1426
|
# The index type that's suitable for your needs. For more information
|
1423
|
-
# on what's included in each type of index
|
1424
|
-
#
|
1427
|
+
# on what's included in each type of index, see [Amazon Q Business
|
1428
|
+
# tiers][1].
|
1425
1429
|
#
|
1426
1430
|
#
|
1427
1431
|
#
|
1428
|
-
# [1]: https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/
|
1432
|
+
# [1]: https://docs.aws.amazon.com/amazonq/latest/qbusiness-ug/tiers.html#index-tiers
|
1429
1433
|
# @return [String]
|
1430
1434
|
#
|
1431
1435
|
# @!attribute [rw] description
|
@@ -2889,6 +2893,11 @@ module Aws::QBusiness
|
|
2889
2893
|
# chat.
|
2890
2894
|
# @return [Types::AppliedAttachmentsConfiguration]
|
2891
2895
|
#
|
2896
|
+
# @!attribute [rw] q_apps_configuration
|
2897
|
+
# Settings for whether end users can create and use Amazon Q Apps in
|
2898
|
+
# the web experience.
|
2899
|
+
# @return [Types::QAppsConfiguration]
|
2900
|
+
#
|
2892
2901
|
# @see http://docs.aws.amazon.com/goto/WebAPI/qbusiness-2023-11-27/GetApplicationResponse AWS API Documentation
|
2893
2902
|
#
|
2894
2903
|
class GetApplicationResponse < Struct.new(
|
@@ -2903,7 +2912,8 @@ module Aws::QBusiness
|
|
2903
2912
|
:created_at,
|
2904
2913
|
:updated_at,
|
2905
2914
|
:error,
|
2906
|
-
:attachments_configuration
|
2915
|
+
:attachments_configuration,
|
2916
|
+
:q_apps_configuration)
|
2907
2917
|
SENSITIVE = []
|
2908
2918
|
include Aws::Structure
|
2909
2919
|
end
|
@@ -4988,6 +4998,21 @@ module Aws::QBusiness
|
|
4988
4998
|
#
|
4989
4999
|
class PutGroupResponse < Aws::EmptyStructure; end
|
4990
5000
|
|
5001
|
+
# Configuration information about Amazon Q Apps. (preview feature)
|
5002
|
+
#
|
5003
|
+
# @!attribute [rw] q_apps_control_mode
|
5004
|
+
# Status information about whether end users can create and use Amazon
|
5005
|
+
# Q Apps in the web experience.
|
5006
|
+
# @return [String]
|
5007
|
+
#
|
5008
|
+
# @see http://docs.aws.amazon.com/goto/WebAPI/qbusiness-2023-11-27/QAppsConfiguration AWS API Documentation
|
5009
|
+
#
|
5010
|
+
class QAppsConfiguration < Struct.new(
|
5011
|
+
:q_apps_control_mode)
|
5012
|
+
SENSITIVE = []
|
5013
|
+
include Aws::Structure
|
5014
|
+
end
|
5015
|
+
|
4991
5016
|
# The resource you want to use doesn’t exist. Make sure you have
|
4992
5017
|
# provided the correct resource and try again.
|
4993
5018
|
#
|
@@ -5659,6 +5684,11 @@ module Aws::QBusiness
|
|
5659
5684
|
# An option to allow end users to upload files directly during chat.
|
5660
5685
|
# @return [Types::AttachmentsConfiguration]
|
5661
5686
|
#
|
5687
|
+
# @!attribute [rw] q_apps_configuration
|
5688
|
+
# An option to allow end users to create and use Amazon Q Apps in the
|
5689
|
+
# web experience.
|
5690
|
+
# @return [Types::QAppsConfiguration]
|
5691
|
+
#
|
5662
5692
|
# @see http://docs.aws.amazon.com/goto/WebAPI/qbusiness-2023-11-27/UpdateApplicationRequest AWS API Documentation
|
5663
5693
|
#
|
5664
5694
|
class UpdateApplicationRequest < Struct.new(
|
@@ -5667,7 +5697,8 @@ module Aws::QBusiness
|
|
5667
5697
|
:display_name,
|
5668
5698
|
:description,
|
5669
5699
|
:role_arn,
|
5670
|
-
:attachments_configuration
|
5700
|
+
:attachments_configuration,
|
5701
|
+
:q_apps_configuration)
|
5671
5702
|
SENSITIVE = []
|
5672
5703
|
include Aws::Structure
|
5673
5704
|
end
|
data/lib/aws-sdk-qbusiness.rb
CHANGED
data/sig/client.rbs
CHANGED
@@ -366,6 +366,9 @@ module Aws
|
|
366
366
|
?client_token: ::String,
|
367
367
|
?attachments_configuration: {
|
368
368
|
attachments_control_mode: ("ENABLED" | "DISABLED")
|
369
|
+
},
|
370
|
+
?q_apps_configuration: {
|
371
|
+
q_apps_control_mode: ("ENABLED" | "DISABLED")
|
369
372
|
}
|
370
373
|
) -> _CreateApplicationResponseSuccess
|
371
374
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateApplicationResponseSuccess
|
@@ -727,6 +730,7 @@ module Aws
|
|
727
730
|
def created_at: () -> ::Time
|
728
731
|
def updated_at: () -> ::Time
|
729
732
|
def attachments_configuration: () -> Types::AppliedAttachmentsConfiguration
|
733
|
+
def q_apps_configuration: () -> Types::QAppsConfiguration
|
730
734
|
end
|
731
735
|
# https://docs.aws.amazon.com/sdk-for-ruby/v3/api/Aws/QBusiness/Client.html#get_application-instance_method
|
732
736
|
def get_application: (
|
@@ -1157,6 +1161,9 @@ module Aws
|
|
1157
1161
|
?role_arn: ::String,
|
1158
1162
|
?attachments_configuration: {
|
1159
1163
|
attachments_control_mode: ("ENABLED" | "DISABLED")
|
1164
|
+
},
|
1165
|
+
?q_apps_configuration: {
|
1166
|
+
q_apps_control_mode: ("ENABLED" | "DISABLED")
|
1160
1167
|
}
|
1161
1168
|
) -> _UpdateApplicationResponseSuccess
|
1162
1169
|
| (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateApplicationResponseSuccess
|
data/sig/types.rbs
CHANGED
@@ -319,6 +319,7 @@ module Aws::QBusiness
|
|
319
319
|
attr_accessor tags: ::Array[Types::Tag]
|
320
320
|
attr_accessor client_token: ::String
|
321
321
|
attr_accessor attachments_configuration: Types::AttachmentsConfiguration
|
322
|
+
attr_accessor q_apps_configuration: Types::QAppsConfiguration
|
322
323
|
SENSITIVE: []
|
323
324
|
end
|
324
325
|
|
@@ -746,6 +747,7 @@ module Aws::QBusiness
|
|
746
747
|
attr_accessor updated_at: ::Time
|
747
748
|
attr_accessor error: Types::ErrorDetail
|
748
749
|
attr_accessor attachments_configuration: Types::AppliedAttachmentsConfiguration
|
750
|
+
attr_accessor q_apps_configuration: Types::QAppsConfiguration
|
749
751
|
SENSITIVE: []
|
750
752
|
end
|
751
753
|
|
@@ -1287,6 +1289,11 @@ module Aws::QBusiness
|
|
1287
1289
|
class PutGroupResponse < Aws::EmptyStructure
|
1288
1290
|
end
|
1289
1291
|
|
1292
|
+
class QAppsConfiguration
|
1293
|
+
attr_accessor q_apps_control_mode: ("ENABLED" | "DISABLED")
|
1294
|
+
SENSITIVE: []
|
1295
|
+
end
|
1296
|
+
|
1290
1297
|
class ResourceNotFoundException
|
1291
1298
|
attr_accessor message: ::String
|
1292
1299
|
attr_accessor resource_id: ::String
|
@@ -1480,6 +1487,7 @@ module Aws::QBusiness
|
|
1480
1487
|
attr_accessor description: ::String
|
1481
1488
|
attr_accessor role_arn: ::String
|
1482
1489
|
attr_accessor attachments_configuration: Types::AttachmentsConfiguration
|
1490
|
+
attr_accessor q_apps_configuration: Types::QAppsConfiguration
|
1483
1491
|
SENSITIVE: []
|
1484
1492
|
end
|
1485
1493
|
|
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.8.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: 2024-06-
|
11
|
+
date: 2024-06-24 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: aws-sdk-core
|
@@ -19,7 +19,7 @@ dependencies:
|
|
19
19
|
version: '3'
|
20
20
|
- - ">="
|
21
21
|
- !ruby/object:Gem::Version
|
22
|
-
version: 3.
|
22
|
+
version: 3.198.0
|
23
23
|
type: :runtime
|
24
24
|
prerelease: false
|
25
25
|
version_requirements: !ruby/object:Gem::Requirement
|
@@ -29,7 +29,7 @@ dependencies:
|
|
29
29
|
version: '3'
|
30
30
|
- - ">="
|
31
31
|
- !ruby/object:Gem::Version
|
32
|
-
version: 3.
|
32
|
+
version: 3.198.0
|
33
33
|
- !ruby/object:Gem::Dependency
|
34
34
|
name: aws-sigv4
|
35
35
|
requirement: !ruby/object:Gem::Requirement
|