In CLI command(job-binary-data-create)
job-binary-internal is automatically named by creation-date.
This fix add --name for job-binary-data-create
to assign name to job-binary-internal.
If we do not use --name, job-binary-internal named
basename of args.filename.
If we use stdin, job-binary-internal named by creation-date
the same as bofore.
Examples:
sahara job-binary-data-create --file /tmp/fuga.txt --name hoge
=> job-binary-internal is named hoge
sahara job-binary-data-create --file /tmp/fuga.txt
=> job-binary-internal is named filename(fuga.txt)
sahara job-binary-data-create < stdin
=> job-binary-internal is named creation-date
Change-Id: I368b8c82bc87962d69dda175e410e230e0d3beab
Closes-Bug: #1428537