import * as pulumi from "@pulumi/pulumi"; import * as outputs from "../types/output"; /** * Resource type definition for AWS::ServiceCatalog::Portfolio */ export declare function getPortfolio(args: GetPortfolioArgs, opts?: pulumi.InvokeOptions): Promise; export interface GetPortfolioArgs { /** * The portfolio identifier. */ id: string; } export interface GetPortfolioResult { /** * The description of the portfolio. */ readonly description?: string; /** * The name to use for display purposes. */ readonly displayName?: string; /** * The portfolio identifier. */ readonly id?: string; /** * The name of the portfolio. */ readonly portfolioName?: string; /** * The name of the portfolio provider. */ readonly providerName?: string; /** * One or more tags. */ readonly tags?: outputs.Tag[]; } /** * Resource type definition for AWS::ServiceCatalog::Portfolio */ export declare function getPortfolioOutput(args: GetPortfolioOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; export interface GetPortfolioOutputArgs { /** * The portfolio identifier. */ id: pulumi.Input; }