def uninstall(): """ Delete the resources created during the boostrap process. AWS Service Catalog portfolios and their configurations are not modified during this call """ core.uninstall()
def uninstall(puppet_account_id): """ Delete the resources created during the bootstrap process. AWS Service Catalog portfolios and their configurations are not modified during this call :param puppet_account_id: AWS Account Id for your puppet account """ core.uninstall(puppet_account_id)
def uninstall(): core.uninstall()
def uninstall(puppet_account_id): if puppet_account_id is None: puppet_account_id = config.get_puppet_account_id() core.uninstall(puppet_account_id)