aws-sdk-qapps 1.31.0 → 1.32.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: 8798c16793788a399672928436dfb898fbbe7e8907874e31161c5efce56da813
4
- data.tar.gz: 2f232b105573a60c6c4b410848b1a55bf24d036833cfa4c4135d3e4d6c91fa22
3
+ metadata.gz: cda69a7c2bbdf1e5681ad2de931bf705e3fd23b1892d91735e51d4338a63a825
4
+ data.tar.gz: 4233e9acf888686f798bc3121d38bd7cc73bfdc57cdf68971fa047cd7cba42a1
5
5
  SHA512:
6
- metadata.gz: 78028e1c6df332839e87bb86e63985380133af6ef1aa23128b7d553886e21491814f05568738f80c66a1e3421c6e2bee9c7a59d873f9b1d4b7a8705b00b7d4cf
7
- data.tar.gz: 5e4e8756eb910bf2cebc9983115f3ee2288e49b80220fa061ce752dabc11d85d78a177445748c94402e4c3d9cac320c68790b5abeb053caec8e0f52d5d5780e2
6
+ metadata.gz: da0659525cbe40932236954466eab63e8e8799f290720a12461eb48046ac0c02556663b9b948785ddcdd16d495477a771be78b562278d77a28d0a6fe2cc26219
7
+ data.tar.gz: dc1059205324846066e216d8bba649f4aae6a92a488622649f25ca208494131c9795c03f34347ede84cce19212929cf16e4488ae7574eb64c652d96127ca7270
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.32.0 (2026-05-19)
5
+ ------------------
6
+
7
+ * Feature - Code Generated Changes, see `./build_tools` or `aws-sdk-core`'s CHANGELOG.md for details.
8
+
4
9
  1.31.0 (2026-05-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.31.0
1
+ 1.32.0
@@ -3349,7 +3349,7 @@ module Aws::QApps
3349
3349
  tracer: tracer
3350
3350
  )
3351
3351
  context[:gem_name] = 'aws-sdk-qapps'
3352
- context[:gem_version] = '1.31.0'
3352
+ context[:gem_version] = '1.32.0'
3353
3353
  Seahorse::Client::Request.new(handlers, context)
3354
3354
  end
3355
3355
 
data/lib/aws-sdk-qapps.rb CHANGED
@@ -55,7 +55,7 @@ module Aws::QApps
55
55
  autoload :EndpointProvider, 'aws-sdk-qapps/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-qapps/endpoints'
57
57
 
58
- GEM_VERSION = '1.31.0'
58
+ GEM_VERSION = '1.32.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -100,7 +100,7 @@ module Aws
100
100
  id: ::String?,
101
101
  title: ::String,
102
102
  color: ::String?
103
- },
103
+ }
104
104
  ]
105
105
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
106
106
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
@@ -120,7 +120,7 @@ module Aws
120
120
  id: ::String,
121
121
  title: ::String,
122
122
  color: ::String?
123
- },
123
+ }
124
124
  ]
125
125
  ) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
126
126
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> ::Seahorse::Client::_ResponseSuccess[::Aws::EmptyStructure]
@@ -184,125 +184,7 @@ module Aws
184
184
  instance_id: ::String,
185
185
  title: ::String,
186
186
  ?description: ::String,
187
- app_definition: {
188
- cards: Array[
189
- {
190
- text_input: {
191
- title: ::String,
192
- id: ::String,
193
- type: ("text-input" | "q-query" | "file-upload" | "q-plugin" | "form-input"),
194
- placeholder: ::String?,
195
- default_value: ::String?
196
- }?,
197
- q_query: {
198
- title: ::String,
199
- id: ::String,
200
- type: ("text-input" | "q-query" | "file-upload" | "q-plugin" | "form-input"),
201
- prompt: ::String,
202
- output_source: ("approved-sources" | "llm")?,
203
- attribute_filter: {
204
- and_all_filters: Array[
205
- untyped,
206
- ]?,
207
- or_all_filters: Array[
208
- untyped,
209
- ]?,
210
- not_filter: untyped?,
211
- equals_to: {
212
- name: ::String,
213
- value: {
214
- string_value: ::String?,
215
- string_list_value: Array[::String]?,
216
- long_value: ::Integer?,
217
- date_value: ::Time?
218
- }
219
- }?,
220
- contains_all: {
221
- name: ::String,
222
- value: {
223
- string_value: ::String?,
224
- string_list_value: Array[::String]?,
225
- long_value: ::Integer?,
226
- date_value: ::Time?
227
- }
228
- }?,
229
- contains_any: {
230
- name: ::String,
231
- value: {
232
- string_value: ::String?,
233
- string_list_value: Array[::String]?,
234
- long_value: ::Integer?,
235
- date_value: ::Time?
236
- }
237
- }?,
238
- greater_than: {
239
- name: ::String,
240
- value: {
241
- string_value: ::String?,
242
- string_list_value: Array[::String]?,
243
- long_value: ::Integer?,
244
- date_value: ::Time?
245
- }
246
- }?,
247
- greater_than_or_equals: {
248
- name: ::String,
249
- value: {
250
- string_value: ::String?,
251
- string_list_value: Array[::String]?,
252
- long_value: ::Integer?,
253
- date_value: ::Time?
254
- }
255
- }?,
256
- less_than: {
257
- name: ::String,
258
- value: {
259
- string_value: ::String?,
260
- string_list_value: Array[::String]?,
261
- long_value: ::Integer?,
262
- date_value: ::Time?
263
- }
264
- }?,
265
- less_than_or_equals: {
266
- name: ::String,
267
- value: {
268
- string_value: ::String?,
269
- string_list_value: Array[::String]?,
270
- long_value: ::Integer?,
271
- date_value: ::Time?
272
- }
273
- }?
274
- }?
275
- }?,
276
- q_plugin: {
277
- title: ::String,
278
- id: ::String,
279
- type: ("text-input" | "q-query" | "file-upload" | "q-plugin" | "form-input"),
280
- prompt: ::String,
281
- plugin_id: ::String,
282
- action_identifier: ::String?
283
- }?,
284
- file_upload: {
285
- title: ::String,
286
- id: ::String,
287
- type: ("text-input" | "q-query" | "file-upload" | "q-plugin" | "form-input"),
288
- filename: ::String?,
289
- file_id: ::String?,
290
- allow_override: bool?
291
- }?,
292
- form_input: {
293
- title: ::String,
294
- id: ::String,
295
- type: ("text-input" | "q-query" | "file-upload" | "q-plugin" | "form-input"),
296
- metadata: {
297
- schema: {
298
- }
299
- },
300
- compute_mode: ("append" | "replace")?
301
- }?
302
- },
303
- ],
304
- initial_prompt: ::String?
305
- },
187
+ app_definition: Params::app_definition_input,
306
188
  ?tags: Hash[::String, ::String]
307
189
  ) -> _CreateQAppResponseSuccess
308
190
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateQAppResponseSuccess
@@ -532,7 +414,7 @@ module Aws
532
414
  {
533
415
  body: ::String,
534
416
  type: ("USER" | "SYSTEM")
535
- },
417
+ }
536
418
  ]?,
537
419
  problem_statement: ::String?
538
420
  }
@@ -550,14 +432,7 @@ module Aws
550
432
  app_id: ::String,
551
433
  app_version: ::Integer,
552
434
  ?initial_values: Array[
553
- {
554
- card_id: ::String,
555
- value: ::String,
556
- submission_mutation: {
557
- submission_id: ::String,
558
- mutation_type: ("edit" | "delete" | "add")
559
- }?
560
- },
435
+ Params::card_value
561
436
  ],
562
437
  ?session_id: ::String,
563
438
  ?tags: Hash[::String, ::String]
@@ -645,125 +520,7 @@ module Aws
645
520
  app_id: ::String,
646
521
  ?title: ::String,
647
522
  ?description: ::String,
648
- ?app_definition: {
649
- cards: Array[
650
- {
651
- text_input: {
652
- title: ::String,
653
- id: ::String,
654
- type: ("text-input" | "q-query" | "file-upload" | "q-plugin" | "form-input"),
655
- placeholder: ::String?,
656
- default_value: ::String?
657
- }?,
658
- q_query: {
659
- title: ::String,
660
- id: ::String,
661
- type: ("text-input" | "q-query" | "file-upload" | "q-plugin" | "form-input"),
662
- prompt: ::String,
663
- output_source: ("approved-sources" | "llm")?,
664
- attribute_filter: {
665
- and_all_filters: Array[
666
- untyped,
667
- ]?,
668
- or_all_filters: Array[
669
- untyped,
670
- ]?,
671
- not_filter: untyped?,
672
- equals_to: {
673
- name: ::String,
674
- value: {
675
- string_value: ::String?,
676
- string_list_value: Array[::String]?,
677
- long_value: ::Integer?,
678
- date_value: ::Time?
679
- }
680
- }?,
681
- contains_all: {
682
- name: ::String,
683
- value: {
684
- string_value: ::String?,
685
- string_list_value: Array[::String]?,
686
- long_value: ::Integer?,
687
- date_value: ::Time?
688
- }
689
- }?,
690
- contains_any: {
691
- name: ::String,
692
- value: {
693
- string_value: ::String?,
694
- string_list_value: Array[::String]?,
695
- long_value: ::Integer?,
696
- date_value: ::Time?
697
- }
698
- }?,
699
- greater_than: {
700
- name: ::String,
701
- value: {
702
- string_value: ::String?,
703
- string_list_value: Array[::String]?,
704
- long_value: ::Integer?,
705
- date_value: ::Time?
706
- }
707
- }?,
708
- greater_than_or_equals: {
709
- name: ::String,
710
- value: {
711
- string_value: ::String?,
712
- string_list_value: Array[::String]?,
713
- long_value: ::Integer?,
714
- date_value: ::Time?
715
- }
716
- }?,
717
- less_than: {
718
- name: ::String,
719
- value: {
720
- string_value: ::String?,
721
- string_list_value: Array[::String]?,
722
- long_value: ::Integer?,
723
- date_value: ::Time?
724
- }
725
- }?,
726
- less_than_or_equals: {
727
- name: ::String,
728
- value: {
729
- string_value: ::String?,
730
- string_list_value: Array[::String]?,
731
- long_value: ::Integer?,
732
- date_value: ::Time?
733
- }
734
- }?
735
- }?
736
- }?,
737
- q_plugin: {
738
- title: ::String,
739
- id: ::String,
740
- type: ("text-input" | "q-query" | "file-upload" | "q-plugin" | "form-input"),
741
- prompt: ::String,
742
- plugin_id: ::String,
743
- action_identifier: ::String?
744
- }?,
745
- file_upload: {
746
- title: ::String,
747
- id: ::String,
748
- type: ("text-input" | "q-query" | "file-upload" | "q-plugin" | "form-input"),
749
- filename: ::String?,
750
- file_id: ::String?,
751
- allow_override: bool?
752
- }?,
753
- form_input: {
754
- title: ::String,
755
- id: ::String,
756
- type: ("text-input" | "q-query" | "file-upload" | "q-plugin" | "form-input"),
757
- metadata: {
758
- schema: {
759
- }
760
- },
761
- compute_mode: ("append" | "replace")?
762
- }?
763
- },
764
- ],
765
- initial_prompt: ::String?
766
- }
523
+ ?app_definition: Params::app_definition_input
767
524
  ) -> _UpdateQAppResponseSuccess
768
525
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateQAppResponseSuccess
769
526
 
@@ -781,13 +538,13 @@ module Aws
781
538
  {
782
539
  action: ("read" | "write"),
783
540
  principal: ::String
784
- },
541
+ }
785
542
  ],
786
543
  ?revoke_permissions: Array[
787
544
  {
788
545
  action: ("read" | "write"),
789
546
  principal: ::String
790
- },
547
+ }
791
548
  ]
792
549
  ) -> _UpdateQAppPermissionsResponseSuccess
793
550
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateQAppPermissionsResponseSuccess
@@ -802,14 +559,7 @@ module Aws
802
559
  instance_id: ::String,
803
560
  session_id: ::String,
804
561
  ?values: Array[
805
- {
806
- card_id: ::String,
807
- value: ::String,
808
- submission_mutation: {
809
- submission_id: ::String,
810
- mutation_type: ("edit" | "delete" | "add")
811
- }?
812
- },
562
+ Params::card_value
813
563
  ]
814
564
  ) -> _UpdateQAppSessionResponseSuccess
815
565
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateQAppSessionResponseSuccess
data/sig/params.rbs ADDED
@@ -0,0 +1,145 @@
1
+ # WARNING ABOUT GENERATED CODE
2
+ #
3
+ # This file is generated. See the contributing guide for more information:
4
+ # https://github.com/aws/aws-sdk-ruby/blob/version-3/CONTRIBUTING.md
5
+ #
6
+ # WARNING ABOUT GENERATED CODE
7
+
8
+ module Aws
9
+ module QApps
10
+ module Params
11
+ type app_definition_input = {
12
+ cards: Array[
13
+ Params::card_input
14
+ ],
15
+ initial_prompt: ::String?
16
+ }
17
+
18
+ type document_attribute = {
19
+ name: ::String,
20
+ value: {
21
+ string_value: ::String?,
22
+ string_list_value: Array[::String]?,
23
+ long_value: ::Integer?,
24
+ date_value: ::Time?
25
+ }
26
+ }
27
+
28
+ type attribute_filter = {
29
+ and_all_filters: Array[
30
+ {
31
+ and_all_filters: untyped?,
32
+ or_all_filters: untyped?,
33
+ not_filter: untyped?,
34
+ equals_to: Params::document_attribute?,
35
+ contains_all: Params::document_attribute?,
36
+ contains_any: Params::document_attribute?,
37
+ greater_than: Params::document_attribute?,
38
+ greater_than_or_equals: Params::document_attribute?,
39
+ less_than: Params::document_attribute?,
40
+ less_than_or_equals: Params::document_attribute?
41
+ }
42
+ ]?,
43
+ or_all_filters: Array[
44
+ {
45
+ and_all_filters: untyped?,
46
+ or_all_filters: untyped?,
47
+ not_filter: untyped?,
48
+ equals_to: Params::document_attribute?,
49
+ contains_all: Params::document_attribute?,
50
+ contains_any: Params::document_attribute?,
51
+ greater_than: Params::document_attribute?,
52
+ greater_than_or_equals: Params::document_attribute?,
53
+ less_than: Params::document_attribute?,
54
+ less_than_or_equals: Params::document_attribute?
55
+ }
56
+ ]?,
57
+ not_filter: {
58
+ and_all_filters: Array[
59
+ untyped
60
+ ]?,
61
+ or_all_filters: Array[
62
+ untyped
63
+ ]?,
64
+ not_filter: untyped?,
65
+ equals_to: Params::document_attribute?,
66
+ contains_all: Params::document_attribute?,
67
+ contains_any: Params::document_attribute?,
68
+ greater_than: Params::document_attribute?,
69
+ greater_than_or_equals: Params::document_attribute?,
70
+ less_than: Params::document_attribute?,
71
+ less_than_or_equals: Params::document_attribute?
72
+ }?,
73
+ equals_to: Params::document_attribute?,
74
+ contains_all: Params::document_attribute?,
75
+ contains_any: Params::document_attribute?,
76
+ greater_than: Params::document_attribute?,
77
+ greater_than_or_equals: Params::document_attribute?,
78
+ less_than: Params::document_attribute?,
79
+ less_than_or_equals: Params::document_attribute?
80
+ }
81
+
82
+ type q_query_card_input = {
83
+ title: ::String,
84
+ id: ::String,
85
+ type: ("text-input" | "q-query" | "file-upload" | "q-plugin" | "form-input"),
86
+ prompt: ::String,
87
+ output_source: ("approved-sources" | "llm")?,
88
+ attribute_filter: Params::attribute_filter?
89
+ }
90
+
91
+ type q_plugin_card_input = {
92
+ title: ::String,
93
+ id: ::String,
94
+ type: ("text-input" | "q-query" | "file-upload" | "q-plugin" | "form-input"),
95
+ prompt: ::String,
96
+ plugin_id: ::String,
97
+ action_identifier: ::String?
98
+ }
99
+
100
+ type file_upload_card_input = {
101
+ title: ::String,
102
+ id: ::String,
103
+ type: ("text-input" | "q-query" | "file-upload" | "q-plugin" | "form-input"),
104
+ filename: ::String?,
105
+ file_id: ::String?,
106
+ allow_override: bool?
107
+ }
108
+
109
+ type form_input_card_input = {
110
+ title: ::String,
111
+ id: ::String,
112
+ type: ("text-input" | "q-query" | "file-upload" | "q-plugin" | "form-input"),
113
+ metadata: {
114
+ schema: {
115
+ }
116
+ },
117
+ compute_mode: ("append" | "replace")?
118
+ }
119
+
120
+ type card_input = {
121
+ text_input: {
122
+ title: ::String,
123
+ id: ::String,
124
+ type: ("text-input" | "q-query" | "file-upload" | "q-plugin" | "form-input"),
125
+ placeholder: ::String?,
126
+ default_value: ::String?
127
+ }?,
128
+ q_query: Params::q_query_card_input?,
129
+ q_plugin: Params::q_plugin_card_input?,
130
+ file_upload: Params::file_upload_card_input?,
131
+ form_input: Params::form_input_card_input?
132
+ }
133
+
134
+ type card_value = {
135
+ card_id: ::String,
136
+ value: ::String,
137
+ submission_mutation: {
138
+ submission_id: ::String,
139
+ mutation_type: ("edit" | "delete" | "add")
140
+ }?
141
+ }
142
+
143
+ end
144
+ end
145
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-qapps
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.31.0
4
+ version: 1.32.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -68,6 +68,7 @@ files:
68
68
  - lib/aws-sdk-qapps/waiters.rb
69
69
  - sig/client.rbs
70
70
  - sig/errors.rbs
71
+ - sig/params.rbs
71
72
  - sig/resource.rbs
72
73
  - sig/types.rbs
73
74
  - sig/waiters.rbs