import * as pulumi from "@pulumi/pulumi"; export declare function getKatelloProduct(args: GetKatelloProductArgs, opts?: pulumi.InvokeOptions): Promise; /** * A collection of arguments for invoking getKatelloProduct. */ export interface GetKatelloProductArgs { name: string; } /** * A collection of values returned by getKatelloProduct. */ export interface GetKatelloProductResult { readonly description: string; readonly gpgKeyId: number; /** * The provider-assigned unique ID for this managed resource. */ readonly id: string; readonly label: string; readonly name: string; readonly sslCaCertId: number; readonly sslClientCertId: number; readonly sslClientKeyId: number; readonly syncPlanId: number; } export declare function getKatelloProductOutput(args: GetKatelloProductOutputArgs, opts?: pulumi.InvokeOutputOptions): pulumi.Output; /** * A collection of arguments for invoking getKatelloProduct. */ export interface GetKatelloProductOutputArgs { name: pulumi.Input; }