aws-sdk-cloudsearch 1.18.0 → 1.23.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
- SHA1:
3
- metadata.gz: 3a2f21339be0e1b77d429deb90cfa6414dcb3413
4
- data.tar.gz: c555cca2b0f3e8f7b36bb8a9f0463cf2c6719b9d
2
+ SHA256:
3
+ metadata.gz: 04c077a942c9b83336a674ca7ffaf540596a6b1fbbd436f7cd9b37d49693c97c
4
+ data.tar.gz: c79bc5d54e82c15be4ec4942476832d5c562aac67eabe6e8f7f4872c3daa0548
5
5
  SHA512:
6
- metadata.gz: fa49c52e5596d165ec91e857281f3f2f65b613b4689e7d02c7a042809e87b8c66a3bb9b4e3e33d1c38057d5f01445616142f11a2e47d36dde8a943be8fca85e3
7
- data.tar.gz: 95b0e0245afeb9f1dabf86babb9339bde686aee94640cd8988c94dabb4cfd37a2b22b0beb6da742426d3883499901ddb140fbbae569ed488cdd2aa165c01d17b
6
+ metadata.gz: 0ff96382f3f7c9ebd434ea6cbd77a71edbdb9e5a0b529a8695ad837f045d955a2c1ebd5a9eee595c8ac4ac84fa671753899e94492efeba4d00eaf036033fefdc
7
+ data.tar.gz: 164d955e8791447c39fad32f5d572b36ec6b68f4ed0fa8a59265f267db19ea1d3f43f7a3b7d9c514a76543525a6955d96a792b86bf675abf1d60bf9f6ea013f7
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -45,6 +47,6 @@ require_relative 'aws-sdk-cloudsearch/customizations'
45
47
  # @service
46
48
  module Aws::CloudSearch
47
49
 
48
- GEM_VERSION = '1.18.0'
50
+ GEM_VERSION = '1.23.0'
49
51
 
50
52
  end
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -24,6 +26,7 @@ require 'aws-sdk-core/plugins/jsonvalue_converter.rb'
24
26
  require 'aws-sdk-core/plugins/client_metrics_plugin.rb'
25
27
  require 'aws-sdk-core/plugins/client_metrics_send_plugin.rb'
26
28
  require 'aws-sdk-core/plugins/transfer_encoding.rb'
29
+ require 'aws-sdk-core/plugins/http_checksum.rb'
27
30
  require 'aws-sdk-core/plugins/signature_v4.rb'
28
31
  require 'aws-sdk-core/plugins/protocols/query.rb'
29
32
 
@@ -32,11 +35,11 @@ Aws::Plugins::GlobalConfiguration.add_identifier(:cloudsearch)
32
35
  module Aws::CloudSearch
33
36
  # An API client for CloudSearch. To construct a client, you need to configure a `:region` and `:credentials`.
34
37
  #
35
- # client = Aws::CloudSearch::Client.new(
36
- # region: region_name,
37
- # credentials: credentials,
38
- # # ...
39
- # )
38
+ # client = Aws::CloudSearch::Client.new(
39
+ # region: region_name,
40
+ # credentials: credentials,
41
+ # # ...
42
+ # )
40
43
  #
41
44
  # For details on configuring region and credentials see
42
45
  # the [developer guide](/sdk-for-ruby/v3/developer-guide/setup-config.html).
@@ -69,6 +72,7 @@ module Aws::CloudSearch
69
72
  add_plugin(Aws::Plugins::ClientMetricsPlugin)
70
73
  add_plugin(Aws::Plugins::ClientMetricsSendPlugin)
71
74
  add_plugin(Aws::Plugins::TransferEncoding)
75
+ add_plugin(Aws::Plugins::HttpChecksum)
72
76
  add_plugin(Aws::Plugins::SignatureV4)
73
77
  add_plugin(Aws::Plugins::Protocols::Query)
74
78
 
@@ -105,7 +109,7 @@ module Aws::CloudSearch
105
109
  # @option options [required, String] :region
106
110
  # The AWS region to connect to. The configured `:region` is
107
111
  # used to determine the service `:endpoint`. When not passed,
108
- # a default `:region` is search for in the following locations:
112
+ # a default `:region` is searched for in the following locations:
109
113
  #
110
114
  # * `Aws.config[:region]`
111
115
  # * `ENV['AWS_REGION']`
@@ -161,7 +165,7 @@ module Aws::CloudSearch
161
165
  # @option options [String] :endpoint
162
166
  # The client endpoint is normally constructed from the `:region`
163
167
  # option. You should only configure an `:endpoint` when connecting
164
- # to test endpoints. This should be avalid HTTP(S) URI.
168
+ # to test or custom endpoints. This should be a valid HTTP(S) URI.
165
169
  #
166
170
  # @option options [Integer] :endpoint_cache_max_entries (1000)
167
171
  # Used for the maximum size limit of the LRU cache storing endpoints data
@@ -176,7 +180,7 @@ module Aws::CloudSearch
176
180
  # requests fetching endpoints information. Defaults to 60 sec.
177
181
  #
178
182
  # @option options [Boolean] :endpoint_discovery (false)
179
- # When set to `true`, endpoint discovery will be enabled for operations when available. Defaults to `false`.
183
+ # When set to `true`, endpoint discovery will be enabled for operations when available.
180
184
  #
181
185
  # @option options [Aws::Log::Formatter] :log_formatter (Aws::Log::Formatter.default)
182
186
  # The log formatter.
@@ -229,15 +233,19 @@ module Aws::CloudSearch
229
233
  #
230
234
  # @option options [String] :retry_mode ("legacy")
231
235
  # Specifies which retry algorithm to use. Values are:
232
- # * `legacy` - The pre-existing retry behavior. This is default value if
233
- # no retry mode is provided.
234
- # * `standard` - A standardized set of retry rules across the AWS SDKs.
235
- # This includes support for retry quotas, which limit the number of
236
- # unsuccessful retries a client can make.
237
- # * `adaptive` - An experimental retry mode that includes all the
238
- # functionality of `standard` mode along with automatic client side
239
- # throttling. This is a provisional mode that may change behavior
240
- # in the future.
236
+ #
237
+ # * `legacy` - The pre-existing retry behavior. This is default value if
238
+ # no retry mode is provided.
239
+ #
240
+ # * `standard` - A standardized set of retry rules across the AWS SDKs.
241
+ # This includes support for retry quotas, which limit the number of
242
+ # unsuccessful retries a client can make.
243
+ #
244
+ # * `adaptive` - An experimental retry mode that includes all the
245
+ # functionality of `standard` mode along with automatic client side
246
+ # throttling. This is a provisional mode that may change behavior
247
+ # in the future.
248
+ #
241
249
  #
242
250
  # @option options [String] :secret_access_key
243
251
  #
@@ -265,8 +273,7 @@ module Aws::CloudSearch
265
273
  #
266
274
  # @option options [Integer] :http_read_timeout (60) The default
267
275
  # number of seconds to wait for response data. This value can
268
- # safely be set
269
- # per-request on the session yielded by {#session_for}.
276
+ # safely be set per-request on the session.
270
277
  #
271
278
  # @option options [Float] :http_idle_timeout (5) The number of
272
279
  # seconds a connection is allowed to sit idle before it is
@@ -278,7 +285,7 @@ module Aws::CloudSearch
278
285
  # request body. This option has no effect unless the request has
279
286
  # "Expect" header set to "100-continue". Defaults to `nil` which
280
287
  # disables this behaviour. This value can safely be set per
281
- # request on the session yielded by {#session_for}.
288
+ # request on the session.
282
289
  #
283
290
  # @option options [Boolean] :http_wire_trace (false) When `true`,
284
291
  # HTTP debug output will be sent to the `:logger`.
@@ -1823,7 +1830,7 @@ module Aws::CloudSearch
1823
1830
  params: params,
1824
1831
  config: config)
1825
1832
  context[:gem_name] = 'aws-sdk-cloudsearch'
1826
- context[:gem_version] = '1.18.0'
1833
+ context[:gem_version] = '1.23.0'
1827
1834
  Seahorse::Client::Request.new(handlers, context)
1828
1835
  end
1829
1836
 
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,4 @@
1
+ # frozen_string_literal: true
1
2
  # WARNING ABOUT GENERATED CODE
2
3
  #
3
4
  # This file is generated. See the contributing for info on making contributions:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -6,13 +8,7 @@
6
8
  # WARNING ABOUT GENERATED CODE
7
9
 
8
10
  module Aws::CloudSearch
9
- # This class provides a resource oriented interface for CloudSearch.
10
- # To create a resource object:
11
- # resource = Aws::CloudSearch::Resource.new(region: 'us-west-2')
12
- # You can supply a client object with custom configuration that will be used for all resource operations.
13
- # If you do not pass +:client+, a default client will be constructed.
14
- # client = Aws::CloudSearch::Client.new(region: 'us-west-2')
15
- # resource = Aws::CloudSearch::Resource.new(client: client)
11
+
16
12
  class Resource
17
13
 
18
14
  # @param options ({})
@@ -1,3 +1,5 @@
1
+ # frozen_string_literal: true
2
+
1
3
  # WARNING ABOUT GENERATED CODE
2
4
  #
3
5
  # This file is generated. See the contributing guide for more information:
@@ -29,6 +31,7 @@ module Aws::CloudSearch
29
31
  class AccessPoliciesStatus < Struct.new(
30
32
  :options,
31
33
  :status)
34
+ SENSITIVE = []
32
35
  include Aws::Structure
33
36
  end
34
37
 
@@ -105,6 +108,7 @@ module Aws::CloudSearch
105
108
  :stemming_dictionary,
106
109
  :japanese_tokenization_dictionary,
107
110
  :algorithmic_stemming)
111
+ SENSITIVE = []
108
112
  include Aws::Structure
109
113
  end
110
114
 
@@ -151,6 +155,7 @@ module Aws::CloudSearch
151
155
  :analysis_scheme_name,
152
156
  :analysis_scheme_language,
153
157
  :analysis_options)
158
+ SENSITIVE = []
154
159
  include Aws::Structure
155
160
  end
156
161
 
@@ -171,6 +176,7 @@ module Aws::CloudSearch
171
176
  class AnalysisSchemeStatus < Struct.new(
172
177
  :options,
173
178
  :status)
179
+ SENSITIVE = []
174
180
  include Aws::Structure
175
181
  end
176
182
 
@@ -187,6 +193,7 @@ module Aws::CloudSearch
187
193
  class AvailabilityOptionsStatus < Struct.new(
188
194
  :options,
189
195
  :status)
196
+ SENSITIVE = []
190
197
  include Aws::Structure
191
198
  end
192
199
 
@@ -203,6 +210,7 @@ module Aws::CloudSearch
203
210
  class BaseException < Struct.new(
204
211
  :code,
205
212
  :message)
213
+ SENSITIVE = []
206
214
  include Aws::Structure
207
215
  end
208
216
 
@@ -225,6 +233,7 @@ module Aws::CloudSearch
225
233
  #
226
234
  class BuildSuggestersRequest < Struct.new(
227
235
  :domain_name)
236
+ SENSITIVE = []
228
237
  include Aws::Structure
229
238
  end
230
239
 
@@ -237,6 +246,7 @@ module Aws::CloudSearch
237
246
  #
238
247
  class BuildSuggestersResponse < Struct.new(
239
248
  :field_names)
249
+ SENSITIVE = []
240
250
  include Aws::Structure
241
251
  end
242
252
 
@@ -259,6 +269,7 @@ module Aws::CloudSearch
259
269
  #
260
270
  class CreateDomainRequest < Struct.new(
261
271
  :domain_name)
272
+ SENSITIVE = []
262
273
  include Aws::Structure
263
274
  end
264
275
 
@@ -271,6 +282,7 @@ module Aws::CloudSearch
271
282
  #
272
283
  class CreateDomainResponse < Struct.new(
273
284
  :domain_status)
285
+ SENSITIVE = []
274
286
  include Aws::Structure
275
287
  end
276
288
 
@@ -317,6 +329,7 @@ module Aws::CloudSearch
317
329
  :facet_enabled,
318
330
  :search_enabled,
319
331
  :return_enabled)
332
+ SENSITIVE = []
320
333
  include Aws::Structure
321
334
  end
322
335
 
@@ -385,6 +398,7 @@ module Aws::CloudSearch
385
398
  :search_enabled,
386
399
  :return_enabled,
387
400
  :sort_enabled)
401
+ SENSITIVE = []
388
402
  include Aws::Structure
389
403
  end
390
404
 
@@ -428,6 +442,7 @@ module Aws::CloudSearch
428
442
  class DefineAnalysisSchemeRequest < Struct.new(
429
443
  :domain_name,
430
444
  :analysis_scheme)
445
+ SENSITIVE = []
431
446
  include Aws::Structure
432
447
  end
433
448
 
@@ -440,6 +455,7 @@ module Aws::CloudSearch
440
455
  #
441
456
  class DefineAnalysisSchemeResponse < Struct.new(
442
457
  :analysis_scheme)
458
+ SENSITIVE = []
443
459
  include Aws::Structure
444
460
  end
445
461
 
@@ -474,6 +490,7 @@ module Aws::CloudSearch
474
490
  class DefineExpressionRequest < Struct.new(
475
491
  :domain_name,
476
492
  :expression)
493
+ SENSITIVE = []
477
494
  include Aws::Structure
478
495
  end
479
496
 
@@ -486,6 +503,7 @@ module Aws::CloudSearch
486
503
  #
487
504
  class DefineExpressionResponse < Struct.new(
488
505
  :expression)
506
+ SENSITIVE = []
489
507
  include Aws::Structure
490
508
  end
491
509
 
@@ -601,6 +619,7 @@ module Aws::CloudSearch
601
619
  class DefineIndexFieldRequest < Struct.new(
602
620
  :domain_name,
603
621
  :index_field)
622
+ SENSITIVE = []
604
623
  include Aws::Structure
605
624
  end
606
625
 
@@ -613,6 +632,7 @@ module Aws::CloudSearch
613
632
  #
614
633
  class DefineIndexFieldResponse < Struct.new(
615
634
  :index_field)
635
+ SENSITIVE = []
616
636
  include Aws::Structure
617
637
  end
618
638
 
@@ -652,6 +672,7 @@ module Aws::CloudSearch
652
672
  class DefineSuggesterRequest < Struct.new(
653
673
  :domain_name,
654
674
  :suggester)
675
+ SENSITIVE = []
655
676
  include Aws::Structure
656
677
  end
657
678
 
@@ -664,6 +685,7 @@ module Aws::CloudSearch
664
685
  #
665
686
  class DefineSuggesterResponse < Struct.new(
666
687
  :suggester)
688
+ SENSITIVE = []
667
689
  include Aws::Structure
668
690
  end
669
691
 
@@ -693,6 +715,7 @@ module Aws::CloudSearch
693
715
  class DeleteAnalysisSchemeRequest < Struct.new(
694
716
  :domain_name,
695
717
  :analysis_scheme_name)
718
+ SENSITIVE = []
696
719
  include Aws::Structure
697
720
  end
698
721
 
@@ -705,6 +728,7 @@ module Aws::CloudSearch
705
728
  #
706
729
  class DeleteAnalysisSchemeResponse < Struct.new(
707
730
  :analysis_scheme)
731
+ SENSITIVE = []
708
732
  include Aws::Structure
709
733
  end
710
734
 
@@ -724,6 +748,7 @@ module Aws::CloudSearch
724
748
  #
725
749
  class DeleteDomainRequest < Struct.new(
726
750
  :domain_name)
751
+ SENSITIVE = []
727
752
  include Aws::Structure
728
753
  end
729
754
 
@@ -737,6 +762,7 @@ module Aws::CloudSearch
737
762
  #
738
763
  class DeleteDomainResponse < Struct.new(
739
764
  :domain_status)
765
+ SENSITIVE = []
740
766
  include Aws::Structure
741
767
  end
742
768
 
@@ -766,6 +792,7 @@ module Aws::CloudSearch
766
792
  class DeleteExpressionRequest < Struct.new(
767
793
  :domain_name,
768
794
  :expression_name)
795
+ SENSITIVE = []
769
796
  include Aws::Structure
770
797
  end
771
798
 
@@ -778,6 +805,7 @@ module Aws::CloudSearch
778
805
  #
779
806
  class DeleteExpressionResponse < Struct.new(
780
807
  :expression)
808
+ SENSITIVE = []
781
809
  include Aws::Structure
782
810
  end
783
811
 
@@ -808,6 +836,7 @@ module Aws::CloudSearch
808
836
  class DeleteIndexFieldRequest < Struct.new(
809
837
  :domain_name,
810
838
  :index_field_name)
839
+ SENSITIVE = []
811
840
  include Aws::Structure
812
841
  end
813
842
 
@@ -819,6 +848,7 @@ module Aws::CloudSearch
819
848
  #
820
849
  class DeleteIndexFieldResponse < Struct.new(
821
850
  :index_field)
851
+ SENSITIVE = []
822
852
  include Aws::Structure
823
853
  end
824
854
 
@@ -848,6 +878,7 @@ module Aws::CloudSearch
848
878
  class DeleteSuggesterRequest < Struct.new(
849
879
  :domain_name,
850
880
  :suggester_name)
881
+ SENSITIVE = []
851
882
  include Aws::Structure
852
883
  end
853
884
 
@@ -860,6 +891,7 @@ module Aws::CloudSearch
860
891
  #
861
892
  class DeleteSuggesterResponse < Struct.new(
862
893
  :suggester)
894
+ SENSITIVE = []
863
895
  include Aws::Structure
864
896
  end
865
897
 
@@ -896,6 +928,7 @@ module Aws::CloudSearch
896
928
  :domain_name,
897
929
  :analysis_scheme_names,
898
930
  :deployed)
931
+ SENSITIVE = []
899
932
  include Aws::Structure
900
933
  end
901
934
 
@@ -908,6 +941,7 @@ module Aws::CloudSearch
908
941
  #
909
942
  class DescribeAnalysisSchemesResponse < Struct.new(
910
943
  :analysis_schemes)
944
+ SENSITIVE = []
911
945
  include Aws::Structure
912
946
  end
913
947
 
@@ -936,6 +970,7 @@ module Aws::CloudSearch
936
970
  class DescribeAvailabilityOptionsRequest < Struct.new(
937
971
  :domain_name,
938
972
  :deployed)
973
+ SENSITIVE = []
939
974
  include Aws::Structure
940
975
  end
941
976
 
@@ -950,6 +985,7 @@ module Aws::CloudSearch
950
985
  #
951
986
  class DescribeAvailabilityOptionsResponse < Struct.new(
952
987
  :availability_options)
988
+ SENSITIVE = []
953
989
  include Aws::Structure
954
990
  end
955
991
 
@@ -979,6 +1015,7 @@ module Aws::CloudSearch
979
1015
  class DescribeDomainEndpointOptionsRequest < Struct.new(
980
1016
  :domain_name,
981
1017
  :deployed)
1018
+ SENSITIVE = []
982
1019
  include Aws::Structure
983
1020
  end
984
1021
 
@@ -991,6 +1028,7 @@ module Aws::CloudSearch
991
1028
  #
992
1029
  class DescribeDomainEndpointOptionsResponse < Struct.new(
993
1030
  :domain_endpoint_options)
1031
+ SENSITIVE = []
994
1032
  include Aws::Structure
995
1033
  end
996
1034
 
@@ -1012,6 +1050,7 @@ module Aws::CloudSearch
1012
1050
  #
1013
1051
  class DescribeDomainsRequest < Struct.new(
1014
1052
  :domain_names)
1053
+ SENSITIVE = []
1015
1054
  include Aws::Structure
1016
1055
  end
1017
1056
 
@@ -1024,6 +1063,7 @@ module Aws::CloudSearch
1024
1063
  #
1025
1064
  class DescribeDomainsResponse < Struct.new(
1026
1065
  :domain_status_list)
1066
+ SENSITIVE = []
1027
1067
  include Aws::Structure
1028
1068
  end
1029
1069
 
@@ -1060,6 +1100,7 @@ module Aws::CloudSearch
1060
1100
  :domain_name,
1061
1101
  :expression_names,
1062
1102
  :deployed)
1103
+ SENSITIVE = []
1063
1104
  include Aws::Structure
1064
1105
  end
1065
1106
 
@@ -1072,6 +1113,7 @@ module Aws::CloudSearch
1072
1113
  #
1073
1114
  class DescribeExpressionsResponse < Struct.new(
1074
1115
  :expressions)
1116
+ SENSITIVE = []
1075
1117
  include Aws::Structure
1076
1118
  end
1077
1119
 
@@ -1108,6 +1150,7 @@ module Aws::CloudSearch
1108
1150
  :domain_name,
1109
1151
  :field_names,
1110
1152
  :deployed)
1153
+ SENSITIVE = []
1111
1154
  include Aws::Structure
1112
1155
  end
1113
1156
 
@@ -1120,6 +1163,7 @@ module Aws::CloudSearch
1120
1163
  #
1121
1164
  class DescribeIndexFieldsResponse < Struct.new(
1122
1165
  :index_fields)
1166
+ SENSITIVE = []
1123
1167
  include Aws::Structure
1124
1168
  end
1125
1169
 
@@ -1142,6 +1186,7 @@ module Aws::CloudSearch
1142
1186
  #
1143
1187
  class DescribeScalingParametersRequest < Struct.new(
1144
1188
  :domain_name)
1189
+ SENSITIVE = []
1145
1190
  include Aws::Structure
1146
1191
  end
1147
1192
 
@@ -1155,6 +1200,7 @@ module Aws::CloudSearch
1155
1200
  #
1156
1201
  class DescribeScalingParametersResponse < Struct.new(
1157
1202
  :scaling_parameters)
1203
+ SENSITIVE = []
1158
1204
  include Aws::Structure
1159
1205
  end
1160
1206
 
@@ -1183,6 +1229,7 @@ module Aws::CloudSearch
1183
1229
  class DescribeServiceAccessPoliciesRequest < Struct.new(
1184
1230
  :domain_name,
1185
1231
  :deployed)
1232
+ SENSITIVE = []
1186
1233
  include Aws::Structure
1187
1234
  end
1188
1235
 
@@ -1194,6 +1241,7 @@ module Aws::CloudSearch
1194
1241
  #
1195
1242
  class DescribeServiceAccessPoliciesResponse < Struct.new(
1196
1243
  :access_policies)
1244
+ SENSITIVE = []
1197
1245
  include Aws::Structure
1198
1246
  end
1199
1247
 
@@ -1229,6 +1277,7 @@ module Aws::CloudSearch
1229
1277
  :domain_name,
1230
1278
  :suggester_names,
1231
1279
  :deployed)
1280
+ SENSITIVE = []
1232
1281
  include Aws::Structure
1233
1282
  end
1234
1283
 
@@ -1240,6 +1289,7 @@ module Aws::CloudSearch
1240
1289
  #
1241
1290
  class DescribeSuggestersResponse < Struct.new(
1242
1291
  :suggesters)
1292
+ SENSITIVE = []
1243
1293
  include Aws::Structure
1244
1294
  end
1245
1295
 
@@ -1286,6 +1336,7 @@ module Aws::CloudSearch
1286
1336
  :source_field,
1287
1337
  :fuzzy_matching,
1288
1338
  :sort_expression)
1339
+ SENSITIVE = []
1289
1340
  include Aws::Structure
1290
1341
  end
1291
1342
 
@@ -1310,6 +1361,7 @@ module Aws::CloudSearch
1310
1361
  class DomainEndpointOptions < Struct.new(
1311
1362
  :enforce_https,
1312
1363
  :tls_security_policy)
1364
+ SENSITIVE = []
1313
1365
  include Aws::Structure
1314
1366
  end
1315
1367
 
@@ -1326,6 +1378,7 @@ module Aws::CloudSearch
1326
1378
  class DomainEndpointOptionsStatus < Struct.new(
1327
1379
  :options,
1328
1380
  :status)
1381
+ SENSITIVE = []
1329
1382
  include Aws::Structure
1330
1383
  end
1331
1384
 
@@ -1416,6 +1469,7 @@ module Aws::CloudSearch
1416
1469
  :search_partition_count,
1417
1470
  :search_instance_count,
1418
1471
  :limits)
1472
+ SENSITIVE = []
1419
1473
  include Aws::Structure
1420
1474
  end
1421
1475
 
@@ -1462,6 +1516,7 @@ module Aws::CloudSearch
1462
1516
  :facet_enabled,
1463
1517
  :search_enabled,
1464
1518
  :return_enabled)
1519
+ SENSITIVE = []
1465
1520
  include Aws::Structure
1466
1521
  end
1467
1522
 
@@ -1515,6 +1570,7 @@ module Aws::CloudSearch
1515
1570
  :search_enabled,
1516
1571
  :return_enabled,
1517
1572
  :sort_enabled)
1573
+ SENSITIVE = []
1518
1574
  include Aws::Structure
1519
1575
  end
1520
1576
 
@@ -1549,6 +1605,7 @@ module Aws::CloudSearch
1549
1605
  class Expression < Struct.new(
1550
1606
  :expression_name,
1551
1607
  :expression_value)
1608
+ SENSITIVE = []
1552
1609
  include Aws::Structure
1553
1610
  end
1554
1611
 
@@ -1566,6 +1623,7 @@ module Aws::CloudSearch
1566
1623
  class ExpressionStatus < Struct.new(
1567
1624
  :options,
1568
1625
  :status)
1626
+ SENSITIVE = []
1569
1627
  include Aws::Structure
1570
1628
  end
1571
1629
 
@@ -1588,6 +1646,7 @@ module Aws::CloudSearch
1588
1646
  #
1589
1647
  class IndexDocumentsRequest < Struct.new(
1590
1648
  :domain_name)
1649
+ SENSITIVE = []
1591
1650
  include Aws::Structure
1592
1651
  end
1593
1652
 
@@ -1600,6 +1659,7 @@ module Aws::CloudSearch
1600
1659
  #
1601
1660
  class IndexDocumentsResponse < Struct.new(
1602
1661
  :field_names)
1662
+ SENSITIVE = []
1603
1663
  include Aws::Structure
1604
1664
  end
1605
1665
 
@@ -1811,6 +1871,7 @@ module Aws::CloudSearch
1811
1871
  :literal_array_options,
1812
1872
  :text_array_options,
1813
1873
  :date_array_options)
1874
+ SENSITIVE = []
1814
1875
  include Aws::Structure
1815
1876
  end
1816
1877
 
@@ -1829,6 +1890,7 @@ module Aws::CloudSearch
1829
1890
  class IndexFieldStatus < Struct.new(
1830
1891
  :options,
1831
1892
  :status)
1893
+ SENSITIVE = []
1832
1894
  include Aws::Structure
1833
1895
  end
1834
1896
 
@@ -1875,6 +1937,7 @@ module Aws::CloudSearch
1875
1937
  :facet_enabled,
1876
1938
  :search_enabled,
1877
1939
  :return_enabled)
1940
+ SENSITIVE = []
1878
1941
  include Aws::Structure
1879
1942
  end
1880
1943
 
@@ -1928,6 +1991,7 @@ module Aws::CloudSearch
1928
1991
  :search_enabled,
1929
1992
  :return_enabled,
1930
1993
  :sort_enabled)
1994
+ SENSITIVE = []
1931
1995
  include Aws::Structure
1932
1996
  end
1933
1997
 
@@ -2011,6 +2075,7 @@ module Aws::CloudSearch
2011
2075
  :search_enabled,
2012
2076
  :return_enabled,
2013
2077
  :sort_enabled)
2078
+ SENSITIVE = []
2014
2079
  include Aws::Structure
2015
2080
  end
2016
2081
 
@@ -2028,6 +2093,7 @@ module Aws::CloudSearch
2028
2093
  class Limits < Struct.new(
2029
2094
  :maximum_replication_count,
2030
2095
  :maximum_partition_count)
2096
+ SENSITIVE = []
2031
2097
  include Aws::Structure
2032
2098
  end
2033
2099
 
@@ -2040,6 +2106,7 @@ module Aws::CloudSearch
2040
2106
  #
2041
2107
  class ListDomainNamesResponse < Struct.new(
2042
2108
  :domain_names)
2109
+ SENSITIVE = []
2043
2110
  include Aws::Structure
2044
2111
  end
2045
2112
 
@@ -2086,6 +2153,7 @@ module Aws::CloudSearch
2086
2153
  :facet_enabled,
2087
2154
  :search_enabled,
2088
2155
  :return_enabled)
2156
+ SENSITIVE = []
2089
2157
  include Aws::Structure
2090
2158
  end
2091
2159
 
@@ -2152,6 +2220,7 @@ module Aws::CloudSearch
2152
2220
  :search_enabled,
2153
2221
  :return_enabled,
2154
2222
  :sort_enabled)
2223
+ SENSITIVE = []
2155
2224
  include Aws::Structure
2156
2225
  end
2157
2226
 
@@ -2195,6 +2264,7 @@ module Aws::CloudSearch
2195
2264
  :update_version,
2196
2265
  :state,
2197
2266
  :pending_deletion)
2267
+ SENSITIVE = []
2198
2268
  include Aws::Structure
2199
2269
  end
2200
2270
 
@@ -2235,6 +2305,7 @@ module Aws::CloudSearch
2235
2305
  :desired_instance_type,
2236
2306
  :desired_replication_count,
2237
2307
  :desired_partition_count)
2308
+ SENSITIVE = []
2238
2309
  include Aws::Structure
2239
2310
  end
2240
2311
 
@@ -2252,6 +2323,7 @@ module Aws::CloudSearch
2252
2323
  class ScalingParametersStatus < Struct.new(
2253
2324
  :options,
2254
2325
  :status)
2326
+ SENSITIVE = []
2255
2327
  include Aws::Structure
2256
2328
  end
2257
2329
 
@@ -2267,6 +2339,7 @@ module Aws::CloudSearch
2267
2339
  #
2268
2340
  class ServiceEndpoint < Struct.new(
2269
2341
  :endpoint)
2342
+ SENSITIVE = []
2270
2343
  include Aws::Structure
2271
2344
  end
2272
2345
 
@@ -2299,6 +2372,7 @@ module Aws::CloudSearch
2299
2372
  class Suggester < Struct.new(
2300
2373
  :suggester_name,
2301
2374
  :document_suggester_options)
2375
+ SENSITIVE = []
2302
2376
  include Aws::Structure
2303
2377
  end
2304
2378
 
@@ -2318,6 +2392,7 @@ module Aws::CloudSearch
2318
2392
  class SuggesterStatus < Struct.new(
2319
2393
  :options,
2320
2394
  :status)
2395
+ SENSITIVE = []
2321
2396
  include Aws::Structure
2322
2397
  end
2323
2398
 
@@ -2365,6 +2440,7 @@ module Aws::CloudSearch
2365
2440
  :return_enabled,
2366
2441
  :highlight_enabled,
2367
2442
  :analysis_scheme)
2443
+ SENSITIVE = []
2368
2444
  include Aws::Structure
2369
2445
  end
2370
2446
 
@@ -2432,6 +2508,7 @@ module Aws::CloudSearch
2432
2508
  :sort_enabled,
2433
2509
  :highlight_enabled,
2434
2510
  :analysis_scheme)
2511
+ SENSITIVE = []
2435
2512
  include Aws::Structure
2436
2513
  end
2437
2514
 
@@ -2464,6 +2541,7 @@ module Aws::CloudSearch
2464
2541
  class UpdateAvailabilityOptionsRequest < Struct.new(
2465
2542
  :domain_name,
2466
2543
  :multi_az)
2544
+ SENSITIVE = []
2467
2545
  include Aws::Structure
2468
2546
  end
2469
2547
 
@@ -2477,6 +2555,7 @@ module Aws::CloudSearch
2477
2555
  #
2478
2556
  class UpdateAvailabilityOptionsResponse < Struct.new(
2479
2557
  :availability_options)
2558
+ SENSITIVE = []
2480
2559
  include Aws::Structure
2481
2560
  end
2482
2561
 
@@ -2509,6 +2588,7 @@ module Aws::CloudSearch
2509
2588
  class UpdateDomainEndpointOptionsRequest < Struct.new(
2510
2589
  :domain_name,
2511
2590
  :domain_endpoint_options)
2591
+ SENSITIVE = []
2512
2592
  include Aws::Structure
2513
2593
  end
2514
2594
 
@@ -2521,6 +2601,7 @@ module Aws::CloudSearch
2521
2601
  #
2522
2602
  class UpdateDomainEndpointOptionsResponse < Struct.new(
2523
2603
  :domain_endpoint_options)
2604
+ SENSITIVE = []
2524
2605
  include Aws::Structure
2525
2606
  end
2526
2607
 
@@ -2555,6 +2636,7 @@ module Aws::CloudSearch
2555
2636
  class UpdateScalingParametersRequest < Struct.new(
2556
2637
  :domain_name,
2557
2638
  :scaling_parameters)
2639
+ SENSITIVE = []
2558
2640
  include Aws::Structure
2559
2641
  end
2560
2642
 
@@ -2568,6 +2650,7 @@ module Aws::CloudSearch
2568
2650
  #
2569
2651
  class UpdateScalingParametersResponse < Struct.new(
2570
2652
  :scaling_parameters)
2653
+ SENSITIVE = []
2571
2654
  include Aws::Structure
2572
2655
  end
2573
2656
 
@@ -2598,6 +2681,7 @@ module Aws::CloudSearch
2598
2681
  class UpdateServiceAccessPoliciesRequest < Struct.new(
2599
2682
  :domain_name,
2600
2683
  :access_policies)
2684
+ SENSITIVE = []
2601
2685
  include Aws::Structure
2602
2686
  end
2603
2687
 
@@ -2610,6 +2694,7 @@ module Aws::CloudSearch
2610
2694
  #
2611
2695
  class UpdateServiceAccessPoliciesResponse < Struct.new(
2612
2696
  :access_policies)
2697
+ SENSITIVE = []
2613
2698
  include Aws::Structure
2614
2699
  end
2615
2700
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: aws-sdk-cloudsearch
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.18.0
4
+ version: 1.23.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Amazon Web Services
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2020-03-09 00:00:00.000000000 Z
11
+ date: 2020-07-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: aws-sdk-core
@@ -19,7 +19,7 @@ dependencies:
19
19
  version: '3'
20
20
  - - ">="
21
21
  - !ruby/object:Gem::Version
22
- version: 3.71.0
22
+ version: 3.99.0
23
23
  type: :runtime
24
24
  prerelease: false
25
25
  version_requirements: !ruby/object:Gem::Requirement
@@ -29,7 +29,7 @@ dependencies:
29
29
  version: '3'
30
30
  - - ">="
31
31
  - !ruby/object:Gem::Version
32
- version: 3.71.0
32
+ version: 3.99.0
33
33
  - !ruby/object:Gem::Dependency
34
34
  name: aws-sigv4
35
35
  requirement: !ruby/object:Gem::Requirement
@@ -81,7 +81,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
81
81
  version: '0'
82
82
  requirements: []
83
83
  rubyforge_project:
84
- rubygems_version: 2.5.2.3
84
+ rubygems_version: 2.7.6.2
85
85
  signing_key:
86
86
  specification_version: 4
87
87
  summary: AWS SDK for Ruby - Amazon CloudSearch