I'd like to be able to break up my backup definition to multiple lines, this is how it reads:
<cron>
<description>My Daily Backup</description>
<url>/_ah/datastore_admin/backup.create?name=DailyBkup&kind=Customer&kind=CustomerCommercial&kind=Products&kind=Vendor&kind=Services&filesystem=gs&gs_bucket_name=my-backup</url>
<schedule>every 24 hours</schedule>
<target>ah-builtin-python-bundle</target>
</cron>
I'd like to be able to format it like below.
However it keeps failing on upload. I've tried various options including \ and breaking the line in different places.
Is there any way to accomplish this?
<cron>
<description>My Daily Backup</description>
<url>/_ah/datastore_admin/backup.create?name=DailyBkup
&kind=Customer
&kind=CustomerCommercial
&kind=Products
&kind=Vendor
&kind=Services
&filesystem=gs
&gs_bucket_name=my-backup</url>
<schedule>every 24 hours</schedule>
<target>ah-builtin-python-bundle</target>
</cron>