Method: QingCloud::SDK::RDBService#resize_rdbs
- Defined in:
- lib/qingcloud/sdk/service/rdb.rb
#resize_rdbs(rdb_type: nil, rdbs: [], storage_size: nil) ⇒ Object
Documentation URL: docs.qingcloud.com/api/rdb/resize_rdbs.html
648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 |
# File 'lib/qingcloud/sdk/service/rdb.rb', line 648 def resize_rdbs(rdb_type: nil, rdbs: [], storage_size: nil) input = { config: config, properties: properties, api_name: 'ResizeRDBs', request_method: 'GET', request_params: { 'rdb_type' => rdb_type, # rdb_type's available values: 1, 2, 4, 8, 16, 32 'rdbs' => rdbs, 'storage_size' => storage_size, }, } resize_rdbs_input_validate input request = Request.new input request.send end |