ovh.CloudProject.Storage
Explore with Pulumi AI
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:
- Region
Name string - Region name
- Service
Name string - Service name
- Encryption
Storage
Encryption - 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
- Owner
Id double - Container owner user ID
- Prefix string
- List objects whose key begins with this prefix
- Replication
Storage
Replication - Replication configuration
- Versioning
Storage
Versioning - Versioning configuration
- Region
Name string - Region name
- Service
Name string - Service name
- Encryption
Storage
Encryption Args - 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
- Owner
Id float64 - Container owner user ID
- Prefix string
- List objects whose key begins with this prefix
- Replication
Storage
Replication Args - Replication configuration
- Versioning
Storage
Versioning Args - Versioning configuration
- region
Name String - Region name
- service
Name String - Service name
- encryption
Storage
Encryption - 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
- owner
Id Double - Container owner user ID
- prefix String
- List objects whose key begins with this prefix
- replication
Storage
Replication - Replication configuration
- versioning
Storage
Versioning - Versioning configuration
- region
Name string - Region name
- service
Name string - Service name
- encryption
Storage
Encryption - 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
- owner
Id number - Container owner user ID
- prefix string
- List objects whose key begins with this prefix
- replication
Storage
Replication - Replication configuration
- versioning
Storage
Versioning - Versioning configuration
- region_
name str - Region name
- service_
name str - Service name
- encryption
cloudproject.
Storage Encryption Args - 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.
Storage Replication Args - Replication configuration
- versioning
cloudproject.
Storage Versioning Args - Versioning configuration
- region
Name String - Region name
- service
Name 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
- owner
Id 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:
- Created
At string - The date and timestamp when the resource was created
- Id string
- The provider-assigned unique ID for this managed resource.
- Objects
List<Storage
Object> - Container objects
- Objects
Count double - Container total objects count
- Objects
Size double - Container total objects size (bytes)
- Region string
- Container region
- Virtual
Host string - Container virtual host
- Created
At string - The date and timestamp when the resource was created
- Id string
- The provider-assigned unique ID for this managed resource.
- Objects
[]Storage
Object - Container objects
- Objects
Count float64 - Container total objects count
- Objects
Size float64 - Container total objects size (bytes)
- Region string
- Container region
- Virtual
Host string - Container virtual host
- created
At String - The date and timestamp when the resource was created
- id String
- The provider-assigned unique ID for this managed resource.
- objects
List<Storage
Object> - Container objects
- objects
Count Double - Container total objects count
- objects
Size Double - Container total objects size (bytes)
- region String
- Container region
- virtual
Host String - Container virtual host
- created
At string - The date and timestamp when the resource was created
- id string
- The provider-assigned unique ID for this managed resource.
- objects
Storage
Object[] - Container objects
- objects
Count number - Container total objects count
- objects
Size number - Container total objects size (bytes)
- region string
- Container region
- virtual
Host 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.
Storage Object] - 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
- created
At 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
- objects
Count Number - Container total objects count
- objects
Size Number - Container total objects size (bytes)
- region String
- Container region
- virtual
Host 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.
- Created
At string - The date and timestamp when the resource was created
- Encryption
Storage
Encryption - 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<Storage
Object> - Container objects
- Objects
Count double - Container total objects count
- Objects
Size double - Container total objects size (bytes)
- Owner
Id double - Container owner user ID
- Prefix string
- List objects whose key begins with this prefix
- Region string
- Container region
- Region
Name string - Region name
- Replication
Storage
Replication - Replication configuration
- Service
Name string - Service name
- Versioning
Storage
Versioning - Versioning configuration
- Virtual
Host string - Container virtual host
- Created
At string - The date and timestamp when the resource was created
- Encryption
Storage
Encryption Args - 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
[]Storage
Object Args - Container objects
- Objects
Count float64 - Container total objects count
- Objects
Size float64 - Container total objects size (bytes)
- Owner
Id float64 - Container owner user ID
- Prefix string
- List objects whose key begins with this prefix
- Region string
- Container region
- Region
Name string - Region name
- Replication
Storage
Replication Args - Replication configuration
- Service
Name string - Service name
- Versioning
Storage
Versioning Args - Versioning configuration
- Virtual
Host string - Container virtual host
- created
At String - The date and timestamp when the resource was created
- encryption
Storage
Encryption - 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<Storage
Object> - Container objects
- objects
Count Double - Container total objects count
- objects
Size Double - Container total objects size (bytes)
- owner
Id Double - Container owner user ID
- prefix String
- List objects whose key begins with this prefix
- region String
- Container region
- region
Name String - Region name
- replication
Storage
Replication - Replication configuration
- service
Name String - Service name
- versioning
Storage
Versioning - Versioning configuration
- virtual
Host String - Container virtual host
- created
At string - The date and timestamp when the resource was created
- encryption
Storage
Encryption - 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
Storage
Object[] - Container objects
- objects
Count number - Container total objects count
- objects
Size number - Container total objects size (bytes)
- owner
Id number - Container owner user ID
- prefix string
- List objects whose key begins with this prefix
- region string
- Container region
- region
Name string - Region name
- replication
Storage
Replication - Replication configuration
- service
Name string - Service name
- versioning
Storage
Versioning - Versioning configuration
- virtual
Host string - Container virtual host
- created_
at str - The date and timestamp when the resource was created
- encryption
cloudproject.
Storage Encryption Args - 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.
Storage Object Args] - 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.
Storage Replication Args - Replication configuration
- service_
name str - Service name
- versioning
cloudproject.
Storage Versioning Args - Versioning configuration
- virtual_
host str - Container virtual host
- created
At 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
- objects
Count Number - Container total objects count
- objects
Size Number - Container total objects size (bytes)
- owner
Id Number - Container owner user ID
- prefix String
- List objects whose key begins with this prefix
- region String
- Container region
- region
Name String - Region name
- replication Property Map
- Replication configuration
- service
Name String - Service name
- versioning Property Map
- Versioning configuration
- virtual
Host String - Container virtual host
Supporting Types
StorageEncryption, StorageEncryptionArgs
- Sse
Algorithm string - Encryption algorithm
- Sse
Algorithm string - Encryption algorithm
- sse
Algorithm String - Encryption algorithm
- sse
Algorithm string - Encryption algorithm
- sse_
algorithm str - Encryption algorithm
- sse
Algorithm String - Encryption algorithm
StorageObject, StorageObjectArgs
- Etag string
- ETag
- Is
Delete boolMarker - Whether this object is a delete marker
- Is
Latest bool - Whether this is the latest version of the object
- Key string
- Key
- Last
Modified string - Last modification date
- Size double
- Size (bytes)
- Storage
Class string - Storage class
- Version
Id string - Version ID of the object
- Etag string
- ETag
- Is
Delete boolMarker - Whether this object is a delete marker
- Is
Latest bool - Whether this is the latest version of the object
- Key string
- Key
- Last
Modified string - Last modification date
- Size float64
- Size (bytes)
- Storage
Class string - Storage class
- Version
Id string - Version ID of the object
- etag String
- ETag
- is
Delete BooleanMarker - Whether this object is a delete marker
- is
Latest Boolean - Whether this is the latest version of the object
- key String
- Key
- last
Modified String - Last modification date
- size Double
- Size (bytes)
- storage
Class String - Storage class
- version
Id String - Version ID of the object
- etag string
- ETag
- is
Delete booleanMarker - Whether this object is a delete marker
- is
Latest boolean - Whether this is the latest version of the object
- key string
- Key
- last
Modified string - Last modification date
- size number
- Size (bytes)
- storage
Class string - Storage class
- version
Id string - Version ID of the object
- etag str
- ETag
- is_
delete_ boolmarker - 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
- is
Delete BooleanMarker - Whether this object is a delete marker
- is
Latest Boolean - Whether this is the latest version of the object
- key String
- Key
- last
Modified String - Last modification date
- size Number
- Size (bytes)
- storage
Class String - Storage class
- version
Id String - Version ID of the object
StorageReplication, StorageReplicationArgs
- Rules
List<Storage
Replication Rule> - Replication rules
- Rules
[]Storage
Replication Rule - Replication rules
- rules
List<Storage
Replication Rule> - Replication rules
- rules
Storage
Replication Rule[] - Replication rules
- rules
Sequence[cloudproject.
Storage Replication Rule] - Replication rules
- rules List<Property Map>
- Replication rules
StorageReplicationRule, StorageReplicationRuleArgs
- Delete
Marker stringReplication - Delete marker replication
- Destination
Storage
Replication Rule Destination - Rule destination configuration
- Filter
Storage
Replication Rule Filter - Rule filters
- Id string
- Rule ID
- Priority double
- Rule priority
- Status string
- Rule status
- Delete
Marker stringReplication - Delete marker replication
- Destination
Storage
Replication Rule Destination - Rule destination configuration
- Filter
Storage
Replication Rule Filter - Rule filters
- Id string
- Rule ID
- Priority float64
- Rule priority
- Status string
- Rule status
- delete
Marker StringReplication - Delete marker replication
- destination
Storage
Replication Rule Destination - Rule destination configuration
- filter
Storage
Replication Rule Filter - Rule filters
- id String
- Rule ID
- priority Double
- Rule priority
- status String
- Rule status
- delete
Marker stringReplication - Delete marker replication
- destination
Storage
Replication Rule Destination - Rule destination configuration
- filter
Storage
Replication Rule Filter - Rule filters
- id string
- Rule ID
- priority number
- Rule priority
- status string
- Rule status
- delete_
marker_ strreplication - Delete marker replication
- destination
cloudproject.
Storage Replication Rule Destination - Rule destination configuration
- filter
cloudproject.
Storage Replication Rule Filter - Rule filters
- id str
- Rule ID
- priority float
- Rule priority
- status str
- Rule status
- delete
Marker StringReplication - 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
- Storage
Class string - Destination storage class
- Name string
- Destination bucket name
- Region string
- Destination region
- Storage
Class string - Destination storage class
- name String
- Destination bucket name
- region String
- Destination region
- storage
Class String - Destination storage class
- name string
- Destination bucket name
- region string
- Destination region
- storage
Class 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
- storage
Class String - Destination storage class
StorageReplicationRuleFilter, StorageReplicationRuleFilterArgs
- Prefix string
- Prefix filter
- List<Storage
Replication Rule Filter Tag> - Tags filter
- Prefix string
- Prefix filter
- []Storage
Replication Rule Filter Tag - Tags filter
- prefix String
- Prefix filter
- List<Storage
Replication Rule Filter Tag> - Tags filter
- prefix string
- Prefix filter
- Storage
Replication Rule Filter Tag[] - Tags filter
- prefix str
- Prefix filter
- Sequence[cloudproject.
Storage Replication Rule Filter Tag] - Tags filter
- prefix String
- Prefix filter
- List<Property Map>
- Tags filter
StorageReplicationRuleFilterTag, StorageReplicationRuleFilterTagArgs
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.