aws-sdk 1.13.0 → 1.14.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.
Files changed (42) hide show
  1. checksums.yaml +4 -4
  2. data/.yardopts +3 -3
  3. data/lib/aws/api_config/OpsWorks-2013-02-18.yml +55 -0
  4. data/lib/aws/api_config/SNS-2010-03-31.yml +0 -3
  5. data/lib/aws/api_config/SimpleWorkflow-2012-01-25.yml +30 -0
  6. data/lib/aws/auto_scaling/client.rb +0 -530
  7. data/lib/aws/cloud_formation/client.rb +0 -356
  8. data/lib/aws/cloud_front/client.rb +0 -1567
  9. data/lib/aws/cloud_search/client.rb +0 -578
  10. data/lib/aws/cloud_watch/client.rb +0 -445
  11. data/lib/aws/data_pipeline/client.rb +0 -396
  12. data/lib/aws/direct_connect/client.rb +0 -248
  13. data/lib/aws/dynamo_db.rb +0 -1
  14. data/lib/aws/dynamo_db/client.rb +70 -1
  15. data/lib/aws/dynamo_db/client_v2.rb +1 -1
  16. data/lib/aws/ec2/client.rb +0 -3942
  17. data/lib/aws/ec2/reserved_instances_offering_collection.rb +9 -3
  18. data/lib/aws/ec2/tag_collection.rb +1 -1
  19. data/lib/aws/elastic_beanstalk/client.rb +0 -898
  20. data/lib/aws/elastic_transcoder/client.rb +0 -1755
  21. data/lib/aws/elasticache/client.rb +0 -947
  22. data/lib/aws/elb/client.rb +0 -509
  23. data/lib/aws/emr/client.rb +0 -314
  24. data/lib/aws/glacier/client.rb +0 -278
  25. data/lib/aws/iam/client.rb +0 -1155
  26. data/lib/aws/import_export/client.rb +0 -96
  27. data/lib/aws/ops_works/client.rb +0 -1255
  28. data/lib/aws/rds/client.rb +0 -2367
  29. data/lib/aws/redshift/client.rb +0 -1458
  30. data/lib/aws/route_53/client.rb +0 -420
  31. data/lib/aws/simple_db/client.rb +2 -250
  32. data/lib/aws/simple_email_service/client.rb +0 -282
  33. data/lib/aws/simple_workflow/client.rb +0 -1248
  34. data/lib/aws/sns/client.rb +0 -283
  35. data/lib/aws/sns/message.rb +1 -1
  36. data/lib/aws/sqs/client.rb +0 -255
  37. data/lib/aws/storage_gateway/client.rb +0 -582
  38. data/lib/aws/sts/client.rb +0 -183
  39. data/lib/aws/support/client.rb +0 -232
  40. data/lib/aws/version.rb +1 -1
  41. metadata +2 -3
  42. data/lib/aws/dynamo_db/client_base.rb +0 -92
@@ -26,584 +26,6 @@ module AWS
26
26
 
27
27
  class Client::V20110201 < Client
28
28
 
29
- # client methods #
30
-
31
- # @!method create_domain(options = {})
32
- # Calls the CreateDomain API operation.
33
- # @param [Hash] options
34
- #
35
- # * `:domain_name` - *required* - (String)
36
- # @return [Core::Response]
37
- # The #data method of the response object returns
38
- # a hash with the following structure:
39
- #
40
- # * `:domain_status` - (Hash)
41
- # * `:domain_id` - (String)
42
- # * `:domain_name` - (String)
43
- # * `:created` - (Boolean)
44
- # * `:deleted` - (Boolean)
45
- # * `:num_searchable_docs` - (Integer)
46
- # * `:doc_service` - (Hash)
47
- # * `:arn` - (String)
48
- # * `:endpoint` - (String)
49
- # * `:search_service` - (Hash)
50
- # * `:arn` - (String)
51
- # * `:endpoint` - (String)
52
- # * `:requires_index_documents` - (Boolean)
53
- # * `:processing` - (Boolean)
54
- # * `:search_instance_type` - (String)
55
- # * `:search_partition_count` - (Integer)
56
- # * `:search_instance_count` - (Integer)
57
-
58
- # @!method define_index_field(options = {})
59
- # Calls the DefineIndexField API operation.
60
- # @param [Hash] options
61
- #
62
- # * `:domain_name` - *required* - (String)
63
- # * `:index_field` - *required* - (Hash)
64
- # * `:index_field_name` - *required* - (String) The name of a field
65
- # in the search index. Field names must begin with a letter and can
66
- # contain the following characters: a-z (lowercase), 0-9, and _
67
- # (underscore). Uppercase letters and hyphens are not allowed. The
68
- # names "body", "docid", and "text_relevance" are reserved and
69
- # cannot be specified as field or rank expression names.
70
- # * `:index_field_type` - *required* - (String) The type of field.
71
- # Based on this type, exactly one of the UIntOptions,
72
- # LiteralOptions or TextOptions must be present. Valid values
73
- # include:
74
- # * `uint`
75
- # * `literal`
76
- # * `text`
77
- # * `:u_int_options` - (Hash) Options for an unsigned integer field.
78
- # Present if IndexFieldType specifies the field is of type unsigned
79
- # integer.
80
- # * `:default_value` - (Integer) The default value for an unsigned
81
- # integer field.
82
- # * `:literal_options` - (Hash) Options for literal field. Present if
83
- # IndexFieldType specifies the field is of type literal.
84
- # * `:default_value` - (String) The default value for a literal
85
- # field.
86
- # * `:search_enabled` - (Boolean) Specifies whether search is
87
- # enabled for this field.
88
- # * `:facet_enabled` - (Boolean) Specifies whether facets are
89
- # enabled for this field.
90
- # * `:result_enabled` - (Boolean) Specifies whether values of this
91
- # field can be returned in search results and used for ranking.
92
- # * `:text_options` - (Hash) Options for text field. Present if
93
- # IndexFieldType specifies the field is of type text.
94
- # * `:default_value` - (String) The default value for a text field.
95
- # * `:facet_enabled` - (Boolean) Specifies whether facets are
96
- # enabled for this field.
97
- # * `:result_enabled` - (Boolean) Specifies whether values of this
98
- # field can be returned in search results and used for ranking.
99
- # * `:source_attributes` - (Array<Hash>) An optional list of source
100
- # attributes that provide data for this index field. If not
101
- # specified, the data is pulled from a source attribute with the
102
- # same name as this IndexField. When one or more source attributes
103
- # are specified, an optional data transformation can be applied to
104
- # the source data when populating the index field. You can
105
- # configure a maximum of 20 sources for an IndexField.
106
- # * `:source_data_function` - *required* - (String) Identifies the
107
- # transformation to apply when copying data from a source
108
- # attribute. Valid values include:
109
- # * `Copy`
110
- # * `TrimTitle`
111
- # * `Map`
112
- # * `:source_data_copy` - (Hash) Copies data from a source document
113
- # attribute to an IndexField.
114
- # * `:source_name` - *required* - (String) The name of the
115
- # document source field to add to this IndexField.
116
- # * `:default_value` - (String)
117
- # * `:source_data_trim_title` - (Hash) Trims common title words
118
- # from a source document attribute when populating an IndexField.
119
- # This can be used to create an IndexField you can use for
120
- # sorting.
121
- # * `:source_name` - *required* - (String) The name of the
122
- # document source field to add to this IndexField.
123
- # * `:default_value` - (String)
124
- # * `:separator` - (String) The separator that follows the text
125
- # to trim.
126
- # * `:language` - (String)
127
- # * `:source_data_map` - (Hash) Maps source document attribute
128
- # values to new values when populating the IndexField.
129
- # * `:source_name` - *required* - (String) The name of the
130
- # document source field to add to this IndexField.
131
- # * `:default_value` - (String)
132
- # * `:cases` - (Hash<String,String>) A map that translates source
133
- # field values to custom values.
134
- # @return [Core::Response]
135
- # The #data method of the response object returns
136
- # a hash with the following structure:
137
- #
138
- # * `:index_field` - (Hash)
139
- # * `:options` - (Hash)
140
- # * `:index_field_name` - (String)
141
- # * `:index_field_type` - (String)
142
- # * `:u_int_options` - (Hash)
143
- # * `:default_value` - (Integer)
144
- # * `:literal_options` - (Hash)
145
- # * `:default_value` - (String)
146
- # * `:search_enabled` - (Boolean)
147
- # * `:facet_enabled` - (Boolean)
148
- # * `:result_enabled` - (Boolean)
149
- # * `:text_options` - (Hash)
150
- # * `:default_value` - (String)
151
- # * `:facet_enabled` - (Boolean)
152
- # * `:result_enabled` - (Boolean)
153
- # * `:source_attributes` - (Array<Hash>)
154
- # * `:source_data_function` - (String)
155
- # * `:source_data_copy` - (Hash)
156
- # * `:source_name` - (String)
157
- # * `:default_value` - (String)
158
- # * `:source_data_trim_title` - (Hash)
159
- # * `:source_name` - (String)
160
- # * `:default_value` - (String)
161
- # * `:separator` - (String)
162
- # * `:language` - (String)
163
- # * `:source_data_map` - (Hash)
164
- # * `:source_name` - (String)
165
- # * `:default_value` - (String)
166
- # * `:cases` - (Hash<String,String>)
167
- # * `:status` - (Hash)
168
- # * `:creation_date` - (Time)
169
- # * `:update_date` - (Time)
170
- # * `:update_version` - (Integer)
171
- # * `:state` - (String)
172
-
173
- # @!method define_rank_expression(options = {})
174
- # Calls the DefineRankExpression API operation.
175
- # @param [Hash] options
176
- #
177
- # * `:domain_name` - *required* - (String)
178
- # * `:rank_expression` - *required* - (Hash)
179
- # * `:rank_name` - *required* - (String) The name of a rank
180
- # expression. Rank expression names must begin with a letter and
181
- # can contain the following characters: a-z (lowercase), 0-9, and _
182
- # (underscore). Uppercase letters and hyphens are not allowed. The
183
- # names "body", "docid", and "text_relevance" are reserved and
184
- # cannot be specified as field or rank expression names.
185
- # * `:rank_expression` - *required* - (String) The expression to
186
- # evaluate for ranking or thresholding while processing a search
187
- # request. The RankExpression syntax is based on JavaScript
188
- # expressions and supports: Integer, floating point, hex and octal
189
- # literals Shortcut evaluation of logical operators such that an
190
- # expression a || b evaluates to the value a if a is `true` without
191
- # evaluting b at all JavaScript order of precendence for operators
192
- # Arithmetic operators: + - * / % Boolean operators (including the
193
- # ternary operator) Bitwise operators Comparison operators Common
194
- # mathematic functions: abs ceil erf exp floor lgamma ln log2 log10
195
- # max min sqrt pow Trigonometric library functions: acosh acos
196
- # asinh asin atanh atan cosh cos sinh sin tanh tan Random
197
- # generation of a number between 0 and 1: rand Current time in
198
- # epoch: time The min max functions that operate on a variable
199
- # argument list Intermediate results are calculated as double
200
- # precision floating point values. The final return value of a
201
- # RankExpression is automatically converted from floating point to
202
- # a 32-bit unsigned integer by rounding to the nearest integer,
203
- # with a natural floor of 0 and a ceiling of max(uint32_t),
204
- # 4294967295. Mathematical errors such as dividing by 0 will fail
205
- # during evaluation and return a value of 0. The source data for a
206
- # RankExpression can be the name of an IndexField of type uint,
207
- # another RankExpression or the reserved name text_relevance. The
208
- # text_relevance source is defined to return an integer from 0 to
209
- # 1000 (inclusive) to indicate how relevant a document is to the
210
- # search request, taking into account repetition of search terms in
211
- # the document and proximity of search terms to each other in each
212
- # matching IndexField in the document. For more information about
213
- # using rank expressions to customize ranking, see the Amazon
214
- # CloudSearch Developer Guide.
215
- # @return [Core::Response]
216
- # The #data method of the response object returns
217
- # a hash with the following structure:
218
- #
219
- # * `:rank_expression` - (Hash)
220
- # * `:options` - (Hash)
221
- # * `:rank_name` - (String)
222
- # * `:rank_expression` - (String)
223
- # * `:status` - (Hash)
224
- # * `:creation_date` - (Time)
225
- # * `:update_date` - (Time)
226
- # * `:update_version` - (Integer)
227
- # * `:state` - (String)
228
-
229
- # @!method delete_domain(options = {})
230
- # Calls the DeleteDomain API operation.
231
- # @param [Hash] options
232
- #
233
- # * `:domain_name` - *required* - (String)
234
- # @return [Core::Response]
235
- # The #data method of the response object returns
236
- # a hash with the following structure:
237
- #
238
- # * `:domain_status` - (Hash)
239
- # * `:domain_id` - (String)
240
- # * `:domain_name` - (String)
241
- # * `:created` - (Boolean)
242
- # * `:deleted` - (Boolean)
243
- # * `:num_searchable_docs` - (Integer)
244
- # * `:doc_service` - (Hash)
245
- # * `:arn` - (String)
246
- # * `:endpoint` - (String)
247
- # * `:search_service` - (Hash)
248
- # * `:arn` - (String)
249
- # * `:endpoint` - (String)
250
- # * `:requires_index_documents` - (Boolean)
251
- # * `:processing` - (Boolean)
252
- # * `:search_instance_type` - (String)
253
- # * `:search_partition_count` - (Integer)
254
- # * `:search_instance_count` - (Integer)
255
-
256
- # @!method delete_index_field(options = {})
257
- # Calls the DeleteIndexField API operation.
258
- # @param [Hash] options
259
- #
260
- # * `:domain_name` - *required* - (String)
261
- # * `:index_field_name` - *required* - (String)
262
- # @return [Core::Response]
263
- # The #data method of the response object returns
264
- # a hash with the following structure:
265
- #
266
- # * `:index_field` - (Hash)
267
- # * `:options` - (Hash)
268
- # * `:index_field_name` - (String)
269
- # * `:index_field_type` - (String)
270
- # * `:u_int_options` - (Hash)
271
- # * `:default_value` - (Integer)
272
- # * `:literal_options` - (Hash)
273
- # * `:default_value` - (String)
274
- # * `:search_enabled` - (Boolean)
275
- # * `:facet_enabled` - (Boolean)
276
- # * `:result_enabled` - (Boolean)
277
- # * `:text_options` - (Hash)
278
- # * `:default_value` - (String)
279
- # * `:facet_enabled` - (Boolean)
280
- # * `:result_enabled` - (Boolean)
281
- # * `:source_attributes` - (Array<Hash>)
282
- # * `:source_data_function` - (String)
283
- # * `:source_data_copy` - (Hash)
284
- # * `:source_name` - (String)
285
- # * `:default_value` - (String)
286
- # * `:source_data_trim_title` - (Hash)
287
- # * `:source_name` - (String)
288
- # * `:default_value` - (String)
289
- # * `:separator` - (String)
290
- # * `:language` - (String)
291
- # * `:source_data_map` - (Hash)
292
- # * `:source_name` - (String)
293
- # * `:default_value` - (String)
294
- # * `:cases` - (Hash<String,String>)
295
- # * `:status` - (Hash)
296
- # * `:creation_date` - (Time)
297
- # * `:update_date` - (Time)
298
- # * `:update_version` - (Integer)
299
- # * `:state` - (String)
300
-
301
- # @!method delete_rank_expression(options = {})
302
- # Calls the DeleteRankExpression API operation.
303
- # @param [Hash] options
304
- #
305
- # * `:domain_name` - *required* - (String)
306
- # * `:rank_name` - *required* - (String) The name of the RankExpression
307
- # to delete.
308
- # @return [Core::Response]
309
- # The #data method of the response object returns
310
- # a hash with the following structure:
311
- #
312
- # * `:rank_expression` - (Hash)
313
- # * `:options` - (Hash)
314
- # * `:rank_name` - (String)
315
- # * `:rank_expression` - (String)
316
- # * `:status` - (Hash)
317
- # * `:creation_date` - (Time)
318
- # * `:update_date` - (Time)
319
- # * `:update_version` - (Integer)
320
- # * `:state` - (String)
321
-
322
- # @!method describe_default_search_field(options = {})
323
- # Calls the DescribeDefaultSearchField API operation.
324
- # @param [Hash] options
325
- #
326
- # * `:domain_name` - *required* - (String)
327
- # @return [Core::Response]
328
- # The #data method of the response object returns
329
- # a hash with the following structure:
330
- #
331
- # * `:default_search_field` - (Hash)
332
- # * `:options` - (String)
333
- # * `:status` - (Hash)
334
- # * `:creation_date` - (Time)
335
- # * `:update_date` - (Time)
336
- # * `:update_version` - (Integer)
337
- # * `:state` - (String)
338
-
339
- # @!method describe_domains(options = {})
340
- # Calls the DescribeDomains API operation.
341
- # @param [Hash] options
342
- #
343
- # * `:domain_names` - (Array<String>) Limits the DescribeDomains
344
- # response to the specified search domains.
345
- # @return [Core::Response]
346
- # The #data method of the response object returns
347
- # a hash with the following structure:
348
- #
349
- # * `:domain_status_list` - (Array<Hash>)
350
- # * `:domain_id` - (String)
351
- # * `:domain_name` - (String)
352
- # * `:created` - (Boolean)
353
- # * `:deleted` - (Boolean)
354
- # * `:num_searchable_docs` - (Integer)
355
- # * `:doc_service` - (Hash)
356
- # * `:arn` - (String)
357
- # * `:endpoint` - (String)
358
- # * `:search_service` - (Hash)
359
- # * `:arn` - (String)
360
- # * `:endpoint` - (String)
361
- # * `:requires_index_documents` - (Boolean)
362
- # * `:processing` - (Boolean)
363
- # * `:search_instance_type` - (String)
364
- # * `:search_partition_count` - (Integer)
365
- # * `:search_instance_count` - (Integer)
366
-
367
- # @!method describe_index_fields(options = {})
368
- # Calls the DescribeIndexFields API operation.
369
- # @param [Hash] options
370
- #
371
- # * `:domain_name` - *required* - (String)
372
- # * `:field_names` - (Array<String>) Limits the DescribeIndexFields
373
- # response to the specified fields.
374
- # @return [Core::Response]
375
- # The #data method of the response object returns
376
- # a hash with the following structure:
377
- #
378
- # * `:index_fields` - (Array<Hash>)
379
- # * `:options` - (Hash)
380
- # * `:index_field_name` - (String)
381
- # * `:index_field_type` - (String)
382
- # * `:u_int_options` - (Hash)
383
- # * `:default_value` - (Integer)
384
- # * `:literal_options` - (Hash)
385
- # * `:default_value` - (String)
386
- # * `:search_enabled` - (Boolean)
387
- # * `:facet_enabled` - (Boolean)
388
- # * `:result_enabled` - (Boolean)
389
- # * `:text_options` - (Hash)
390
- # * `:default_value` - (String)
391
- # * `:facet_enabled` - (Boolean)
392
- # * `:result_enabled` - (Boolean)
393
- # * `:source_attributes` - (Array<Hash>)
394
- # * `:source_data_function` - (String)
395
- # * `:source_data_copy` - (Hash)
396
- # * `:source_name` - (String)
397
- # * `:default_value` - (String)
398
- # * `:source_data_trim_title` - (Hash)
399
- # * `:source_name` - (String)
400
- # * `:default_value` - (String)
401
- # * `:separator` - (String)
402
- # * `:language` - (String)
403
- # * `:source_data_map` - (Hash)
404
- # * `:source_name` - (String)
405
- # * `:default_value` - (String)
406
- # * `:cases` - (Hash<String,String>)
407
- # * `:status` - (Hash)
408
- # * `:creation_date` - (Time)
409
- # * `:update_date` - (Time)
410
- # * `:update_version` - (Integer)
411
- # * `:state` - (String)
412
-
413
- # @!method describe_rank_expressions(options = {})
414
- # Calls the DescribeRankExpressions API operation.
415
- # @param [Hash] options
416
- #
417
- # * `:domain_name` - *required* - (String)
418
- # * `:rank_names` - (Array<String>) Limits the DescribeRankExpressions
419
- # response to the specified fields.
420
- # @return [Core::Response]
421
- # The #data method of the response object returns
422
- # a hash with the following structure:
423
- #
424
- # * `:rank_expressions` - (Array<Hash>)
425
- # * `:options` - (Hash)
426
- # * `:rank_name` - (String)
427
- # * `:rank_expression` - (String)
428
- # * `:status` - (Hash)
429
- # * `:creation_date` - (Time)
430
- # * `:update_date` - (Time)
431
- # * `:update_version` - (Integer)
432
- # * `:state` - (String)
433
-
434
- # @!method describe_service_access_policies(options = {})
435
- # Calls the DescribeServiceAccessPolicies API operation.
436
- # @param [Hash] options
437
- #
438
- # * `:domain_name` - *required* - (String)
439
- # @return [Core::Response]
440
- # The #data method of the response object returns
441
- # a hash with the following structure:
442
- #
443
- # * `:access_policies` - (Hash)
444
- # * `:options` - (String)
445
- # * `:status` - (Hash)
446
- # * `:creation_date` - (Time)
447
- # * `:update_date` - (Time)
448
- # * `:update_version` - (Integer)
449
- # * `:state` - (String)
450
-
451
- # @!method describe_stemming_options(options = {})
452
- # Calls the DescribeStemmingOptions API operation.
453
- # @param [Hash] options
454
- #
455
- # * `:domain_name` - *required* - (String)
456
- # @return [Core::Response]
457
- # The #data method of the response object returns
458
- # a hash with the following structure:
459
- #
460
- # * `:stems` - (Hash)
461
- # * `:options` - (String)
462
- # * `:status` - (Hash)
463
- # * `:creation_date` - (Time)
464
- # * `:update_date` - (Time)
465
- # * `:update_version` - (Integer)
466
- # * `:state` - (String)
467
-
468
- # @!method describe_stopword_options(options = {})
469
- # Calls the DescribeStopwordOptions API operation.
470
- # @param [Hash] options
471
- #
472
- # * `:domain_name` - *required* - (String)
473
- # @return [Core::Response]
474
- # The #data method of the response object returns
475
- # a hash with the following structure:
476
- #
477
- # * `:stopwords` - (Hash)
478
- # * `:options` - (String)
479
- # * `:status` - (Hash)
480
- # * `:creation_date` - (Time)
481
- # * `:update_date` - (Time)
482
- # * `:update_version` - (Integer)
483
- # * `:state` - (String)
484
-
485
- # @!method describe_synonym_options(options = {})
486
- # Calls the DescribeSynonymOptions API operation.
487
- # @param [Hash] options
488
- #
489
- # * `:domain_name` - *required* - (String)
490
- # @return [Core::Response]
491
- # The #data method of the response object returns
492
- # a hash with the following structure:
493
- #
494
- # * `:synonyms` - (Hash)
495
- # * `:options` - (String)
496
- # * `:status` - (Hash)
497
- # * `:creation_date` - (Time)
498
- # * `:update_date` - (Time)
499
- # * `:update_version` - (Integer)
500
- # * `:state` - (String)
501
-
502
- # @!method index_documents(options = {})
503
- # Calls the IndexDocuments API operation.
504
- # @param [Hash] options
505
- #
506
- # * `:domain_name` - *required* - (String)
507
- # @return [Core::Response]
508
- # The #data method of the response object returns
509
- # a hash with the following structure:
510
- #
511
- # * `:field_names` - (Array<String>)
512
-
513
- # @!method update_default_search_field(options = {})
514
- # Calls the UpdateDefaultSearchField API operation.
515
- # @param [Hash] options
516
- #
517
- # * `:domain_name` - *required* - (String)
518
- # * `:default_search_field` - *required* - (String) The IndexField to
519
- # use for search requests issued with the q parameter. The default is
520
- # an empty string, which automatically searches all text fields.
521
- # @return [Core::Response]
522
- # The #data method of the response object returns
523
- # a hash with the following structure:
524
- #
525
- # * `:default_search_field` - (Hash)
526
- # * `:options` - (String)
527
- # * `:status` - (Hash)
528
- # * `:creation_date` - (Time)
529
- # * `:update_date` - (Time)
530
- # * `:update_version` - (Integer)
531
- # * `:state` - (String)
532
-
533
- # @!method update_service_access_policies(options = {})
534
- # Calls the UpdateServiceAccessPolicies API operation.
535
- # @param [Hash] options
536
- #
537
- # * `:domain_name` - *required* - (String)
538
- # * `:access_policies` - *required* - (String)
539
- # @return [Core::Response]
540
- # The #data method of the response object returns
541
- # a hash with the following structure:
542
- #
543
- # * `:access_policies` - (Hash)
544
- # * `:options` - (String)
545
- # * `:status` - (Hash)
546
- # * `:creation_date` - (Time)
547
- # * `:update_date` - (Time)
548
- # * `:update_version` - (Integer)
549
- # * `:state` - (String)
550
-
551
- # @!method update_stemming_options(options = {})
552
- # Calls the UpdateStemmingOptions API operation.
553
- # @param [Hash] options
554
- #
555
- # * `:domain_name` - *required* - (String)
556
- # * `:stems` - *required* - (String)
557
- # @return [Core::Response]
558
- # The #data method of the response object returns
559
- # a hash with the following structure:
560
- #
561
- # * `:stems` - (Hash)
562
- # * `:options` - (String)
563
- # * `:status` - (Hash)
564
- # * `:creation_date` - (Time)
565
- # * `:update_date` - (Time)
566
- # * `:update_version` - (Integer)
567
- # * `:state` - (String)
568
-
569
- # @!method update_stopword_options(options = {})
570
- # Calls the UpdateStopwordOptions API operation.
571
- # @param [Hash] options
572
- #
573
- # * `:domain_name` - *required* - (String)
574
- # * `:stopwords` - *required* - (String)
575
- # @return [Core::Response]
576
- # The #data method of the response object returns
577
- # a hash with the following structure:
578
- #
579
- # * `:stopwords` - (Hash)
580
- # * `:options` - (String)
581
- # * `:status` - (Hash)
582
- # * `:creation_date` - (Time)
583
- # * `:update_date` - (Time)
584
- # * `:update_version` - (Integer)
585
- # * `:state` - (String)
586
-
587
- # @!method update_synonym_options(options = {})
588
- # Calls the UpdateSynonymOptions API operation.
589
- # @param [Hash] options
590
- #
591
- # * `:domain_name` - *required* - (String)
592
- # * `:synonyms` - *required* - (String)
593
- # @return [Core::Response]
594
- # The #data method of the response object returns
595
- # a hash with the following structure:
596
- #
597
- # * `:synonyms` - (Hash)
598
- # * `:options` - (String)
599
- # * `:status` - (Hash)
600
- # * `:creation_date` - (Time)
601
- # * `:update_date` - (Time)
602
- # * `:update_version` - (Integer)
603
- # * `:state` - (String)
604
-
605
- # end client methods #
606
-
607
29
  define_client_methods('2011-02-01')
608
30
 
609
31
  end