1. Packages
  2. Google Cloud (GCP) Classic
  3. API Docs
  4. gkehub
  5. RolloutSequence
Google Cloud v9.11.0 published on Tuesday, Feb 3, 2026 by Pulumi
gcp logo
Google Cloud v9.11.0 published on Tuesday, Feb 3, 2026 by Pulumi

    RolloutSequence defines the desired order of upgrades.

    To get more information about RolloutSequence, see:

    Create RolloutSequence Resource

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

    Constructor syntax

    new RolloutSequence(name: string, args: RolloutSequenceArgs, opts?: CustomResourceOptions);
    @overload
    def RolloutSequence(resource_name: str,
                        args: RolloutSequenceArgs,
                        opts: Optional[ResourceOptions] = None)
    
    @overload
    def RolloutSequence(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        rollout_sequence_id: Optional[str] = None,
                        stages: Optional[Sequence[RolloutSequenceStageArgs]] = None,
                        display_name: Optional[str] = None,
                        labels: Optional[Mapping[str, str]] = None,
                        project: Optional[str] = None)
    func NewRolloutSequence(ctx *Context, name string, args RolloutSequenceArgs, opts ...ResourceOption) (*RolloutSequence, error)
    public RolloutSequence(string name, RolloutSequenceArgs args, CustomResourceOptions? opts = null)
    public RolloutSequence(String name, RolloutSequenceArgs args)
    public RolloutSequence(String name, RolloutSequenceArgs args, CustomResourceOptions options)
    
    type: gcp:gkehub:RolloutSequence
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    

    Parameters

    name string
    The unique name of the resource.
    args RolloutSequenceArgs
    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 RolloutSequenceArgs
    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 RolloutSequenceArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args RolloutSequenceArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args RolloutSequenceArgs
    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 rolloutSequenceResource = new Gcp.GkeHub.RolloutSequence("rolloutSequenceResource", new()
    {
        RolloutSequenceId = "string",
        Stages = new[]
        {
            new Gcp.GkeHub.Inputs.RolloutSequenceStageArgs
            {
                FleetProjects = new[]
                {
                    "string",
                },
                ClusterSelector = new Gcp.GkeHub.Inputs.RolloutSequenceStageClusterSelectorArgs
                {
                    LabelSelector = "string",
                },
                SoakDuration = "string",
            },
        },
        DisplayName = "string",
        Labels = 
        {
            { "string", "string" },
        },
        Project = "string",
    });
    
    example, err := gkehub.NewRolloutSequence(ctx, "rolloutSequenceResource", &gkehub.RolloutSequenceArgs{
    	RolloutSequenceId: pulumi.String("string"),
    	Stages: gkehub.RolloutSequenceStageArray{
    		&gkehub.RolloutSequenceStageArgs{
    			FleetProjects: pulumi.StringArray{
    				pulumi.String("string"),
    			},
    			ClusterSelector: &gkehub.RolloutSequenceStageClusterSelectorArgs{
    				LabelSelector: pulumi.String("string"),
    			},
    			SoakDuration: pulumi.String("string"),
    		},
    	},
    	DisplayName: pulumi.String("string"),
    	Labels: pulumi.StringMap{
    		"string": pulumi.String("string"),
    	},
    	Project: pulumi.String("string"),
    })
    
    var rolloutSequenceResource = new RolloutSequence("rolloutSequenceResource", RolloutSequenceArgs.builder()
        .rolloutSequenceId("string")
        .stages(RolloutSequenceStageArgs.builder()
            .fleetProjects("string")
            .clusterSelector(RolloutSequenceStageClusterSelectorArgs.builder()
                .labelSelector("string")
                .build())
            .soakDuration("string")
            .build())
        .displayName("string")
        .labels(Map.of("string", "string"))
        .project("string")
        .build());
    
    rollout_sequence_resource = gcp.gkehub.RolloutSequence("rolloutSequenceResource",
        rollout_sequence_id="string",
        stages=[{
            "fleet_projects": ["string"],
            "cluster_selector": {
                "label_selector": "string",
            },
            "soak_duration": "string",
        }],
        display_name="string",
        labels={
            "string": "string",
        },
        project="string")
    
    const rolloutSequenceResource = new gcp.gkehub.RolloutSequence("rolloutSequenceResource", {
        rolloutSequenceId: "string",
        stages: [{
            fleetProjects: ["string"],
            clusterSelector: {
                labelSelector: "string",
            },
            soakDuration: "string",
        }],
        displayName: "string",
        labels: {
            string: "string",
        },
        project: "string",
    });
    
    type: gcp:gkehub:RolloutSequence
    properties:
        displayName: string
        labels:
            string: string
        project: string
        rolloutSequenceId: string
        stages:
            - clusterSelector:
                labelSelector: string
              fleetProjects:
                - string
              soakDuration: string
    

    RolloutSequence 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 RolloutSequence resource accepts the following input properties:

    RolloutSequenceId string
    The user-provided identifier of the RolloutSequence.
    Stages List<RolloutSequenceStage>
    Ordered list of stages that constitute this Rollout Sequence. Structure is documented below.
    DisplayName string
    Human readable display name of the Rollout Sequence.
    Labels Dictionary<string, string>

    Labels for this Rollout Sequence.

    Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.

    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    RolloutSequenceId string
    The user-provided identifier of the RolloutSequence.
    Stages []RolloutSequenceStageArgs
    Ordered list of stages that constitute this Rollout Sequence. Structure is documented below.
    DisplayName string
    Human readable display name of the Rollout Sequence.
    Labels map[string]string

    Labels for this Rollout Sequence.

    Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.

    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    rolloutSequenceId String
    The user-provided identifier of the RolloutSequence.
    stages List<RolloutSequenceStage>
    Ordered list of stages that constitute this Rollout Sequence. Structure is documented below.
    displayName String
    Human readable display name of the Rollout Sequence.
    labels Map<String,String>

    Labels for this Rollout Sequence.

    Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.

    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    rolloutSequenceId string
    The user-provided identifier of the RolloutSequence.
    stages RolloutSequenceStage[]
    Ordered list of stages that constitute this Rollout Sequence. Structure is documented below.
    displayName string
    Human readable display name of the Rollout Sequence.
    labels {[key: string]: string}

    Labels for this Rollout Sequence.

    Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.

    project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    rollout_sequence_id str
    The user-provided identifier of the RolloutSequence.
    stages Sequence[RolloutSequenceStageArgs]
    Ordered list of stages that constitute this Rollout Sequence. Structure is documented below.
    display_name str
    Human readable display name of the Rollout Sequence.
    labels Mapping[str, str]

    Labels for this Rollout Sequence.

    Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.

    project str
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    rolloutSequenceId String
    The user-provided identifier of the RolloutSequence.
    stages List<Property Map>
    Ordered list of stages that constitute this Rollout Sequence. Structure is documented below.
    displayName String
    Human readable display name of the Rollout Sequence.
    labels Map<String>

    Labels for this Rollout Sequence.

    Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.

    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.

    Outputs

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

    CreateTime string
    The timestamp at which the Rollout Sequence was created.
    DeleteTime string
    The timestamp at the Rollout Sequence was deleted.
    EffectiveLabels Dictionary<string, string>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    Etag string
    etag of the Rollout Sequence.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The full resource name of the RolloutSequence.
    PulumiLabels Dictionary<string, string>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    Uid string
    Google-generated UUID for this resource.
    UpdateTime string
    The timestamp at which the Rollout Sequence was last updated.
    CreateTime string
    The timestamp at which the Rollout Sequence was created.
    DeleteTime string
    The timestamp at the Rollout Sequence was deleted.
    EffectiveLabels map[string]string
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    Etag string
    etag of the Rollout Sequence.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The full resource name of the RolloutSequence.
    PulumiLabels map[string]string
    The combination of labels configured directly on the resource and default labels configured on the provider.
    Uid string
    Google-generated UUID for this resource.
    UpdateTime string
    The timestamp at which the Rollout Sequence was last updated.
    createTime String
    The timestamp at which the Rollout Sequence was created.
    deleteTime String
    The timestamp at the Rollout Sequence was deleted.
    effectiveLabels Map<String,String>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    etag String
    etag of the Rollout Sequence.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The full resource name of the RolloutSequence.
    pulumiLabels Map<String,String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    uid String
    Google-generated UUID for this resource.
    updateTime String
    The timestamp at which the Rollout Sequence was last updated.
    createTime string
    The timestamp at which the Rollout Sequence was created.
    deleteTime string
    The timestamp at the Rollout Sequence was deleted.
    effectiveLabels {[key: string]: string}
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    etag string
    etag of the Rollout Sequence.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The full resource name of the RolloutSequence.
    pulumiLabels {[key: string]: string}
    The combination of labels configured directly on the resource and default labels configured on the provider.
    uid string
    Google-generated UUID for this resource.
    updateTime string
    The timestamp at which the Rollout Sequence was last updated.
    create_time str
    The timestamp at which the Rollout Sequence was created.
    delete_time str
    The timestamp at the Rollout Sequence was deleted.
    effective_labels Mapping[str, str]
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    etag str
    etag of the Rollout Sequence.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The full resource name of the RolloutSequence.
    pulumi_labels Mapping[str, str]
    The combination of labels configured directly on the resource and default labels configured on the provider.
    uid str
    Google-generated UUID for this resource.
    update_time str
    The timestamp at which the Rollout Sequence was last updated.
    createTime String
    The timestamp at which the Rollout Sequence was created.
    deleteTime String
    The timestamp at the Rollout Sequence was deleted.
    effectiveLabels Map<String>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    etag String
    etag of the Rollout Sequence.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The full resource name of the RolloutSequence.
    pulumiLabels Map<String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    uid String
    Google-generated UUID for this resource.
    updateTime String
    The timestamp at which the Rollout Sequence was last updated.

    Look up Existing RolloutSequence Resource

    Get an existing RolloutSequence 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?: RolloutSequenceState, opts?: CustomResourceOptions): RolloutSequence
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            create_time: Optional[str] = None,
            delete_time: Optional[str] = None,
            display_name: Optional[str] = None,
            effective_labels: Optional[Mapping[str, str]] = None,
            etag: Optional[str] = None,
            labels: Optional[Mapping[str, str]] = None,
            name: Optional[str] = None,
            project: Optional[str] = None,
            pulumi_labels: Optional[Mapping[str, str]] = None,
            rollout_sequence_id: Optional[str] = None,
            stages: Optional[Sequence[RolloutSequenceStageArgs]] = None,
            uid: Optional[str] = None,
            update_time: Optional[str] = None) -> RolloutSequence
    func GetRolloutSequence(ctx *Context, name string, id IDInput, state *RolloutSequenceState, opts ...ResourceOption) (*RolloutSequence, error)
    public static RolloutSequence Get(string name, Input<string> id, RolloutSequenceState? state, CustomResourceOptions? opts = null)
    public static RolloutSequence get(String name, Output<String> id, RolloutSequenceState state, CustomResourceOptions options)
    resources:  _:    type: gcp:gkehub:RolloutSequence    get:      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:
    CreateTime string
    The timestamp at which the Rollout Sequence was created.
    DeleteTime string
    The timestamp at the Rollout Sequence was deleted.
    DisplayName string
    Human readable display name of the Rollout Sequence.
    EffectiveLabels Dictionary<string, string>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    Etag string
    etag of the Rollout Sequence.
    Labels Dictionary<string, string>

    Labels for this Rollout Sequence.

    Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.

    Name string
    The full resource name of the RolloutSequence.
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    PulumiLabels Dictionary<string, string>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    RolloutSequenceId string
    The user-provided identifier of the RolloutSequence.
    Stages List<RolloutSequenceStage>
    Ordered list of stages that constitute this Rollout Sequence. Structure is documented below.
    Uid string
    Google-generated UUID for this resource.
    UpdateTime string
    The timestamp at which the Rollout Sequence was last updated.
    CreateTime string
    The timestamp at which the Rollout Sequence was created.
    DeleteTime string
    The timestamp at the Rollout Sequence was deleted.
    DisplayName string
    Human readable display name of the Rollout Sequence.
    EffectiveLabels map[string]string
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    Etag string
    etag of the Rollout Sequence.
    Labels map[string]string

    Labels for this Rollout Sequence.

    Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.

    Name string
    The full resource name of the RolloutSequence.
    Project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    PulumiLabels map[string]string
    The combination of labels configured directly on the resource and default labels configured on the provider.
    RolloutSequenceId string
    The user-provided identifier of the RolloutSequence.
    Stages []RolloutSequenceStageArgs
    Ordered list of stages that constitute this Rollout Sequence. Structure is documented below.
    Uid string
    Google-generated UUID for this resource.
    UpdateTime string
    The timestamp at which the Rollout Sequence was last updated.
    createTime String
    The timestamp at which the Rollout Sequence was created.
    deleteTime String
    The timestamp at the Rollout Sequence was deleted.
    displayName String
    Human readable display name of the Rollout Sequence.
    effectiveLabels Map<String,String>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    etag String
    etag of the Rollout Sequence.
    labels Map<String,String>

    Labels for this Rollout Sequence.

    Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.

    name String
    The full resource name of the RolloutSequence.
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    pulumiLabels Map<String,String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    rolloutSequenceId String
    The user-provided identifier of the RolloutSequence.
    stages List<RolloutSequenceStage>
    Ordered list of stages that constitute this Rollout Sequence. Structure is documented below.
    uid String
    Google-generated UUID for this resource.
    updateTime String
    The timestamp at which the Rollout Sequence was last updated.
    createTime string
    The timestamp at which the Rollout Sequence was created.
    deleteTime string
    The timestamp at the Rollout Sequence was deleted.
    displayName string
    Human readable display name of the Rollout Sequence.
    effectiveLabels {[key: string]: string}
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    etag string
    etag of the Rollout Sequence.
    labels {[key: string]: string}

    Labels for this Rollout Sequence.

    Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.

    name string
    The full resource name of the RolloutSequence.
    project string
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    pulumiLabels {[key: string]: string}
    The combination of labels configured directly on the resource and default labels configured on the provider.
    rolloutSequenceId string
    The user-provided identifier of the RolloutSequence.
    stages RolloutSequenceStage[]
    Ordered list of stages that constitute this Rollout Sequence. Structure is documented below.
    uid string
    Google-generated UUID for this resource.
    updateTime string
    The timestamp at which the Rollout Sequence was last updated.
    create_time str
    The timestamp at which the Rollout Sequence was created.
    delete_time str
    The timestamp at the Rollout Sequence was deleted.
    display_name str
    Human readable display name of the Rollout Sequence.
    effective_labels Mapping[str, str]
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    etag str
    etag of the Rollout Sequence.
    labels Mapping[str, str]

    Labels for this Rollout Sequence.

    Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.

    name str
    The full resource name of the RolloutSequence.
    project str
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    pulumi_labels Mapping[str, str]
    The combination of labels configured directly on the resource and default labels configured on the provider.
    rollout_sequence_id str
    The user-provided identifier of the RolloutSequence.
    stages Sequence[RolloutSequenceStageArgs]
    Ordered list of stages that constitute this Rollout Sequence. Structure is documented below.
    uid str
    Google-generated UUID for this resource.
    update_time str
    The timestamp at which the Rollout Sequence was last updated.
    createTime String
    The timestamp at which the Rollout Sequence was created.
    deleteTime String
    The timestamp at the Rollout Sequence was deleted.
    displayName String
    Human readable display name of the Rollout Sequence.
    effectiveLabels Map<String>
    All of labels (key/value pairs) present on the resource in GCP, including the labels configured through Pulumi, other clients and services.
    etag String
    etag of the Rollout Sequence.
    labels Map<String>

    Labels for this Rollout Sequence.

    Note: This field is non-authoritative, and will only manage the labels present in your configuration. Please refer to the field effective_labels for all of the labels present on the resource.

    name String
    The full resource name of the RolloutSequence.
    project String
    The ID of the project in which the resource belongs. If it is not provided, the provider project is used.
    pulumiLabels Map<String>
    The combination of labels configured directly on the resource and default labels configured on the provider.
    rolloutSequenceId String
    The user-provided identifier of the RolloutSequence.
    stages List<Property Map>
    Ordered list of stages that constitute this Rollout Sequence. Structure is documented below.
    uid String
    Google-generated UUID for this resource.
    updateTime String
    The timestamp at which the Rollout Sequence was last updated.

    Supporting Types

    RolloutSequenceStage, RolloutSequenceStageArgs

    FleetProjects List<string>
    List of Fleet projects to select the clusters from. Expected format: projects/{project}
    ClusterSelector RolloutSequenceStageClusterSelector
    Filter to select a subset of clusters from the specified Fleet projects. If not specified, all clusters in the fleet projects are selected. Structure is documented below.
    SoakDuration string
    Soak time after upgrading all the clusters in the stage, specified in seconds.
    FleetProjects []string
    List of Fleet projects to select the clusters from. Expected format: projects/{project}
    ClusterSelector RolloutSequenceStageClusterSelector
    Filter to select a subset of clusters from the specified Fleet projects. If not specified, all clusters in the fleet projects are selected. Structure is documented below.
    SoakDuration string
    Soak time after upgrading all the clusters in the stage, specified in seconds.
    fleetProjects List<String>
    List of Fleet projects to select the clusters from. Expected format: projects/{project}
    clusterSelector RolloutSequenceStageClusterSelector
    Filter to select a subset of clusters from the specified Fleet projects. If not specified, all clusters in the fleet projects are selected. Structure is documented below.
    soakDuration String
    Soak time after upgrading all the clusters in the stage, specified in seconds.
    fleetProjects string[]
    List of Fleet projects to select the clusters from. Expected format: projects/{project}
    clusterSelector RolloutSequenceStageClusterSelector
    Filter to select a subset of clusters from the specified Fleet projects. If not specified, all clusters in the fleet projects are selected. Structure is documented below.
    soakDuration string
    Soak time after upgrading all the clusters in the stage, specified in seconds.
    fleet_projects Sequence[str]
    List of Fleet projects to select the clusters from. Expected format: projects/{project}
    cluster_selector RolloutSequenceStageClusterSelector
    Filter to select a subset of clusters from the specified Fleet projects. If not specified, all clusters in the fleet projects are selected. Structure is documented below.
    soak_duration str
    Soak time after upgrading all the clusters in the stage, specified in seconds.
    fleetProjects List<String>
    List of Fleet projects to select the clusters from. Expected format: projects/{project}
    clusterSelector Property Map
    Filter to select a subset of clusters from the specified Fleet projects. If not specified, all clusters in the fleet projects are selected. Structure is documented below.
    soakDuration String
    Soak time after upgrading all the clusters in the stage, specified in seconds.

    RolloutSequenceStageClusterSelector, RolloutSequenceStageClusterSelectorArgs

    LabelSelector string
    The label selector must be a valid CEL (Common Expression Language) expression which evaluates resource.labels.
    LabelSelector string
    The label selector must be a valid CEL (Common Expression Language) expression which evaluates resource.labels.
    labelSelector String
    The label selector must be a valid CEL (Common Expression Language) expression which evaluates resource.labels.
    labelSelector string
    The label selector must be a valid CEL (Common Expression Language) expression which evaluates resource.labels.
    label_selector str
    The label selector must be a valid CEL (Common Expression Language) expression which evaluates resource.labels.
    labelSelector String
    The label selector must be a valid CEL (Common Expression Language) expression which evaluates resource.labels.

    Import

    RolloutSequence can be imported using any of these accepted formats:

    • projects/{{project}}/locations/global/rolloutSequences/{{rollout_sequence_id}}

    • {{project}}/{{rollout_sequence_id}}

    • {{rollout_sequence_id}}

    When using the pulumi import command, RolloutSequence can be imported using one of the formats above. For example:

    $ pulumi import gcp:gkehub/rolloutSequence:RolloutSequence default projects/{{project}}/locations/global/rolloutSequences/{{rollout_sequence_id}}
    
    $ pulumi import gcp:gkehub/rolloutSequence:RolloutSequence default {{project}}/{{rollout_sequence_id}}
    
    $ pulumi import gcp:gkehub/rolloutSequence:RolloutSequence default {{rollout_sequence_id}}
    

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

    Package Details

    Repository
    Google Cloud (GCP) Classic pulumi/pulumi-gcp
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the google-beta Terraform Provider.
    gcp logo
    Google Cloud v9.11.0 published on Tuesday, Feb 3, 2026 by Pulumi
      Meet Neo: Your AI Platform Teammate