lib/fastly/api/dictionary_item_api.rb in fastly-4.4.0 vs lib/fastly/api/dictionary_item_api.rb in fastly-5.0.0
- old
+ new
@@ -15,9 +15,86 @@
attr_accessor :api_client
def initialize(api_client = ApiClient.default)
@api_client = api_client
end
+ # Update multiple entries in an edge dictionary
+ # Update multiple items in the same dictionary. For faster updates to your service, group your changes into large batches. The maximum batch size is 1000 items. [Contact support](https://support.fastly.com/) to discuss raising this limit.
+ # @option opts [String] :service_id Alphanumeric string identifying the service. (required)
+ # @option opts [String] :dictionary_id Alphanumeric string identifying a Dictionary. (required)
+ # @option opts [BulkUpdateDictionaryListRequest] :bulk_update_dictionary_list_request
+ # @return [InlineResponse200]
+ def bulk_update_dictionary_item(opts = {})
+ data, _status_code, _headers = bulk_update_dictionary_item_with_http_info(opts)
+ data
+ end
+
+ # Update multiple entries in an edge dictionary
+ # Update multiple items in the same dictionary. For faster updates to your service, group your changes into large batches. The maximum batch size is 1000 items. [Contact support](https://support.fastly.com/) to discuss raising this limit.
+ # @option opts [String] :service_id Alphanumeric string identifying the service. (required)
+ # @option opts [String] :dictionary_id Alphanumeric string identifying a Dictionary. (required)
+ # @option opts [BulkUpdateDictionaryListRequest] :bulk_update_dictionary_list_request
+ # @return [Array<(InlineResponse200, Integer, Hash)>] InlineResponse200 data, response status code and response headers
+ def bulk_update_dictionary_item_with_http_info(opts = {})
+ if @api_client.config.debugging
+ @api_client.config.logger.debug 'Calling API: DictionaryItemApi.bulk_update_dictionary_item ...'
+ end
+ # unbox the parameters from the hash
+ service_id = opts[:'service_id']
+ dictionary_id = opts[:'dictionary_id']
+ # verify the required parameter 'service_id' is set
+ if @api_client.config.client_side_validation && service_id.nil?
+ fail ArgumentError, "Missing the required parameter 'service_id' when calling DictionaryItemApi.bulk_update_dictionary_item"
+ end
+ # verify the required parameter 'dictionary_id' is set
+ if @api_client.config.client_side_validation && dictionary_id.nil?
+ fail ArgumentError, "Missing the required parameter 'dictionary_id' when calling DictionaryItemApi.bulk_update_dictionary_item"
+ end
+ # resource path
+ local_var_path = '/service/{service_id}/dictionary/{dictionary_id}/items'.sub('{' + 'service_id' + '}', CGI.escape(service_id.to_s)).sub('{' + 'dictionary_id' + '}', CGI.escape(dictionary_id.to_s))
+
+ # query parameters
+ query_params = opts[:query_params] || {}
+
+ # header parameters
+ header_params = opts[:header_params] || {}
+ # HTTP header 'Accept' (if needed)
+ header_params['Accept'] = @api_client.select_header_accept(['application/json'])
+ # HTTP header 'Content-Type'
+ content_type = @api_client.select_header_content_type(['application/json'])
+ if !content_type.nil?
+ header_params['Content-Type'] = content_type
+ end
+
+ # form parameters
+ form_params = opts[:form_params] || {}
+
+ # http body (model)
+ post_body = opts[:debug_body] || @api_client.object_to_http_body(opts[:'bulk_update_dictionary_list_request'])
+
+ # return_type
+ return_type = opts[:debug_return_type] || 'InlineResponse200'
+
+ # auth_names
+ auth_names = opts[:debug_auth_names] || ['token']
+
+ new_options = opts.merge(
+ :operation => :"DictionaryItemApi.bulk_update_dictionary_item",
+ :header_params => header_params,
+ :query_params => query_params,
+ :form_params => form_params,
+ :body => post_body,
+ :auth_names => auth_names,
+ :return_type => return_type
+ )
+
+ data, status_code, headers = @api_client.call_api(:PATCH, local_var_path, new_options)
+ if @api_client.config.debugging
+ @api_client.config.logger.debug "API called: DictionaryItemApi#bulk_update_dictionary_item\nData: #{data.inspect}\nStatus code: #{status_code}\nHeaders: #{headers}"
+ end
+ return data, status_code, headers
+ end
+
# Create an entry in an edge dictionary
# Create DictionaryItem given service, dictionary ID, item key, and item value.
# @option opts [String] :service_id Alphanumeric string identifying the service. (required)
# @option opts [String] :dictionary_id Alphanumeric string identifying a Dictionary. (required)
# @option opts [String] :item_key Item key, maximum 256 characters.