1. Packages
  2. Volcengine
  3. API Docs
  4. rds_postgresql
  5. PlannedEvents
Volcengine v0.0.43 published on Friday, Jan 16, 2026 by Volcengine
volcengine logo
Volcengine v0.0.43 published on Friday, Jan 16, 2026 by Volcengine
    Deprecated: volcengine.rds_postgresql.PlannedEvents has been deprecated in favor of volcengine.rds_postgresql.getPlannedEvents

    Use this data source to query detailed information of rds postgresql planned events

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as volcengine from "@pulumi/volcengine";
    
    const example = volcengine.rds_postgresql.getPlannedEvents({
        eventTypes: ["VersionUpgrade"],
        instanceId: "postgres-72715e0d9f58",
        instanceName: "test-01",
        plannedSwitchTimeSearchRangeEnd: "2025-12-15T17:40:53.000Z",
        plannedSwitchTimeSearchRangeStart: "2025-12-01T02:06:53.000Z",
        statuses: [
            "WaitStart",
            "Running",
        ],
    });
    
    import pulumi
    import pulumi_volcengine as volcengine
    
    example = volcengine.rds_postgresql.get_planned_events(event_types=["VersionUpgrade"],
        instance_id="postgres-72715e0d9f58",
        instance_name="test-01",
        planned_switch_time_search_range_end="2025-12-15T17:40:53.000Z",
        planned_switch_time_search_range_start="2025-12-01T02:06:53.000Z",
        statuses=[
            "WaitStart",
            "Running",
        ])
    
    package main
    
    import (
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    	"github.com/volcengine/pulumi-volcengine/sdk/go/volcengine/rds_postgresql"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := rds_postgresql.GetPlannedEvents(ctx, &rds_postgresql.GetPlannedEventsArgs{
    			EventTypes: []string{
    				"VersionUpgrade",
    			},
    			InstanceId:                        pulumi.StringRef("postgres-72715e0d9f58"),
    			InstanceName:                      pulumi.StringRef("test-01"),
    			PlannedSwitchTimeSearchRangeEnd:   pulumi.StringRef("2025-12-15T17:40:53.000Z"),
    			PlannedSwitchTimeSearchRangeStart: pulumi.StringRef("2025-12-01T02:06:53.000Z"),
    			Statuses: []string{
    				"WaitStart",
    				"Running",
    			},
    		}, nil)
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Volcengine = Pulumi.Volcengine;
    
    return await Deployment.RunAsync(() => 
    {
        var example = Volcengine.Rds_postgresql.GetPlannedEvents.Invoke(new()
        {
            EventTypes = new[]
            {
                "VersionUpgrade",
            },
            InstanceId = "postgres-72715e0d9f58",
            InstanceName = "test-01",
            PlannedSwitchTimeSearchRangeEnd = "2025-12-15T17:40:53.000Z",
            PlannedSwitchTimeSearchRangeStart = "2025-12-01T02:06:53.000Z",
            Statuses = new[]
            {
                "WaitStart",
                "Running",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.volcengine.rds_postgresql.Rds_postgresqlFunctions;
    import com.pulumi.volcengine.rds_postgresql.inputs.GetPlannedEventsArgs;
    import java.util.List;
    import java.util.ArrayList;
    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) {
            final var example = Rds_postgresqlFunctions.getPlannedEvents(GetPlannedEventsArgs.builder()
                .eventTypes("VersionUpgrade")
                .instanceId("postgres-72715e0d9f58")
                .instanceName("test-01")
                .plannedSwitchTimeSearchRangeEnd("2025-12-15T17:40:53.000Z")
                .plannedSwitchTimeSearchRangeStart("2025-12-01T02:06:53.000Z")
                .statuses(            
                    "WaitStart",
                    "Running")
                .build());
    
        }
    }
    
    variables:
      example:
        fn::invoke:
          Function: volcengine:rds_postgresql:getPlannedEvents
          Arguments:
            eventTypes:
              - VersionUpgrade
            instanceId: postgres-72715e0d9f58
            instanceName: test-01
            plannedSwitchTimeSearchRangeEnd: 2025-12-15T17:40:53.000Z
            plannedSwitchTimeSearchRangeStart: 2025-12-01T02:06:53.000Z
            statuses:
              - WaitStart
              - Running
    

    Using PlannedEvents

    Two invocation forms are available. The direct form accepts plain arguments and either blocks until the result value is available, or returns a Promise-wrapped result. The output form accepts Input-wrapped arguments and returns an Output-wrapped result.

    function plannedEvents(args: PlannedEventsArgs, opts?: InvokeOptions): Promise<PlannedEventsResult>
    function plannedEventsOutput(args: PlannedEventsOutputArgs, opts?: InvokeOptions): Output<PlannedEventsResult>
    def planned_events(event_id: Optional[str] = None,
                       event_types: Optional[Sequence[str]] = None,
                       instance_id: Optional[str] = None,
                       instance_name: Optional[str] = None,
                       output_file: Optional[str] = None,
                       planned_begin_time_search_range_end: Optional[str] = None,
                       planned_begin_time_search_range_start: Optional[str] = None,
                       planned_switch_time_search_range_end: Optional[str] = None,
                       planned_switch_time_search_range_start: Optional[str] = None,
                       statuses: Optional[Sequence[str]] = None,
                       opts: Optional[InvokeOptions] = None) -> PlannedEventsResult
    def planned_events_output(event_id: Optional[pulumi.Input[str]] = None,
                       event_types: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                       instance_id: Optional[pulumi.Input[str]] = None,
                       instance_name: Optional[pulumi.Input[str]] = None,
                       output_file: Optional[pulumi.Input[str]] = None,
                       planned_begin_time_search_range_end: Optional[pulumi.Input[str]] = None,
                       planned_begin_time_search_range_start: Optional[pulumi.Input[str]] = None,
                       planned_switch_time_search_range_end: Optional[pulumi.Input[str]] = None,
                       planned_switch_time_search_range_start: Optional[pulumi.Input[str]] = None,
                       statuses: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
                       opts: Optional[InvokeOptions] = None) -> Output[PlannedEventsResult]
    func PlannedEvents(ctx *Context, args *PlannedEventsArgs, opts ...InvokeOption) (*PlannedEventsResult, error)
    func PlannedEventsOutput(ctx *Context, args *PlannedEventsOutputArgs, opts ...InvokeOption) PlannedEventsResultOutput
    public static class PlannedEvents 
    {
        public static Task<PlannedEventsResult> InvokeAsync(PlannedEventsArgs args, InvokeOptions? opts = null)
        public static Output<PlannedEventsResult> Invoke(PlannedEventsInvokeArgs args, InvokeOptions? opts = null)
    }
    public static CompletableFuture<PlannedEventsResult> plannedEvents(PlannedEventsArgs args, InvokeOptions options)
    public static Output<PlannedEventsResult> plannedEvents(PlannedEventsArgs args, InvokeOptions options)
    
    fn::invoke:
      function: volcengine:rds_postgresql:PlannedEvents
      arguments:
        # arguments dictionary

    The following arguments are supported:

    EventId string
    Event ID.
    EventTypes List<string>
    Event type. Values: VersionUpgrade, HostOffline.
    InstanceId string
    The id of the PostgreSQL instance.
    InstanceName string
    The name of PostgreSQL instance.
    OutputFile string
    File name where to save data source results.
    PlannedBeginTimeSearchRangeEnd string
    Time window end for planned execution time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    PlannedBeginTimeSearchRangeStart string
    Time window start for planned execution time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    PlannedSwitchTimeSearchRangeEnd string
    Time window end for planned switch time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    PlannedSwitchTimeSearchRangeStart string
    Time window start for planned switch time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    Statuses List<string>
    Operation event status. Values: Canceled, WaitStart, WaitSwitch, Running, Running_BeforeSwitch, Running_Switching, Running_AfterSwitch, Success, Failed, Timeout, Rollbacking, RollbackFailed.
    EventId string
    Event ID.
    EventTypes []string
    Event type. Values: VersionUpgrade, HostOffline.
    InstanceId string
    The id of the PostgreSQL instance.
    InstanceName string
    The name of PostgreSQL instance.
    OutputFile string
    File name where to save data source results.
    PlannedBeginTimeSearchRangeEnd string
    Time window end for planned execution time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    PlannedBeginTimeSearchRangeStart string
    Time window start for planned execution time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    PlannedSwitchTimeSearchRangeEnd string
    Time window end for planned switch time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    PlannedSwitchTimeSearchRangeStart string
    Time window start for planned switch time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    Statuses []string
    Operation event status. Values: Canceled, WaitStart, WaitSwitch, Running, Running_BeforeSwitch, Running_Switching, Running_AfterSwitch, Success, Failed, Timeout, Rollbacking, RollbackFailed.
    eventId String
    Event ID.
    eventTypes List<String>
    Event type. Values: VersionUpgrade, HostOffline.
    instanceId String
    The id of the PostgreSQL instance.
    instanceName String
    The name of PostgreSQL instance.
    outputFile String
    File name where to save data source results.
    plannedBeginTimeSearchRangeEnd String
    Time window end for planned execution time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    plannedBeginTimeSearchRangeStart String
    Time window start for planned execution time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    plannedSwitchTimeSearchRangeEnd String
    Time window end for planned switch time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    plannedSwitchTimeSearchRangeStart String
    Time window start for planned switch time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    statuses List<String>
    Operation event status. Values: Canceled, WaitStart, WaitSwitch, Running, Running_BeforeSwitch, Running_Switching, Running_AfterSwitch, Success, Failed, Timeout, Rollbacking, RollbackFailed.
    eventId string
    Event ID.
    eventTypes string[]
    Event type. Values: VersionUpgrade, HostOffline.
    instanceId string
    The id of the PostgreSQL instance.
    instanceName string
    The name of PostgreSQL instance.
    outputFile string
    File name where to save data source results.
    plannedBeginTimeSearchRangeEnd string
    Time window end for planned execution time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    plannedBeginTimeSearchRangeStart string
    Time window start for planned execution time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    plannedSwitchTimeSearchRangeEnd string
    Time window end for planned switch time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    plannedSwitchTimeSearchRangeStart string
    Time window start for planned switch time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    statuses string[]
    Operation event status. Values: Canceled, WaitStart, WaitSwitch, Running, Running_BeforeSwitch, Running_Switching, Running_AfterSwitch, Success, Failed, Timeout, Rollbacking, RollbackFailed.
    event_id str
    Event ID.
    event_types Sequence[str]
    Event type. Values: VersionUpgrade, HostOffline.
    instance_id str
    The id of the PostgreSQL instance.
    instance_name str
    The name of PostgreSQL instance.
    output_file str
    File name where to save data source results.
    planned_begin_time_search_range_end str
    Time window end for planned execution time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    planned_begin_time_search_range_start str
    Time window start for planned execution time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    planned_switch_time_search_range_end str
    Time window end for planned switch time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    planned_switch_time_search_range_start str
    Time window start for planned switch time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    statuses Sequence[str]
    Operation event status. Values: Canceled, WaitStart, WaitSwitch, Running, Running_BeforeSwitch, Running_Switching, Running_AfterSwitch, Success, Failed, Timeout, Rollbacking, RollbackFailed.
    eventId String
    Event ID.
    eventTypes List<String>
    Event type. Values: VersionUpgrade, HostOffline.
    instanceId String
    The id of the PostgreSQL instance.
    instanceName String
    The name of PostgreSQL instance.
    outputFile String
    File name where to save data source results.
    plannedBeginTimeSearchRangeEnd String
    Time window end for planned execution time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    plannedBeginTimeSearchRangeStart String
    Time window start for planned execution time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    plannedSwitchTimeSearchRangeEnd String
    Time window end for planned switch time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    plannedSwitchTimeSearchRangeStart String
    Time window start for planned switch time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    statuses List<String>
    Operation event status. Values: Canceled, WaitStart, WaitSwitch, Running, Running_BeforeSwitch, Running_Switching, Running_AfterSwitch, Success, Failed, Timeout, Rollbacking, RollbackFailed.

    PlannedEvents Result

    The following output properties are available:

    Id string
    The provider-assigned unique ID for this managed resource.
    PlannedEvents List<PlannedEventsPlannedEvent>
    Planned events list.
    TotalCount int
    The total count of query.
    EventId string
    Event ID.
    EventTypes List<string>
    Event type.
    InstanceId string
    Instance ID.
    InstanceName string
    Instance name.
    OutputFile string
    PlannedBeginTimeSearchRangeEnd string
    PlannedBeginTimeSearchRangeStart string
    PlannedSwitchTimeSearchRangeEnd string
    PlannedSwitchTimeSearchRangeStart string
    Statuses List<string>
    Operation event status.
    Id string
    The provider-assigned unique ID for this managed resource.
    PlannedEvents []PlannedEventsPlannedEvent
    Planned events list.
    TotalCount int
    The total count of query.
    EventId string
    Event ID.
    EventTypes []string
    Event type.
    InstanceId string
    Instance ID.
    InstanceName string
    Instance name.
    OutputFile string
    PlannedBeginTimeSearchRangeEnd string
    PlannedBeginTimeSearchRangeStart string
    PlannedSwitchTimeSearchRangeEnd string
    PlannedSwitchTimeSearchRangeStart string
    Statuses []string
    Operation event status.
    id String
    The provider-assigned unique ID for this managed resource.
    plannedEvents List<PlannedEventsPlannedEvent>
    Planned events list.
    totalCount Integer
    The total count of query.
    eventId String
    Event ID.
    eventTypes List<String>
    Event type.
    instanceId String
    Instance ID.
    instanceName String
    Instance name.
    outputFile String
    plannedBeginTimeSearchRangeEnd String
    plannedBeginTimeSearchRangeStart String
    plannedSwitchTimeSearchRangeEnd String
    plannedSwitchTimeSearchRangeStart String
    statuses List<String>
    Operation event status.
    id string
    The provider-assigned unique ID for this managed resource.
    plannedEvents PlannedEventsPlannedEvent[]
    Planned events list.
    totalCount number
    The total count of query.
    eventId string
    Event ID.
    eventTypes string[]
    Event type.
    instanceId string
    Instance ID.
    instanceName string
    Instance name.
    outputFile string
    plannedBeginTimeSearchRangeEnd string
    plannedBeginTimeSearchRangeStart string
    plannedSwitchTimeSearchRangeEnd string
    plannedSwitchTimeSearchRangeStart string
    statuses string[]
    Operation event status.
    id str
    The provider-assigned unique ID for this managed resource.
    planned_events Sequence[PlannedEventsPlannedEvent]
    Planned events list.
    total_count int
    The total count of query.
    event_id str
    Event ID.
    event_types Sequence[str]
    Event type.
    instance_id str
    Instance ID.
    instance_name str
    Instance name.
    output_file str
    planned_begin_time_search_range_end str
    planned_begin_time_search_range_start str
    planned_switch_time_search_range_end str
    planned_switch_time_search_range_start str
    statuses Sequence[str]
    Operation event status.
    id String
    The provider-assigned unique ID for this managed resource.
    plannedEvents List<Property Map>
    Planned events list.
    totalCount Number
    The total count of query.
    eventId String
    Event ID.
    eventTypes List<String>
    Event type.
    instanceId String
    Instance ID.
    instanceName String
    Instance name.
    outputFile String
    plannedBeginTimeSearchRangeEnd String
    plannedBeginTimeSearchRangeStart String
    plannedSwitchTimeSearchRangeEnd String
    plannedSwitchTimeSearchRangeStart String
    statuses List<String>
    Operation event status.

    Supporting Types

    PlannedEventsPlannedEvent

    BusinessImpact string
    The impact of operation and maintenance events on the business.
    EventId string
    Event ID.
    EventType string
    Event type. Values: VersionUpgrade, HostOffline.
    InstanceId string
    The id of the PostgreSQL instance.
    InstanceName string
    The name of PostgreSQL instance.
    MaxDelayTime string
    Maximum delay time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    PlannedBeginTime string
    Planned execution time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    PlannedEventReason string
    Reason for the planned event.
    PlannedSwitchBeginTime string
    Planned switch start time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    PlannedSwitchEndTime string
    Planned switch end time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    Region string
    Region.
    Status string
    Operation event status. Values: Canceled, WaitStart, WaitSwitch, Running, Running_BeforeSwitch, Running_Switching, Running_AfterSwitch, Success, Failed, Timeout, Rollbacking, RollbackFailed.
    BusinessImpact string
    The impact of operation and maintenance events on the business.
    EventId string
    Event ID.
    EventType string
    Event type. Values: VersionUpgrade, HostOffline.
    InstanceId string
    The id of the PostgreSQL instance.
    InstanceName string
    The name of PostgreSQL instance.
    MaxDelayTime string
    Maximum delay time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    PlannedBeginTime string
    Planned execution time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    PlannedEventReason string
    Reason for the planned event.
    PlannedSwitchBeginTime string
    Planned switch start time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    PlannedSwitchEndTime string
    Planned switch end time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    Region string
    Region.
    Status string
    Operation event status. Values: Canceled, WaitStart, WaitSwitch, Running, Running_BeforeSwitch, Running_Switching, Running_AfterSwitch, Success, Failed, Timeout, Rollbacking, RollbackFailed.
    businessImpact String
    The impact of operation and maintenance events on the business.
    eventId String
    Event ID.
    eventType String
    Event type. Values: VersionUpgrade, HostOffline.
    instanceId String
    The id of the PostgreSQL instance.
    instanceName String
    The name of PostgreSQL instance.
    maxDelayTime String
    Maximum delay time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    plannedBeginTime String
    Planned execution time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    plannedEventReason String
    Reason for the planned event.
    plannedSwitchBeginTime String
    Planned switch start time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    plannedSwitchEndTime String
    Planned switch end time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    region String
    Region.
    status String
    Operation event status. Values: Canceled, WaitStart, WaitSwitch, Running, Running_BeforeSwitch, Running_Switching, Running_AfterSwitch, Success, Failed, Timeout, Rollbacking, RollbackFailed.
    businessImpact string
    The impact of operation and maintenance events on the business.
    eventId string
    Event ID.
    eventType string
    Event type. Values: VersionUpgrade, HostOffline.
    instanceId string
    The id of the PostgreSQL instance.
    instanceName string
    The name of PostgreSQL instance.
    maxDelayTime string
    Maximum delay time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    plannedBeginTime string
    Planned execution time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    plannedEventReason string
    Reason for the planned event.
    plannedSwitchBeginTime string
    Planned switch start time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    plannedSwitchEndTime string
    Planned switch end time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    region string
    Region.
    status string
    Operation event status. Values: Canceled, WaitStart, WaitSwitch, Running, Running_BeforeSwitch, Running_Switching, Running_AfterSwitch, Success, Failed, Timeout, Rollbacking, RollbackFailed.
    business_impact str
    The impact of operation and maintenance events on the business.
    event_id str
    Event ID.
    event_type str
    Event type. Values: VersionUpgrade, HostOffline.
    instance_id str
    The id of the PostgreSQL instance.
    instance_name str
    The name of PostgreSQL instance.
    max_delay_time str
    Maximum delay time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    planned_begin_time str
    Planned execution time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    planned_event_reason str
    Reason for the planned event.
    planned_switch_begin_time str
    Planned switch start time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    planned_switch_end_time str
    Planned switch end time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    region str
    Region.
    status str
    Operation event status. Values: Canceled, WaitStart, WaitSwitch, Running, Running_BeforeSwitch, Running_Switching, Running_AfterSwitch, Success, Failed, Timeout, Rollbacking, RollbackFailed.
    businessImpact String
    The impact of operation and maintenance events on the business.
    eventId String
    Event ID.
    eventType String
    Event type. Values: VersionUpgrade, HostOffline.
    instanceId String
    The id of the PostgreSQL instance.
    instanceName String
    The name of PostgreSQL instance.
    maxDelayTime String
    Maximum delay time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    plannedBeginTime String
    Planned execution time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    plannedEventReason String
    Reason for the planned event.
    plannedSwitchBeginTime String
    Planned switch start time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    plannedSwitchEndTime String
    Planned switch end time. Format: yyyy-MM-ddTHH:mm:ss.sssZ (UTC).
    region String
    Region.
    status String
    Operation event status. Values: Canceled, WaitStart, WaitSwitch, Running, Running_BeforeSwitch, Running_Switching, Running_AfterSwitch, Success, Failed, Timeout, Rollbacking, RollbackFailed.

    Package Details

    Repository
    volcengine volcengine/pulumi-volcengine
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the volcengine Terraform Provider.
    volcengine logo
    Volcengine v0.0.43 published on Friday, Jan 16, 2026 by Volcengine
      Meet Neo: Your AI Platform Teammate