1. Packages
  2. Packages
  3. Aiven Provider
  4. API Docs
  5. UpgradeStep
Viewing docs for Aiven v6.54.0
published on Thursday, May 21, 2026 by Pulumi
aiven logo
Viewing docs for Aiven v6.54.0
published on Thursday, May 21, 2026 by Pulumi

    Creates and manages an Aiven Upgrade Pipeline step between source and destination services. This feature is in the limited availability stage and may change without notice. To enable this feature, contact the sales team. Once it’s enabled, set the PROVIDER_AIVEN_ENABLE_BETA environment variable to use the resource.

    Example Usage

    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 pulumi
    import pulumi_aiven as aiven
    
    example = aiven.UpgradeStep("example",
        organization_id="org1a23f456789",
        destination_project_name="prod-project",
        destination_service_name="pg-prod",
        source_project_name="dev-project",
        source_service_name="pg-dev",
        auto_validation_delay_days=1)
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-aiven/sdk/v6/go/aiven"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := aiven.NewUpgradeStep(ctx, "example", &aiven.UpgradeStepArgs{
    			OrganizationId:          pulumi.String("org1a23f456789"),
    			DestinationProjectName:  pulumi.String("prod-project"),
    			DestinationServiceName:  pulumi.String("pg-prod"),
    			SourceProjectName:       pulumi.String("dev-project"),
    			SourceServiceName:       pulumi.String("pg-dev"),
    			AutoValidationDelayDays: pulumi.Int(1),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Aiven = Pulumi.Aiven;
    
    return await Deployment.RunAsync(() => 
    {
        var example = new Aiven.UpgradeStep("example", new()
        {
            OrganizationId = "org1a23f456789",
            DestinationProjectName = "prod-project",
            DestinationServiceName = "pg-prod",
            SourceProjectName = "dev-project",
            SourceServiceName = "pg-dev",
            AutoValidationDelayDays = 1,
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.aiven.UpgradeStep;
    import com.pulumi.aiven.UpgradeStepArgs;
    import java.util.ArrayList;
    import java.util.Arrays;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var example = new UpgradeStep("example", UpgradeStepArgs.builder()
                .organizationId("org1a23f456789")
                .destinationProjectName("prod-project")
                .destinationServiceName("pg-prod")
                .sourceProjectName("dev-project")
                .sourceServiceName("pg-dev")
                .autoValidationDelayDays(1)
                .build());
    
        }
    }
    
    resources:
      example:
        type: aiven:UpgradeStep
        properties:
          organizationId: org1a23f456789
          destinationProjectName: prod-project
          destinationServiceName: pg-prod
          sourceProjectName: dev-project
          sourceServiceName: pg-dev
          autoValidationDelayDays: 1 # /* COMPUTED FIELDS
          #   step_id = "550e8400-e29b-41d4-a716-446655440000"
          #   */
    
    Example coming soon!
    

    Create UpgradeStep Resource

    Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.

    Constructor syntax

    new UpgradeStep(name: string, args: UpgradeStepArgs, opts?: CustomResourceOptions);
    @overload
    def UpgradeStep(resource_name: str,
                    args: UpgradeStepArgs,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def UpgradeStep(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    destination_project_name: Optional[str] = None,
                    destination_service_name: Optional[str] = None,
                    organization_id: Optional[str] = None,
                    source_project_name: Optional[str] = None,
                    source_service_name: Optional[str] = None,
                    auto_validation_delay_days: Optional[int] = None,
                    timeouts: Optional[UpgradeStepTimeoutsArgs] = None)
    func NewUpgradeStep(ctx *Context, name string, args UpgradeStepArgs, opts ...ResourceOption) (*UpgradeStep, error)
    public UpgradeStep(string name, UpgradeStepArgs args, CustomResourceOptions? opts = null)
    public UpgradeStep(String name, UpgradeStepArgs args)
    public UpgradeStep(String name, UpgradeStepArgs args, CustomResourceOptions options)
    
    type: aiven:UpgradeStep
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "aiven_upgradestep" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args UpgradeStepArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args UpgradeStepArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args UpgradeStepArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args UpgradeStepArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args UpgradeStepArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Constructor example

    The following reference example uses placeholder values for all input properties.

    var upgradeStepResource = new Aiven.UpgradeStep("upgradeStepResource", new()
    {
        DestinationProjectName = "string",
        DestinationServiceName = "string",
        OrganizationId = "string",
        SourceProjectName = "string",
        SourceServiceName = "string",
        AutoValidationDelayDays = 0,
        Timeouts = new Aiven.Inputs.UpgradeStepTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Read = "string",
            Update = "string",
        },
    });
    
    example, err := aiven.NewUpgradeStep(ctx, "upgradeStepResource", &aiven.UpgradeStepArgs{
    	DestinationProjectName:  pulumi.String("string"),
    	DestinationServiceName:  pulumi.String("string"),
    	OrganizationId:          pulumi.String("string"),
    	SourceProjectName:       pulumi.String("string"),
    	SourceServiceName:       pulumi.String("string"),
    	AutoValidationDelayDays: pulumi.Int(0),
    	Timeouts: &aiven.UpgradeStepTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Read:   pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    })
    
    resource "aiven_upgradestep" "upgradeStepResource" {
      destination_project_name   = "string"
      destination_service_name   = "string"
      organization_id            = "string"
      source_project_name        = "string"
      source_service_name        = "string"
      auto_validation_delay_days = 0
      timeouts = {
        create = "string"
        delete = "string"
        read   = "string"
        update = "string"
      }
    }
    
    var upgradeStepResource = new UpgradeStep("upgradeStepResource", UpgradeStepArgs.builder()
        .destinationProjectName("string")
        .destinationServiceName("string")
        .organizationId("string")
        .sourceProjectName("string")
        .sourceServiceName("string")
        .autoValidationDelayDays(0)
        .timeouts(UpgradeStepTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .read("string")
            .update("string")
            .build())
        .build());
    
    upgrade_step_resource = aiven.UpgradeStep("upgradeStepResource",
        destination_project_name="string",
        destination_service_name="string",
        organization_id="string",
        source_project_name="string",
        source_service_name="string",
        auto_validation_delay_days=0,
        timeouts={
            "create": "string",
            "delete": "string",
            "read": "string",
            "update": "string",
        })
    
    const upgradeStepResource = new aiven.UpgradeStep("upgradeStepResource", {
        destinationProjectName: "string",
        destinationServiceName: "string",
        organizationId: "string",
        sourceProjectName: "string",
        sourceServiceName: "string",
        autoValidationDelayDays: 0,
        timeouts: {
            create: "string",
            "delete": "string",
            read: "string",
            update: "string",
        },
    });
    
    type: aiven:UpgradeStep
    properties:
        autoValidationDelayDays: 0
        destinationProjectName: string
        destinationServiceName: string
        organizationId: string
        sourceProjectName: string
        sourceServiceName: string
        timeouts:
            create: string
            delete: string
            read: string
            update: string
    

    UpgradeStep Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    In Python, inputs that are objects can be passed either as argument classes or as dictionary literals.

    The UpgradeStep resource accepts the following input properties:

    DestinationProjectName string
    Destination project name. Changing this property forces recreation of the resource.
    DestinationServiceName string
    Destination service name. Changing this property forces recreation of the resource.
    OrganizationId string
    ID of an organization. Changing this property forces recreation of the resource.
    SourceProjectName string
    Source project name. Changing this property forces recreation of the resource.
    SourceServiceName string
    Source service name. Changing this property forces recreation of the resource.
    AutoValidationDelayDays int
    Days before automatic validation (defaults to 7). Minimum value: 1.
    Timeouts UpgradeStepTimeouts
    DestinationProjectName string
    Destination project name. Changing this property forces recreation of the resource.
    DestinationServiceName string
    Destination service name. Changing this property forces recreation of the resource.
    OrganizationId string
    ID of an organization. Changing this property forces recreation of the resource.
    SourceProjectName string
    Source project name. Changing this property forces recreation of the resource.
    SourceServiceName string
    Source service name. Changing this property forces recreation of the resource.
    AutoValidationDelayDays int
    Days before automatic validation (defaults to 7). Minimum value: 1.
    Timeouts UpgradeStepTimeoutsArgs
    destination_project_name string
    Destination project name. Changing this property forces recreation of the resource.
    destination_service_name string
    Destination service name. Changing this property forces recreation of the resource.
    organization_id string
    ID of an organization. Changing this property forces recreation of the resource.
    source_project_name string
    Source project name. Changing this property forces recreation of the resource.
    source_service_name string
    Source service name. Changing this property forces recreation of the resource.
    auto_validation_delay_days number
    Days before automatic validation (defaults to 7). Minimum value: 1.
    timeouts object
    destinationProjectName String
    Destination project name. Changing this property forces recreation of the resource.
    destinationServiceName String
    Destination service name. Changing this property forces recreation of the resource.
    organizationId String
    ID of an organization. Changing this property forces recreation of the resource.
    sourceProjectName String
    Source project name. Changing this property forces recreation of the resource.
    sourceServiceName String
    Source service name. Changing this property forces recreation of the resource.
    autoValidationDelayDays Integer
    Days before automatic validation (defaults to 7). Minimum value: 1.
    timeouts UpgradeStepTimeouts
    destinationProjectName string
    Destination project name. Changing this property forces recreation of the resource.
    destinationServiceName string
    Destination service name. Changing this property forces recreation of the resource.
    organizationId string
    ID of an organization. Changing this property forces recreation of the resource.
    sourceProjectName string
    Source project name. Changing this property forces recreation of the resource.
    sourceServiceName string
    Source service name. Changing this property forces recreation of the resource.
    autoValidationDelayDays number
    Days before automatic validation (defaults to 7). Minimum value: 1.
    timeouts UpgradeStepTimeouts
    destination_project_name str
    Destination project name. Changing this property forces recreation of the resource.
    destination_service_name str
    Destination service name. Changing this property forces recreation of the resource.
    organization_id str
    ID of an organization. Changing this property forces recreation of the resource.
    source_project_name str
    Source project name. Changing this property forces recreation of the resource.
    source_service_name str
    Source service name. Changing this property forces recreation of the resource.
    auto_validation_delay_days int
    Days before automatic validation (defaults to 7). Minimum value: 1.
    timeouts UpgradeStepTimeoutsArgs
    destinationProjectName String
    Destination project name. Changing this property forces recreation of the resource.
    destinationServiceName String
    Destination service name. Changing this property forces recreation of the resource.
    organizationId String
    ID of an organization. Changing this property forces recreation of the resource.
    sourceProjectName String
    Source project name. Changing this property forces recreation of the resource.
    sourceServiceName String
    Source service name. Changing this property forces recreation of the resource.
    autoValidationDelayDays Number
    Days before automatic validation (defaults to 7). Minimum value: 1.
    timeouts Property Map

    Outputs

    All input properties are implicitly available as output properties. Additionally, the UpgradeStep resource produces the following output properties:

    Id string
    The provider-assigned unique ID for this managed resource.
    StepId string
    Upgrade step ID. The possible value is 550e8400-e29b-41d4-a716-446655440000.
    Id string
    The provider-assigned unique ID for this managed resource.
    StepId string
    Upgrade step ID. The possible value is 550e8400-e29b-41d4-a716-446655440000.
    id string
    The provider-assigned unique ID for this managed resource.
    step_id string
    Upgrade step ID. The possible value is 550e8400-e29b-41d4-a716-446655440000.
    id String
    The provider-assigned unique ID for this managed resource.
    stepId String
    Upgrade step ID. The possible value is 550e8400-e29b-41d4-a716-446655440000.
    id string
    The provider-assigned unique ID for this managed resource.
    stepId string
    Upgrade step ID. The possible value is 550e8400-e29b-41d4-a716-446655440000.
    id str
    The provider-assigned unique ID for this managed resource.
    step_id str
    Upgrade step ID. The possible value is 550e8400-e29b-41d4-a716-446655440000.
    id String
    The provider-assigned unique ID for this managed resource.
    stepId String
    Upgrade step ID. The possible value is 550e8400-e29b-41d4-a716-446655440000.

    Look up Existing UpgradeStep Resource

    Get an existing UpgradeStep resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: UpgradeStepState, opts?: CustomResourceOptions): UpgradeStep
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            auto_validation_delay_days: Optional[int] = None,
            destination_project_name: Optional[str] = None,
            destination_service_name: Optional[str] = None,
            organization_id: Optional[str] = None,
            source_project_name: Optional[str] = None,
            source_service_name: Optional[str] = None,
            step_id: Optional[str] = None,
            timeouts: Optional[UpgradeStepTimeoutsArgs] = None) -> UpgradeStep
    func GetUpgradeStep(ctx *Context, name string, id IDInput, state *UpgradeStepState, opts ...ResourceOption) (*UpgradeStep, error)
    public static UpgradeStep Get(string name, Input<string> id, UpgradeStepState? state, CustomResourceOptions? opts = null)
    public static UpgradeStep get(String name, Output<String> id, UpgradeStepState state, CustomResourceOptions options)
    resources:  _:    type: aiven:UpgradeStep    get:      id: ${id}
    import {
      to = aiven_upgradestep.example
      id = "${id}"
    }
    
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    AutoValidationDelayDays int
    Days before automatic validation (defaults to 7). Minimum value: 1.
    DestinationProjectName string
    Destination project name. Changing this property forces recreation of the resource.
    DestinationServiceName string
    Destination service name. Changing this property forces recreation of the resource.
    OrganizationId string
    ID of an organization. Changing this property forces recreation of the resource.
    SourceProjectName string
    Source project name. Changing this property forces recreation of the resource.
    SourceServiceName string
    Source service name. Changing this property forces recreation of the resource.
    StepId string
    Upgrade step ID. The possible value is 550e8400-e29b-41d4-a716-446655440000.
    Timeouts UpgradeStepTimeouts
    AutoValidationDelayDays int
    Days before automatic validation (defaults to 7). Minimum value: 1.
    DestinationProjectName string
    Destination project name. Changing this property forces recreation of the resource.
    DestinationServiceName string
    Destination service name. Changing this property forces recreation of the resource.
    OrganizationId string
    ID of an organization. Changing this property forces recreation of the resource.
    SourceProjectName string
    Source project name. Changing this property forces recreation of the resource.
    SourceServiceName string
    Source service name. Changing this property forces recreation of the resource.
    StepId string
    Upgrade step ID. The possible value is 550e8400-e29b-41d4-a716-446655440000.
    Timeouts UpgradeStepTimeoutsArgs
    auto_validation_delay_days number
    Days before automatic validation (defaults to 7). Minimum value: 1.
    destination_project_name string
    Destination project name. Changing this property forces recreation of the resource.
    destination_service_name string
    Destination service name. Changing this property forces recreation of the resource.
    organization_id string
    ID of an organization. Changing this property forces recreation of the resource.
    source_project_name string
    Source project name. Changing this property forces recreation of the resource.
    source_service_name string
    Source service name. Changing this property forces recreation of the resource.
    step_id string
    Upgrade step ID. The possible value is 550e8400-e29b-41d4-a716-446655440000.
    timeouts object
    autoValidationDelayDays Integer
    Days before automatic validation (defaults to 7). Minimum value: 1.
    destinationProjectName String
    Destination project name. Changing this property forces recreation of the resource.
    destinationServiceName String
    Destination service name. Changing this property forces recreation of the resource.
    organizationId String
    ID of an organization. Changing this property forces recreation of the resource.
    sourceProjectName String
    Source project name. Changing this property forces recreation of the resource.
    sourceServiceName String
    Source service name. Changing this property forces recreation of the resource.
    stepId String
    Upgrade step ID. The possible value is 550e8400-e29b-41d4-a716-446655440000.
    timeouts UpgradeStepTimeouts
    autoValidationDelayDays number
    Days before automatic validation (defaults to 7). Minimum value: 1.
    destinationProjectName string
    Destination project name. Changing this property forces recreation of the resource.
    destinationServiceName string
    Destination service name. Changing this property forces recreation of the resource.
    organizationId string
    ID of an organization. Changing this property forces recreation of the resource.
    sourceProjectName string
    Source project name. Changing this property forces recreation of the resource.
    sourceServiceName string
    Source service name. Changing this property forces recreation of the resource.
    stepId string
    Upgrade step ID. The possible value is 550e8400-e29b-41d4-a716-446655440000.
    timeouts UpgradeStepTimeouts
    auto_validation_delay_days int
    Days before automatic validation (defaults to 7). Minimum value: 1.
    destination_project_name str
    Destination project name. Changing this property forces recreation of the resource.
    destination_service_name str
    Destination service name. Changing this property forces recreation of the resource.
    organization_id str
    ID of an organization. Changing this property forces recreation of the resource.
    source_project_name str
    Source project name. Changing this property forces recreation of the resource.
    source_service_name str
    Source service name. Changing this property forces recreation of the resource.
    step_id str
    Upgrade step ID. The possible value is 550e8400-e29b-41d4-a716-446655440000.
    timeouts UpgradeStepTimeoutsArgs
    autoValidationDelayDays Number
    Days before automatic validation (defaults to 7). Minimum value: 1.
    destinationProjectName String
    Destination project name. Changing this property forces recreation of the resource.
    destinationServiceName String
    Destination service name. Changing this property forces recreation of the resource.
    organizationId String
    ID of an organization. Changing this property forces recreation of the resource.
    sourceProjectName String
    Source project name. Changing this property forces recreation of the resource.
    sourceServiceName String
    Source service name. Changing this property forces recreation of the resource.
    stepId String
    Upgrade step ID. The possible value is 550e8400-e29b-41d4-a716-446655440000.
    timeouts Property Map

    Supporting Types

    UpgradeStepTimeouts, UpgradeStepTimeoutsArgs

    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Read string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    Delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    Read string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    Update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    read string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    read String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    read string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    update string
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    read str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    update str
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    create String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
    delete String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
    read String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
    update String
    A string that can be parsed as a duration consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).

    Import

    $ pulumi import aiven:index/upgradeStep:UpgradeStep example ORGANIZATION_ID/STEP_ID
    

    To learn more about importing existing cloud resources, see Importing resources.

    Package Details

    Repository
    Aiven pulumi/pulumi-aiven
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the aiven Terraform Provider.
    aiven logo
    Viewing docs for Aiven v6.54.0
    published on Thursday, May 21, 2026 by Pulumi

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial