1. Packages
  2. Packages
  3. Outscale Provider
  4. API Docs
  5. OksManifest
Viewing docs for outscale 1.7.0
published on Wednesday, Jul 15, 2026 by outscale
Viewing docs for outscale 1.7.0
published on Wednesday, Jul 15, 2026 by outscale

    Example Usage

    Required resources

    import * as pulumi from "@pulumi/pulumi";
    import * as outscale from "@pulumi/outscale";
    
    const project = new outscale.OksProject("project", {
        name: "project01",
        cidr: "10.50.0.0/18",
        region: "eu-west-2",
    });
    const cluster = new outscale.OksCluster("cluster", {
        projectId: project.id,
        adminWhitelists: ["0.0.0.0/0"],
        cidrPods: "10.91.0.0/16",
        cidrService: "10.92.0.0/16",
        version: "1.35",
        name: "cluster01",
        controlPlanes: "cp.mono.master",
    });
    
    import pulumi
    import pulumi_outscale as outscale
    
    project = outscale.OksProject("project",
        name="project01",
        cidr="10.50.0.0/18",
        region="eu-west-2")
    cluster = outscale.OksCluster("cluster",
        project_id=project.id,
        admin_whitelists=["0.0.0.0/0"],
        cidr_pods="10.91.0.0/16",
        cidr_service="10.92.0.0/16",
        version="1.35",
        name="cluster01",
        control_planes="cp.mono.master")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/outscale/outscale"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		project, err := outscale.NewOksProject(ctx, "project", &outscale.OksProjectArgs{
    			Name:   pulumi.String("project01"),
    			Cidr:   pulumi.String("10.50.0.0/18"),
    			Region: pulumi.String("eu-west-2"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = outscale.NewOksCluster(ctx, "cluster", &outscale.OksClusterArgs{
    			ProjectId: project.ID(),
    			AdminWhitelists: pulumi.StringArray{
    				pulumi.String("0.0.0.0/0"),
    			},
    			CidrPods:      pulumi.String("10.91.0.0/16"),
    			CidrService:   pulumi.String("10.92.0.0/16"),
    			Version:       pulumi.String("1.35"),
    			Name:          pulumi.String("cluster01"),
    			ControlPlanes: pulumi.String("cp.mono.master"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Outscale = Pulumi.Outscale;
    
    return await Deployment.RunAsync(() => 
    {
        var project = new Outscale.OksProject("project", new()
        {
            Name = "project01",
            Cidr = "10.50.0.0/18",
            Region = "eu-west-2",
        });
    
        var cluster = new Outscale.OksCluster("cluster", new()
        {
            ProjectId = project.Id,
            AdminWhitelists = new[]
            {
                "0.0.0.0/0",
            },
            CidrPods = "10.91.0.0/16",
            CidrService = "10.92.0.0/16",
            Version = "1.35",
            Name = "cluster01",
            ControlPlanes = "cp.mono.master",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.outscale.OksProject;
    import com.pulumi.outscale.OksProjectArgs;
    import com.pulumi.outscale.OksCluster;
    import com.pulumi.outscale.OksClusterArgs;
    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) {
            var project = new OksProject("project", OksProjectArgs.builder()
                .name("project01")
                .cidr("10.50.0.0/18")
                .region("eu-west-2")
                .build());
    
            var cluster = new OksCluster("cluster", OksClusterArgs.builder()
                .projectId(project.id())
                .adminWhitelists("0.0.0.0/0")
                .cidrPods("10.91.0.0/16")
                .cidrService("10.92.0.0/16")
                .version("1.35")
                .name("cluster01")
                .controlPlanes("cp.mono.master")
                .build());
    
        }
    }
    
    resources:
      project:
        type: outscale:OksProject
        properties:
          name: project01
          cidr: 10.50.0.0/18
          region: eu-west-2
      cluster:
        type: outscale:OksCluster
        properties:
          projectId: ${project.id}
          adminWhitelists:
            - 0.0.0.0/0
          cidrPods: 10.91.0.0/16
          cidrService: 10.92.0.0/16
          version: '1.35'
          name: cluster01
          controlPlanes: cp.mono.master
    
    Example coming soon!
    

    Create an OKS node pool

    import * as pulumi from "@pulumi/pulumi";
    import * as outscale from "@pulumi/outscale";
    
    const nodepool = new outscale.OksManifest("nodepool", {
        clusterId: cluster.id,
        manifest: `apiVersion: oks.dev/v1beta2
    kind: NodePool
    metadata:
      name: pool-1
    spec:
      autoHealing: true
      desiredNodes: 1
      nodeType: tinav7.c1r1p1
      upgradeStrategy:
        autoUpgradeEnabled: true
        autoUpgradeMaintenance:
          durationHours: 1
          startHour: 12
          weekDay: Tue
        maxSurge: 0
        maxUnavailable: 1
      volumes:
      - device: root
        dir: /
        size: 100
        type: gp2
      zones: [eu-west-2a]
    `,
        waitFor: {
            fields: {
                "status.progress.ready": "1",
            },
        },
    });
    
    import pulumi
    import pulumi_outscale as outscale
    
    nodepool = outscale.OksManifest("nodepool",
        cluster_id=cluster["id"],
        manifest="""apiVersion: oks.dev/v1beta2
    kind: NodePool
    metadata:
      name: pool-1
    spec:
      autoHealing: true
      desiredNodes: 1
      nodeType: tinav7.c1r1p1
      upgradeStrategy:
        autoUpgradeEnabled: true
        autoUpgradeMaintenance:
          durationHours: 1
          startHour: 12
          weekDay: Tue
        maxSurge: 0
        maxUnavailable: 1
      volumes:
      - device: root
        dir: /
        size: 100
        type: gp2
      zones: [eu-west-2a]
    """,
        wait_for={
            "fields": {
                "status.progress.ready": "1",
            },
        })
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-terraform-provider/sdks/go/outscale/outscale"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := outscale.NewOksManifest(ctx, "nodepool", &outscale.OksManifestArgs{
    			ClusterId: pulumi.Any(cluster.Id),
    			Manifest: pulumi.String(`apiVersion: oks.dev/v1beta2
    kind: NodePool
    metadata:
      name: pool-1
    spec:
      autoHealing: true
      desiredNodes: 1
      nodeType: tinav7.c1r1p1
      upgradeStrategy:
        autoUpgradeEnabled: true
        autoUpgradeMaintenance:
          durationHours: 1
          startHour: 12
          weekDay: Tue
        maxSurge: 0
        maxUnavailable: 1
      volumes:
      - device: root
        dir: /
        size: 100
        type: gp2
      zones: [eu-west-2a]
    `),
    			WaitFor: &outscale.OksManifestWaitForArgs{
    				Fields: pulumi.StringMap{
    					"status.progress.ready": pulumi.String("1"),
    				},
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Outscale = Pulumi.Outscale;
    
    return await Deployment.RunAsync(() => 
    {
        var nodepool = new Outscale.OksManifest("nodepool", new()
        {
            ClusterId = cluster.Id,
            Manifest = @"apiVersion: oks.dev/v1beta2
    kind: NodePool
    metadata:
      name: pool-1
    spec:
      autoHealing: true
      desiredNodes: 1
      nodeType: tinav7.c1r1p1
      upgradeStrategy:
        autoUpgradeEnabled: true
        autoUpgradeMaintenance:
          durationHours: 1
          startHour: 12
          weekDay: Tue
        maxSurge: 0
        maxUnavailable: 1
      volumes:
      - device: root
        dir: /
        size: 100
        type: gp2
      zones: [eu-west-2a]
    ",
            WaitFor = new Outscale.Inputs.OksManifestWaitForArgs
            {
                Fields = 
                {
                    { "status.progress.ready", "1" },
                },
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.outscale.OksManifest;
    import com.pulumi.outscale.OksManifestArgs;
    import com.pulumi.outscale.inputs.OksManifestWaitForArgs;
    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) {
            var nodepool = new OksManifest("nodepool", OksManifestArgs.builder()
                .clusterId(cluster.id())
                .manifest("""
    apiVersion: oks.dev/v1beta2
    kind: NodePool
    metadata:
      name: pool-1
    spec:
      autoHealing: true
      desiredNodes: 1
      nodeType: tinav7.c1r1p1
      upgradeStrategy:
        autoUpgradeEnabled: true
        autoUpgradeMaintenance:
          durationHours: 1
          startHour: 12
          weekDay: Tue
        maxSurge: 0
        maxUnavailable: 1
      volumes:
      - device: root
        dir: /
        size: 100
        type: gp2
      zones: [eu-west-2a]
                """)
                .waitFor(OksManifestWaitForArgs.builder()
                    .fields(Map.of("status.progress.ready", "1"))
                    .build())
                .build());
    
        }
    }
    
    resources:
      nodepool:
        type: outscale:OksManifest
        properties:
          clusterId: ${cluster.id}
          manifest: |
            apiVersion: oks.dev/v1beta2
            kind: NodePool
            metadata:
              name: pool-1
            spec:
              autoHealing: true
              desiredNodes: 1
              nodeType: tinav7.c1r1p1
              upgradeStrategy:
                autoUpgradeEnabled: true
                autoUpgradeMaintenance:
                  durationHours: 1
                  startHour: 12
                  weekDay: Tue
                maxSurge: 0
                maxUnavailable: 1
              volumes:
              - device: root
                dir: /
                size: 100
                type: gp2
              zones: [eu-west-2a]
          waitFor:
            fields:
              status.progress.ready: '1'
    
    Example coming soon!
    

    Create OksManifest Resource

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

    Constructor syntax

    new OksManifest(name: string, args: OksManifestArgs, opts?: CustomResourceOptions);
    @overload
    def OksManifest(resource_name: str,
                    args: OksManifestArgs,
                    opts: Optional[ResourceOptions] = None)
    
    @overload
    def OksManifest(resource_name: str,
                    opts: Optional[ResourceOptions] = None,
                    cluster_id: Optional[str] = None,
                    manifest: Optional[str] = None,
                    skip_delete: Optional[bool] = None,
                    timeouts: Optional[OksManifestTimeoutsArgs] = None,
                    wait: Optional[bool] = None,
                    wait_for: Optional[OksManifestWaitForArgs] = None)
    func NewOksManifest(ctx *Context, name string, args OksManifestArgs, opts ...ResourceOption) (*OksManifest, error)
    public OksManifest(string name, OksManifestArgs args, CustomResourceOptions? opts = null)
    public OksManifest(String name, OksManifestArgs args)
    public OksManifest(String name, OksManifestArgs args, CustomResourceOptions options)
    
    type: outscale:OksManifest
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    resource "outscale_oks_manifest" "name" {
        # resource properties
    }

    Parameters

    name string
    The unique name of the resource.
    args OksManifestArgs
    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 OksManifestArgs
    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 OksManifestArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args OksManifestArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args OksManifestArgs
    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 oksManifestResource = new Outscale.OksManifest("oksManifestResource", new()
    {
        ClusterId = "string",
        Manifest = "string",
        SkipDelete = false,
        Timeouts = new Outscale.Inputs.OksManifestTimeoutsArgs
        {
            Create = "string",
            Delete = "string",
            Read = "string",
            Update = "string",
        },
        Wait = false,
        WaitFor = new Outscale.Inputs.OksManifestWaitForArgs
        {
            Fields = 
            {
                { "string", "string" },
            },
            Timeout = "string",
        },
    });
    
    example, err := outscale.NewOksManifest(ctx, "oksManifestResource", &outscale.OksManifestArgs{
    	ClusterId:  pulumi.String("string"),
    	Manifest:   pulumi.String("string"),
    	SkipDelete: pulumi.Bool(false),
    	Timeouts: &outscale.OksManifestTimeoutsArgs{
    		Create: pulumi.String("string"),
    		Delete: pulumi.String("string"),
    		Read:   pulumi.String("string"),
    		Update: pulumi.String("string"),
    	},
    	Wait: pulumi.Bool(false),
    	WaitFor: &outscale.OksManifestWaitForArgs{
    		Fields: pulumi.StringMap{
    			"string": pulumi.String("string"),
    		},
    		Timeout: pulumi.String("string"),
    	},
    })
    
    resource "outscale_oks_manifest" "oksManifestResource" {
      lifecycle {
        create_before_destroy = true
      }
      cluster_id  = "string"
      manifest    = "string"
      skip_delete = false
      timeouts = {
        create = "string"
        delete = "string"
        read   = "string"
        update = "string"
      }
      wait = false
      wait_for = {
        fields = {
          "string" = "string"
        }
        timeout = "string"
      }
    }
    
    var oksManifestResource = new OksManifest("oksManifestResource", OksManifestArgs.builder()
        .clusterId("string")
        .manifest("string")
        .skipDelete(false)
        .timeouts(OksManifestTimeoutsArgs.builder()
            .create("string")
            .delete("string")
            .read("string")
            .update("string")
            .build())
        .wait(false)
        .waitFor(OksManifestWaitForArgs.builder()
            .fields(Map.of("string", "string"))
            .timeout("string")
            .build())
        .build());
    
    oks_manifest_resource = outscale.OksManifest("oksManifestResource",
        cluster_id="string",
        manifest="string",
        skip_delete=False,
        timeouts={
            "create": "string",
            "delete": "string",
            "read": "string",
            "update": "string",
        },
        wait=False,
        wait_for={
            "fields": {
                "string": "string",
            },
            "timeout": "string",
        })
    
    const oksManifestResource = new outscale.OksManifest("oksManifestResource", {
        clusterId: "string",
        manifest: "string",
        skipDelete: false,
        timeouts: {
            create: "string",
            "delete": "string",
            read: "string",
            update: "string",
        },
        wait: false,
        waitFor: {
            fields: {
                string: "string",
            },
            timeout: "string",
        },
    });
    
    type: outscale:OksManifest
    properties:
        clusterId: string
        manifest: string
        skipDelete: false
        timeouts:
            create: string
            delete: string
            read: string
            update: string
        wait: false
        waitFor:
            fields:
                string: string
            timeout: string
    

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

    ClusterId string
    The ID of the cluster on which you want to apply the manifest.
    Manifest string
    The Kubernetes YAML manifest.
    SkipDelete bool
    Timeouts OksManifestTimeouts
    Wait bool
    WaitFor OksManifestWaitFor
    Wait until the fields in the Kubernetes object match the expected values after apply:
    ClusterId string
    The ID of the cluster on which you want to apply the manifest.
    Manifest string
    The Kubernetes YAML manifest.
    SkipDelete bool
    Timeouts OksManifestTimeoutsArgs
    Wait bool
    WaitFor OksManifestWaitForArgs
    Wait until the fields in the Kubernetes object match the expected values after apply:
    cluster_id string
    The ID of the cluster on which you want to apply the manifest.
    manifest string
    The Kubernetes YAML manifest.
    skip_delete bool
    timeouts object
    wait bool
    wait_for object
    Wait until the fields in the Kubernetes object match the expected values after apply:
    clusterId String
    The ID of the cluster on which you want to apply the manifest.
    manifest String
    The Kubernetes YAML manifest.
    skipDelete Boolean
    timeouts OksManifestTimeouts
    waitFor OksManifestWaitFor
    Wait until the fields in the Kubernetes object match the expected values after apply:
    wait_ Boolean
    clusterId string
    The ID of the cluster on which you want to apply the manifest.
    manifest string
    The Kubernetes YAML manifest.
    skipDelete boolean
    timeouts OksManifestTimeouts
    wait boolean
    waitFor OksManifestWaitFor
    Wait until the fields in the Kubernetes object match the expected values after apply:
    cluster_id str
    The ID of the cluster on which you want to apply the manifest.
    manifest str
    The Kubernetes YAML manifest.
    skip_delete bool
    timeouts OksManifestTimeoutsArgs
    wait bool
    wait_for OksManifestWaitForArgs
    Wait until the fields in the Kubernetes object match the expected values after apply:
    clusterId String
    The ID of the cluster on which you want to apply the manifest.
    manifest String
    The Kubernetes YAML manifest.
    skipDelete Boolean
    timeouts Property Map
    wait Boolean
    waitFor Property Map
    Wait until the fields in the Kubernetes object match the expected values after apply:

    Outputs

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

    Id string
    The provider-assigned unique ID for this managed resource.
    Object string
    The applied Kubernetes object returned as YAML.
    Id string
    The provider-assigned unique ID for this managed resource.
    Object string
    The applied Kubernetes object returned as YAML.
    id string
    The provider-assigned unique ID for this managed resource.
    object string
    The applied Kubernetes object returned as YAML.
    id String
    The provider-assigned unique ID for this managed resource.
    object String
    The applied Kubernetes object returned as YAML.
    id string
    The provider-assigned unique ID for this managed resource.
    object string
    The applied Kubernetes object returned as YAML.
    id str
    The provider-assigned unique ID for this managed resource.
    object str
    The applied Kubernetes object returned as YAML.
    id String
    The provider-assigned unique ID for this managed resource.
    object String
    The applied Kubernetes object returned as YAML.

    Look up Existing OksManifest Resource

    Get an existing OksManifest 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?: OksManifestState, opts?: CustomResourceOptions): OksManifest
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            cluster_id: Optional[str] = None,
            manifest: Optional[str] = None,
            object: Optional[str] = None,
            skip_delete: Optional[bool] = None,
            timeouts: Optional[OksManifestTimeoutsArgs] = None,
            wait: Optional[bool] = None,
            wait_for: Optional[OksManifestWaitForArgs] = None) -> OksManifest
    func GetOksManifest(ctx *Context, name string, id IDInput, state *OksManifestState, opts ...ResourceOption) (*OksManifest, error)
    public static OksManifest Get(string name, Input<string> id, OksManifestState? state, CustomResourceOptions? opts = null)
    public static OksManifest get(String name, Output<String> id, OksManifestState state, CustomResourceOptions options)
    resources:  _:    type: outscale:OksManifest    get:      id: ${id}
    import {
      to = outscale_oks_manifest.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:
    ClusterId string
    The ID of the cluster on which you want to apply the manifest.
    Manifest string
    The Kubernetes YAML manifest.
    Object string
    The applied Kubernetes object returned as YAML.
    SkipDelete bool
    Timeouts OksManifestTimeouts
    Wait bool
    WaitFor OksManifestWaitFor
    Wait until the fields in the Kubernetes object match the expected values after apply:
    ClusterId string
    The ID of the cluster on which you want to apply the manifest.
    Manifest string
    The Kubernetes YAML manifest.
    Object string
    The applied Kubernetes object returned as YAML.
    SkipDelete bool
    Timeouts OksManifestTimeoutsArgs
    Wait bool
    WaitFor OksManifestWaitForArgs
    Wait until the fields in the Kubernetes object match the expected values after apply:
    cluster_id string
    The ID of the cluster on which you want to apply the manifest.
    manifest string
    The Kubernetes YAML manifest.
    object string
    The applied Kubernetes object returned as YAML.
    skip_delete bool
    timeouts object
    wait bool
    wait_for object
    Wait until the fields in the Kubernetes object match the expected values after apply:
    clusterId String
    The ID of the cluster on which you want to apply the manifest.
    manifest String
    The Kubernetes YAML manifest.
    object String
    The applied Kubernetes object returned as YAML.
    skipDelete Boolean
    timeouts OksManifestTimeouts
    waitFor OksManifestWaitFor
    Wait until the fields in the Kubernetes object match the expected values after apply:
    wait_ Boolean
    clusterId string
    The ID of the cluster on which you want to apply the manifest.
    manifest string
    The Kubernetes YAML manifest.
    object string
    The applied Kubernetes object returned as YAML.
    skipDelete boolean
    timeouts OksManifestTimeouts
    wait boolean
    waitFor OksManifestWaitFor
    Wait until the fields in the Kubernetes object match the expected values after apply:
    cluster_id str
    The ID of the cluster on which you want to apply the manifest.
    manifest str
    The Kubernetes YAML manifest.
    object str
    The applied Kubernetes object returned as YAML.
    skip_delete bool
    timeouts OksManifestTimeoutsArgs
    wait bool
    wait_for OksManifestWaitForArgs
    Wait until the fields in the Kubernetes object match the expected values after apply:
    clusterId String
    The ID of the cluster on which you want to apply the manifest.
    manifest String
    The Kubernetes YAML manifest.
    object String
    The applied Kubernetes object returned as YAML.
    skipDelete Boolean
    timeouts Property Map
    wait Boolean
    waitFor Property Map
    Wait until the fields in the Kubernetes object match the expected values after apply:

    Supporting Types

    OksManifestTimeouts, OksManifestTimeoutsArgs

    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).

    OksManifestWaitFor, OksManifestWaitForArgs

    Fields Dictionary<string, string>
    Maps of key/value pairs in the "{.field_path}" = "expected_value" format. Each key must be a JSONPath field path, but the enclosing characters ({ }) and the first . are optional, and each value must be a regex pattern. All the configured fields must match for the wait to complete. Examples: "{.status.progress.ready}" = "1", "status.progress.ready" = "1", "status.state.name" = "idle|reconciliation".
    Timeout string
    A custom timeout for the wait_for checks. If not specified, falls back to the CRUD operation default timeout.
    Fields map[string]string
    Maps of key/value pairs in the "{.field_path}" = "expected_value" format. Each key must be a JSONPath field path, but the enclosing characters ({ }) and the first . are optional, and each value must be a regex pattern. All the configured fields must match for the wait to complete. Examples: "{.status.progress.ready}" = "1", "status.progress.ready" = "1", "status.state.name" = "idle|reconciliation".
    Timeout string
    A custom timeout for the wait_for checks. If not specified, falls back to the CRUD operation default timeout.
    fields map(string)
    Maps of key/value pairs in the "{.field_path}" = "expected_value" format. Each key must be a JSONPath field path, but the enclosing characters ({ }) and the first . are optional, and each value must be a regex pattern. All the configured fields must match for the wait to complete. Examples: "{.status.progress.ready}" = "1", "status.progress.ready" = "1", "status.state.name" = "idle|reconciliation".
    timeout string
    A custom timeout for the wait_for checks. If not specified, falls back to the CRUD operation default timeout.
    fields Map<String,String>
    Maps of key/value pairs in the "{.field_path}" = "expected_value" format. Each key must be a JSONPath field path, but the enclosing characters ({ }) and the first . are optional, and each value must be a regex pattern. All the configured fields must match for the wait to complete. Examples: "{.status.progress.ready}" = "1", "status.progress.ready" = "1", "status.state.name" = "idle|reconciliation".
    timeout String
    A custom timeout for the wait_for checks. If not specified, falls back to the CRUD operation default timeout.
    fields {[key: string]: string}
    Maps of key/value pairs in the "{.field_path}" = "expected_value" format. Each key must be a JSONPath field path, but the enclosing characters ({ }) and the first . are optional, and each value must be a regex pattern. All the configured fields must match for the wait to complete. Examples: "{.status.progress.ready}" = "1", "status.progress.ready" = "1", "status.state.name" = "idle|reconciliation".
    timeout string
    A custom timeout for the wait_for checks. If not specified, falls back to the CRUD operation default timeout.
    fields Mapping[str, str]
    Maps of key/value pairs in the "{.field_path}" = "expected_value" format. Each key must be a JSONPath field path, but the enclosing characters ({ }) and the first . are optional, and each value must be a regex pattern. All the configured fields must match for the wait to complete. Examples: "{.status.progress.ready}" = "1", "status.progress.ready" = "1", "status.state.name" = "idle|reconciliation".
    timeout str
    A custom timeout for the wait_for checks. If not specified, falls back to the CRUD operation default timeout.
    fields Map<String>
    Maps of key/value pairs in the "{.field_path}" = "expected_value" format. Each key must be a JSONPath field path, but the enclosing characters ({ }) and the first . are optional, and each value must be a regex pattern. All the configured fields must match for the wait to complete. Examples: "{.status.progress.ready}" = "1", "status.progress.ready" = "1", "status.state.name" = "idle|reconciliation".
    timeout String
    A custom timeout for the wait_for checks. If not specified, falls back to the CRUD operation default timeout.

    Package Details

    Repository
    outscale outscale/terraform-provider-outscale
    License
    Notes
    This Pulumi package is based on the outscale Terraform Provider.
    Viewing docs for outscale 1.7.0
    published on Wednesday, Jul 15, 2026 by outscale

      Try Pulumi Cloud free.
      Your team will thank you.

      Start free trial