limited-honey-31480
12/18/2019, 7:21 PMwhite-balloon-205
const proj = gcp.organizations.getProject(undefined, { async: true });
const billingAccount = proj.then(p =>
gcp.organizations.getBillingAccount({billingAccount: p.billingAccount}, { async: true })
);
proj.then(console.log)
billingAccount.then(console.log)
limited-honey-31480
12/18/2019, 8:17 PMwhite-balloon-205