aws-sdk-connectcases 1.67.0 → 1.68.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: b98e60d3c0ec995d234db2c264b70786e47908b242d0b721d99c365ad2ffd3fe
4
- data.tar.gz: c274ce312d7dd116b67af41413f7ecc9c7478605608716e96f1ddd37ddd6a632
3
+ metadata.gz: 3bf45710b80b6fd083340e00a999dc89ad4e2fccf4c8838bde2d8a612a8ca6d9
4
+ data.tar.gz: 76ce965338c736faad0f648fdc0cfe348be6ffd419b723fda78f881a9636241c
5
5
  SHA512:
6
- metadata.gz: 21645d797816dc7495d5e8c83a86c0ad38f6768fec35ac0db1bc1d3c23bd92376da129d1ee044ccc8edfd984b20e495157d6e6d203155c6a2d20d1931c03e77c
7
- data.tar.gz: 4380f90cf46de609cc394d38327159cdc383d5dc51d31053beb6b92756369dea805b424a97b9c47451d333bf813345a625496cb838cb9b3f37556fa2d519aba5
6
+ metadata.gz: 9e85140efefb5a60fd1c6c8ebb5380738e738facd1090fbedc066f8921970dd5d382f9c0ccb9050d65ca1b0bfc9090312db7feab0d444d0a34fa97f9054495c4
7
+ data.tar.gz: 4ac67881fb65ea7f291967ca6be552ced78be600a05ee4c4a599eca7119fe6b47894517d34ebaceb2b084a7df7cbed00cc3db6188a34f7839e0c2417c8d41416
data/CHANGELOG.md CHANGED
@@ -1,6 +1,11 @@
1
1
  Unreleased Changes
2
2
  ------------------
3
3
 
4
+ 1.68.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.67.0 (2026-05-13)
5
10
  ------------------
6
11
 
data/VERSION CHANGED
@@ -1 +1 @@
1
- 1.67.0
1
+ 1.68.0
@@ -3634,7 +3634,7 @@ module Aws::ConnectCases
3634
3634
  tracer: tracer
3635
3635
  )
3636
3636
  context[:gem_name] = 'aws-sdk-connectcases'
3637
- context[:gem_version] = '1.67.0'
3637
+ context[:gem_version] = '1.68.0'
3638
3638
  Seahorse::Client::Request.new(handlers, context)
3639
3639
  end
3640
3640
 
@@ -55,7 +55,7 @@ module Aws::ConnectCases
55
55
  autoload :EndpointProvider, 'aws-sdk-connectcases/endpoint_provider'
56
56
  autoload :Endpoints, 'aws-sdk-connectcases/endpoints'
57
57
 
58
- GEM_VERSION = '1.67.0'
58
+ GEM_VERSION = '1.68.0'
59
59
 
60
60
  end
61
61
 
data/sig/client.rbs CHANGED
@@ -90,7 +90,7 @@ module Aws
90
90
  case_rules: Array[
91
91
  {
92
92
  id: ::String
93
- },
93
+ }
94
94
  ]
95
95
  ) -> _BatchGetCaseRuleResponseSuccess
96
96
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchGetCaseRuleResponseSuccess
@@ -106,7 +106,7 @@ module Aws
106
106
  fields: Array[
107
107
  {
108
108
  id: ::String
109
- },
109
+ }
110
110
  ]
111
111
  ) -> _BatchGetFieldResponseSuccess
112
112
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchGetFieldResponseSuccess
@@ -124,7 +124,7 @@ module Aws
124
124
  name: ::String,
125
125
  value: ::String,
126
126
  active: bool
127
- },
127
+ }
128
128
  ]
129
129
  ) -> _BatchPutFieldOptionsResponseSuccess
130
130
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _BatchPutFieldOptionsResponseSuccess
@@ -139,17 +139,7 @@ module Aws
139
139
  domain_id: ::String,
140
140
  template_id: ::String,
141
141
  fields: Array[
142
- {
143
- id: ::String,
144
- value: {
145
- string_value: ::String?,
146
- double_value: ::Float?,
147
- boolean_value: bool?,
148
- empty_value: {
149
- }?,
150
- user_arn_value: ::String?
151
- }
152
- },
142
+ Params::field_value
153
143
  ],
154
144
  ?client_token: ::String,
155
145
  ?performed_by: {
@@ -170,96 +160,7 @@ module Aws
170
160
  domain_id: ::String,
171
161
  name: ::String,
172
162
  ?description: ::String,
173
- rule: {
174
- required: {
175
- default_value: bool,
176
- conditions: Array[
177
- {
178
- equal_to: {
179
- operand_one: {
180
- field_id: ::String?
181
- },
182
- operand_two: {
183
- string_value: ::String?,
184
- boolean_value: bool?,
185
- double_value: ::Float?,
186
- empty_value: {
187
- }?
188
- },
189
- result: bool
190
- }?,
191
- not_equal_to: {
192
- operand_one: {
193
- field_id: ::String?
194
- },
195
- operand_two: {
196
- string_value: ::String?,
197
- boolean_value: bool?,
198
- double_value: ::Float?,
199
- empty_value: {
200
- }?
201
- },
202
- result: bool
203
- }?,
204
- and_all: {
205
- conditions: untyped
206
- }?,
207
- or_all: {
208
- conditions: untyped
209
- }?
210
- },
211
- ]
212
- }?,
213
- field_options: {
214
- parent_field_id: ::String?,
215
- child_field_id: ::String?,
216
- parent_child_field_options_mappings: Array[
217
- {
218
- parent_field_option_value: ::String,
219
- child_field_option_values: Array[::String]
220
- },
221
- ]
222
- }?,
223
- hidden: {
224
- default_value: bool,
225
- conditions: Array[
226
- {
227
- equal_to: {
228
- operand_one: {
229
- field_id: ::String?
230
- },
231
- operand_two: {
232
- string_value: ::String?,
233
- boolean_value: bool?,
234
- double_value: ::Float?,
235
- empty_value: {
236
- }?
237
- },
238
- result: bool
239
- }?,
240
- not_equal_to: {
241
- operand_one: {
242
- field_id: ::String?
243
- },
244
- operand_two: {
245
- string_value: ::String?,
246
- boolean_value: bool?,
247
- double_value: ::Float?,
248
- empty_value: {
249
- }?
250
- },
251
- result: bool
252
- }?,
253
- and_all: {
254
- conditions: untyped
255
- }?,
256
- or_all: {
257
- conditions: untyped
258
- }?
259
- },
260
- ]
261
- }?
262
- }
163
+ rule: Params::case_rule_details
263
164
  ) -> _CreateCaseRuleResponseSuccess
264
165
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateCaseRuleResponseSuccess
265
166
 
@@ -303,38 +204,7 @@ module Aws
303
204
  def create_layout: (
304
205
  domain_id: ::String,
305
206
  name: ::String,
306
- content: {
307
- basic: {
308
- top_panel: {
309
- sections: Array[
310
- {
311
- field_group: {
312
- name: ::String?,
313
- fields: Array[
314
- {
315
- id: ::String
316
- },
317
- ]
318
- }?
319
- },
320
- ]?
321
- }?,
322
- more_info: {
323
- sections: Array[
324
- {
325
- field_group: {
326
- name: ::String?,
327
- fields: Array[
328
- {
329
- id: ::String
330
- },
331
- ]
332
- }?
333
- },
334
- ]?
335
- }?
336
- }?
337
- }
207
+ content: Params::layout_content
338
208
  ) -> _CreateLayoutResponseSuccess
339
209
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateLayoutResponseSuccess
340
210
 
@@ -365,14 +235,7 @@ module Aws
365
235
  type: ("CaseField"),
366
236
  field_id: ::String?,
367
237
  target_field_values: Array[
368
- {
369
- string_value: ::String?,
370
- double_value: ::Float?,
371
- boolean_value: bool?,
372
- empty_value: {
373
- }?,
374
- user_arn_value: ::String?
375
- },
238
+ Params::field_value_union
376
239
  ]?,
377
240
  target_sla_minutes: ::Integer
378
241
  }?
@@ -382,17 +245,7 @@ module Aws
382
245
  }?,
383
246
  custom: {
384
247
  fields: Array[
385
- {
386
- id: ::String,
387
- value: {
388
- string_value: ::String?,
389
- double_value: ::Float?,
390
- boolean_value: bool?,
391
- empty_value: {
392
- }?,
393
- user_arn_value: ::String?
394
- }
395
- },
248
+ Params::field_value
396
249
  ]
397
250
  }?
398
251
  },
@@ -419,20 +272,20 @@ module Aws
419
272
  ?required_fields: Array[
420
273
  {
421
274
  field_id: ::String
422
- },
275
+ }
423
276
  ],
424
277
  ?status: ("Active" | "Inactive"),
425
278
  ?rules: Array[
426
279
  {
427
280
  case_rule_id: ::String,
428
281
  field_id: ::String?
429
- },
282
+ }
430
283
  ],
431
284
  ?tag_propagation_configurations: Array[
432
285
  {
433
286
  resource_type: ("Cases"),
434
287
  tag_map: Hash[::String, ::String]
435
- },
288
+ }
436
289
  ]
437
290
  ) -> _CreateTemplateResponseSuccess
438
291
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _CreateTemplateResponseSuccess
@@ -521,7 +374,7 @@ module Aws
521
374
  fields: Array[
522
375
  {
523
376
  id: ::String
524
- },
377
+ }
525
378
  ],
526
379
  ?next_token: ::String
527
380
  ) -> _GetCaseResponseSuccess
@@ -724,7 +577,7 @@ module Aws
724
577
  fields: Array[
725
578
  {
726
579
  id: ::String
727
- },
580
+ }
728
581
  ]
729
582
  }?,
730
583
  related_item_data: {
@@ -746,109 +599,13 @@ module Aws
746
599
  ?max_results: ::Integer,
747
600
  ?next_token: ::String,
748
601
  ?filters: Array[
749
- {
750
- contact: {
751
- channel: Array[::String]?,
752
- contact_arn: ::String?
753
- }?,
754
- comment: {
755
- }?,
756
- file: {
757
- file_arn: ::String?
758
- }?,
759
- sla: {
760
- name: ::String?,
761
- status: ("Active" | "Overdue" | "Met" | "NotMet")?
762
- }?,
763
- connect_case: {
764
- case_id: ::String?
765
- }?,
766
- custom: {
767
- fields: {
768
- field: {
769
- equal_to: {
770
- id: ::String,
771
- value: {
772
- string_value: ::String?,
773
- double_value: ::Float?,
774
- boolean_value: bool?,
775
- empty_value: {
776
- }?,
777
- user_arn_value: ::String?
778
- }
779
- }?,
780
- contains: {
781
- id: ::String,
782
- value: {
783
- string_value: ::String?,
784
- double_value: ::Float?,
785
- boolean_value: bool?,
786
- empty_value: {
787
- }?,
788
- user_arn_value: ::String?
789
- }
790
- }?,
791
- greater_than: {
792
- id: ::String,
793
- value: {
794
- string_value: ::String?,
795
- double_value: ::Float?,
796
- boolean_value: bool?,
797
- empty_value: {
798
- }?,
799
- user_arn_value: ::String?
800
- }
801
- }?,
802
- greater_than_or_equal_to: {
803
- id: ::String,
804
- value: {
805
- string_value: ::String?,
806
- double_value: ::Float?,
807
- boolean_value: bool?,
808
- empty_value: {
809
- }?,
810
- user_arn_value: ::String?
811
- }
812
- }?,
813
- less_than: {
814
- id: ::String,
815
- value: {
816
- string_value: ::String?,
817
- double_value: ::Float?,
818
- boolean_value: bool?,
819
- empty_value: {
820
- }?,
821
- user_arn_value: ::String?
822
- }
823
- }?,
824
- less_than_or_equal_to: {
825
- id: ::String,
826
- value: {
827
- string_value: ::String?,
828
- double_value: ::Float?,
829
- boolean_value: bool?,
830
- empty_value: {
831
- }?,
832
- user_arn_value: ::String?
833
- }
834
- }?
835
- }?,
836
- not: untyped?,
837
- and_all: Array[
838
- untyped,
839
- ]?,
840
- or_all: Array[
841
- untyped,
842
- ]?
843
- }?
844
- }?
845
- },
602
+ Params::related_item_type_filter
846
603
  ],
847
604
  ?sorts: Array[
848
605
  {
849
606
  sort_property: ("AssociationTime" | "CaseId"),
850
607
  sort_order: ("Asc" | "Desc")
851
- },
608
+ }
852
609
  ]
853
610
  ) -> _SearchAllRelatedItemsResponseSuccess
854
611
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchAllRelatedItemsResponseSuccess
@@ -865,99 +622,17 @@ module Aws
865
622
  ?max_results: ::Integer,
866
623
  ?next_token: ::String,
867
624
  ?search_term: ::String,
868
- ?filter: {
869
- field: {
870
- equal_to: {
871
- id: ::String,
872
- value: {
873
- string_value: ::String?,
874
- double_value: ::Float?,
875
- boolean_value: bool?,
876
- empty_value: {
877
- }?,
878
- user_arn_value: ::String?
879
- }
880
- }?,
881
- contains: {
882
- id: ::String,
883
- value: {
884
- string_value: ::String?,
885
- double_value: ::Float?,
886
- boolean_value: bool?,
887
- empty_value: {
888
- }?,
889
- user_arn_value: ::String?
890
- }
891
- }?,
892
- greater_than: {
893
- id: ::String,
894
- value: {
895
- string_value: ::String?,
896
- double_value: ::Float?,
897
- boolean_value: bool?,
898
- empty_value: {
899
- }?,
900
- user_arn_value: ::String?
901
- }
902
- }?,
903
- greater_than_or_equal_to: {
904
- id: ::String,
905
- value: {
906
- string_value: ::String?,
907
- double_value: ::Float?,
908
- boolean_value: bool?,
909
- empty_value: {
910
- }?,
911
- user_arn_value: ::String?
912
- }
913
- }?,
914
- less_than: {
915
- id: ::String,
916
- value: {
917
- string_value: ::String?,
918
- double_value: ::Float?,
919
- boolean_value: bool?,
920
- empty_value: {
921
- }?,
922
- user_arn_value: ::String?
923
- }
924
- }?,
925
- less_than_or_equal_to: {
926
- id: ::String,
927
- value: {
928
- string_value: ::String?,
929
- double_value: ::Float?,
930
- boolean_value: bool?,
931
- empty_value: {
932
- }?,
933
- user_arn_value: ::String?
934
- }
935
- }?
936
- }?,
937
- not: untyped?,
938
- tag: {
939
- equal_to: {
940
- key: ::String?,
941
- value: ::String?
942
- }?
943
- }?,
944
- and_all: Array[
945
- untyped,
946
- ]?,
947
- or_all: Array[
948
- untyped,
949
- ]?
950
- },
625
+ ?filter: Params::case_filter,
951
626
  ?sorts: Array[
952
627
  {
953
628
  field_id: ::String,
954
629
  sort_order: ("Asc" | "Desc")
955
- },
630
+ }
956
631
  ],
957
632
  ?fields: Array[
958
633
  {
959
634
  id: ::String
960
- },
635
+ }
961
636
  ]
962
637
  ) -> _SearchCasesResponseSuccess
963
638
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchCasesResponseSuccess
@@ -974,103 +649,7 @@ module Aws
974
649
  ?max_results: ::Integer,
975
650
  ?next_token: ::String,
976
651
  ?filters: Array[
977
- {
978
- contact: {
979
- channel: Array[::String]?,
980
- contact_arn: ::String?
981
- }?,
982
- comment: {
983
- }?,
984
- file: {
985
- file_arn: ::String?
986
- }?,
987
- sla: {
988
- name: ::String?,
989
- status: ("Active" | "Overdue" | "Met" | "NotMet")?
990
- }?,
991
- connect_case: {
992
- case_id: ::String?
993
- }?,
994
- custom: {
995
- fields: {
996
- field: {
997
- equal_to: {
998
- id: ::String,
999
- value: {
1000
- string_value: ::String?,
1001
- double_value: ::Float?,
1002
- boolean_value: bool?,
1003
- empty_value: {
1004
- }?,
1005
- user_arn_value: ::String?
1006
- }
1007
- }?,
1008
- contains: {
1009
- id: ::String,
1010
- value: {
1011
- string_value: ::String?,
1012
- double_value: ::Float?,
1013
- boolean_value: bool?,
1014
- empty_value: {
1015
- }?,
1016
- user_arn_value: ::String?
1017
- }
1018
- }?,
1019
- greater_than: {
1020
- id: ::String,
1021
- value: {
1022
- string_value: ::String?,
1023
- double_value: ::Float?,
1024
- boolean_value: bool?,
1025
- empty_value: {
1026
- }?,
1027
- user_arn_value: ::String?
1028
- }
1029
- }?,
1030
- greater_than_or_equal_to: {
1031
- id: ::String,
1032
- value: {
1033
- string_value: ::String?,
1034
- double_value: ::Float?,
1035
- boolean_value: bool?,
1036
- empty_value: {
1037
- }?,
1038
- user_arn_value: ::String?
1039
- }
1040
- }?,
1041
- less_than: {
1042
- id: ::String,
1043
- value: {
1044
- string_value: ::String?,
1045
- double_value: ::Float?,
1046
- boolean_value: bool?,
1047
- empty_value: {
1048
- }?,
1049
- user_arn_value: ::String?
1050
- }
1051
- }?,
1052
- less_than_or_equal_to: {
1053
- id: ::String,
1054
- value: {
1055
- string_value: ::String?,
1056
- double_value: ::Float?,
1057
- boolean_value: bool?,
1058
- empty_value: {
1059
- }?,
1060
- user_arn_value: ::String?
1061
- }
1062
- }?
1063
- }?,
1064
- not: untyped?,
1065
- and_all: Array[
1066
- untyped,
1067
- ]?,
1068
- or_all: Array[
1069
- untyped,
1070
- ]?
1071
- }?
1072
- }?
1073
- },
652
+ Params::related_item_type_filter
1074
653
  ]
1075
654
  ) -> _SearchRelatedItemsResponseSuccess
1076
655
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _SearchRelatedItemsResponseSuccess
@@ -1097,17 +676,7 @@ module Aws
1097
676
  domain_id: ::String,
1098
677
  case_id: ::String,
1099
678
  fields: Array[
1100
- {
1101
- id: ::String,
1102
- value: {
1103
- string_value: ::String?,
1104
- double_value: ::Float?,
1105
- boolean_value: bool?,
1106
- empty_value: {
1107
- }?,
1108
- user_arn_value: ::String?
1109
- }
1110
- },
679
+ Params::field_value
1111
680
  ],
1112
681
  ?performed_by: {
1113
682
  user_arn: ::String?,
@@ -1125,96 +694,7 @@ module Aws
1125
694
  case_rule_id: ::String,
1126
695
  ?name: ::String,
1127
696
  ?description: ::String,
1128
- ?rule: {
1129
- required: {
1130
- default_value: bool,
1131
- conditions: Array[
1132
- {
1133
- equal_to: {
1134
- operand_one: {
1135
- field_id: ::String?
1136
- },
1137
- operand_two: {
1138
- string_value: ::String?,
1139
- boolean_value: bool?,
1140
- double_value: ::Float?,
1141
- empty_value: {
1142
- }?
1143
- },
1144
- result: bool
1145
- }?,
1146
- not_equal_to: {
1147
- operand_one: {
1148
- field_id: ::String?
1149
- },
1150
- operand_two: {
1151
- string_value: ::String?,
1152
- boolean_value: bool?,
1153
- double_value: ::Float?,
1154
- empty_value: {
1155
- }?
1156
- },
1157
- result: bool
1158
- }?,
1159
- and_all: {
1160
- conditions: untyped
1161
- }?,
1162
- or_all: {
1163
- conditions: untyped
1164
- }?
1165
- },
1166
- ]
1167
- }?,
1168
- field_options: {
1169
- parent_field_id: ::String?,
1170
- child_field_id: ::String?,
1171
- parent_child_field_options_mappings: Array[
1172
- {
1173
- parent_field_option_value: ::String,
1174
- child_field_option_values: Array[::String]
1175
- },
1176
- ]
1177
- }?,
1178
- hidden: {
1179
- default_value: bool,
1180
- conditions: Array[
1181
- {
1182
- equal_to: {
1183
- operand_one: {
1184
- field_id: ::String?
1185
- },
1186
- operand_two: {
1187
- string_value: ::String?,
1188
- boolean_value: bool?,
1189
- double_value: ::Float?,
1190
- empty_value: {
1191
- }?
1192
- },
1193
- result: bool
1194
- }?,
1195
- not_equal_to: {
1196
- operand_one: {
1197
- field_id: ::String?
1198
- },
1199
- operand_two: {
1200
- string_value: ::String?,
1201
- boolean_value: bool?,
1202
- double_value: ::Float?,
1203
- empty_value: {
1204
- }?
1205
- },
1206
- result: bool
1207
- }?,
1208
- and_all: {
1209
- conditions: untyped
1210
- }?,
1211
- or_all: {
1212
- conditions: untyped
1213
- }?
1214
- },
1215
- ]
1216
- }?
1217
- }
697
+ ?rule: Params::case_rule_details
1218
698
  ) -> _UpdateCaseRuleResponseSuccess
1219
699
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateCaseRuleResponseSuccess
1220
700
 
@@ -1243,38 +723,7 @@ module Aws
1243
723
  domain_id: ::String,
1244
724
  layout_id: ::String,
1245
725
  ?name: ::String,
1246
- ?content: {
1247
- basic: {
1248
- top_panel: {
1249
- sections: Array[
1250
- {
1251
- field_group: {
1252
- name: ::String?,
1253
- fields: Array[
1254
- {
1255
- id: ::String
1256
- },
1257
- ]
1258
- }?
1259
- },
1260
- ]?
1261
- }?,
1262
- more_info: {
1263
- sections: Array[
1264
- {
1265
- field_group: {
1266
- name: ::String?,
1267
- fields: Array[
1268
- {
1269
- id: ::String
1270
- },
1271
- ]
1272
- }?
1273
- },
1274
- ]?
1275
- }?
1276
- }?
1277
- }
726
+ ?content: Params::layout_content
1278
727
  ) -> _UpdateLayoutResponseSuccess
1279
728
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateLayoutResponseSuccess
1280
729
 
@@ -1301,17 +750,7 @@ module Aws
1301
750
  }?,
1302
751
  custom: {
1303
752
  fields: Array[
1304
- {
1305
- id: ::String,
1306
- value: {
1307
- string_value: ::String?,
1308
- double_value: ::Float?,
1309
- boolean_value: bool?,
1310
- empty_value: {
1311
- }?,
1312
- user_arn_value: ::String?
1313
- }
1314
- },
753
+ Params::field_value
1315
754
  ]
1316
755
  }?
1317
756
  },
@@ -1337,20 +776,20 @@ module Aws
1337
776
  ?required_fields: Array[
1338
777
  {
1339
778
  field_id: ::String
1340
- },
779
+ }
1341
780
  ],
1342
781
  ?status: ("Active" | "Inactive"),
1343
782
  ?rules: Array[
1344
783
  {
1345
784
  case_rule_id: ::String,
1346
785
  field_id: ::String?
1347
- },
786
+ }
1348
787
  ],
1349
788
  ?tag_propagation_configurations: Array[
1350
789
  {
1351
790
  resource_type: ("Cases"),
1352
791
  tag_map: Hash[::String, ::String]
1353
- },
792
+ }
1354
793
  ]
1355
794
  ) -> _UpdateTemplateResponseSuccess
1356
795
  | (Hash[Symbol, untyped] params, ?Hash[Symbol, untyped] options) -> _UpdateTemplateResponseSuccess
data/sig/params.rbs ADDED
@@ -0,0 +1,248 @@
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 ConnectCases
10
+ module Params
11
+ type field_value_union = {
12
+ string_value: ::String?,
13
+ double_value: ::Float?,
14
+ boolean_value: bool?,
15
+ empty_value: {
16
+ }?,
17
+ user_arn_value: ::String?
18
+ }
19
+
20
+ type field_value = {
21
+ id: ::String,
22
+ value: Params::field_value_union
23
+ }
24
+
25
+ type required_case_rule = {
26
+ default_value: bool,
27
+ conditions: Array[
28
+ Params::boolean_condition
29
+ ]
30
+ }
31
+
32
+ type field_options_case_rule = {
33
+ parent_field_id: ::String?,
34
+ child_field_id: ::String?,
35
+ parent_child_field_options_mappings: Array[
36
+ {
37
+ parent_field_option_value: ::String,
38
+ child_field_option_values: Array[::String]
39
+ }
40
+ ]
41
+ }
42
+
43
+ type hidden_case_rule = {
44
+ default_value: bool,
45
+ conditions: Array[
46
+ Params::boolean_condition
47
+ ]
48
+ }
49
+
50
+ type case_rule_details = {
51
+ required: Params::required_case_rule?,
52
+ field_options: Params::field_options_case_rule?,
53
+ hidden: Params::hidden_case_rule?
54
+ }
55
+
56
+ type boolean_operands = {
57
+ operand_one: {
58
+ field_id: ::String?
59
+ },
60
+ operand_two: {
61
+ string_value: ::String?,
62
+ boolean_value: bool?,
63
+ double_value: ::Float?,
64
+ empty_value: {
65
+ }?
66
+ },
67
+ result: bool
68
+ }
69
+
70
+ type boolean_condition = {
71
+ equal_to: Params::boolean_operands?,
72
+ not_equal_to: Params::boolean_operands?,
73
+ and_all: {
74
+ conditions: Array[
75
+ {
76
+ equal_to: Params::boolean_operands?,
77
+ not_equal_to: Params::boolean_operands?,
78
+ and_all: untyped?,
79
+ or_all: untyped?
80
+ }
81
+ ]
82
+ }?,
83
+ or_all: {
84
+ conditions: Array[
85
+ {
86
+ equal_to: Params::boolean_operands?,
87
+ not_equal_to: Params::boolean_operands?,
88
+ and_all: untyped?,
89
+ or_all: untyped?
90
+ }
91
+ ]
92
+ }?
93
+ }
94
+
95
+ type layout_sections = {
96
+ sections: Array[
97
+ Params::section
98
+ ]?
99
+ }
100
+
101
+ type basic_layout = {
102
+ top_panel: Params::layout_sections?,
103
+ more_info: Params::layout_sections?
104
+ }
105
+
106
+ type layout_content = {
107
+ basic: Params::basic_layout?
108
+ }
109
+
110
+ type section = {
111
+ field_group: {
112
+ name: ::String?,
113
+ fields: Array[
114
+ {
115
+ id: ::String
116
+ }
117
+ ]
118
+ }?
119
+ }
120
+
121
+ type field_filter = {
122
+ equal_to: Params::field_value?,
123
+ contains: Params::field_value?,
124
+ greater_than: Params::field_value?,
125
+ greater_than_or_equal_to: Params::field_value?,
126
+ less_than: Params::field_value?,
127
+ less_than_or_equal_to: Params::field_value?
128
+ }
129
+
130
+ type custom_fields_filter = {
131
+ field: Params::field_filter?,
132
+ not: {
133
+ field: Params::field_filter?,
134
+ not: untyped?,
135
+ and_all: Array[
136
+ untyped
137
+ ]?,
138
+ or_all: Array[
139
+ untyped
140
+ ]?
141
+ }?,
142
+ and_all: Array[
143
+ {
144
+ field: Params::field_filter?,
145
+ not: untyped?,
146
+ and_all: untyped?,
147
+ or_all: Array[
148
+ untyped
149
+ ]?
150
+ }
151
+ ]?,
152
+ or_all: Array[
153
+ {
154
+ field: Params::field_filter?,
155
+ not: untyped?,
156
+ and_all: Array[
157
+ untyped
158
+ ]?,
159
+ or_all: untyped?
160
+ }
161
+ ]?
162
+ }
163
+
164
+ type custom_filter = {
165
+ fields: Params::custom_fields_filter?
166
+ }
167
+
168
+ type related_item_type_filter = {
169
+ contact: {
170
+ channel: Array[::String]?,
171
+ contact_arn: ::String?
172
+ }?,
173
+ comment: {
174
+ }?,
175
+ file: {
176
+ file_arn: ::String?
177
+ }?,
178
+ sla: {
179
+ name: ::String?,
180
+ status: ("Active" | "Overdue" | "Met" | "NotMet")?
181
+ }?,
182
+ connect_case: {
183
+ case_id: ::String?
184
+ }?,
185
+ custom: Params::custom_filter?
186
+ }
187
+
188
+ type case_filter = {
189
+ field: Params::field_filter?,
190
+ not: {
191
+ field: Params::field_filter?,
192
+ not: untyped?,
193
+ tag: {
194
+ equal_to: {
195
+ key: ::String?,
196
+ value: ::String?
197
+ }?
198
+ }?,
199
+ and_all: Array[
200
+ untyped
201
+ ]?,
202
+ or_all: Array[
203
+ untyped
204
+ ]?
205
+ }?,
206
+ tag: {
207
+ equal_to: {
208
+ key: ::String?,
209
+ value: ::String?
210
+ }?
211
+ }?,
212
+ and_all: Array[
213
+ {
214
+ field: Params::field_filter?,
215
+ not: untyped?,
216
+ tag: {
217
+ equal_to: {
218
+ key: ::String?,
219
+ value: ::String?
220
+ }?
221
+ }?,
222
+ and_all: untyped?,
223
+ or_all: Array[
224
+ untyped
225
+ ]?
226
+ }
227
+ ]?,
228
+ or_all: Array[
229
+ {
230
+ field: Params::field_filter?,
231
+ not: untyped?,
232
+ tag: {
233
+ equal_to: {
234
+ key: ::String?,
235
+ value: ::String?
236
+ }?
237
+ }?,
238
+ and_all: Array[
239
+ untyped
240
+ ]?,
241
+ or_all: untyped?
242
+ }
243
+ ]?
244
+ }
245
+
246
+ end
247
+ end
248
+ end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-connectcases
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.67.0
4
+ version: 1.68.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
@@ -68,6 +68,7 @@ files:
68
68
  - lib/aws-sdk-connectcases/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