def remove_product_from_portfolio(portfolio_file_name, portfolio_display_name, product_name):
    """
    This function allows to you to remove a product from a portfolio that exists already.

    :param portfolio_file_name: The name of the file (including .yaml) of your portfolio file.  For example ServiceCatalogFactory/portfolio/central_it.yaml should be central_it.yaml
    :param portfolio_display_name: The value of the portfolio DisplayName where the product exists.
    :param product_name: The name of the product you want to remove
    """
    core.remove_product_from_portfolio(portfolio_file_name, portfolio_display_name, product_name)
Beispiel #2
0
def remove_product_from_portfolio(portfolio_file_name, portfolio_display_name,
                                  product_name):
    core.remove_product_from_portfolio(portfolio_file_name,
                                       portfolio_display_name, product_name)