runWithConfig method
Runs this command with prepared configuration (options). Subclasses should override this method.
Implementation
@override
Future<void> runWithConfig(
final Configuration<DbBackupCreateOption> commandConfig,
) async {
await DbBackupCommands.createSnapshot(
runner.serviceProvider.cloudApiClient,
logger: logger,
projectId: commandConfig.value(DbBackupCreateOption.projectId),
name: commandConfig.optionalValue(DbBackupCreateOption.name),
expireIn: commandConfig.optionalValue(DbBackupCreateOption.expireIn),
utc: commandConfig.value(DbBackupCreateOption.utc),
);
}