import * as pulumi from "@pulumi/pulumi"; export declare class KatelloProduct extends pulumi.CustomResource { /** * Get an existing KatelloProduct resource's state with the given name, ID, and optional extra * properties used to qualify the lookup. * * @param name The _unique_ name of the resulting resource. * @param id The _unique_ provider ID of the resource to lookup. * @param state Any extra arguments used during the lookup. * @param opts Optional settings to control the behavior of the CustomResource. */ static get(name: string, id: pulumi.Input, state?: KatelloProductState, opts?: pulumi.CustomResourceOptions): KatelloProduct; /** * Returns true if the given object is an instance of KatelloProduct. This is designed to work even * when multiple copies of the Pulumi SDK have been loaded into the same process. */ static isInstance(obj: any): obj is KatelloProduct; /** * @SUMMARY Poducts are mostly operating systems to which repositories are assigned. */ readonly __meta_: pulumi.Output; /** * Product description.@EXAMPLE "A product description" */ readonly description: pulumi.Output; /** * Identifier of the GPG key.@EXAMPLE */ readonly gpgKeyId: pulumi.Output; /** * Label for the product. Cannot be changed after creation. By default set to the name, with underscores as spaces * replacement. @EXAMPLE */ readonly label: pulumi.Output; /** * Product name.@EXAMPLE "Debian 10" */ readonly name: pulumi.Output; /** * Idenifier of the SSL CA Cert.@EXAMPLE */ readonly sslCaCertId: pulumi.Output; /** * Identifier of the SSL Client Cert.@EXAMPLE */ readonly sslClientCertId: pulumi.Output; /** * Identifier of the SSL Client Key.@EXAMPLE */ readonly sslClientKeyId: pulumi.Output; /** * Plan numeric identifier.@EXAMPLE */ readonly syncPlanId: pulumi.Output; /** * Create a KatelloProduct resource with the given unique name, arguments, and options. * * @param name The _unique_ name of the resource. * @param args The arguments to use to populate this resource's properties. * @param opts A bag of options that control this resource's behavior. */ constructor(name: string, args?: KatelloProductArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering KatelloProduct resources. */ export interface KatelloProductState { /** * @SUMMARY Poducts are mostly operating systems to which repositories are assigned. */ __meta_?: pulumi.Input; /** * Product description.@EXAMPLE "A product description" */ description?: pulumi.Input; /** * Identifier of the GPG key.@EXAMPLE */ gpgKeyId?: pulumi.Input; /** * Label for the product. Cannot be changed after creation. By default set to the name, with underscores as spaces * replacement. @EXAMPLE */ label?: pulumi.Input; /** * Product name.@EXAMPLE "Debian 10" */ name?: pulumi.Input; /** * Idenifier of the SSL CA Cert.@EXAMPLE */ sslCaCertId?: pulumi.Input; /** * Identifier of the SSL Client Cert.@EXAMPLE */ sslClientCertId?: pulumi.Input; /** * Identifier of the SSL Client Key.@EXAMPLE */ sslClientKeyId?: pulumi.Input; /** * Plan numeric identifier.@EXAMPLE */ syncPlanId?: pulumi.Input; } /** * The set of arguments for constructing a KatelloProduct resource. */ export interface KatelloProductArgs { /** * Product description.@EXAMPLE "A product description" */ description?: pulumi.Input; /** * Identifier of the GPG key.@EXAMPLE */ gpgKeyId?: pulumi.Input; /** * Label for the product. Cannot be changed after creation. By default set to the name, with underscores as spaces * replacement. @EXAMPLE */ label?: pulumi.Input; /** * Product name.@EXAMPLE "Debian 10" */ name?: pulumi.Input; /** * Idenifier of the SSL CA Cert.@EXAMPLE */ sslCaCertId?: pulumi.Input; /** * Identifier of the SSL Client Cert.@EXAMPLE */ sslClientCertId?: pulumi.Input; /** * Identifier of the SSL Client Key.@EXAMPLE */ sslClientKeyId?: pulumi.Input; /** * Plan numeric identifier.@EXAMPLE */ syncPlanId?: pulumi.Input; }