lib/aws-sdk-cloudsearchdomain/client.rb in aws-sdk-cloudsearchdomain-1.54.0 vs lib/aws-sdk-cloudsearchdomain/client.rb in aws-sdk-cloudsearchdomain-1.55.0

- old
+ new

@@ -436,14 +436,14 @@ # Defines one or more numeric expressions that can be used to sort # results or specify search or filter criteria. You can also specify # expressions as return fields. # # You specify the expressions in JSON using the form - # `\{"EXPRESSIONNAME":"EXPRESSION"\}`. You can define and use multiple + # `{"EXPRESSIONNAME":"EXPRESSION"}`. You can define and use multiple # expressions in a search request. For example: # - # ` \{"expression1":"_score*rating", "expression2":"(1/rank)*year"\} ` + # ` {"expression1":"_score*rating", "expression2":"(1/rank)*year"} ` # # For information about the variables, operators, and functions you can # use in expressions, see [Writing Expressions][1] in the *Amazon # CloudSearch Developer Guide*. # @@ -454,11 +454,11 @@ # @option params [String] :facet # Specifies one or more fields for which to get facet information, and # options that control how the facet information is returned. Each # specified field must be facet-enabled in the domain configuration. The # fields and options are specified in JSON using the form - # `\{"FIELD":\{"OPTION":VALUE,"OPTION:"STRING"\},"FIELD":\{"OPTION":VALUE,"OPTION":"STRING"\}\}`. + # `{"FIELD":{"OPTION":VALUE,"OPTION:"STRING"},"FIELD":{"OPTION":VALUE,"OPTION":"STRING"}}`. # # You can specify the following faceting options: # # * `buckets` specifies an array of the facet values or ranges to count. # Ranges are specified using the same syntax that you use to search @@ -487,26 +487,26 @@ # To count particular buckets of values, use the `buckets` option. For # example, the following request uses the `buckets` option to calculate # and return facet counts by decade. # # ` - # \{"year":\{"buckets":["[1970,1979]","[1980,1989]","[1990,1999]","[2000,2009]","[2010,\}"]\}\} + # {"year":{"buckets":["[1970,1979]","[1980,1989]","[1990,1999]","[2000,2009]","[2010,}"]}} # ` # # To sort facets by facet count, use the `count` option. For example, # the following request sets the `sort` option to `count` to sort the # facet values by facet count, with the facet values that have the most # matching documents listed first. Setting the `size` option to 3 # returns only the top three facet values. # - # ` \{"year":\{"sort":"count","size":3\}\} ` + # ` {"year":{"sort":"count","size":3}} ` # # To sort the facets by value, use the `bucket` option. For example, the # following request sets the `sort` option to `bucket` to sort the facet # values numerically by year, with earliest year listed first. # - # ` \{"year":\{"sort":"bucket"\}\} ` + # ` {"year":{"sort":"bucket"}} ` # # For more information, see [Getting and Using Facet Information][2] in # the *Amazon CloudSearch Developer Guide*. # # @@ -534,11 +534,11 @@ # @option params [String] :highlight # Retrieves highlights for matches in the specified `text` or # `text-array` fields. Each specified field must be highlight enabled in # the domain configuration. The fields and options are specified in JSON # using the form - # `\{"FIELD":\{"OPTION":VALUE,"OPTION:"STRING"\},"FIELD":\{"OPTION":VALUE,"OPTION":"STRING"\}\}`. + # `{"FIELD":{"OPTION":VALUE,"OPTION:"STRING"},"FIELD":{"OPTION":VALUE,"OPTION":"STRING"}}`. # # You can specify the following highlight options: # # * `format`: specifies the format of the data in the text field: `text` # or `html`. When data is returned as HTML, all non-alphanumeric @@ -558,12 +558,12 @@ # emphasis tags: `<em>search-term</em>`. # # For example, the following request retrieves highlights for the # `actors` and `title` fields. # - # `\{ "actors": \{\}, "title": \{"format": "text","max_phrases": - # 2,"pre_tag": "","post_tag": ""\} \}` + # `{ "actors": {}, "title": {"format": "text","max_phrases": + # 2,"pre_tag": "","post_tag": ""} }` # # @option params [Boolean] :partial # Enables partial results to be returned if one or more index partitions # are unavailable. When your search index is partitioned across multiple # search instances, by default Amazon CloudSearch only returns results @@ -593,11 +593,11 @@ # [1]: http://docs.aws.amazon.com/cloudsearch/latest/developerguide/searching.html # # @option params [String] :query_options # Configures options for the query parser specified in the `queryParser` # parameter. You specify the options in JSON using the following form - # `\{"OPTION1":"VALUE1","OPTION2":VALUE2"..."OPTIONN":"VALUEN"\}.` + # `{"OPTION1":"VALUE1","OPTION2":VALUE2"..."OPTIONN":"VALUEN"}.` # # The options you can configure vary according to which parser you use: # # * `defaultOperator`: The default operator used to combine individual # terms in the search string. For example: `defaultOperator: 'or'`. @@ -773,11 +773,11 @@ # @option params [String] :stats # Specifies one or more fields for which to get statistics information. # Each specified field must be facet-enabled in the domain # configuration. The fields are specified in JSON using the form: # - # `\{"FIELD-A":\{\},"FIELD-B":\{\}\}` There are currently no options supported for statistics. + # `{"FIELD-A":{},"FIELD-B":{}}` There are currently no options supported for statistics. # # @return [Types::SearchResponse] Returns a {Seahorse::Client::Response response} object which responds to the following methods: # # * {Types::SearchResponse#status #status} => Types::SearchStatus # * {Types::SearchResponse#hits #hits} => Types::Hits @@ -988,10 +988,10 @@ params: params, config: config, tracer: tracer ) context[:gem_name] = 'aws-sdk-cloudsearchdomain' - context[:gem_version] = '1.54.0' + context[:gem_version] = '1.55.0' Seahorse::Client::Request.new(handlers, context) end # @api private # @deprecated