aws-sdk-lexmodelsv2 1.33.0 → 1.35.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-lexmodelsv2/client.rb +913 -20
- data/lib/aws-sdk-lexmodelsv2/client_api.rb +812 -0
- data/lib/aws-sdk-lexmodelsv2/endpoint_parameters.rb +0 -3
- data/lib/aws-sdk-lexmodelsv2/endpoint_provider.rb +27 -24
- data/lib/aws-sdk-lexmodelsv2/endpoints.rb +197 -0
- data/lib/aws-sdk-lexmodelsv2/plugins/endpoints.rb +28 -0
- data/lib/aws-sdk-lexmodelsv2/types.rb +2424 -196
- data/lib/aws-sdk-lexmodelsv2.rb +1 -1
- metadata +2 -2
|
@@ -50,9 +50,6 @@ module Aws::LexModelsV2
|
|
|
50
50
|
|
|
51
51
|
def initialize(options = {})
|
|
52
52
|
self[:region] = options[:region]
|
|
53
|
-
if self[:region].nil?
|
|
54
|
-
raise ArgumentError, "Missing required EndpointParameter: :region"
|
|
55
|
-
end
|
|
56
53
|
self[:use_dual_stack] = options[:use_dual_stack]
|
|
57
54
|
self[:use_dual_stack] = false if self[:use_dual_stack].nil?
|
|
58
55
|
if self[:use_dual_stack].nil?
|
|
@@ -14,36 +14,39 @@ module Aws::LexModelsV2
|
|
|
14
14
|
use_dual_stack = parameters.use_dual_stack
|
|
15
15
|
use_fips = parameters.use_fips
|
|
16
16
|
endpoint = parameters.endpoint
|
|
17
|
-
if
|
|
18
|
-
if Aws::Endpoints::Matchers.set?(endpoint)
|
|
19
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
|
20
|
-
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
|
21
|
-
end
|
|
22
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
|
23
|
-
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
|
24
|
-
end
|
|
25
|
-
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
|
26
|
-
end
|
|
27
|
-
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
|
28
|
-
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
|
29
|
-
return Aws::Endpoints::Endpoint.new(url: "https://models-v2-lex-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
30
|
-
end
|
|
31
|
-
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
|
32
|
-
end
|
|
17
|
+
if Aws::Endpoints::Matchers.set?(endpoint)
|
|
33
18
|
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
|
34
|
-
|
|
35
|
-
return Aws::Endpoints::Endpoint.new(url: "https://models-v2-lex-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
36
|
-
end
|
|
37
|
-
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
|
19
|
+
raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
|
|
38
20
|
end
|
|
39
21
|
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
|
40
|
-
|
|
41
|
-
|
|
22
|
+
raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
|
|
23
|
+
end
|
|
24
|
+
return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
|
|
25
|
+
end
|
|
26
|
+
if Aws::Endpoints::Matchers.set?(region)
|
|
27
|
+
if (partition_result = Aws::Endpoints::Matchers.aws_partition(region))
|
|
28
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true) && Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
|
29
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS")) && Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
|
30
|
+
return Aws::Endpoints::Endpoint.new(url: "https://models-v2-lex-fips.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
31
|
+
end
|
|
32
|
+
raise ArgumentError, "FIPS and DualStack are enabled, but this partition does not support one or both"
|
|
33
|
+
end
|
|
34
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
|
|
35
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsFIPS"))
|
|
36
|
+
return Aws::Endpoints::Endpoint.new(url: "https://models-v2-lex-fips.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
37
|
+
end
|
|
38
|
+
raise ArgumentError, "FIPS is enabled but this partition does not support FIPS"
|
|
39
|
+
end
|
|
40
|
+
if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
|
|
41
|
+
if Aws::Endpoints::Matchers.boolean_equals?(true, Aws::Endpoints::Matchers.attr(partition_result, "supportsDualStack"))
|
|
42
|
+
return Aws::Endpoints::Endpoint.new(url: "https://models-v2-lex.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
|
|
43
|
+
end
|
|
44
|
+
raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
|
|
42
45
|
end
|
|
43
|
-
|
|
46
|
+
return Aws::Endpoints::Endpoint.new(url: "https://models-v2-lex.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
44
47
|
end
|
|
45
|
-
return Aws::Endpoints::Endpoint.new(url: "https://models-v2-lex.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
|
|
46
48
|
end
|
|
49
|
+
raise ArgumentError, "Invalid Configuration: Missing Region"
|
|
47
50
|
raise ArgumentError, 'No endpoint could be resolved'
|
|
48
51
|
|
|
49
52
|
end
|
|
@@ -9,6 +9,7 @@
|
|
|
9
9
|
|
|
10
10
|
|
|
11
11
|
module Aws::LexModelsV2
|
|
12
|
+
# @api private
|
|
12
13
|
module Endpoints
|
|
13
14
|
|
|
14
15
|
class BatchCreateCustomVocabularyItem
|
|
@@ -207,6 +208,20 @@ module Aws::LexModelsV2
|
|
|
207
208
|
end
|
|
208
209
|
end
|
|
209
210
|
|
|
211
|
+
class CreateTestSetDiscrepancyReport
|
|
212
|
+
def self.build(context)
|
|
213
|
+
unless context.config.regional_endpoint
|
|
214
|
+
endpoint = context.config.endpoint.to_s
|
|
215
|
+
end
|
|
216
|
+
Aws::LexModelsV2::EndpointParameters.new(
|
|
217
|
+
region: context.config.region,
|
|
218
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
|
219
|
+
use_fips: context.config.use_fips_endpoint,
|
|
220
|
+
endpoint: endpoint,
|
|
221
|
+
)
|
|
222
|
+
end
|
|
223
|
+
end
|
|
224
|
+
|
|
210
225
|
class CreateUploadUrl
|
|
211
226
|
def self.build(context)
|
|
212
227
|
unless context.config.regional_endpoint
|
|
@@ -389,6 +404,20 @@ module Aws::LexModelsV2
|
|
|
389
404
|
end
|
|
390
405
|
end
|
|
391
406
|
|
|
407
|
+
class DeleteTestSet
|
|
408
|
+
def self.build(context)
|
|
409
|
+
unless context.config.regional_endpoint
|
|
410
|
+
endpoint = context.config.endpoint.to_s
|
|
411
|
+
end
|
|
412
|
+
Aws::LexModelsV2::EndpointParameters.new(
|
|
413
|
+
region: context.config.region,
|
|
414
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
|
415
|
+
use_fips: context.config.use_fips_endpoint,
|
|
416
|
+
endpoint: endpoint,
|
|
417
|
+
)
|
|
418
|
+
end
|
|
419
|
+
end
|
|
420
|
+
|
|
392
421
|
class DeleteUtterances
|
|
393
422
|
def self.build(context)
|
|
394
423
|
unless context.config.regional_endpoint
|
|
@@ -571,6 +600,76 @@ module Aws::LexModelsV2
|
|
|
571
600
|
end
|
|
572
601
|
end
|
|
573
602
|
|
|
603
|
+
class DescribeTestExecution
|
|
604
|
+
def self.build(context)
|
|
605
|
+
unless context.config.regional_endpoint
|
|
606
|
+
endpoint = context.config.endpoint.to_s
|
|
607
|
+
end
|
|
608
|
+
Aws::LexModelsV2::EndpointParameters.new(
|
|
609
|
+
region: context.config.region,
|
|
610
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
|
611
|
+
use_fips: context.config.use_fips_endpoint,
|
|
612
|
+
endpoint: endpoint,
|
|
613
|
+
)
|
|
614
|
+
end
|
|
615
|
+
end
|
|
616
|
+
|
|
617
|
+
class DescribeTestSet
|
|
618
|
+
def self.build(context)
|
|
619
|
+
unless context.config.regional_endpoint
|
|
620
|
+
endpoint = context.config.endpoint.to_s
|
|
621
|
+
end
|
|
622
|
+
Aws::LexModelsV2::EndpointParameters.new(
|
|
623
|
+
region: context.config.region,
|
|
624
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
|
625
|
+
use_fips: context.config.use_fips_endpoint,
|
|
626
|
+
endpoint: endpoint,
|
|
627
|
+
)
|
|
628
|
+
end
|
|
629
|
+
end
|
|
630
|
+
|
|
631
|
+
class DescribeTestSetDiscrepancyReport
|
|
632
|
+
def self.build(context)
|
|
633
|
+
unless context.config.regional_endpoint
|
|
634
|
+
endpoint = context.config.endpoint.to_s
|
|
635
|
+
end
|
|
636
|
+
Aws::LexModelsV2::EndpointParameters.new(
|
|
637
|
+
region: context.config.region,
|
|
638
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
|
639
|
+
use_fips: context.config.use_fips_endpoint,
|
|
640
|
+
endpoint: endpoint,
|
|
641
|
+
)
|
|
642
|
+
end
|
|
643
|
+
end
|
|
644
|
+
|
|
645
|
+
class DescribeTestSetGeneration
|
|
646
|
+
def self.build(context)
|
|
647
|
+
unless context.config.regional_endpoint
|
|
648
|
+
endpoint = context.config.endpoint.to_s
|
|
649
|
+
end
|
|
650
|
+
Aws::LexModelsV2::EndpointParameters.new(
|
|
651
|
+
region: context.config.region,
|
|
652
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
|
653
|
+
use_fips: context.config.use_fips_endpoint,
|
|
654
|
+
endpoint: endpoint,
|
|
655
|
+
)
|
|
656
|
+
end
|
|
657
|
+
end
|
|
658
|
+
|
|
659
|
+
class GetTestExecutionArtifactsUrl
|
|
660
|
+
def self.build(context)
|
|
661
|
+
unless context.config.regional_endpoint
|
|
662
|
+
endpoint = context.config.endpoint.to_s
|
|
663
|
+
end
|
|
664
|
+
Aws::LexModelsV2::EndpointParameters.new(
|
|
665
|
+
region: context.config.region,
|
|
666
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
|
667
|
+
use_fips: context.config.use_fips_endpoint,
|
|
668
|
+
endpoint: endpoint,
|
|
669
|
+
)
|
|
670
|
+
end
|
|
671
|
+
end
|
|
672
|
+
|
|
574
673
|
class ListAggregatedUtterances
|
|
575
674
|
def self.build(context)
|
|
576
675
|
unless context.config.regional_endpoint
|
|
@@ -795,6 +894,62 @@ module Aws::LexModelsV2
|
|
|
795
894
|
end
|
|
796
895
|
end
|
|
797
896
|
|
|
897
|
+
class ListTestExecutionResultItems
|
|
898
|
+
def self.build(context)
|
|
899
|
+
unless context.config.regional_endpoint
|
|
900
|
+
endpoint = context.config.endpoint.to_s
|
|
901
|
+
end
|
|
902
|
+
Aws::LexModelsV2::EndpointParameters.new(
|
|
903
|
+
region: context.config.region,
|
|
904
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
|
905
|
+
use_fips: context.config.use_fips_endpoint,
|
|
906
|
+
endpoint: endpoint,
|
|
907
|
+
)
|
|
908
|
+
end
|
|
909
|
+
end
|
|
910
|
+
|
|
911
|
+
class ListTestExecutions
|
|
912
|
+
def self.build(context)
|
|
913
|
+
unless context.config.regional_endpoint
|
|
914
|
+
endpoint = context.config.endpoint.to_s
|
|
915
|
+
end
|
|
916
|
+
Aws::LexModelsV2::EndpointParameters.new(
|
|
917
|
+
region: context.config.region,
|
|
918
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
|
919
|
+
use_fips: context.config.use_fips_endpoint,
|
|
920
|
+
endpoint: endpoint,
|
|
921
|
+
)
|
|
922
|
+
end
|
|
923
|
+
end
|
|
924
|
+
|
|
925
|
+
class ListTestSetRecords
|
|
926
|
+
def self.build(context)
|
|
927
|
+
unless context.config.regional_endpoint
|
|
928
|
+
endpoint = context.config.endpoint.to_s
|
|
929
|
+
end
|
|
930
|
+
Aws::LexModelsV2::EndpointParameters.new(
|
|
931
|
+
region: context.config.region,
|
|
932
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
|
933
|
+
use_fips: context.config.use_fips_endpoint,
|
|
934
|
+
endpoint: endpoint,
|
|
935
|
+
)
|
|
936
|
+
end
|
|
937
|
+
end
|
|
938
|
+
|
|
939
|
+
class ListTestSets
|
|
940
|
+
def self.build(context)
|
|
941
|
+
unless context.config.regional_endpoint
|
|
942
|
+
endpoint = context.config.endpoint.to_s
|
|
943
|
+
end
|
|
944
|
+
Aws::LexModelsV2::EndpointParameters.new(
|
|
945
|
+
region: context.config.region,
|
|
946
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
|
947
|
+
use_fips: context.config.use_fips_endpoint,
|
|
948
|
+
endpoint: endpoint,
|
|
949
|
+
)
|
|
950
|
+
end
|
|
951
|
+
end
|
|
952
|
+
|
|
798
953
|
class SearchAssociatedTranscripts
|
|
799
954
|
def self.build(context)
|
|
800
955
|
unless context.config.regional_endpoint
|
|
@@ -837,6 +992,34 @@ module Aws::LexModelsV2
|
|
|
837
992
|
end
|
|
838
993
|
end
|
|
839
994
|
|
|
995
|
+
class StartTestExecution
|
|
996
|
+
def self.build(context)
|
|
997
|
+
unless context.config.regional_endpoint
|
|
998
|
+
endpoint = context.config.endpoint.to_s
|
|
999
|
+
end
|
|
1000
|
+
Aws::LexModelsV2::EndpointParameters.new(
|
|
1001
|
+
region: context.config.region,
|
|
1002
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
|
1003
|
+
use_fips: context.config.use_fips_endpoint,
|
|
1004
|
+
endpoint: endpoint,
|
|
1005
|
+
)
|
|
1006
|
+
end
|
|
1007
|
+
end
|
|
1008
|
+
|
|
1009
|
+
class StartTestSetGeneration
|
|
1010
|
+
def self.build(context)
|
|
1011
|
+
unless context.config.regional_endpoint
|
|
1012
|
+
endpoint = context.config.endpoint.to_s
|
|
1013
|
+
end
|
|
1014
|
+
Aws::LexModelsV2::EndpointParameters.new(
|
|
1015
|
+
region: context.config.region,
|
|
1016
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
|
1017
|
+
use_fips: context.config.use_fips_endpoint,
|
|
1018
|
+
endpoint: endpoint,
|
|
1019
|
+
)
|
|
1020
|
+
end
|
|
1021
|
+
end
|
|
1022
|
+
|
|
840
1023
|
class StopBotRecommendation
|
|
841
1024
|
def self.build(context)
|
|
842
1025
|
unless context.config.regional_endpoint
|
|
@@ -1005,5 +1188,19 @@ module Aws::LexModelsV2
|
|
|
1005
1188
|
end
|
|
1006
1189
|
end
|
|
1007
1190
|
|
|
1191
|
+
class UpdateTestSet
|
|
1192
|
+
def self.build(context)
|
|
1193
|
+
unless context.config.regional_endpoint
|
|
1194
|
+
endpoint = context.config.endpoint.to_s
|
|
1195
|
+
end
|
|
1196
|
+
Aws::LexModelsV2::EndpointParameters.new(
|
|
1197
|
+
region: context.config.region,
|
|
1198
|
+
use_dual_stack: context.config.use_dualstack_endpoint,
|
|
1199
|
+
use_fips: context.config.use_fips_endpoint,
|
|
1200
|
+
endpoint: endpoint,
|
|
1201
|
+
)
|
|
1202
|
+
end
|
|
1203
|
+
end
|
|
1204
|
+
|
|
1008
1205
|
end
|
|
1009
1206
|
end
|
|
@@ -84,6 +84,8 @@ module Aws::LexModelsV2
|
|
|
84
84
|
Aws::LexModelsV2::Endpoints::CreateSlot.build(context)
|
|
85
85
|
when :create_slot_type
|
|
86
86
|
Aws::LexModelsV2::Endpoints::CreateSlotType.build(context)
|
|
87
|
+
when :create_test_set_discrepancy_report
|
|
88
|
+
Aws::LexModelsV2::Endpoints::CreateTestSetDiscrepancyReport.build(context)
|
|
87
89
|
when :create_upload_url
|
|
88
90
|
Aws::LexModelsV2::Endpoints::CreateUploadUrl.build(context)
|
|
89
91
|
when :delete_bot
|
|
@@ -110,6 +112,8 @@ module Aws::LexModelsV2
|
|
|
110
112
|
Aws::LexModelsV2::Endpoints::DeleteSlot.build(context)
|
|
111
113
|
when :delete_slot_type
|
|
112
114
|
Aws::LexModelsV2::Endpoints::DeleteSlotType.build(context)
|
|
115
|
+
when :delete_test_set
|
|
116
|
+
Aws::LexModelsV2::Endpoints::DeleteTestSet.build(context)
|
|
113
117
|
when :delete_utterances
|
|
114
118
|
Aws::LexModelsV2::Endpoints::DeleteUtterances.build(context)
|
|
115
119
|
when :describe_bot
|
|
@@ -136,6 +140,16 @@ module Aws::LexModelsV2
|
|
|
136
140
|
Aws::LexModelsV2::Endpoints::DescribeSlot.build(context)
|
|
137
141
|
when :describe_slot_type
|
|
138
142
|
Aws::LexModelsV2::Endpoints::DescribeSlotType.build(context)
|
|
143
|
+
when :describe_test_execution
|
|
144
|
+
Aws::LexModelsV2::Endpoints::DescribeTestExecution.build(context)
|
|
145
|
+
when :describe_test_set
|
|
146
|
+
Aws::LexModelsV2::Endpoints::DescribeTestSet.build(context)
|
|
147
|
+
when :describe_test_set_discrepancy_report
|
|
148
|
+
Aws::LexModelsV2::Endpoints::DescribeTestSetDiscrepancyReport.build(context)
|
|
149
|
+
when :describe_test_set_generation
|
|
150
|
+
Aws::LexModelsV2::Endpoints::DescribeTestSetGeneration.build(context)
|
|
151
|
+
when :get_test_execution_artifacts_url
|
|
152
|
+
Aws::LexModelsV2::Endpoints::GetTestExecutionArtifactsUrl.build(context)
|
|
139
153
|
when :list_aggregated_utterances
|
|
140
154
|
Aws::LexModelsV2::Endpoints::ListAggregatedUtterances.build(context)
|
|
141
155
|
when :list_bot_aliases
|
|
@@ -168,12 +182,24 @@ module Aws::LexModelsV2
|
|
|
168
182
|
Aws::LexModelsV2::Endpoints::ListSlots.build(context)
|
|
169
183
|
when :list_tags_for_resource
|
|
170
184
|
Aws::LexModelsV2::Endpoints::ListTagsForResource.build(context)
|
|
185
|
+
when :list_test_execution_result_items
|
|
186
|
+
Aws::LexModelsV2::Endpoints::ListTestExecutionResultItems.build(context)
|
|
187
|
+
when :list_test_executions
|
|
188
|
+
Aws::LexModelsV2::Endpoints::ListTestExecutions.build(context)
|
|
189
|
+
when :list_test_set_records
|
|
190
|
+
Aws::LexModelsV2::Endpoints::ListTestSetRecords.build(context)
|
|
191
|
+
when :list_test_sets
|
|
192
|
+
Aws::LexModelsV2::Endpoints::ListTestSets.build(context)
|
|
171
193
|
when :search_associated_transcripts
|
|
172
194
|
Aws::LexModelsV2::Endpoints::SearchAssociatedTranscripts.build(context)
|
|
173
195
|
when :start_bot_recommendation
|
|
174
196
|
Aws::LexModelsV2::Endpoints::StartBotRecommendation.build(context)
|
|
175
197
|
when :start_import
|
|
176
198
|
Aws::LexModelsV2::Endpoints::StartImport.build(context)
|
|
199
|
+
when :start_test_execution
|
|
200
|
+
Aws::LexModelsV2::Endpoints::StartTestExecution.build(context)
|
|
201
|
+
when :start_test_set_generation
|
|
202
|
+
Aws::LexModelsV2::Endpoints::StartTestSetGeneration.build(context)
|
|
177
203
|
when :stop_bot_recommendation
|
|
178
204
|
Aws::LexModelsV2::Endpoints::StopBotRecommendation.build(context)
|
|
179
205
|
when :tag_resource
|
|
@@ -198,6 +224,8 @@ module Aws::LexModelsV2
|
|
|
198
224
|
Aws::LexModelsV2::Endpoints::UpdateSlot.build(context)
|
|
199
225
|
when :update_slot_type
|
|
200
226
|
Aws::LexModelsV2::Endpoints::UpdateSlotType.build(context)
|
|
227
|
+
when :update_test_set
|
|
228
|
+
Aws::LexModelsV2::Endpoints::UpdateTestSet.build(context)
|
|
201
229
|
end
|
|
202
230
|
end
|
|
203
231
|
end
|