import * as pulumi from "@pulumi/pulumi"; import * as inputs from "./types/input"; import * as outputs from "./types/output"; /** * Creates and manages an Aiven Upgrade Pipeline step between source and destination services. * * > **Beta resource in limited availability** * This feature is in the limited availability stage and may change without notice. To enable this feature, contact the [sales team](http://aiven.io/contact). Once it's enabled, set the `PROVIDER_AIVEN_ENABLE_BETA` environment variable to use the resource. * * ## Example Usage * * ```typescript * import * as pulumi from "@pulumi/pulumi"; * import * as aiven from "@pulumi/aiven"; * * const example = new aiven.UpgradeStep("example", { * organizationId: "org1a23f456789", * destinationProjectName: "prod-project", * destinationServiceName: "pg-prod", * sourceProjectName: "dev-project", * sourceServiceName: "pg-dev", * autoValidationDelayDays: 1, * }); * ``` * * ## Import * * ```sh * $ pulumi import aiven:index/upgradeStep:UpgradeStep example ORGANIZATION_ID/STEP_ID * ``` */ export declare class UpgradeStep extends pulumi.CustomResource { /** * Get an existing UpgradeStep 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?: UpgradeStepState, opts?: pulumi.CustomResourceOptions): UpgradeStep; /** * Returns true if the given object is an instance of UpgradeStep. 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 UpgradeStep; /** * Days before automatic validation (defaults to 7). Minimum value: `1`. */ readonly autoValidationDelayDays: pulumi.Output; /** * Destination project name. Changing this property forces recreation of the resource. */ readonly destinationProjectName: pulumi.Output; /** * Destination service name. Changing this property forces recreation of the resource. */ readonly destinationServiceName: pulumi.Output; /** * ID of an organization. Changing this property forces recreation of the resource. */ readonly organizationId: pulumi.Output; /** * Source project name. Changing this property forces recreation of the resource. */ readonly sourceProjectName: pulumi.Output; /** * Source service name. Changing this property forces recreation of the resource. */ readonly sourceServiceName: pulumi.Output; /** * Upgrade step ID. The possible value is `550e8400-e29b-41d4-a716-446655440000`. */ readonly stepId: pulumi.Output; readonly timeouts: pulumi.Output; /** * Create a UpgradeStep 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: UpgradeStepArgs, opts?: pulumi.CustomResourceOptions); } /** * Input properties used for looking up and filtering UpgradeStep resources. */ export interface UpgradeStepState { /** * Days before automatic validation (defaults to 7). Minimum value: `1`. */ autoValidationDelayDays?: pulumi.Input; /** * Destination project name. Changing this property forces recreation of the resource. */ destinationProjectName?: pulumi.Input; /** * Destination service name. Changing this property forces recreation of the resource. */ destinationServiceName?: pulumi.Input; /** * ID of an organization. Changing this property forces recreation of the resource. */ organizationId?: pulumi.Input; /** * Source project name. Changing this property forces recreation of the resource. */ sourceProjectName?: pulumi.Input; /** * Source service name. Changing this property forces recreation of the resource. */ sourceServiceName?: pulumi.Input; /** * Upgrade step ID. The possible value is `550e8400-e29b-41d4-a716-446655440000`. */ stepId?: pulumi.Input; timeouts?: pulumi.Input; } /** * The set of arguments for constructing a UpgradeStep resource. */ export interface UpgradeStepArgs { /** * Days before automatic validation (defaults to 7). Minimum value: `1`. */ autoValidationDelayDays?: pulumi.Input; /** * Destination project name. Changing this property forces recreation of the resource. */ destinationProjectName: pulumi.Input; /** * Destination service name. Changing this property forces recreation of the resource. */ destinationServiceName: pulumi.Input; /** * ID of an organization. Changing this property forces recreation of the resource. */ organizationId: pulumi.Input; /** * Source project name. Changing this property forces recreation of the resource. */ sourceProjectName: pulumi.Input; /** * Source service name. Changing this property forces recreation of the resource. */ sourceServiceName: pulumi.Input; timeouts?: pulumi.Input; } //# sourceMappingURL=upgradeStep.d.ts.map