Manage a Stored Object

Click any of the stored objects in your bucket.

catalyst_stratus_object_details

You will be able to perform the following operations on the object:

  • View general details, such as the name, size, modified time, and format of the object.
  • You can access the object directly using the secure Object URL. This URL can be copied and used in your code to satisfy your requirement.

Provide Custom Meta Data for an Object

To provide meta data for your object:

Note: The maximum size limit of characters allowed for the overall metadata is 2047 characters. The character count used to determine the size limit also includes the colon “:” special character used to define the key value pair.
  1. Click the required object.

    catalyst_stratus_obj_created_in_path
  2. Click the Add Meta button.

    catalyst_stratus_adding_meta
  3. The meta data you provide will be rendered and applied to the object in a JSON key value format. Click Save once you have completed adding the required data.

    catalyst_stratus_adding_custom_meta

Your custom meta data will be added to the object.

catalyst_stratus_meta_data_added_completed
Note: Visit this help document for more information on this SDK method.

Ensure the following packages are imported:

    
copy

import org.json.simple.JSONObject;

    
copy

HashMap<String, String> objectMeta = new HashMap<>(); objectMeta.put(“key1”, “value1”); objectMeta.put(“key2”, “value2”); JSONObject res = object.putMeta(objectMeta); System.out.println(res);

Note: Visit this help document for more information on this SDK method.
    
copy

const objectMeta = { “key1”: “value1” , “key2”: “value2” }; const objMeta = await objectIns.putMeta(objectMeta); console.log(objMeta);

Note: Visit this help document for more information on this SDK method.
    
copy

res = object_ins.put_meta({‘author’: ‘Amelia Burrows’}) print(res)

Edit Custom Meta Data

To edit the custom meta data:

  1. Click Modify Meta.

    catalyst_stratus_modifyingmeta
  2. Make the required changes and click Save.

    catalyst_stratus_modify_meta_save

The changes will be applied.

catalyst_stratus_modified_custom_meta_complete

Last Updated 2025-06-03 18:19:55 +0530 +0530