import * as pulumi from "@pulumi/pulumi"; export declare class KatelloLifecycleEnvironment extends pulumi.CustomResource { /** * Get an existing KatelloLifecycleEnvironment 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?: KatelloLifecycleEnvironmentState, opts?: pulumi.CustomResourceOptions): KatelloLifecycleEnvironment; /** * Returns true if the given object is an instance of KatelloLifecycleEnvironment. 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 KatelloLifecycleEnvironment; /** * @SUMMARY Lifecycle environments group hosts into logical stages, example dev/test/prod. */ readonly __meta_: pulumi.Output; /** * Description for the lifecycle environment */ readonly description: pulumi.Output; /** * Label for the lifecycle environment. Cannot be changed after creation. By default set to the name, with underscores as * spaces replacement. @EXAMPLE */ readonly label: pulumi.Output; /** * Specifies if this environment is the special 'Library' root environment. */ readonly library: pulumi.Output; /** * Name of the lifecycle environment. @EXAMPLE "My new env" */ readonly name: pulumi.Output; /** * @EXAMPLE 1 */ readonly organizationId: pulumi.Output; /** * ID of the prior lifecycle environment. Use '1' to refer to the built-in 'Library' root environment. @EXAMPLE * data.foreman_katello_lifecycle_environment.library.id */ readonly priorId: pulumi.Output; readonly successorId: pulumi.Output; /** * Create a KatelloLifecycleEnvironment 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: KatelloLifecycleEnvironmentArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering KatelloLifecycleEnvironment resources. */ export interface KatelloLifecycleEnvironmentState { /** * @SUMMARY Lifecycle environments group hosts into logical stages, example dev/test/prod. */ __meta_?: pulumi.Input; /** * Description for the lifecycle environment */ description?: pulumi.Input; /** * Label for the lifecycle environment. Cannot be changed after creation. By default set to the name, with underscores as * spaces replacement. @EXAMPLE */ label?: pulumi.Input; /** * Specifies if this environment is the special 'Library' root environment. */ library?: pulumi.Input; /** * Name of the lifecycle environment. @EXAMPLE "My new env" */ name?: pulumi.Input; /** * @EXAMPLE 1 */ organizationId?: pulumi.Input; /** * ID of the prior lifecycle environment. Use '1' to refer to the built-in 'Library' root environment. @EXAMPLE * data.foreman_katello_lifecycle_environment.library.id */ priorId?: pulumi.Input; successorId?: pulumi.Input; } /** * The set of arguments for constructing a KatelloLifecycleEnvironment resource. */ export interface KatelloLifecycleEnvironmentArgs { /** * Description for the lifecycle environment */ description?: pulumi.Input; /** * Label for the lifecycle environment. Cannot be changed after creation. By default set to the name, with underscores as * spaces replacement. @EXAMPLE */ label?: pulumi.Input; /** * Name of the lifecycle environment. @EXAMPLE "My new env" */ name?: pulumi.Input; /** * @EXAMPLE 1 */ organizationId: pulumi.Input; /** * ID of the prior lifecycle environment. Use '1' to refer to the built-in 'Library' root environment. @EXAMPLE * data.foreman_katello_lifecycle_environment.library.id */ priorId: pulumi.Input; }