import * as pulumi from "@pulumi/pulumi"; export declare class KatelloSyncPlan extends pulumi.CustomResource { /** * Get an existing KatelloSyncPlan 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?: KatelloSyncPlanState, opts?: pulumi.CustomResourceOptions): KatelloSyncPlan; /** * Returns true if the given object is an instance of KatelloSyncPlan. 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 KatelloSyncPlan; /** * @SUMMARY A sync plan is used to schedule a synchronization of a product in katello */ readonly __meta_: pulumi.Output; /** * Custom cron logic for sync plan.@EXAMPLE "*/5 * * * *" */ readonly cronExpression: pulumi.Output; /** * Sync plan description.@EXAMPLE "A sync plan description" */ readonly description: pulumi.Output; /** * Enables or disables synchronization.@EXAMPLE true */ readonly enabled: pulumi.Output; /** * How often synchronization should run. Valid values include: `"hourly"`, `"daily"`, `"weekly"`,`"custom cron"`.@EXAMPLE * "daily" */ readonly interval: pulumi.Output; /** * Sync plan name.@EXAMPLE "daily" */ readonly name: pulumi.Output; /** * Start datetime of synchronization. Use the specified format: YYYY-MM-DD HH:MM:SS +0000, where '+0000' is the timezone * difference. A value of '+0000' means UTC. @EXAMPLE "1970-01-01 00:00:00 +0000" */ readonly syncDate: pulumi.Output; /** * Create a KatelloSyncPlan 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: KatelloSyncPlanArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering KatelloSyncPlan resources. */ export interface KatelloSyncPlanState { /** * @SUMMARY A sync plan is used to schedule a synchronization of a product in katello */ __meta_?: pulumi.Input; /** * Custom cron logic for sync plan.@EXAMPLE "*/5 * * * *" */ cronExpression?: pulumi.Input; /** * Sync plan description.@EXAMPLE "A sync plan description" */ description?: pulumi.Input; /** * Enables or disables synchronization.@EXAMPLE true */ enabled?: pulumi.Input; /** * How often synchronization should run. Valid values include: `"hourly"`, `"daily"`, `"weekly"`,`"custom cron"`.@EXAMPLE * "daily" */ interval?: pulumi.Input; /** * Sync plan name.@EXAMPLE "daily" */ name?: pulumi.Input; /** * Start datetime of synchronization. Use the specified format: YYYY-MM-DD HH:MM:SS +0000, where '+0000' is the timezone * difference. A value of '+0000' means UTC. @EXAMPLE "1970-01-01 00:00:00 +0000" */ syncDate?: pulumi.Input; } /** * The set of arguments for constructing a KatelloSyncPlan resource. */ export interface KatelloSyncPlanArgs { /** * Custom cron logic for sync plan.@EXAMPLE "*/5 * * * *" */ cronExpression?: pulumi.Input; /** * Sync plan description.@EXAMPLE "A sync plan description" */ description?: pulumi.Input; /** * Enables or disables synchronization.@EXAMPLE true */ enabled: pulumi.Input; /** * How often synchronization should run. Valid values include: `"hourly"`, `"daily"`, `"weekly"`,`"custom cron"`.@EXAMPLE * "daily" */ interval: pulumi.Input; /** * Sync plan name.@EXAMPLE "daily" */ name?: pulumi.Input; /** * Start datetime of synchronization. Use the specified format: YYYY-MM-DD HH:MM:SS +0000, where '+0000' is the timezone * difference. A value of '+0000' means UTC. @EXAMPLE "1970-01-01 00:00:00 +0000" */ syncDate: pulumi.Input; }