Advertisement
Guest User

Untitled

a guest
Oct 20th, 2019
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.63 KB | None | 0 0
  1. [
  2. {
  3. "_comment" : ["This is a sample object that should be modified for deployment.",
  4. "Connect strings will need to be inserted and correct service, database and collection",
  5. "names included as well as setting the database backup flag to true as needed."],
  6.  
  7. "service" : {
  8. "name" : "<name of your cosmos db service>",
  9. "connectString" : "<read-only connect string here>",
  10. "databases" : [ {"name" : "database1",
  11. "backupFlag" : true,
  12. "collections" : [{"name" : "collection1"},
  13. {"name" : "collection2"}]
  14. }
  15. , {"name" : "database2",
  16. "backupFlag" : false,
  17. "collections" : [{"name" : "collection1"}]
  18. },
  19. {"name" : "database2",
  20. "backupFlag" : true,
  21. "collections" : [{"name" : "collection1"}]
  22. }
  23. ]
  24. }
  25. },
  26. {
  27. "service" : {
  28. "name" : "<second cosmos db service>",
  29. "connectString" : "<second service read-only key>",
  30. "databases" : [ {"name" : "database1",
  31. "backupFlag" : false,
  32. "collections" : [{"name" : "collection1"}]
  33. }
  34. ]
  35. }
  36. }]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement