1. Packages
  2. OVH
  3. API Docs
  4. CloudProject
  5. Storage
OVHCloud v2.0.7 published on Wednesday, Mar 19, 2025 by OVHcloud

ovh.CloudProject.Storage

Explore with Pulumi AI

ovh logo
OVHCloud v2.0.7 published on Wednesday, Mar 19, 2025 by OVHcloud

    Create S3™* compatible storage container (* S3 is a trademark filed by Amazon Technologies,Inc. OVHcloud’s service is not sponsored by, endorsed by, or otherwise affiliated with Amazon Technologies,Inc.)

    Example Usage

    import * as pulumi from "@pulumi/pulumi";
    import * as ovh from "@ovhcloud/pulumi-ovh";
    
    const storage = new ovh.cloudproject.Storage("storage", {
        regionName: "GRA",
        serviceName: "<public cloud project ID>",
        versioning: {
            status: "enabled",
        },
    });
    
    import pulumi
    import pulumi_ovh as ovh
    
    storage = ovh.cloud_project.Storage("storage",
        region_name="GRA",
        service_name="<public cloud project ID>",
        versioning={
            "status": "enabled",
        })
    
    package main
    
    import (
    	"github.com/ovh/pulumi-ovh/sdk/v2/go/ovh/cloudproject"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := cloudproject.NewStorage(ctx, "storage", &cloudproject.StorageArgs{
    			RegionName:  pulumi.String("GRA"),
    			ServiceName: pulumi.String("<public cloud project ID>"),
    			Versioning: &cloudproject.StorageVersioningArgs{
    				Status: pulumi.String("enabled"),
    			},
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Ovh = Pulumi.Ovh;
    
    return await Deployment.RunAsync(() => 
    {
        var storage = new Ovh.CloudProject.Storage("storage", new()
        {
            RegionName = "GRA",
            ServiceName = "<public cloud project ID>",
            Versioning = new Ovh.CloudProject.Inputs.StorageVersioningArgs
            {
                Status = "enabled",
            },
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.ovh.CloudProject.Storage;
    import com.pulumi.ovh.CloudProject.StorageArgs;
    import com.pulumi.ovh.CloudProject.inputs.StorageVersioningArgs;
    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 storage = new Storage("storage", StorageArgs.builder()
                .regionName("GRA")
                .serviceName("<public cloud project ID>")
                .versioning(StorageVersioningArgs.builder()
                    .status("enabled")
                    .build())
                .build());
    
        }
    }
    
    resources:
      storage:
        type: ovh:CloudProject:Storage
        properties:
          regionName: GRA
          serviceName: <public cloud project ID>
          versioning:
            status: enabled
    

    Create Storage Resource

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

    Constructor syntax

    new Storage(name: string, args: StorageArgs, opts?: CustomResourceOptions);
    @overload
    def Storage(resource_name: str,
                args: StorageArgs,
                opts: Optional[ResourceOptions] = None)
    
    @overload
    def Storage(resource_name: str,
                opts: Optional[ResourceOptions] = None,
                region_name: Optional[str] = None,
                service_name: Optional[str] = None,
                encryption: Optional[_cloudproject.StorageEncryptionArgs] = None,
                limit: Optional[float] = None,
                marker: Optional[str] = None,
                name: Optional[str] = None,
                owner_id: Optional[float] = None,
                prefix: Optional[str] = None,
                replication: Optional[_cloudproject.StorageReplicationArgs] = None,
                versioning: Optional[_cloudproject.StorageVersioningArgs] = None)
    func NewStorage(ctx *Context, name string, args StorageArgs, opts ...ResourceOption) (*Storage, error)
    public Storage(string name, StorageArgs args, CustomResourceOptions? opts = null)
    public Storage(String name, StorageArgs args)
    public Storage(String name, StorageArgs args, CustomResourceOptions options)
    
    type: ovh:CloudProject:Storage
    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 StorageArgs
    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 StorageArgs
    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 StorageArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args StorageArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args StorageArgs
    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 storageResource = new Ovh.CloudProject.Storage("storageResource", new()
    {
        RegionName = "string",
        ServiceName = "string",
        Encryption = new Ovh.CloudProject.Inputs.StorageEncryptionArgs
        {
            SseAlgorithm = "string",
        },
        Limit = 0,
        Marker = "string",
        Name = "string",
        OwnerId = 0,
        Prefix = "string",
        Replication = new Ovh.CloudProject.Inputs.StorageReplicationArgs
        {
            Rules = new[]
            {
                new Ovh.CloudProject.Inputs.StorageReplicationRuleArgs
                {
                    DeleteMarkerReplication = "string",
                    Destination = new Ovh.CloudProject.Inputs.StorageReplicationRuleDestinationArgs
                    {
                        Name = "string",
                        Region = "string",
                        StorageClass = "string",
                    },
                    Filter = new Ovh.CloudProject.Inputs.StorageReplicationRuleFilterArgs
                    {
                        Prefix = "string",
                        Tags = new[]
                        {
                            new Ovh.CloudProject.Inputs.StorageReplicationRuleFilterTagArgs
                            {
                                Key = "string",
                                Value = "string",
                            },
                        },
                    },
                    Id = "string",
                    Priority = 0,
                    Status = "string",
                },
            },
        },
        Versioning = new Ovh.CloudProject.Inputs.StorageVersioningArgs
        {
            Status = "string",
        },
    });
    
    example, err := CloudProject.NewStorage(ctx, "storageResource", &CloudProject.StorageArgs{
    	RegionName:  pulumi.String("string"),
    	ServiceName: pulumi.String("string"),
    	Encryption: &cloudproject.StorageEncryptionArgs{
    		SseAlgorithm: pulumi.String("string"),
    	},
    	Limit:   pulumi.Float64(0),
    	Marker:  pulumi.String("string"),
    	Name:    pulumi.String("string"),
    	OwnerId: pulumi.Float64(0),
    	Prefix:  pulumi.String("string"),
    	Replication: &cloudproject.StorageReplicationArgs{
    		Rules: cloudproject.StorageReplicationRuleArray{
    			&cloudproject.StorageReplicationRuleArgs{
    				DeleteMarkerReplication: pulumi.String("string"),
    				Destination: &cloudproject.StorageReplicationRuleDestinationArgs{
    					Name:         pulumi.String("string"),
    					Region:       pulumi.String("string"),
    					StorageClass: pulumi.String("string"),
    				},
    				Filter: &cloudproject.StorageReplicationRuleFilterArgs{
    					Prefix: pulumi.String("string"),
    					Tags: cloudproject.StorageReplicationRuleFilterTagArray{
    						&cloudproject.StorageReplicationRuleFilterTagArgs{
    							Key:   pulumi.String("string"),
    							Value: pulumi.String("string"),
    						},
    					},
    				},
    				Id:       pulumi.String("string"),
    				Priority: pulumi.Float64(0),
    				Status:   pulumi.String("string"),
    			},
    		},
    	},
    	Versioning: &cloudproject.StorageVersioningArgs{
    		Status: pulumi.String("string"),
    	},
    })
    
    var storageResource = new Storage("storageResource", StorageArgs.builder()
        .regionName("string")
        .serviceName("string")
        .encryption(StorageEncryptionArgs.builder()
            .sseAlgorithm("string")
            .build())
        .limit(0)
        .marker("string")
        .name("string")
        .ownerId(0)
        .prefix("string")
        .replication(StorageReplicationArgs.builder()
            .rules(StorageReplicationRuleArgs.builder()
                .deleteMarkerReplication("string")
                .destination(StorageReplicationRuleDestinationArgs.builder()
                    .name("string")
                    .region("string")
                    .storageClass("string")
                    .build())
                .filter(StorageReplicationRuleFilterArgs.builder()
                    .prefix("string")
                    .tags(StorageReplicationRuleFilterTagArgs.builder()
                        .key("string")
                        .value("string")
                        .build())
                    .build())
                .id("string")
                .priority(0)
                .status("string")
                .build())
            .build())
        .versioning(StorageVersioningArgs.builder()
            .status("string")
            .build())
        .build());
    
    storage_resource = ovh.cloud_project.Storage("storageResource",
        region_name="string",
        service_name="string",
        encryption={
            "sse_algorithm": "string",
        },
        limit=0,
        marker="string",
        name="string",
        owner_id=0,
        prefix="string",
        replication={
            "rules": [{
                "delete_marker_replication": "string",
                "destination": {
                    "name": "string",
                    "region": "string",
                    "storage_class": "string",
                },
                "filter": {
                    "prefix": "string",
                    "tags": [{
                        "key": "string",
                        "value": "string",
                    }],
                },
                "id": "string",
                "priority": 0,
                "status": "string",
            }],
        },
        versioning={
            "status": "string",
        })
    
    const storageResource = new ovh.cloudproject.Storage("storageResource", {
        regionName: "string",
        serviceName: "string",
        encryption: {
            sseAlgorithm: "string",
        },
        limit: 0,
        marker: "string",
        name: "string",
        ownerId: 0,
        prefix: "string",
        replication: {
            rules: [{
                deleteMarkerReplication: "string",
                destination: {
                    name: "string",
                    region: "string",
                    storageClass: "string",
                },
                filter: {
                    prefix: "string",
                    tags: [{
                        key: "string",
                        value: "string",
                    }],
                },
                id: "string",
                priority: 0,
                status: "string",
            }],
        },
        versioning: {
            status: "string",
        },
    });
    
    type: ovh:CloudProject:Storage
    properties:
        encryption:
            sseAlgorithm: string
        limit: 0
        marker: string
        name: string
        ownerId: 0
        prefix: string
        regionName: string
        replication:
            rules:
                - deleteMarkerReplication: string
                  destination:
                    name: string
                    region: string
                    storageClass: string
                  filter:
                    prefix: string
                    tags:
                        - key: string
                          value: string
                  id: string
                  priority: 0
                  status: string
        serviceName: string
        versioning:
            status: string
    

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

    RegionName string
    Region name
    ServiceName string
    Service name
    Encryption StorageEncryption
    Encryption configuration
    Limit double
    Limit the number of objects returned (1000 maximum, defaults to 1000)
    Marker string
    Key to start with when listing objects
    Name string
    Container name
    OwnerId double
    Container owner user ID
    Prefix string
    List objects whose key begins with this prefix
    Replication StorageReplication
    Replication configuration
    Versioning StorageVersioning
    Versioning configuration
    RegionName string
    Region name
    ServiceName string
    Service name
    Encryption StorageEncryptionArgs
    Encryption configuration
    Limit float64
    Limit the number of objects returned (1000 maximum, defaults to 1000)
    Marker string
    Key to start with when listing objects
    Name string
    Container name
    OwnerId float64
    Container owner user ID
    Prefix string
    List objects whose key begins with this prefix
    Replication StorageReplicationArgs
    Replication configuration
    Versioning StorageVersioningArgs
    Versioning configuration
    regionName String
    Region name
    serviceName String
    Service name
    encryption StorageEncryption
    Encryption configuration
    limit Double
    Limit the number of objects returned (1000 maximum, defaults to 1000)
    marker String
    Key to start with when listing objects
    name String
    Container name
    ownerId Double
    Container owner user ID
    prefix String
    List objects whose key begins with this prefix
    replication StorageReplication
    Replication configuration
    versioning StorageVersioning
    Versioning configuration
    regionName string
    Region name
    serviceName string
    Service name
    encryption StorageEncryption
    Encryption configuration
    limit number
    Limit the number of objects returned (1000 maximum, defaults to 1000)
    marker string
    Key to start with when listing objects
    name string
    Container name
    ownerId number
    Container owner user ID
    prefix string
    List objects whose key begins with this prefix
    replication StorageReplication
    Replication configuration
    versioning StorageVersioning
    Versioning configuration
    region_name str
    Region name
    service_name str
    Service name
    encryption cloudproject.StorageEncryptionArgs
    Encryption configuration
    limit float
    Limit the number of objects returned (1000 maximum, defaults to 1000)
    marker str
    Key to start with when listing objects
    name str
    Container name
    owner_id float
    Container owner user ID
    prefix str
    List objects whose key begins with this prefix
    replication cloudproject.StorageReplicationArgs
    Replication configuration
    versioning cloudproject.StorageVersioningArgs
    Versioning configuration
    regionName String
    Region name
    serviceName String
    Service name
    encryption Property Map
    Encryption configuration
    limit Number
    Limit the number of objects returned (1000 maximum, defaults to 1000)
    marker String
    Key to start with when listing objects
    name String
    Container name
    ownerId Number
    Container owner user ID
    prefix String
    List objects whose key begins with this prefix
    replication Property Map
    Replication configuration
    versioning Property Map
    Versioning configuration

    Outputs

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

    CreatedAt string
    The date and timestamp when the resource was created
    Id string
    The provider-assigned unique ID for this managed resource.
    Objects List<StorageObject>
    Container objects
    ObjectsCount double
    Container total objects count
    ObjectsSize double
    Container total objects size (bytes)
    Region string
    Container region
    VirtualHost string
    Container virtual host
    CreatedAt string
    The date and timestamp when the resource was created
    Id string
    The provider-assigned unique ID for this managed resource.
    Objects []StorageObject
    Container objects
    ObjectsCount float64
    Container total objects count
    ObjectsSize float64
    Container total objects size (bytes)
    Region string
    Container region
    VirtualHost string
    Container virtual host
    createdAt String
    The date and timestamp when the resource was created
    id String
    The provider-assigned unique ID for this managed resource.
    objects List<StorageObject>
    Container objects
    objectsCount Double
    Container total objects count
    objectsSize Double
    Container total objects size (bytes)
    region String
    Container region
    virtualHost String
    Container virtual host
    createdAt string
    The date and timestamp when the resource was created
    id string
    The provider-assigned unique ID for this managed resource.
    objects StorageObject[]
    Container objects
    objectsCount number
    Container total objects count
    objectsSize number
    Container total objects size (bytes)
    region string
    Container region
    virtualHost string
    Container virtual host
    created_at str
    The date and timestamp when the resource was created
    id str
    The provider-assigned unique ID for this managed resource.
    objects Sequence[cloudproject.StorageObject]
    Container objects
    objects_count float
    Container total objects count
    objects_size float
    Container total objects size (bytes)
    region str
    Container region
    virtual_host str
    Container virtual host
    createdAt String
    The date and timestamp when the resource was created
    id String
    The provider-assigned unique ID for this managed resource.
    objects List<Property Map>
    Container objects
    objectsCount Number
    Container total objects count
    objectsSize Number
    Container total objects size (bytes)
    region String
    Container region
    virtualHost String
    Container virtual host

    Look up Existing Storage Resource

    Get an existing Storage 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?: StorageState, opts?: CustomResourceOptions): Storage
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            created_at: Optional[str] = None,
            encryption: Optional[_cloudproject.StorageEncryptionArgs] = None,
            limit: Optional[float] = None,
            marker: Optional[str] = None,
            name: Optional[str] = None,
            objects: Optional[Sequence[_cloudproject.StorageObjectArgs]] = None,
            objects_count: Optional[float] = None,
            objects_size: Optional[float] = None,
            owner_id: Optional[float] = None,
            prefix: Optional[str] = None,
            region: Optional[str] = None,
            region_name: Optional[str] = None,
            replication: Optional[_cloudproject.StorageReplicationArgs] = None,
            service_name: Optional[str] = None,
            versioning: Optional[_cloudproject.StorageVersioningArgs] = None,
            virtual_host: Optional[str] = None) -> Storage
    func GetStorage(ctx *Context, name string, id IDInput, state *StorageState, opts ...ResourceOption) (*Storage, error)
    public static Storage Get(string name, Input<string> id, StorageState? state, CustomResourceOptions? opts = null)
    public static Storage get(String name, Output<String> id, StorageState state, CustomResourceOptions options)
    resources:  _:    type: ovh:CloudProject:Storage    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:
    CreatedAt string
    The date and timestamp when the resource was created
    Encryption StorageEncryption
    Encryption configuration
    Limit double
    Limit the number of objects returned (1000 maximum, defaults to 1000)
    Marker string
    Key to start with when listing objects
    Name string
    Container name
    Objects List<StorageObject>
    Container objects
    ObjectsCount double
    Container total objects count
    ObjectsSize double
    Container total objects size (bytes)
    OwnerId double
    Container owner user ID
    Prefix string
    List objects whose key begins with this prefix
    Region string
    Container region
    RegionName string
    Region name
    Replication StorageReplication
    Replication configuration
    ServiceName string
    Service name
    Versioning StorageVersioning
    Versioning configuration
    VirtualHost string
    Container virtual host
    CreatedAt string
    The date and timestamp when the resource was created
    Encryption StorageEncryptionArgs
    Encryption configuration
    Limit float64
    Limit the number of objects returned (1000 maximum, defaults to 1000)
    Marker string
    Key to start with when listing objects
    Name string
    Container name
    Objects []StorageObjectArgs
    Container objects
    ObjectsCount float64
    Container total objects count
    ObjectsSize float64
    Container total objects size (bytes)
    OwnerId float64
    Container owner user ID
    Prefix string
    List objects whose key begins with this prefix
    Region string
    Container region
    RegionName string
    Region name
    Replication StorageReplicationArgs
    Replication configuration
    ServiceName string
    Service name
    Versioning StorageVersioningArgs
    Versioning configuration
    VirtualHost string
    Container virtual host
    createdAt String
    The date and timestamp when the resource was created
    encryption StorageEncryption
    Encryption configuration
    limit Double
    Limit the number of objects returned (1000 maximum, defaults to 1000)
    marker String
    Key to start with when listing objects
    name String
    Container name
    objects List<StorageObject>
    Container objects
    objectsCount Double
    Container total objects count
    objectsSize Double
    Container total objects size (bytes)
    ownerId Double
    Container owner user ID
    prefix String
    List objects whose key begins with this prefix
    region String
    Container region
    regionName String
    Region name
    replication StorageReplication
    Replication configuration
    serviceName String
    Service name
    versioning StorageVersioning
    Versioning configuration
    virtualHost String
    Container virtual host
    createdAt string
    The date and timestamp when the resource was created
    encryption StorageEncryption
    Encryption configuration
    limit number
    Limit the number of objects returned (1000 maximum, defaults to 1000)
    marker string
    Key to start with when listing objects
    name string
    Container name
    objects StorageObject[]
    Container objects
    objectsCount number
    Container total objects count
    objectsSize number
    Container total objects size (bytes)
    ownerId number
    Container owner user ID
    prefix string
    List objects whose key begins with this prefix
    region string
    Container region
    regionName string
    Region name
    replication StorageReplication
    Replication configuration
    serviceName string
    Service name
    versioning StorageVersioning
    Versioning configuration
    virtualHost string
    Container virtual host
    created_at str
    The date and timestamp when the resource was created
    encryption cloudproject.StorageEncryptionArgs
    Encryption configuration
    limit float
    Limit the number of objects returned (1000 maximum, defaults to 1000)
    marker str
    Key to start with when listing objects
    name str
    Container name
    objects Sequence[cloudproject.StorageObjectArgs]
    Container objects
    objects_count float
    Container total objects count
    objects_size float
    Container total objects size (bytes)
    owner_id float
    Container owner user ID
    prefix str
    List objects whose key begins with this prefix
    region str
    Container region
    region_name str
    Region name
    replication cloudproject.StorageReplicationArgs
    Replication configuration
    service_name str
    Service name
    versioning cloudproject.StorageVersioningArgs
    Versioning configuration
    virtual_host str
    Container virtual host
    createdAt String
    The date and timestamp when the resource was created
    encryption Property Map
    Encryption configuration
    limit Number
    Limit the number of objects returned (1000 maximum, defaults to 1000)
    marker String
    Key to start with when listing objects
    name String
    Container name
    objects List<Property Map>
    Container objects
    objectsCount Number
    Container total objects count
    objectsSize Number
    Container total objects size (bytes)
    ownerId Number
    Container owner user ID
    prefix String
    List objects whose key begins with this prefix
    region String
    Container region
    regionName String
    Region name
    replication Property Map
    Replication configuration
    serviceName String
    Service name
    versioning Property Map
    Versioning configuration
    virtualHost String
    Container virtual host

    Supporting Types

    StorageEncryption, StorageEncryptionArgs

    SseAlgorithm string
    Encryption algorithm
    SseAlgorithm string
    Encryption algorithm
    sseAlgorithm String
    Encryption algorithm
    sseAlgorithm string
    Encryption algorithm
    sse_algorithm str
    Encryption algorithm
    sseAlgorithm String
    Encryption algorithm

    StorageObject, StorageObjectArgs

    Etag string
    ETag
    IsDeleteMarker bool
    Whether this object is a delete marker
    IsLatest bool
    Whether this is the latest version of the object
    Key string
    Key
    LastModified string
    Last modification date
    Size double
    Size (bytes)
    StorageClass string
    Storage class
    VersionId string
    Version ID of the object
    Etag string
    ETag
    IsDeleteMarker bool
    Whether this object is a delete marker
    IsLatest bool
    Whether this is the latest version of the object
    Key string
    Key
    LastModified string
    Last modification date
    Size float64
    Size (bytes)
    StorageClass string
    Storage class
    VersionId string
    Version ID of the object
    etag String
    ETag
    isDeleteMarker Boolean
    Whether this object is a delete marker
    isLatest Boolean
    Whether this is the latest version of the object
    key String
    Key
    lastModified String
    Last modification date
    size Double
    Size (bytes)
    storageClass String
    Storage class
    versionId String
    Version ID of the object
    etag string
    ETag
    isDeleteMarker boolean
    Whether this object is a delete marker
    isLatest boolean
    Whether this is the latest version of the object
    key string
    Key
    lastModified string
    Last modification date
    size number
    Size (bytes)
    storageClass string
    Storage class
    versionId string
    Version ID of the object
    etag str
    ETag
    is_delete_marker bool
    Whether this object is a delete marker
    is_latest bool
    Whether this is the latest version of the object
    key str
    Key
    last_modified str
    Last modification date
    size float
    Size (bytes)
    storage_class str
    Storage class
    version_id str
    Version ID of the object
    etag String
    ETag
    isDeleteMarker Boolean
    Whether this object is a delete marker
    isLatest Boolean
    Whether this is the latest version of the object
    key String
    Key
    lastModified String
    Last modification date
    size Number
    Size (bytes)
    storageClass String
    Storage class
    versionId String
    Version ID of the object

    StorageReplication, StorageReplicationArgs

    rules List<Property Map>
    Replication rules

    StorageReplicationRule, StorageReplicationRuleArgs

    DeleteMarkerReplication string
    Delete marker replication
    Destination StorageReplicationRuleDestination
    Rule destination configuration
    Filter StorageReplicationRuleFilter
    Rule filters
    Id string
    Rule ID
    Priority double
    Rule priority
    Status string
    Rule status
    DeleteMarkerReplication string
    Delete marker replication
    Destination StorageReplicationRuleDestination
    Rule destination configuration
    Filter StorageReplicationRuleFilter
    Rule filters
    Id string
    Rule ID
    Priority float64
    Rule priority
    Status string
    Rule status
    deleteMarkerReplication String
    Delete marker replication
    destination StorageReplicationRuleDestination
    Rule destination configuration
    filter StorageReplicationRuleFilter
    Rule filters
    id String
    Rule ID
    priority Double
    Rule priority
    status String
    Rule status
    deleteMarkerReplication string
    Delete marker replication
    destination StorageReplicationRuleDestination
    Rule destination configuration
    filter StorageReplicationRuleFilter
    Rule filters
    id string
    Rule ID
    priority number
    Rule priority
    status string
    Rule status
    delete_marker_replication str
    Delete marker replication
    destination cloudproject.StorageReplicationRuleDestination
    Rule destination configuration
    filter cloudproject.StorageReplicationRuleFilter
    Rule filters
    id str
    Rule ID
    priority float
    Rule priority
    status str
    Rule status
    deleteMarkerReplication String
    Delete marker replication
    destination Property Map
    Rule destination configuration
    filter Property Map
    Rule filters
    id String
    Rule ID
    priority Number
    Rule priority
    status String
    Rule status

    StorageReplicationRuleDestination, StorageReplicationRuleDestinationArgs

    Name string
    Destination bucket name
    Region string
    Destination region
    StorageClass string
    Destination storage class
    Name string
    Destination bucket name
    Region string
    Destination region
    StorageClass string
    Destination storage class
    name String
    Destination bucket name
    region String
    Destination region
    storageClass String
    Destination storage class
    name string
    Destination bucket name
    region string
    Destination region
    storageClass string
    Destination storage class
    name str
    Destination bucket name
    region str
    Destination region
    storage_class str
    Destination storage class
    name String
    Destination bucket name
    region String
    Destination region
    storageClass String
    Destination storage class

    StorageReplicationRuleFilter, StorageReplicationRuleFilterArgs

    Prefix string
    Prefix filter
    Tags List<StorageReplicationRuleFilterTag>
    Tags filter
    Prefix string
    Prefix filter
    Tags []StorageReplicationRuleFilterTag
    Tags filter
    prefix String
    Prefix filter
    tags List<StorageReplicationRuleFilterTag>
    Tags filter
    prefix string
    Prefix filter
    tags StorageReplicationRuleFilterTag[]
    Tags filter
    prefix String
    Prefix filter
    tags List<Property Map>
    Tags filter

    StorageReplicationRuleFilterTag, StorageReplicationRuleFilterTagArgs

    Key string
    Tag key
    Value string
    Tag value
    Key string
    Tag key
    Value string
    Tag value
    key String
    Tag key
    value String
    Tag value
    key string
    Tag key
    value string
    Tag value
    key str
    Tag key
    value str
    Tag value
    key String
    Tag key
    value String
    Tag value

    StorageVersioning, StorageVersioningArgs

    Status string
    Versioning status
    Status string
    Versioning status
    status String
    Versioning status
    status string
    Versioning status
    status str
    Versioning status
    status String
    Versioning status

    Import

    A storage in a public cloud project can be imported using the service_name, region_name and name attributes.

    Using the following configuration:

    hcl

    import {

    id = “<service_name>/<region_name>/

    to = ovh_cloud_project_storage.storage

    }

    You can then run:

    bash

    $ pulumi preview -generate-config-out=storage.tf

    $ pulumi up

    The file storage.tf will then contain the imported resource’s configuration, that can be copied next to the import block above.

    See https://developer.hashicorp.com/terraform/language/import/generating-configuration for more details.

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

    Package Details

    Repository
    ovh ovh/pulumi-ovh
    License
    Apache-2.0
    Notes
    This Pulumi package is based on the ovh Terraform Provider.
    ovh logo
    OVHCloud v2.0.7 published on Wednesday, Mar 19, 2025 by OVHcloud