aws-sdk-comprehend 1.64.0 → 1.66.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.
@@ -50,9 +50,6 @@ module Aws::Comprehend
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?
@@ -9,104 +9,46 @@
9
9
 
10
10
  module Aws::Comprehend
11
11
  class EndpointProvider
12
- def initialize(rule_set = nil)
13
- @@rule_set ||= begin
14
- endpoint_rules = Aws::Json.load(Base64.decode64(RULES))
15
- Aws::Endpoints::RuleSet.new(
16
- version: endpoint_rules['version'],
17
- service_id: endpoint_rules['serviceId'],
18
- parameters: endpoint_rules['parameters'],
19
- rules: endpoint_rules['rules']
20
- )
12
+ def resolve_endpoint(parameters)
13
+ region = parameters.region
14
+ use_dual_stack = parameters.use_dual_stack
15
+ use_fips = parameters.use_fips
16
+ endpoint = parameters.endpoint
17
+ if Aws::Endpoints::Matchers.set?(endpoint)
18
+ if Aws::Endpoints::Matchers.boolean_equals?(use_fips, true)
19
+ raise ArgumentError, "Invalid Configuration: FIPS and custom endpoint are not supported"
20
+ end
21
+ if Aws::Endpoints::Matchers.boolean_equals?(use_dual_stack, true)
22
+ raise ArgumentError, "Invalid Configuration: Dualstack and custom endpoint are not supported"
23
+ end
24
+ return Aws::Endpoints::Endpoint.new(url: endpoint, headers: {}, properties: {})
21
25
  end
22
- @provider = Aws::Endpoints::RulesProvider.new(rule_set || @@rule_set)
23
- 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://comprehend-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://comprehend-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://comprehend.#{region}.#{partition_result['dualStackDnsSuffix']}", headers: {}, properties: {})
43
+ end
44
+ raise ArgumentError, "DualStack is enabled but this partition does not support DualStack"
45
+ end
46
+ return Aws::Endpoints::Endpoint.new(url: "https://comprehend.#{region}.#{partition_result['dnsSuffix']}", headers: {}, properties: {})
47
+ end
48
+ end
49
+ raise ArgumentError, "Invalid Configuration: Missing Region"
50
+ raise ArgumentError, 'No endpoint could be resolved'
24
51
 
25
- def resolve_endpoint(parameters)
26
- @provider.resolve_endpoint(parameters)
27
52
  end
28
-
29
- # @api private
30
- RULES = <<-JSON
31
- eyJ2ZXJzaW9uIjoiMS4wIiwicGFyYW1ldGVycyI6eyJSZWdpb24iOnsiYnVp
32
- bHRJbiI6IkFXUzo6UmVnaW9uIiwicmVxdWlyZWQiOnRydWUsImRvY3VtZW50
33
- YXRpb24iOiJUaGUgQVdTIHJlZ2lvbiB1c2VkIHRvIGRpc3BhdGNoIHRoZSBy
34
- ZXF1ZXN0LiIsInR5cGUiOiJTdHJpbmcifSwiVXNlRHVhbFN0YWNrIjp7ImJ1
35
- aWx0SW4iOiJBV1M6OlVzZUR1YWxTdGFjayIsInJlcXVpcmVkIjp0cnVlLCJk
36
- ZWZhdWx0IjpmYWxzZSwiZG9jdW1lbnRhdGlvbiI6IldoZW4gdHJ1ZSwgdXNl
37
- IHRoZSBkdWFsLXN0YWNrIGVuZHBvaW50LiBJZiB0aGUgY29uZmlndXJlZCBl
38
- bmRwb2ludCBkb2VzIG5vdCBzdXBwb3J0IGR1YWwtc3RhY2ssIGRpc3BhdGNo
39
- aW5nIHRoZSByZXF1ZXN0IE1BWSByZXR1cm4gYW4gZXJyb3IuIiwidHlwZSI6
40
- IkJvb2xlYW4ifSwiVXNlRklQUyI6eyJidWlsdEluIjoiQVdTOjpVc2VGSVBT
41
- IiwicmVxdWlyZWQiOnRydWUsImRlZmF1bHQiOmZhbHNlLCJkb2N1bWVudGF0
42
- aW9uIjoiV2hlbiB0cnVlLCBzZW5kIHRoaXMgcmVxdWVzdCB0byB0aGUgRklQ
43
- Uy1jb21wbGlhbnQgcmVnaW9uYWwgZW5kcG9pbnQuIElmIHRoZSBjb25maWd1
44
- cmVkIGVuZHBvaW50IGRvZXMgbm90IGhhdmUgYSBGSVBTIGNvbXBsaWFudCBl
45
- bmRwb2ludCwgZGlzcGF0Y2hpbmcgdGhlIHJlcXVlc3Qgd2lsbCByZXR1cm4g
46
- YW4gZXJyb3IuIiwidHlwZSI6IkJvb2xlYW4ifSwiRW5kcG9pbnQiOnsiYnVp
47
- bHRJbiI6IlNESzo6RW5kcG9pbnQiLCJyZXF1aXJlZCI6ZmFsc2UsImRvY3Vt
48
- ZW50YXRpb24iOiJPdmVycmlkZSB0aGUgZW5kcG9pbnQgdXNlZCB0byBzZW5k
49
- IHRoaXMgcmVxdWVzdCIsInR5cGUiOiJTdHJpbmcifX0sInJ1bGVzIjpbeyJj
50
- b25kaXRpb25zIjpbeyJmbiI6ImF3cy5wYXJ0aXRpb24iLCJhcmd2IjpbeyJy
51
- ZWYiOiJSZWdpb24ifV0sImFzc2lnbiI6IlBhcnRpdGlvblJlc3VsdCJ9XSwi
52
- dHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W3siZm4iOiJp
53
- c1NldCIsImFyZ3YiOlt7InJlZiI6IkVuZHBvaW50In1dfSx7ImZuIjoicGFy
54
- c2VVUkwiLCJhcmd2IjpbeyJyZWYiOiJFbmRwb2ludCJ9XSwiYXNzaWduIjoi
55
- dXJsIn1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRpb25zIjpb
56
- eyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VGSVBT
57
- In0sdHJ1ZV19XSwiZXJyb3IiOiJJbnZhbGlkIENvbmZpZ3VyYXRpb246IEZJ
58
- UFMgYW5kIGN1c3RvbSBlbmRwb2ludCBhcmUgbm90IHN1cHBvcnRlZCIsInR5
59
- cGUiOiJlcnJvciJ9LHsiY29uZGl0aW9ucyI6W10sInR5cGUiOiJ0cmVlIiwi
60
- cnVsZXMiOlt7ImNvbmRpdGlvbnMiOlt7ImZuIjoiYm9vbGVhbkVxdWFscyIs
61
- ImFyZ3YiOlt7InJlZiI6IlVzZUR1YWxTdGFjayJ9LHRydWVdfV0sImVycm9y
62
- IjoiSW52YWxpZCBDb25maWd1cmF0aW9uOiBEdWFsc3RhY2sgYW5kIGN1c3Rv
63
- bSBlbmRwb2ludCBhcmUgbm90IHN1cHBvcnRlZCIsInR5cGUiOiJlcnJvciJ9
64
- LHsiY29uZGl0aW9ucyI6W10sImVuZHBvaW50Ijp7InVybCI6eyJyZWYiOiJF
65
- bmRwb2ludCJ9LCJwcm9wZXJ0aWVzIjp7fSwiaGVhZGVycyI6e319LCJ0eXBl
66
- IjoiZW5kcG9pbnQifV19XX0seyJjb25kaXRpb25zIjpbeyJmbiI6ImJvb2xl
67
- YW5FcXVhbHMiLCJhcmd2IjpbeyJyZWYiOiJVc2VGSVBTIn0sdHJ1ZV19LHsi
68
- Zm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVhbFN0
69
- YWNrIn0sdHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0
70
- aW9ucyI6W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJm
71
- biI6ImdldEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQi
72
- fSwic3VwcG9ydHNGSVBTIl19XX0seyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJh
73
- cmd2IjpbdHJ1ZSx7ImZuIjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBh
74
- cnRpdGlvblJlc3VsdCJ9LCJzdXBwb3J0c0R1YWxTdGFjayJdfV19XSwidHlw
75
- ZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6W10sImVuZHBvaW50
76
- Ijp7InVybCI6Imh0dHBzOi8vY29tcHJlaGVuZC1maXBzLntSZWdpb259LntQ
77
- YXJ0aXRpb25SZXN1bHQjZHVhbFN0YWNrRG5zU3VmZml4fSIsInByb3BlcnRp
78
- ZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9XX0seyJj
79
- b25kaXRpb25zIjpbXSwiZXJyb3IiOiJGSVBTIGFuZCBEdWFsU3RhY2sgYXJl
80
- IGVuYWJsZWQsIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0
81
- IG9uZSBvciBib3RoIiwidHlwZSI6ImVycm9yIn1dfSx7ImNvbmRpdGlvbnMi
82
- Olt7ImZuIjoiYm9vbGVhbkVxdWFscyIsImFyZ3YiOlt7InJlZiI6IlVzZUZJ
83
- UFMifSx0cnVlXX1dLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25kaXRp
84
- b25zIjpbeyJmbiI6ImJvb2xlYW5FcXVhbHMiLCJhcmd2IjpbdHJ1ZSx7ImZu
85
- IjoiZ2V0QXR0ciIsImFyZ3YiOlt7InJlZiI6IlBhcnRpdGlvblJlc3VsdCJ9
86
- LCJzdXBwb3J0c0ZJUFMiXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7
87
- ImNvbmRpdGlvbnMiOltdLCJ0eXBlIjoidHJlZSIsInJ1bGVzIjpbeyJjb25k
88
- aXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9jb21wcmVo
89
- ZW5kLWZpcHMue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkbnNTdWZmaXh9
90
- IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlwZSI6ImVuZHBv
91
- aW50In1dfV19LHsiY29uZGl0aW9ucyI6W10sImVycm9yIjoiRklQUyBpcyBl
92
- bmFibGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5vdCBzdXBwb3J0IEZJ
93
- UFMiLCJ0eXBlIjoiZXJyb3IifV19LHsiY29uZGl0aW9ucyI6W3siZm4iOiJi
94
- b29sZWFuRXF1YWxzIiwiYXJndiI6W3sicmVmIjoiVXNlRHVhbFN0YWNrIn0s
95
- dHJ1ZV19XSwidHlwZSI6InRyZWUiLCJydWxlcyI6W3siY29uZGl0aW9ucyI6
96
- W3siZm4iOiJib29sZWFuRXF1YWxzIiwiYXJndiI6W3RydWUseyJmbiI6Imdl
97
- dEF0dHIiLCJhcmd2IjpbeyJyZWYiOiJQYXJ0aXRpb25SZXN1bHQifSwic3Vw
98
- cG9ydHNEdWFsU3RhY2siXX1dfV0sInR5cGUiOiJ0cmVlIiwicnVsZXMiOlt7
99
- ImNvbmRpdGlvbnMiOltdLCJlbmRwb2ludCI6eyJ1cmwiOiJodHRwczovL2Nv
100
- bXByZWhlbmQue1JlZ2lvbn0ue1BhcnRpdGlvblJlc3VsdCNkdWFsU3RhY2tE
101
- bnNTdWZmaXh9IiwicHJvcGVydGllcyI6e30sImhlYWRlcnMiOnt9fSwidHlw
102
- ZSI6ImVuZHBvaW50In1dfSx7ImNvbmRpdGlvbnMiOltdLCJlcnJvciI6IkR1
103
- YWxTdGFjayBpcyBlbmFibGVkIGJ1dCB0aGlzIHBhcnRpdGlvbiBkb2VzIG5v
104
- dCBzdXBwb3J0IER1YWxTdGFjayIsInR5cGUiOiJlcnJvciJ9XX0seyJjb25k
105
- aXRpb25zIjpbXSwiZW5kcG9pbnQiOnsidXJsIjoiaHR0cHM6Ly9jb21wcmVo
106
- ZW5kLntSZWdpb259LntQYXJ0aXRpb25SZXN1bHQjZG5zU3VmZml4fSIsInBy
107
- b3BlcnRpZXMiOnt9LCJoZWFkZXJzIjp7fX0sInR5cGUiOiJlbmRwb2ludCJ9
108
- XX1dfQ==
109
-
110
- JSON
111
53
  end
112
54
  end
@@ -123,6 +123,20 @@ module Aws::Comprehend
123
123
  end
124
124
  end
125
125
 
126
+ class CreateDataset
127
+ def self.build(context)
128
+ unless context.config.regional_endpoint
129
+ endpoint = context.config.endpoint.to_s
130
+ end
131
+ Aws::Comprehend::EndpointParameters.new(
132
+ region: context.config.region,
133
+ use_dual_stack: context.config.use_dualstack_endpoint,
134
+ use_fips: context.config.use_fips_endpoint,
135
+ endpoint: endpoint,
136
+ )
137
+ end
138
+ end
139
+
126
140
  class CreateDocumentClassifier
127
141
  def self.build(context)
128
142
  unless context.config.regional_endpoint
@@ -165,6 +179,20 @@ module Aws::Comprehend
165
179
  end
166
180
  end
167
181
 
182
+ class CreateFlywheel
183
+ def self.build(context)
184
+ unless context.config.regional_endpoint
185
+ endpoint = context.config.endpoint.to_s
186
+ end
187
+ Aws::Comprehend::EndpointParameters.new(
188
+ region: context.config.region,
189
+ use_dual_stack: context.config.use_dualstack_endpoint,
190
+ use_fips: context.config.use_fips_endpoint,
191
+ endpoint: endpoint,
192
+ )
193
+ end
194
+ end
195
+
168
196
  class DeleteDocumentClassifier
169
197
  def self.build(context)
170
198
  unless context.config.regional_endpoint
@@ -207,6 +235,20 @@ module Aws::Comprehend
207
235
  end
208
236
  end
209
237
 
238
+ class DeleteFlywheel
239
+ def self.build(context)
240
+ unless context.config.regional_endpoint
241
+ endpoint = context.config.endpoint.to_s
242
+ end
243
+ Aws::Comprehend::EndpointParameters.new(
244
+ region: context.config.region,
245
+ use_dual_stack: context.config.use_dualstack_endpoint,
246
+ use_fips: context.config.use_fips_endpoint,
247
+ endpoint: endpoint,
248
+ )
249
+ end
250
+ end
251
+
210
252
  class DeleteResourcePolicy
211
253
  def self.build(context)
212
254
  unless context.config.regional_endpoint
@@ -221,6 +263,20 @@ module Aws::Comprehend
221
263
  end
222
264
  end
223
265
 
266
+ class DescribeDataset
267
+ def self.build(context)
268
+ unless context.config.regional_endpoint
269
+ endpoint = context.config.endpoint.to_s
270
+ end
271
+ Aws::Comprehend::EndpointParameters.new(
272
+ region: context.config.region,
273
+ use_dual_stack: context.config.use_dualstack_endpoint,
274
+ use_fips: context.config.use_fips_endpoint,
275
+ endpoint: endpoint,
276
+ )
277
+ end
278
+ end
279
+
224
280
  class DescribeDocumentClassificationJob
225
281
  def self.build(context)
226
282
  unless context.config.regional_endpoint
@@ -319,6 +375,34 @@ module Aws::Comprehend
319
375
  end
320
376
  end
321
377
 
378
+ class DescribeFlywheel
379
+ def self.build(context)
380
+ unless context.config.regional_endpoint
381
+ endpoint = context.config.endpoint.to_s
382
+ end
383
+ Aws::Comprehend::EndpointParameters.new(
384
+ region: context.config.region,
385
+ use_dual_stack: context.config.use_dualstack_endpoint,
386
+ use_fips: context.config.use_fips_endpoint,
387
+ endpoint: endpoint,
388
+ )
389
+ end
390
+ end
391
+
392
+ class DescribeFlywheelIteration
393
+ def self.build(context)
394
+ unless context.config.regional_endpoint
395
+ endpoint = context.config.endpoint.to_s
396
+ end
397
+ Aws::Comprehend::EndpointParameters.new(
398
+ region: context.config.region,
399
+ use_dual_stack: context.config.use_dualstack_endpoint,
400
+ use_fips: context.config.use_fips_endpoint,
401
+ endpoint: endpoint,
402
+ )
403
+ end
404
+ end
405
+
322
406
  class DescribeKeyPhrasesDetectionJob
323
407
  def self.build(context)
324
408
  unless context.config.regional_endpoint
@@ -515,6 +599,20 @@ module Aws::Comprehend
515
599
  end
516
600
  end
517
601
 
602
+ class ListDatasets
603
+ def self.build(context)
604
+ unless context.config.regional_endpoint
605
+ endpoint = context.config.endpoint.to_s
606
+ end
607
+ Aws::Comprehend::EndpointParameters.new(
608
+ region: context.config.region,
609
+ use_dual_stack: context.config.use_dualstack_endpoint,
610
+ use_fips: context.config.use_fips_endpoint,
611
+ endpoint: endpoint,
612
+ )
613
+ end
614
+ end
615
+
518
616
  class ListDocumentClassificationJobs
519
617
  def self.build(context)
520
618
  unless context.config.regional_endpoint
@@ -641,6 +739,34 @@ module Aws::Comprehend
641
739
  end
642
740
  end
643
741
 
742
+ class ListFlywheelIterationHistory
743
+ def self.build(context)
744
+ unless context.config.regional_endpoint
745
+ endpoint = context.config.endpoint.to_s
746
+ end
747
+ Aws::Comprehend::EndpointParameters.new(
748
+ region: context.config.region,
749
+ use_dual_stack: context.config.use_dualstack_endpoint,
750
+ use_fips: context.config.use_fips_endpoint,
751
+ endpoint: endpoint,
752
+ )
753
+ end
754
+ end
755
+
756
+ class ListFlywheels
757
+ def self.build(context)
758
+ unless context.config.regional_endpoint
759
+ endpoint = context.config.endpoint.to_s
760
+ end
761
+ Aws::Comprehend::EndpointParameters.new(
762
+ region: context.config.region,
763
+ use_dual_stack: context.config.use_dualstack_endpoint,
764
+ use_fips: context.config.use_fips_endpoint,
765
+ endpoint: endpoint,
766
+ )
767
+ end
768
+ end
769
+
644
770
  class ListKeyPhrasesDetectionJobs
645
771
  def self.build(context)
646
772
  unless context.config.regional_endpoint
@@ -795,6 +921,20 @@ module Aws::Comprehend
795
921
  end
796
922
  end
797
923
 
924
+ class StartFlywheelIteration
925
+ def self.build(context)
926
+ unless context.config.regional_endpoint
927
+ endpoint = context.config.endpoint.to_s
928
+ end
929
+ Aws::Comprehend::EndpointParameters.new(
930
+ region: context.config.region,
931
+ use_dual_stack: context.config.use_dualstack_endpoint,
932
+ use_fips: context.config.use_fips_endpoint,
933
+ endpoint: endpoint,
934
+ )
935
+ end
936
+ end
937
+
798
938
  class StartKeyPhrasesDetectionJob
799
939
  def self.build(context)
800
940
  unless context.config.regional_endpoint
@@ -1033,5 +1173,19 @@ module Aws::Comprehend
1033
1173
  end
1034
1174
  end
1035
1175
 
1176
+ class UpdateFlywheel
1177
+ def self.build(context)
1178
+ unless context.config.regional_endpoint
1179
+ endpoint = context.config.endpoint.to_s
1180
+ end
1181
+ Aws::Comprehend::EndpointParameters.new(
1182
+ region: context.config.region,
1183
+ use_dual_stack: context.config.use_dualstack_endpoint,
1184
+ use_fips: context.config.use_fips_endpoint,
1185
+ endpoint: endpoint,
1186
+ )
1187
+ end
1188
+ end
1189
+
1036
1190
  end
1037
1191
  end
@@ -72,20 +72,28 @@ module Aws::Comprehend
72
72
  Aws::Comprehend::Endpoints::ClassifyDocument.build(context)
73
73
  when :contains_pii_entities
74
74
  Aws::Comprehend::Endpoints::ContainsPiiEntities.build(context)
75
+ when :create_dataset
76
+ Aws::Comprehend::Endpoints::CreateDataset.build(context)
75
77
  when :create_document_classifier
76
78
  Aws::Comprehend::Endpoints::CreateDocumentClassifier.build(context)
77
79
  when :create_endpoint
78
80
  Aws::Comprehend::Endpoints::CreateEndpoint.build(context)
79
81
  when :create_entity_recognizer
80
82
  Aws::Comprehend::Endpoints::CreateEntityRecognizer.build(context)
83
+ when :create_flywheel
84
+ Aws::Comprehend::Endpoints::CreateFlywheel.build(context)
81
85
  when :delete_document_classifier
82
86
  Aws::Comprehend::Endpoints::DeleteDocumentClassifier.build(context)
83
87
  when :delete_endpoint
84
88
  Aws::Comprehend::Endpoints::DeleteEndpoint.build(context)
85
89
  when :delete_entity_recognizer
86
90
  Aws::Comprehend::Endpoints::DeleteEntityRecognizer.build(context)
91
+ when :delete_flywheel
92
+ Aws::Comprehend::Endpoints::DeleteFlywheel.build(context)
87
93
  when :delete_resource_policy
88
94
  Aws::Comprehend::Endpoints::DeleteResourcePolicy.build(context)
95
+ when :describe_dataset
96
+ Aws::Comprehend::Endpoints::DescribeDataset.build(context)
89
97
  when :describe_document_classification_job
90
98
  Aws::Comprehend::Endpoints::DescribeDocumentClassificationJob.build(context)
91
99
  when :describe_document_classifier
@@ -100,6 +108,10 @@ module Aws::Comprehend
100
108
  Aws::Comprehend::Endpoints::DescribeEntityRecognizer.build(context)
101
109
  when :describe_events_detection_job
102
110
  Aws::Comprehend::Endpoints::DescribeEventsDetectionJob.build(context)
111
+ when :describe_flywheel
112
+ Aws::Comprehend::Endpoints::DescribeFlywheel.build(context)
113
+ when :describe_flywheel_iteration
114
+ Aws::Comprehend::Endpoints::DescribeFlywheelIteration.build(context)
103
115
  when :describe_key_phrases_detection_job
104
116
  Aws::Comprehend::Endpoints::DescribeKeyPhrasesDetectionJob.build(context)
105
117
  when :describe_pii_entities_detection_job
@@ -128,6 +140,8 @@ module Aws::Comprehend
128
140
  Aws::Comprehend::Endpoints::DetectTargetedSentiment.build(context)
129
141
  when :import_model
130
142
  Aws::Comprehend::Endpoints::ImportModel.build(context)
143
+ when :list_datasets
144
+ Aws::Comprehend::Endpoints::ListDatasets.build(context)
131
145
  when :list_document_classification_jobs
132
146
  Aws::Comprehend::Endpoints::ListDocumentClassificationJobs.build(context)
133
147
  when :list_document_classifier_summaries
@@ -146,6 +160,10 @@ module Aws::Comprehend
146
160
  Aws::Comprehend::Endpoints::ListEntityRecognizers.build(context)
147
161
  when :list_events_detection_jobs
148
162
  Aws::Comprehend::Endpoints::ListEventsDetectionJobs.build(context)
163
+ when :list_flywheel_iteration_history
164
+ Aws::Comprehend::Endpoints::ListFlywheelIterationHistory.build(context)
165
+ when :list_flywheels
166
+ Aws::Comprehend::Endpoints::ListFlywheels.build(context)
149
167
  when :list_key_phrases_detection_jobs
150
168
  Aws::Comprehend::Endpoints::ListKeyPhrasesDetectionJobs.build(context)
151
169
  when :list_pii_entities_detection_jobs
@@ -168,6 +186,8 @@ module Aws::Comprehend
168
186
  Aws::Comprehend::Endpoints::StartEntitiesDetectionJob.build(context)
169
187
  when :start_events_detection_job
170
188
  Aws::Comprehend::Endpoints::StartEventsDetectionJob.build(context)
189
+ when :start_flywheel_iteration
190
+ Aws::Comprehend::Endpoints::StartFlywheelIteration.build(context)
171
191
  when :start_key_phrases_detection_job
172
192
  Aws::Comprehend::Endpoints::StartKeyPhrasesDetectionJob.build(context)
173
193
  when :start_pii_entities_detection_job
@@ -202,6 +222,8 @@ module Aws::Comprehend
202
222
  Aws::Comprehend::Endpoints::UntagResource.build(context)
203
223
  when :update_endpoint
204
224
  Aws::Comprehend::Endpoints::UpdateEndpoint.build(context)
225
+ when :update_flywheel
226
+ Aws::Comprehend::Endpoints::UpdateFlywheel.build(context)
205
227
  end
206
228
  end
207
229
  end