outscale.Snapshot
Explore with Pulumi AI
Manages a snapshot.
For more information on this resource, see the User Guide.
For more information on this resource actions, see the API documentation.
Example Usage
Required resource
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const volume01 = new outscale.Volume("volume01", {
size: 40,
subregionName: `${_var.region}a`,
});
import pulumi
import pulumi_outscale as outscale
volume01 = outscale.Volume("volume01",
size=40,
subregion_name=f"{var['region']}a")
package main
import (
"fmt"
"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.NewVolume(ctx, "volume01", &outscale.VolumeArgs{
Size: pulumi.Float64(40),
SubregionName: pulumi.Sprintf("%va", _var.Region),
})
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 volume01 = new Outscale.Volume("volume01", new()
{
Size = 40,
SubregionName = $"{@var.Region}a",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.outscale.Volume;
import com.pulumi.outscale.VolumeArgs;
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 volume01 = new Volume("volume01", VolumeArgs.builder()
.size(40)
.subregionName(String.format("%sa", var_.region()))
.build());
}
}
resources:
volume01:
type: outscale:Volume
properties:
size: 40
subregionName: ${var.region}a
Create a snapshot
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const snapshot01 = new outscale.Snapshot("snapshot01", {volumeId: outscale_volume.volume01.volume_id});
import pulumi
import pulumi_outscale as outscale
snapshot01 = outscale.Snapshot("snapshot01", volume_id=outscale_volume["volume01"]["volume_id"])
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.NewSnapshot(ctx, "snapshot01", &outscale.SnapshotArgs{
VolumeId: pulumi.Any(outscale_volume.Volume01.Volume_id),
})
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 snapshot01 = new Outscale.Snapshot("snapshot01", new()
{
VolumeId = outscale_volume.Volume01.Volume_id,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.outscale.Snapshot;
import com.pulumi.outscale.SnapshotArgs;
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 snapshot01 = new Snapshot("snapshot01", SnapshotArgs.builder()
.volumeId(outscale_volume.volume01().volume_id())
.build());
}
}
resources:
snapshot01:
type: outscale:Snapshot
properties:
volumeId: ${outscale_volume.volume01.volume_id}
Copy a snapshot
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const snapshot02 = new outscale.Snapshot("snapshot02", {
description: "Terraform snapshot copy",
sourceRegionName: "eu-west-2",
sourceSnapshotId: "snap-12345678",
});
import pulumi
import pulumi_outscale as outscale
snapshot02 = outscale.Snapshot("snapshot02",
description="Terraform snapshot copy",
source_region_name="eu-west-2",
source_snapshot_id="snap-12345678")
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.NewSnapshot(ctx, "snapshot02", &outscale.SnapshotArgs{
Description: pulumi.String("Terraform snapshot copy"),
SourceRegionName: pulumi.String("eu-west-2"),
SourceSnapshotId: pulumi.String("snap-12345678"),
})
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 snapshot02 = new Outscale.Snapshot("snapshot02", new()
{
Description = "Terraform snapshot copy",
SourceRegionName = "eu-west-2",
SourceSnapshotId = "snap-12345678",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.outscale.Snapshot;
import com.pulumi.outscale.SnapshotArgs;
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 snapshot02 = new Snapshot("snapshot02", SnapshotArgs.builder()
.description("Terraform snapshot copy")
.sourceRegionName("eu-west-2")
.sourceSnapshotId("snap-12345678")
.build());
}
}
resources:
snapshot02:
type: outscale:Snapshot
properties:
description: Terraform snapshot copy
sourceRegionName: eu-west-2
sourceSnapshotId: snap-12345678
Create Snapshot Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Snapshot(name: string, args?: SnapshotArgs, opts?: CustomResourceOptions);
@overload
def Snapshot(resource_name: str,
args: Optional[SnapshotArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Snapshot(resource_name: str,
opts: Optional[ResourceOptions] = None,
description: Optional[str] = None,
file_location: Optional[str] = None,
outscale_snapshot_id: Optional[str] = None,
snapshot_size: Optional[float] = None,
source_region_name: Optional[str] = None,
source_snapshot_id: Optional[str] = None,
tags: Optional[Sequence[SnapshotTagArgs]] = None,
volume_id: Optional[str] = None)
func NewSnapshot(ctx *Context, name string, args *SnapshotArgs, opts ...ResourceOption) (*Snapshot, error)
public Snapshot(string name, SnapshotArgs? args = null, CustomResourceOptions? opts = null)
public Snapshot(String name, SnapshotArgs args)
public Snapshot(String name, SnapshotArgs args, CustomResourceOptions options)
type: outscale:Snapshot
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 SnapshotArgs
- 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 SnapshotArgs
- 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 SnapshotArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args SnapshotArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args SnapshotArgs
- 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 snapshotResource = new Outscale.Snapshot("snapshotResource", new()
{
Description = "string",
FileLocation = "string",
OutscaleSnapshotId = "string",
SnapshotSize = 0,
SourceRegionName = "string",
SourceSnapshotId = "string",
Tags = new[]
{
new Outscale.Inputs.SnapshotTagArgs
{
Key = "string",
Value = "string",
},
},
VolumeId = "string",
});
example, err := outscale.NewSnapshot(ctx, "snapshotResource", &outscale.SnapshotArgs{
Description: pulumi.String("string"),
FileLocation: pulumi.String("string"),
OutscaleSnapshotId: pulumi.String("string"),
SnapshotSize: pulumi.Float64(0),
SourceRegionName: pulumi.String("string"),
SourceSnapshotId: pulumi.String("string"),
Tags: .SnapshotTagArray{
&.SnapshotTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
VolumeId: pulumi.String("string"),
})
var snapshotResource = new Snapshot("snapshotResource", SnapshotArgs.builder()
.description("string")
.fileLocation("string")
.outscaleSnapshotId("string")
.snapshotSize(0)
.sourceRegionName("string")
.sourceSnapshotId("string")
.tags(SnapshotTagArgs.builder()
.key("string")
.value("string")
.build())
.volumeId("string")
.build());
snapshot_resource = outscale.Snapshot("snapshotResource",
description="string",
file_location="string",
outscale_snapshot_id="string",
snapshot_size=0,
source_region_name="string",
source_snapshot_id="string",
tags=[{
"key": "string",
"value": "string",
}],
volume_id="string")
const snapshotResource = new outscale.Snapshot("snapshotResource", {
description: "string",
fileLocation: "string",
outscaleSnapshotId: "string",
snapshotSize: 0,
sourceRegionName: "string",
sourceSnapshotId: "string",
tags: [{
key: "string",
value: "string",
}],
volumeId: "string",
});
type: outscale:Snapshot
properties:
description: string
fileLocation: string
outscaleSnapshotId: string
snapshotSize: 0
sourceRegionName: string
sourceSnapshotId: string
tags:
- key: string
value: string
volumeId: string
Snapshot 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 Snapshot resource accepts the following input properties:
- Description string
- A description for the snapshot.
- File
Location string - (when importing from a bucket) The pre-signed URL of the snapshot you want to import. For more information, see Creating a Pre-signed URL.
- Outscale
Snapshot stringId - Snapshot
Size double - (when importing from a bucket) The size of the snapshot you want to create in your account, in bytes. This size must be greater than or equal to the size of the original, uncompressed snapshot.
- Source
Region stringName - (when copying a snapshot) The name of the source Region, which must be the same as the Region of your account.
- Source
Snapshot stringId - (when copying a snapshot) The ID of the snapshot you want to copy.
- List<Snapshot
Tag> - A tag to add to this resource. You can specify this argument several times.
- Volume
Id string - (when creating from a volume) The ID of the volume you want to create a snapshot of.
- Description string
- A description for the snapshot.
- File
Location string - (when importing from a bucket) The pre-signed URL of the snapshot you want to import. For more information, see Creating a Pre-signed URL.
- Outscale
Snapshot stringId - Snapshot
Size float64 - (when importing from a bucket) The size of the snapshot you want to create in your account, in bytes. This size must be greater than or equal to the size of the original, uncompressed snapshot.
- Source
Region stringName - (when copying a snapshot) The name of the source Region, which must be the same as the Region of your account.
- Source
Snapshot stringId - (when copying a snapshot) The ID of the snapshot you want to copy.
- []Snapshot
Tag Args - A tag to add to this resource. You can specify this argument several times.
- Volume
Id string - (when creating from a volume) The ID of the volume you want to create a snapshot of.
- description String
- A description for the snapshot.
- file
Location String - (when importing from a bucket) The pre-signed URL of the snapshot you want to import. For more information, see Creating a Pre-signed URL.
- outscale
Snapshot StringId - snapshot
Size Double - (when importing from a bucket) The size of the snapshot you want to create in your account, in bytes. This size must be greater than or equal to the size of the original, uncompressed snapshot.
- source
Region StringName - (when copying a snapshot) The name of the source Region, which must be the same as the Region of your account.
- source
Snapshot StringId - (when copying a snapshot) The ID of the snapshot you want to copy.
- List<Snapshot
Tag> - A tag to add to this resource. You can specify this argument several times.
- volume
Id String - (when creating from a volume) The ID of the volume you want to create a snapshot of.
- description string
- A description for the snapshot.
- file
Location string - (when importing from a bucket) The pre-signed URL of the snapshot you want to import. For more information, see Creating a Pre-signed URL.
- outscale
Snapshot stringId - snapshot
Size number - (when importing from a bucket) The size of the snapshot you want to create in your account, in bytes. This size must be greater than or equal to the size of the original, uncompressed snapshot.
- source
Region stringName - (when copying a snapshot) The name of the source Region, which must be the same as the Region of your account.
- source
Snapshot stringId - (when copying a snapshot) The ID of the snapshot you want to copy.
- Snapshot
Tag[] - A tag to add to this resource. You can specify this argument several times.
- volume
Id string - (when creating from a volume) The ID of the volume you want to create a snapshot of.
- description str
- A description for the snapshot.
- file_
location str - (when importing from a bucket) The pre-signed URL of the snapshot you want to import. For more information, see Creating a Pre-signed URL.
- outscale_
snapshot_ strid - snapshot_
size float - (when importing from a bucket) The size of the snapshot you want to create in your account, in bytes. This size must be greater than or equal to the size of the original, uncompressed snapshot.
- source_
region_ strname - (when copying a snapshot) The name of the source Region, which must be the same as the Region of your account.
- source_
snapshot_ strid - (when copying a snapshot) The ID of the snapshot you want to copy.
- Sequence[Snapshot
Tag Args] - A tag to add to this resource. You can specify this argument several times.
- volume_
id str - (when creating from a volume) The ID of the volume you want to create a snapshot of.
- description String
- A description for the snapshot.
- file
Location String - (when importing from a bucket) The pre-signed URL of the snapshot you want to import. For more information, see Creating a Pre-signed URL.
- outscale
Snapshot StringId - snapshot
Size Number - (when importing from a bucket) The size of the snapshot you want to create in your account, in bytes. This size must be greater than or equal to the size of the original, uncompressed snapshot.
- source
Region StringName - (when copying a snapshot) The name of the source Region, which must be the same as the Region of your account.
- source
Snapshot StringId - (when copying a snapshot) The ID of the snapshot you want to copy.
- List<Property Map>
- A tag to add to this resource. You can specify this argument several times.
- volume
Id String - (when creating from a volume) The ID of the volume you want to create a snapshot of.
Outputs
All input properties are implicitly available as output properties. Additionally, the Snapshot resource produces the following output properties:
- Account
Alias string - The account alias of the owner of the snapshot.
- Account
Id string - The account ID of the owner of the snapshot.
- Creation
Date string - The date and time (UTC) at which the snapshot was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Permissions
To List<SnapshotCreate Volumes Permissions To Create Volume> - Permissions for the resource.
- Progress double
- The progress of the snapshot, as a percentage.
- Request
Id string - Snapshot
Id string - The ID of the snapshot.
- State string
- The state of the snapshot (
in-queue
|pending
|completed
|error
|deleting
)). - Volume
Size double - The size of the volume used to create the snapshot, in gibibytes (GiB).
- Account
Alias string - The account alias of the owner of the snapshot.
- Account
Id string - The account ID of the owner of the snapshot.
- Creation
Date string - The date and time (UTC) at which the snapshot was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Permissions
To []SnapshotCreate Volumes Permissions To Create Volume - Permissions for the resource.
- Progress float64
- The progress of the snapshot, as a percentage.
- Request
Id string - Snapshot
Id string - The ID of the snapshot.
- State string
- The state of the snapshot (
in-queue
|pending
|completed
|error
|deleting
)). - Volume
Size float64 - The size of the volume used to create the snapshot, in gibibytes (GiB).
- account
Alias String - The account alias of the owner of the snapshot.
- account
Id String - The account ID of the owner of the snapshot.
- creation
Date String - The date and time (UTC) at which the snapshot was created.
- id String
- The provider-assigned unique ID for this managed resource.
- permissions
To List<SnapshotCreate Volumes Permissions To Create Volume> - Permissions for the resource.
- progress Double
- The progress of the snapshot, as a percentage.
- request
Id String - snapshot
Id String - The ID of the snapshot.
- state String
- The state of the snapshot (
in-queue
|pending
|completed
|error
|deleting
)). - volume
Size Double - The size of the volume used to create the snapshot, in gibibytes (GiB).
- account
Alias string - The account alias of the owner of the snapshot.
- account
Id string - The account ID of the owner of the snapshot.
- creation
Date string - The date and time (UTC) at which the snapshot was created.
- id string
- The provider-assigned unique ID for this managed resource.
- permissions
To SnapshotCreate Volumes Permissions To Create Volume[] - Permissions for the resource.
- progress number
- The progress of the snapshot, as a percentage.
- request
Id string - snapshot
Id string - The ID of the snapshot.
- state string
- The state of the snapshot (
in-queue
|pending
|completed
|error
|deleting
)). - volume
Size number - The size of the volume used to create the snapshot, in gibibytes (GiB).
- account_
alias str - The account alias of the owner of the snapshot.
- account_
id str - The account ID of the owner of the snapshot.
- creation_
date str - The date and time (UTC) at which the snapshot was created.
- id str
- The provider-assigned unique ID for this managed resource.
- permissions_
to_ Sequence[Snapshotcreate_ volumes Permissions To Create Volume] - Permissions for the resource.
- progress float
- The progress of the snapshot, as a percentage.
- request_
id str - snapshot_
id str - The ID of the snapshot.
- state str
- The state of the snapshot (
in-queue
|pending
|completed
|error
|deleting
)). - volume_
size float - The size of the volume used to create the snapshot, in gibibytes (GiB).
- account
Alias String - The account alias of the owner of the snapshot.
- account
Id String - The account ID of the owner of the snapshot.
- creation
Date String - The date and time (UTC) at which the snapshot was created.
- id String
- The provider-assigned unique ID for this managed resource.
- permissions
To List<Property Map>Create Volumes - Permissions for the resource.
- progress Number
- The progress of the snapshot, as a percentage.
- request
Id String - snapshot
Id String - The ID of the snapshot.
- state String
- The state of the snapshot (
in-queue
|pending
|completed
|error
|deleting
)). - volume
Size Number - The size of the volume used to create the snapshot, in gibibytes (GiB).
Look up Existing Snapshot Resource
Get an existing Snapshot 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?: SnapshotState, opts?: CustomResourceOptions): Snapshot
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_alias: Optional[str] = None,
account_id: Optional[str] = None,
creation_date: Optional[str] = None,
description: Optional[str] = None,
file_location: Optional[str] = None,
outscale_snapshot_id: Optional[str] = None,
permissions_to_create_volumes: Optional[Sequence[SnapshotPermissionsToCreateVolumeArgs]] = None,
progress: Optional[float] = None,
request_id: Optional[str] = None,
snapshot_id: Optional[str] = None,
snapshot_size: Optional[float] = None,
source_region_name: Optional[str] = None,
source_snapshot_id: Optional[str] = None,
state: Optional[str] = None,
tags: Optional[Sequence[SnapshotTagArgs]] = None,
volume_id: Optional[str] = None,
volume_size: Optional[float] = None) -> Snapshot
func GetSnapshot(ctx *Context, name string, id IDInput, state *SnapshotState, opts ...ResourceOption) (*Snapshot, error)
public static Snapshot Get(string name, Input<string> id, SnapshotState? state, CustomResourceOptions? opts = null)
public static Snapshot get(String name, Output<String> id, SnapshotState state, CustomResourceOptions options)
resources: _: type: outscale:Snapshot 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.
- Account
Alias string - The account alias of the owner of the snapshot.
- Account
Id string - The account ID of the owner of the snapshot.
- Creation
Date string - The date and time (UTC) at which the snapshot was created.
- Description string
- A description for the snapshot.
- File
Location string - (when importing from a bucket) The pre-signed URL of the snapshot you want to import. For more information, see Creating a Pre-signed URL.
- Outscale
Snapshot stringId - Permissions
To List<SnapshotCreate Volumes Permissions To Create Volume> - Permissions for the resource.
- Progress double
- The progress of the snapshot, as a percentage.
- Request
Id string - Snapshot
Id string - The ID of the snapshot.
- Snapshot
Size double - (when importing from a bucket) The size of the snapshot you want to create in your account, in bytes. This size must be greater than or equal to the size of the original, uncompressed snapshot.
- Source
Region stringName - (when copying a snapshot) The name of the source Region, which must be the same as the Region of your account.
- Source
Snapshot stringId - (when copying a snapshot) The ID of the snapshot you want to copy.
- State string
- The state of the snapshot (
in-queue
|pending
|completed
|error
|deleting
)). - List<Snapshot
Tag> - A tag to add to this resource. You can specify this argument several times.
- Volume
Id string - (when creating from a volume) The ID of the volume you want to create a snapshot of.
- Volume
Size double - The size of the volume used to create the snapshot, in gibibytes (GiB).
- Account
Alias string - The account alias of the owner of the snapshot.
- Account
Id string - The account ID of the owner of the snapshot.
- Creation
Date string - The date and time (UTC) at which the snapshot was created.
- Description string
- A description for the snapshot.
- File
Location string - (when importing from a bucket) The pre-signed URL of the snapshot you want to import. For more information, see Creating a Pre-signed URL.
- Outscale
Snapshot stringId - Permissions
To []SnapshotCreate Volumes Permissions To Create Volume Args - Permissions for the resource.
- Progress float64
- The progress of the snapshot, as a percentage.
- Request
Id string - Snapshot
Id string - The ID of the snapshot.
- Snapshot
Size float64 - (when importing from a bucket) The size of the snapshot you want to create in your account, in bytes. This size must be greater than or equal to the size of the original, uncompressed snapshot.
- Source
Region stringName - (when copying a snapshot) The name of the source Region, which must be the same as the Region of your account.
- Source
Snapshot stringId - (when copying a snapshot) The ID of the snapshot you want to copy.
- State string
- The state of the snapshot (
in-queue
|pending
|completed
|error
|deleting
)). - []Snapshot
Tag Args - A tag to add to this resource. You can specify this argument several times.
- Volume
Id string - (when creating from a volume) The ID of the volume you want to create a snapshot of.
- Volume
Size float64 - The size of the volume used to create the snapshot, in gibibytes (GiB).
- account
Alias String - The account alias of the owner of the snapshot.
- account
Id String - The account ID of the owner of the snapshot.
- creation
Date String - The date and time (UTC) at which the snapshot was created.
- description String
- A description for the snapshot.
- file
Location String - (when importing from a bucket) The pre-signed URL of the snapshot you want to import. For more information, see Creating a Pre-signed URL.
- outscale
Snapshot StringId - permissions
To List<SnapshotCreate Volumes Permissions To Create Volume> - Permissions for the resource.
- progress Double
- The progress of the snapshot, as a percentage.
- request
Id String - snapshot
Id String - The ID of the snapshot.
- snapshot
Size Double - (when importing from a bucket) The size of the snapshot you want to create in your account, in bytes. This size must be greater than or equal to the size of the original, uncompressed snapshot.
- source
Region StringName - (when copying a snapshot) The name of the source Region, which must be the same as the Region of your account.
- source
Snapshot StringId - (when copying a snapshot) The ID of the snapshot you want to copy.
- state String
- The state of the snapshot (
in-queue
|pending
|completed
|error
|deleting
)). - List<Snapshot
Tag> - A tag to add to this resource. You can specify this argument several times.
- volume
Id String - (when creating from a volume) The ID of the volume you want to create a snapshot of.
- volume
Size Double - The size of the volume used to create the snapshot, in gibibytes (GiB).
- account
Alias string - The account alias of the owner of the snapshot.
- account
Id string - The account ID of the owner of the snapshot.
- creation
Date string - The date and time (UTC) at which the snapshot was created.
- description string
- A description for the snapshot.
- file
Location string - (when importing from a bucket) The pre-signed URL of the snapshot you want to import. For more information, see Creating a Pre-signed URL.
- outscale
Snapshot stringId - permissions
To SnapshotCreate Volumes Permissions To Create Volume[] - Permissions for the resource.
- progress number
- The progress of the snapshot, as a percentage.
- request
Id string - snapshot
Id string - The ID of the snapshot.
- snapshot
Size number - (when importing from a bucket) The size of the snapshot you want to create in your account, in bytes. This size must be greater than or equal to the size of the original, uncompressed snapshot.
- source
Region stringName - (when copying a snapshot) The name of the source Region, which must be the same as the Region of your account.
- source
Snapshot stringId - (when copying a snapshot) The ID of the snapshot you want to copy.
- state string
- The state of the snapshot (
in-queue
|pending
|completed
|error
|deleting
)). - Snapshot
Tag[] - A tag to add to this resource. You can specify this argument several times.
- volume
Id string - (when creating from a volume) The ID of the volume you want to create a snapshot of.
- volume
Size number - The size of the volume used to create the snapshot, in gibibytes (GiB).
- account_
alias str - The account alias of the owner of the snapshot.
- account_
id str - The account ID of the owner of the snapshot.
- creation_
date str - The date and time (UTC) at which the snapshot was created.
- description str
- A description for the snapshot.
- file_
location str - (when importing from a bucket) The pre-signed URL of the snapshot you want to import. For more information, see Creating a Pre-signed URL.
- outscale_
snapshot_ strid - permissions_
to_ Sequence[Snapshotcreate_ volumes Permissions To Create Volume Args] - Permissions for the resource.
- progress float
- The progress of the snapshot, as a percentage.
- request_
id str - snapshot_
id str - The ID of the snapshot.
- snapshot_
size float - (when importing from a bucket) The size of the snapshot you want to create in your account, in bytes. This size must be greater than or equal to the size of the original, uncompressed snapshot.
- source_
region_ strname - (when copying a snapshot) The name of the source Region, which must be the same as the Region of your account.
- source_
snapshot_ strid - (when copying a snapshot) The ID of the snapshot you want to copy.
- state str
- The state of the snapshot (
in-queue
|pending
|completed
|error
|deleting
)). - Sequence[Snapshot
Tag Args] - A tag to add to this resource. You can specify this argument several times.
- volume_
id str - (when creating from a volume) The ID of the volume you want to create a snapshot of.
- volume_
size float - The size of the volume used to create the snapshot, in gibibytes (GiB).
- account
Alias String - The account alias of the owner of the snapshot.
- account
Id String - The account ID of the owner of the snapshot.
- creation
Date String - The date and time (UTC) at which the snapshot was created.
- description String
- A description for the snapshot.
- file
Location String - (when importing from a bucket) The pre-signed URL of the snapshot you want to import. For more information, see Creating a Pre-signed URL.
- outscale
Snapshot StringId - permissions
To List<Property Map>Create Volumes - Permissions for the resource.
- progress Number
- The progress of the snapshot, as a percentage.
- request
Id String - snapshot
Id String - The ID of the snapshot.
- snapshot
Size Number - (when importing from a bucket) The size of the snapshot you want to create in your account, in bytes. This size must be greater than or equal to the size of the original, uncompressed snapshot.
- source
Region StringName - (when copying a snapshot) The name of the source Region, which must be the same as the Region of your account.
- source
Snapshot StringId - (when copying a snapshot) The ID of the snapshot you want to copy.
- state String
- The state of the snapshot (
in-queue
|pending
|completed
|error
|deleting
)). - List<Property Map>
- A tag to add to this resource. You can specify this argument several times.
- volume
Id String - (when creating from a volume) The ID of the volume you want to create a snapshot of.
- volume
Size Number - The size of the volume used to create the snapshot, in gibibytes (GiB).
Supporting Types
SnapshotPermissionsToCreateVolume, SnapshotPermissionsToCreateVolumeArgs
- Account
Id string - The account ID of the owner of the snapshot.
- Global
Permission bool - A global permission for all accounts.
(Request) Set this parameter to true to make the resource public (if the parent parameter is
Additions
) or to make the resource private (if the parent parameter isRemovals
). (Response) If true, the resource is public. If false, the resource is private.
- Account
Id string - The account ID of the owner of the snapshot.
- Global
Permission bool - A global permission for all accounts.
(Request) Set this parameter to true to make the resource public (if the parent parameter is
Additions
) or to make the resource private (if the parent parameter isRemovals
). (Response) If true, the resource is public. If false, the resource is private.
- account
Id String - The account ID of the owner of the snapshot.
- global
Permission Boolean - A global permission for all accounts.
(Request) Set this parameter to true to make the resource public (if the parent parameter is
Additions
) or to make the resource private (if the parent parameter isRemovals
). (Response) If true, the resource is public. If false, the resource is private.
- account
Id string - The account ID of the owner of the snapshot.
- global
Permission boolean - A global permission for all accounts.
(Request) Set this parameter to true to make the resource public (if the parent parameter is
Additions
) or to make the resource private (if the parent parameter isRemovals
). (Response) If true, the resource is public. If false, the resource is private.
- account_
id str - The account ID of the owner of the snapshot.
- global_
permission bool - A global permission for all accounts.
(Request) Set this parameter to true to make the resource public (if the parent parameter is
Additions
) or to make the resource private (if the parent parameter isRemovals
). (Response) If true, the resource is public. If false, the resource is private.
- account
Id String - The account ID of the owner of the snapshot.
- global
Permission Boolean - A global permission for all accounts.
(Request) Set this parameter to true to make the resource public (if the parent parameter is
Additions
) or to make the resource private (if the parent parameter isRemovals
). (Response) If true, the resource is public. If false, the resource is private.
SnapshotTag, SnapshotTagArgs
Import
A snapshot can be imported using its ID. For example:
console
$ pulumi import outscale:index/snapshot:Snapshot ImportedSnapshot snap-12345678
To learn more about importing existing cloud resources, see Importing resources.
Package Details
- Repository
- outscale outscale/terraform-provider-outscale
- License
- Notes
- This Pulumi package is based on the
outscale
Terraform Provider.