-
Notifications
You must be signed in to change notification settings - Fork 36
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Feature/1329 add new method that chains buildtemplate and builddefinition + add --metadata to buildDefinitionBulk #1330
Conversation
Coverage ReportCommit:190cf68Base: develop@a3e87f5 Details (changed files):
|
https://github.com/Accenture/sfmc-devtools/wiki/06.c-~-Templating-Commands/_edit buildDefinitionBulkCommand: Alias: With Instead of passing in the name of credentials, Business Units and markets, you simply refer to a pre-defined market list in your Note: Before using this command, you need to configure your markets first! Check out our guide on Market List Configuration and Market Configuration to understand how to use bulk templating and prepare your market config. Example: mcdev bdb pilotMarketsQA dataExtension MyUserTable
mcdev bdb pilotMarketsQA -m dataExtension:MyUserTable -m query:mySQL -m dataExtension:MyOtherTable |
https://github.com/Accenture/sfmc-devtools/wiki/06.c-~-Templating-Commands/_edit buildCommand: This combines the power of Example: // before
mcdev bt MyProject/DEV --market pilotMarketDEV1 -m dataExtension:table1 -m dataExtension:table2 -m dataExtension:table3 -m query:sql1 -m query:sql2
mcdev bd MyProject/QA --market pilotMarketQA1 -m dataExtension:table1 -m dataExtension:table2 -m dataExtension:table3 -m query:sql1 -m query:sql2
// after
mcdev build --fromBu MyProject/DEV --toBu MyProject/QA --fromMarket pilotMarketDEV1 --toMarket pilotMarketQA1 -m dataExtension:table1 -m dataExtension:table2 -m dataExtension:table3 -m query:sql1 -m query:sql2 And if you already have market lists set up and want to use Example: // before
mcdev bt MyProject/DEV --market pilotMarketDEV1 -m dataExtension:table1 -m dataExtension:table2 -m dataExtension:table3 -m query:sql1 -m query:sql2
mcdev bdb pilotMarketsQA -m dataExtension:table1 -m dataExtension:table2 -m dataExtension:table3 -m query:sql1 -m query:sql2
// after
mcdev build --fromBu MyProject/DEV --fromMarket pilotMarketDEV1 --toMarket pilotMarketsQA --bulk -m dataExtension:table1 -m dataExtension:table2 -m dataExtension:table3 -m query:sql1 -m query:sql2 Note how in this bulk-example the parameter |
PR details
What changes did you make? (Give an overview)
Further details (optional)
...
Checklist