Module: Aws::Record::ItemOperations::ItemOperationsClassMethods
- Included in:
- Aws::Record
- Defined in:
- lib/aws-record/record/item_operations.rb
Instance Method Summary collapse
-
#find(opts) ⇒ Aws::Record
Builds and returns an instance of your model.
-
#find_all(keys) ⇒ Aws::Record::BatchRead
Provides support for the Aws::DynamoDB::Client#batch_get_item for your model.
-
#find_with_opts(opts) ⇒ Aws::Record
Note that
#find_with_optswill pass through all options other than:keyunaltered to the underlying Aws::DynamoDB::Client#get_item request. -
#tfind_opts(opts) ⇒ Object
Used in Transactions.transact_find, which is a way to run transactional find across multiple DynamoDB items, including transactions which get items across multiple actual or virtual tables.
-
#transact_check_expression(opts) ⇒ Hash
Allows you to build a “check” expression for use in transactional write operations.
-
#transact_find(opts) ⇒ OpenStruct
Provides a way to run a transactional find across multiple DynamoDB items, including transactions which get items across multiple actual or virtual tables.
-
#update(opts) ⇒ Object
Performs an Aws::DynamoDB::Client#update_item call immediately on the table, using the attribute key/value pairs provided.
Instance Method Details
#find(opts) ⇒ Aws::Record
Returns builds and returns an instance of your model.
476 477 478 |
# File 'lib/aws-record/record/item_operations.rb', line 476 def find(opts) find_with_opts(key: opts) end |
#find_all(keys) ⇒ Aws::Record::BatchRead
Provides support for the Aws::DynamoDB::Client#batch_get_item for your model.
This method will take a list of keys and return an instance of Aws::Record::BatchRead
See Batch.read for more details.
560 561 562 563 564 565 566 |
# File 'lib/aws-record/record/item_operations.rb', line 560 def find_all(keys) Aws::Record::Batch.read do |db| keys.each do |key| db.find(self, key) end end end |
#find_with_opts(opts) ⇒ Aws::Record
Note that #find_with_opts will pass through all options other than :key unaltered to the underlying Aws::DynamoDB::Client#get_item request. You should ensure that you have an aws-sdk gem version which supports the options you are including, and avoid adding options not recognized by the underlying client to avoid runtime exceptions.
510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 |
# File 'lib/aws-record/record/item_operations.rb', line 510 def find_with_opts(opts) key = opts.delete(:key) request_key = {} @keys.keys.each_value do |attr_sym| raise Errors::KeyMissing, "Missing required key #{attr_sym} in #{key}" unless key[attr_sym] attr_name = attributes.storage_name_for(attr_sym) request_key[attr_name] = attributes.attribute_for(attr_sym) .serialize(key[attr_sym]) end get_opts = { table_name: table_name, key: request_key }.merge(opts) resp = dynamodb_client.get_item(get_opts) if resp.item.nil? nil else build_item_from_resp(resp) end end |
#tfind_opts(opts) ⇒ Object
Used in Transactions.transact_find, which is a way to run transactional find across multiple DynamoDB items, including transactions which get items across multiple actual or virtual tables.
This operation provide extra metadata used to marshal your items after retrieval.
See transact_find for more info and usage example.
400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 |
# File 'lib/aws-record/record/item_operations.rb', line 400 def tfind_opts(opts) opts = opts.dup key = opts.delete(:key) request_key = {} @keys.keys.each_value do |attr_sym| raise Errors::KeyMissing, "Missing required key #{attr_sym} in #{key}" unless key[attr_sym] attr_name = attributes.storage_name_for(attr_sym) request_key[attr_name] = attributes.attribute_for(attr_sym) .serialize(key[attr_sym]) end # this is a :get item used by #transact_get_items, with the exception # of :model_class which needs to be removed before passing along opts[:key] = request_key opts[:table_name] = table_name { model_class: self, get: opts } end |
#transact_check_expression(opts) ⇒ Hash
Allows you to build a “check” expression for use in transactional write operations.
See transact_write for more info.
376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 |
# File 'lib/aws-record/record/item_operations.rb', line 376 def transact_check_expression(opts) # need to transform the key, and add the table name opts = opts.dup key = opts.delete(:key) check_key = {} @keys.keys.each_value do |attr_sym| raise Errors::KeyMissing, "Missing required key #{attr_sym} in #{key}" unless key[attr_sym] attr_name = attributes.storage_name_for(attr_sym) check_key[attr_name] = attributes.attribute_for(attr_sym) .serialize(key[attr_sym]) end opts[:key] = check_key opts[:table_name] = table_name opts end |
#transact_find(opts) ⇒ OpenStruct
Provides a way to run a transactional find across multiple DynamoDB items, including transactions which get items across multiple actual or virtual tables.
451 452 453 454 455 456 457 458 459 460 |
# File 'lib/aws-record/record/item_operations.rb', line 451 def transact_find(opts) opts = opts.dup transact_items = opts.delete(:transact_items) global_transact_items = transact_items.map do |topts| tfind_opts(topts) end opts[:transact_items] = global_transact_items opts[:client] = dynamodb_client Transactions.transact_find(opts) end |
#update(opts) ⇒ Object
Performs an Aws::DynamoDB::Client#update_item call immediately on the table, using the attribute key/value pairs provided.
591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 |
# File 'lib/aws-record/record/item_operations.rb', line 591 def update(opts) key = {} @keys.keys.each_value do |attr_sym| unless (value = opts.delete(attr_sym)) raise Errors::KeyMissing, "Missing required key #{attr_sym} in #{opts}" end attr_name = attributes.storage_name_for(attr_sym) key[attr_name] = attributes.attribute_for(attr_sym).serialize(value) end update_opts = { table_name: table_name, key: key } update_tuple = _build_update_expression(opts) unless update_tuple.nil? uex, exp_attr_names, exp_attr_values = update_tuple update_opts[:update_expression] = uex update_opts[:expression_attribute_names] = exp_attr_names update_opts[:expression_attribute_values] = exp_attr_values unless exp_attr_values.empty? end dynamodb_client.update_item(update_opts) end |