Class DataStoresLabelAdd

java.lang.Object
ai.wanaku.cli.main.commands.BaseCommand
ai.wanaku.cli.main.commands.datastores.DataStoresLabelAdd
All Implemented Interfaces:
Callable<Integer>

public class DataStoresLabelAdd extends BaseCommand
CLI command for adding labels to existing data stores.

This command allows you to add one or more labels to a data store without modifying its other properties. If a label key already exists, its value will be updated.

Usage examples:

 # Add a single label by ID
 wanaku datastores label add --id abc123 --label env=production

 # Add multiple labels
 wanaku datastores label add --id abc123 -l env=production -l tier=backend -l version=2.0

 # Add labels using label expression to select data stores
 wanaku datastores label add --label-expression 'category=config' --label migrated=true
 
See Also: