import * as pulumi from "@pulumi/pulumi"; import * as outputs from "./types/output"; export declare function getKatelloContentView(args: GetKatelloContentViewArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getKatelloContentView. */ export interface GetKatelloContentViewArgs { name: string; } /** * A collection of values returned by getKatelloContentView. */ export interface GetKatelloContentViewResult { readonly autoPublish: boolean; readonly componentIds: number[]; readonly composite: boolean; readonly description: string; readonly filtered: boolean; readonly filters: outputs.GetKatelloContentViewFilter[]; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly label: string; readonly latestVersionId: number; readonly name: string; readonly organizationId: number; readonly repositoryIds: number[]; readonly solveDependencies: boolean; } export declare function getKatelloContentViewOutput(args: GetKatelloContentViewOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getKatelloContentView. */ export interface GetKatelloContentViewOutputArgs { name: pulumi.Input; }