outscale.Image
Explore with Pulumi AI
Manages an image.
For more information on this resource, see the User Guide.
For more information on this resource actions, see the API documentation.
Example Usage
Create an image
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const image01 = new outscale.Image("image01", {
imageName: "terraform-omi-create",
vmId: _var.vm_id,
noReboot: true,
});
import pulumi
import pulumi_outscale as outscale
image01 = outscale.Image("image01",
image_name="terraform-omi-create",
vm_id=var["vm_id"],
no_reboot=True)
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.NewImage(ctx, "image01", &outscale.ImageArgs{
ImageName: pulumi.String("terraform-omi-create"),
VmId: pulumi.Any(_var.Vm_id),
NoReboot: pulumi.Bool(true),
})
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 image01 = new Outscale.Image("image01", new()
{
ImageName = "terraform-omi-create",
VmId = @var.Vm_id,
NoReboot = true,
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.outscale.Image;
import com.pulumi.outscale.ImageArgs;
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 image01 = new Image("image01", ImageArgs.builder()
.imageName("terraform-omi-create")
.vmId(var_.vm_id())
.noReboot("true")
.build());
}
}
resources:
image01:
type: outscale:Image
properties:
imageName: terraform-omi-create
vmId: ${var.vm_id}
noReboot: 'true'
Import an image
Important Make sure the manifest file is still valid.
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const image02 = new outscale.Image("image02", {
description: "Terraform register OMI",
fileLocation: "<URL>",
imageName: "terraform-omi-register",
});
import pulumi
import pulumi_outscale as outscale
image02 = outscale.Image("image02",
description="Terraform register OMI",
file_location="<URL>",
image_name="terraform-omi-register")
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.NewImage(ctx, "image02", &outscale.ImageArgs{
Description: pulumi.String("Terraform register OMI"),
FileLocation: pulumi.String("<URL>"),
ImageName: pulumi.String("terraform-omi-register"),
})
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 image02 = new Outscale.Image("image02", new()
{
Description = "Terraform register OMI",
FileLocation = "<URL>",
ImageName = "terraform-omi-register",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.outscale.Image;
import com.pulumi.outscale.ImageArgs;
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 image02 = new Image("image02", ImageArgs.builder()
.description("Terraform register OMI")
.fileLocation("<URL>")
.imageName("terraform-omi-register")
.build());
}
}
resources:
image02:
type: outscale:Image
properties:
description: Terraform register OMI
fileLocation: <URL>
imageName: terraform-omi-register
Copy an image
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const image03 = new outscale.Image("image03", {
description: "Terraform copy OMI",
imageName: "terraform-omi-copy",
sourceImageId: "ami-12345678",
sourceRegionName: "eu-west-2",
});
import pulumi
import pulumi_outscale as outscale
image03 = outscale.Image("image03",
description="Terraform copy OMI",
image_name="terraform-omi-copy",
source_image_id="ami-12345678",
source_region_name="eu-west-2")
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.NewImage(ctx, "image03", &outscale.ImageArgs{
Description: pulumi.String("Terraform copy OMI"),
ImageName: pulumi.String("terraform-omi-copy"),
SourceImageId: pulumi.String("ami-12345678"),
SourceRegionName: pulumi.String("eu-west-2"),
})
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 image03 = new Outscale.Image("image03", new()
{
Description = "Terraform copy OMI",
ImageName = "terraform-omi-copy",
SourceImageId = "ami-12345678",
SourceRegionName = "eu-west-2",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.outscale.Image;
import com.pulumi.outscale.ImageArgs;
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 image03 = new Image("image03", ImageArgs.builder()
.description("Terraform copy OMI")
.imageName("terraform-omi-copy")
.sourceImageId("ami-12345678")
.sourceRegionName("eu-west-2")
.build());
}
}
resources:
image03:
type: outscale:Image
properties:
description: Terraform copy OMI
imageName: terraform-omi-copy
sourceImageId: ami-12345678
sourceRegionName: eu-west-2
Create an image with a Block Storage Unit (BSU) volume
import * as pulumi from "@pulumi/pulumi";
import * as outscale from "@pulumi/outscale";
const image04 = new outscale.Image("image04", {
blockDeviceMappings: [{
bsus: [{
deleteOnVmDeletion: true,
iops: 150,
snapshotId: "snap-12345678",
volumeSize: 120,
volumeType: "io1",
}],
deviceName: "/dev/sda1",
}],
description: "Terraform OMI with BSU",
imageName: "terraform-omi-bsu",
rootDeviceName: "/dev/sda1",
});
import pulumi
import pulumi_outscale as outscale
image04 = outscale.Image("image04",
block_device_mappings=[{
"bsus": [{
"delete_on_vm_deletion": True,
"iops": 150,
"snapshot_id": "snap-12345678",
"volume_size": 120,
"volume_type": "io1",
}],
"device_name": "/dev/sda1",
}],
description="Terraform OMI with BSU",
image_name="terraform-omi-bsu",
root_device_name="/dev/sda1")
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.NewImage(ctx, "image04", &outscale.ImageArgs{
BlockDeviceMappings: outscale.ImageBlockDeviceMappingArray{
&outscale.ImageBlockDeviceMappingArgs{
Bsus: outscale.ImageBlockDeviceMappingBsusArray{
&outscale.ImageBlockDeviceMappingBsusArgs{
DeleteOnVmDeletion: pulumi.Bool(true),
Iops: pulumi.Float64(150),
SnapshotId: pulumi.String("snap-12345678"),
VolumeSize: pulumi.Float64(120),
VolumeType: pulumi.String("io1"),
},
},
DeviceName: pulumi.String("/dev/sda1"),
},
},
Description: pulumi.String("Terraform OMI with BSU"),
ImageName: pulumi.String("terraform-omi-bsu"),
RootDeviceName: pulumi.String("/dev/sda1"),
})
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 image04 = new Outscale.Image("image04", new()
{
BlockDeviceMappings = new[]
{
new Outscale.Inputs.ImageBlockDeviceMappingArgs
{
Bsus = new[]
{
new Outscale.Inputs.ImageBlockDeviceMappingBsusArgs
{
DeleteOnVmDeletion = true,
Iops = 150,
SnapshotId = "snap-12345678",
VolumeSize = 120,
VolumeType = "io1",
},
},
DeviceName = "/dev/sda1",
},
},
Description = "Terraform OMI with BSU",
ImageName = "terraform-omi-bsu",
RootDeviceName = "/dev/sda1",
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.outscale.Image;
import com.pulumi.outscale.ImageArgs;
import com.pulumi.outscale.inputs.ImageBlockDeviceMappingArgs;
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 image04 = new Image("image04", ImageArgs.builder()
.blockDeviceMappings(ImageBlockDeviceMappingArgs.builder()
.bsus(ImageBlockDeviceMappingBsusArgs.builder()
.deleteOnVmDeletion("true")
.iops(150)
.snapshotId("snap-12345678")
.volumeSize("120")
.volumeType("io1")
.build())
.deviceName("/dev/sda1")
.build())
.description("Terraform OMI with BSU")
.imageName("terraform-omi-bsu")
.rootDeviceName("/dev/sda1")
.build());
}
}
resources:
image04:
type: outscale:Image
properties:
blockDeviceMappings:
- bsus:
- deleteOnVmDeletion: 'true'
iops: 150
snapshotId: snap-12345678
volumeSize: '120'
volumeType: io1
deviceName: /dev/sda1
description: Terraform OMI with BSU
imageName: terraform-omi-bsu
rootDeviceName: /dev/sda1
Create Image Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new Image(name: string, args?: ImageArgs, opts?: CustomResourceOptions);
@overload
def Image(resource_name: str,
args: Optional[ImageArgs] = None,
opts: Optional[ResourceOptions] = None)
@overload
def Image(resource_name: str,
opts: Optional[ResourceOptions] = None,
architecture: Optional[str] = None,
block_device_mappings: Optional[Sequence[ImageBlockDeviceMappingArgs]] = None,
description: Optional[str] = None,
file_location: Optional[str] = None,
image_name: Optional[str] = None,
no_reboot: Optional[bool] = None,
outscale_image_id: Optional[str] = None,
root_device_name: Optional[str] = None,
source_image_id: Optional[str] = None,
source_region_name: Optional[str] = None,
tags: Optional[Sequence[ImageTagArgs]] = None,
timeouts: Optional[ImageTimeoutsArgs] = None,
vm_id: Optional[str] = None)
func NewImage(ctx *Context, name string, args *ImageArgs, opts ...ResourceOption) (*Image, error)
public Image(string name, ImageArgs? args = null, CustomResourceOptions? opts = null)
type: outscale:Image
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 ImageArgs
- 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 ImageArgs
- 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 ImageArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args ImageArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args ImageArgs
- 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 imageResource = new Outscale.Image("imageResource", new()
{
Architecture = "string",
BlockDeviceMappings = new[]
{
new Outscale.Inputs.ImageBlockDeviceMappingArgs
{
Bsus = new[]
{
new Outscale.Inputs.ImageBlockDeviceMappingBsusArgs
{
DeleteOnVmDeletion = false,
Iops = 0,
SnapshotId = "string",
VolumeSize = 0,
VolumeType = "string",
},
},
DeviceName = "string",
VirtualDeviceName = "string",
},
},
Description = "string",
FileLocation = "string",
ImageName = "string",
NoReboot = false,
OutscaleImageId = "string",
RootDeviceName = "string",
SourceImageId = "string",
SourceRegionName = "string",
Tags = new[]
{
new Outscale.Inputs.ImageTagArgs
{
Key = "string",
Value = "string",
},
},
Timeouts = new Outscale.Inputs.ImageTimeoutsArgs
{
Create = "string",
Delete = "string",
Update = "string",
},
VmId = "string",
});
example, err := outscale.NewImage(ctx, "imageResource", &outscale.ImageArgs{
Architecture: pulumi.String("string"),
BlockDeviceMappings: .ImageBlockDeviceMappingArray{
&.ImageBlockDeviceMappingArgs{
Bsus: .ImageBlockDeviceMappingBsusArray{
&.ImageBlockDeviceMappingBsusArgs{
DeleteOnVmDeletion: pulumi.Bool(false),
Iops: pulumi.Float64(0),
SnapshotId: pulumi.String("string"),
VolumeSize: pulumi.Float64(0),
VolumeType: pulumi.String("string"),
},
},
DeviceName: pulumi.String("string"),
VirtualDeviceName: pulumi.String("string"),
},
},
Description: pulumi.String("string"),
FileLocation: pulumi.String("string"),
ImageName: pulumi.String("string"),
NoReboot: pulumi.Bool(false),
OutscaleImageId: pulumi.String("string"),
RootDeviceName: pulumi.String("string"),
SourceImageId: pulumi.String("string"),
SourceRegionName: pulumi.String("string"),
Tags: .ImageTagArray{
&.ImageTagArgs{
Key: pulumi.String("string"),
Value: pulumi.String("string"),
},
},
Timeouts: &.ImageTimeoutsArgs{
Create: pulumi.String("string"),
Delete: pulumi.String("string"),
Update: pulumi.String("string"),
},
VmId: pulumi.String("string"),
})
var imageResource = new Image("imageResource", ImageArgs.builder()
.architecture("string")
.blockDeviceMappings(ImageBlockDeviceMappingArgs.builder()
.bsus(ImageBlockDeviceMappingBsusArgs.builder()
.deleteOnVmDeletion(false)
.iops(0)
.snapshotId("string")
.volumeSize(0)
.volumeType("string")
.build())
.deviceName("string")
.virtualDeviceName("string")
.build())
.description("string")
.fileLocation("string")
.imageName("string")
.noReboot(false)
.outscaleImageId("string")
.rootDeviceName("string")
.sourceImageId("string")
.sourceRegionName("string")
.tags(ImageTagArgs.builder()
.key("string")
.value("string")
.build())
.timeouts(ImageTimeoutsArgs.builder()
.create("string")
.delete("string")
.update("string")
.build())
.vmId("string")
.build());
image_resource = outscale.Image("imageResource",
architecture="string",
block_device_mappings=[{
"bsus": [{
"delete_on_vm_deletion": False,
"iops": 0,
"snapshot_id": "string",
"volume_size": 0,
"volume_type": "string",
}],
"device_name": "string",
"virtual_device_name": "string",
}],
description="string",
file_location="string",
image_name="string",
no_reboot=False,
outscale_image_id="string",
root_device_name="string",
source_image_id="string",
source_region_name="string",
tags=[{
"key": "string",
"value": "string",
}],
timeouts={
"create": "string",
"delete": "string",
"update": "string",
},
vm_id="string")
const imageResource = new outscale.Image("imageResource", {
architecture: "string",
blockDeviceMappings: [{
bsus: [{
deleteOnVmDeletion: false,
iops: 0,
snapshotId: "string",
volumeSize: 0,
volumeType: "string",
}],
deviceName: "string",
virtualDeviceName: "string",
}],
description: "string",
fileLocation: "string",
imageName: "string",
noReboot: false,
outscaleImageId: "string",
rootDeviceName: "string",
sourceImageId: "string",
sourceRegionName: "string",
tags: [{
key: "string",
value: "string",
}],
timeouts: {
create: "string",
"delete": "string",
update: "string",
},
vmId: "string",
});
type: outscale:Image
properties:
architecture: string
blockDeviceMappings:
- bsus:
- deleteOnVmDeletion: false
iops: 0
snapshotId: string
volumeSize: 0
volumeType: string
deviceName: string
virtualDeviceName: string
description: string
fileLocation: string
imageName: string
noReboot: false
outscaleImageId: string
rootDeviceName: string
sourceImageId: string
sourceRegionName: string
tags:
- key: string
value: string
timeouts:
create: string
delete: string
update: string
vmId: string
Image 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 Image resource accepts the following input properties:
- Architecture string
- (when registering from a snapshot) The architecture of the OMI (
i386
orx86_64
). - Block
Device List<ImageMappings Block Device Mapping> - (when registering from a snapshot) One or more block device mappings.
- Description string
- A description for the new OMI.
- File
Location string - (when registering from a bucket by using a manifest file) The pre-signed URL of the manifest file for the OMI you want to register. For more information, see Creating a Pre-signed URL.
- Image
Name string - A unique name for the new OMI.
Constraints: 3-128 alphanumeric characters, underscores (
_
), spaces (()
), slashes (/
), periods (.
), or dashes (-
). - No
Reboot bool - (when creating from a VM) If false, the VM shuts down before creating the OMI and then reboots. If true, the VM does not.
- Outscale
Image stringId - Root
Device stringName - (when registering from a snapshot) The name of the root device for the new OMI.
- Source
Image stringId - (when copying an OMI) The ID of the OMI you want to copy.
- Source
Region stringName - (when copying an OMI) The name of the source Region (always the same as the Region of your account).
- List<Image
Tag> - A tag to add to this resource. You can specify this argument several times.
- Timeouts
Image
Timeouts - Vm
Id string - (when creating from a VM) The ID of the VM from which you want to create the OMI.
- Architecture string
- (when registering from a snapshot) The architecture of the OMI (
i386
orx86_64
). - Block
Device []ImageMappings Block Device Mapping Args - (when registering from a snapshot) One or more block device mappings.
- Description string
- A description for the new OMI.
- File
Location string - (when registering from a bucket by using a manifest file) The pre-signed URL of the manifest file for the OMI you want to register. For more information, see Creating a Pre-signed URL.
- Image
Name string - A unique name for the new OMI.
Constraints: 3-128 alphanumeric characters, underscores (
_
), spaces (()
), slashes (/
), periods (.
), or dashes (-
). - No
Reboot bool - (when creating from a VM) If false, the VM shuts down before creating the OMI and then reboots. If true, the VM does not.
- Outscale
Image stringId - Root
Device stringName - (when registering from a snapshot) The name of the root device for the new OMI.
- Source
Image stringId - (when copying an OMI) The ID of the OMI you want to copy.
- Source
Region stringName - (when copying an OMI) The name of the source Region (always the same as the Region of your account).
- []Image
Tag Args - A tag to add to this resource. You can specify this argument several times.
- Timeouts
Image
Timeouts Args - Vm
Id string - (when creating from a VM) The ID of the VM from which you want to create the OMI.
- architecture String
- (when registering from a snapshot) The architecture of the OMI (
i386
orx86_64
). - block
Device List<ImageMappings Block Device Mapping> - (when registering from a snapshot) One or more block device mappings.
- description String
- A description for the new OMI.
- file
Location String - (when registering from a bucket by using a manifest file) The pre-signed URL of the manifest file for the OMI you want to register. For more information, see Creating a Pre-signed URL.
- image
Name String - A unique name for the new OMI.
Constraints: 3-128 alphanumeric characters, underscores (
_
), spaces (()
), slashes (/
), periods (.
), or dashes (-
). - no
Reboot Boolean - (when creating from a VM) If false, the VM shuts down before creating the OMI and then reboots. If true, the VM does not.
- outscale
Image StringId - root
Device StringName - (when registering from a snapshot) The name of the root device for the new OMI.
- source
Image StringId - (when copying an OMI) The ID of the OMI you want to copy.
- source
Region StringName - (when copying an OMI) The name of the source Region (always the same as the Region of your account).
- List<Image
Tag> - A tag to add to this resource. You can specify this argument several times.
- timeouts
Image
Timeouts - vm
Id String - (when creating from a VM) The ID of the VM from which you want to create the OMI.
- architecture string
- (when registering from a snapshot) The architecture of the OMI (
i386
orx86_64
). - block
Device ImageMappings Block Device Mapping[] - (when registering from a snapshot) One or more block device mappings.
- description string
- A description for the new OMI.
- file
Location string - (when registering from a bucket by using a manifest file) The pre-signed URL of the manifest file for the OMI you want to register. For more information, see Creating a Pre-signed URL.
- image
Name string - A unique name for the new OMI.
Constraints: 3-128 alphanumeric characters, underscores (
_
), spaces (()
), slashes (/
), periods (.
), or dashes (-
). - no
Reboot boolean - (when creating from a VM) If false, the VM shuts down before creating the OMI and then reboots. If true, the VM does not.
- outscale
Image stringId - root
Device stringName - (when registering from a snapshot) The name of the root device for the new OMI.
- source
Image stringId - (when copying an OMI) The ID of the OMI you want to copy.
- source
Region stringName - (when copying an OMI) The name of the source Region (always the same as the Region of your account).
- Image
Tag[] - A tag to add to this resource. You can specify this argument several times.
- timeouts
Image
Timeouts - vm
Id string - (when creating from a VM) The ID of the VM from which you want to create the OMI.
- architecture str
- (when registering from a snapshot) The architecture of the OMI (
i386
orx86_64
). - block_
device_ Sequence[Imagemappings Block Device Mapping Args] - (when registering from a snapshot) One or more block device mappings.
- description str
- A description for the new OMI.
- file_
location str - (when registering from a bucket by using a manifest file) The pre-signed URL of the manifest file for the OMI you want to register. For more information, see Creating a Pre-signed URL.
- image_
name str - A unique name for the new OMI.
Constraints: 3-128 alphanumeric characters, underscores (
_
), spaces (()
), slashes (/
), periods (.
), or dashes (-
). - no_
reboot bool - (when creating from a VM) If false, the VM shuts down before creating the OMI and then reboots. If true, the VM does not.
- outscale_
image_ strid - root_
device_ strname - (when registering from a snapshot) The name of the root device for the new OMI.
- source_
image_ strid - (when copying an OMI) The ID of the OMI you want to copy.
- source_
region_ strname - (when copying an OMI) The name of the source Region (always the same as the Region of your account).
- Sequence[Image
Tag Args] - A tag to add to this resource. You can specify this argument several times.
- timeouts
Image
Timeouts Args - vm_
id str - (when creating from a VM) The ID of the VM from which you want to create the OMI.
- architecture String
- (when registering from a snapshot) The architecture of the OMI (
i386
orx86_64
). - block
Device List<Property Map>Mappings - (when registering from a snapshot) One or more block device mappings.
- description String
- A description for the new OMI.
- file
Location String - (when registering from a bucket by using a manifest file) The pre-signed URL of the manifest file for the OMI you want to register. For more information, see Creating a Pre-signed URL.
- image
Name String - A unique name for the new OMI.
Constraints: 3-128 alphanumeric characters, underscores (
_
), spaces (()
), slashes (/
), periods (.
), or dashes (-
). - no
Reboot Boolean - (when creating from a VM) If false, the VM shuts down before creating the OMI and then reboots. If true, the VM does not.
- outscale
Image StringId - root
Device StringName - (when registering from a snapshot) The name of the root device for the new OMI.
- source
Image StringId - (when copying an OMI) The ID of the OMI you want to copy.
- source
Region StringName - (when copying an OMI) The name of the source Region (always the same as the Region of your account).
- List<Property Map>
- A tag to add to this resource. You can specify this argument several times.
- timeouts Property Map
- vm
Id String - (when creating from a VM) The ID of the VM from which you want to create the OMI.
Outputs
All input properties are implicitly available as output properties. Additionally, the Image resource produces the following output properties:
- Account
Alias string - The account alias of the owner of the OMI.
- Account
Id string - The account ID of the owner of the OMI.
- Creation
Date string - The date and time (UTC) at which the OMI was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Image
Id string - The ID of the OMI.
- Image
Type string - The type of the OMI.
- Is
Public bool - Permissions
To List<ImageLaunches Permissions To Launch> - Permissions for the resource.
- Product
Codes List<string> - The product codes associated with the OMI.
- Request
Id string - Root
Device stringType - The type of root device used by the OMI (always
bsu
). - State string
- The state of the OMI (
pending
|available
|failed
). - State
Comments List<ImageState Comment> - Information about the change of state.
- Account
Alias string - The account alias of the owner of the OMI.
- Account
Id string - The account ID of the owner of the OMI.
- Creation
Date string - The date and time (UTC) at which the OMI was created.
- Id string
- The provider-assigned unique ID for this managed resource.
- Image
Id string - The ID of the OMI.
- Image
Type string - The type of the OMI.
- Is
Public bool - Permissions
To []ImageLaunches Permissions To Launch - Permissions for the resource.
- Product
Codes []string - The product codes associated with the OMI.
- Request
Id string - Root
Device stringType - The type of root device used by the OMI (always
bsu
). - State string
- The state of the OMI (
pending
|available
|failed
). - State
Comments []ImageState Comment - Information about the change of state.
- account
Alias String - The account alias of the owner of the OMI.
- account
Id String - The account ID of the owner of the OMI.
- creation
Date String - The date and time (UTC) at which the OMI was created.
- id String
- The provider-assigned unique ID for this managed resource.
- image
Id String - The ID of the OMI.
- image
Type String - The type of the OMI.
- is
Public Boolean - permissions
To List<ImageLaunches Permissions To Launch> - Permissions for the resource.
- product
Codes List<String> - The product codes associated with the OMI.
- request
Id String - root
Device StringType - The type of root device used by the OMI (always
bsu
). - state String
- The state of the OMI (
pending
|available
|failed
). - state
Comments List<ImageState Comment> - Information about the change of state.
- account
Alias string - The account alias of the owner of the OMI.
- account
Id string - The account ID of the owner of the OMI.
- creation
Date string - The date and time (UTC) at which the OMI was created.
- id string
- The provider-assigned unique ID for this managed resource.
- image
Id string - The ID of the OMI.
- image
Type string - The type of the OMI.
- is
Public boolean - permissions
To ImageLaunches Permissions To Launch[] - Permissions for the resource.
- product
Codes string[] - The product codes associated with the OMI.
- request
Id string - root
Device stringType - The type of root device used by the OMI (always
bsu
). - state string
- The state of the OMI (
pending
|available
|failed
). - state
Comments ImageState Comment[] - Information about the change of state.
- account_
alias str - The account alias of the owner of the OMI.
- account_
id str - The account ID of the owner of the OMI.
- creation_
date str - The date and time (UTC) at which the OMI was created.
- id str
- The provider-assigned unique ID for this managed resource.
- image_
id str - The ID of the OMI.
- image_
type str - The type of the OMI.
- is_
public bool - permissions_
to_ Sequence[Imagelaunches Permissions To Launch] - Permissions for the resource.
- product_
codes Sequence[str] - The product codes associated with the OMI.
- request_
id str - root_
device_ strtype - The type of root device used by the OMI (always
bsu
). - state str
- The state of the OMI (
pending
|available
|failed
). - state_
comments Sequence[ImageState Comment] - Information about the change of state.
- account
Alias String - The account alias of the owner of the OMI.
- account
Id String - The account ID of the owner of the OMI.
- creation
Date String - The date and time (UTC) at which the OMI was created.
- id String
- The provider-assigned unique ID for this managed resource.
- image
Id String - The ID of the OMI.
- image
Type String - The type of the OMI.
- is
Public Boolean - permissions
To List<Property Map>Launches - Permissions for the resource.
- product
Codes List<String> - The product codes associated with the OMI.
- request
Id String - root
Device StringType - The type of root device used by the OMI (always
bsu
). - state String
- The state of the OMI (
pending
|available
|failed
). - state
Comments List<Property Map> - Information about the change of state.
Look up Existing Image Resource
Get an existing Image 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?: ImageState, opts?: CustomResourceOptions): Image
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
account_alias: Optional[str] = None,
account_id: Optional[str] = None,
architecture: Optional[str] = None,
block_device_mappings: Optional[Sequence[ImageBlockDeviceMappingArgs]] = None,
creation_date: Optional[str] = None,
description: Optional[str] = None,
file_location: Optional[str] = None,
image_id: Optional[str] = None,
image_name: Optional[str] = None,
image_type: Optional[str] = None,
is_public: Optional[bool] = None,
no_reboot: Optional[bool] = None,
outscale_image_id: Optional[str] = None,
permissions_to_launches: Optional[Sequence[ImagePermissionsToLaunchArgs]] = None,
product_codes: Optional[Sequence[str]] = None,
request_id: Optional[str] = None,
root_device_name: Optional[str] = None,
root_device_type: Optional[str] = None,
source_image_id: Optional[str] = None,
source_region_name: Optional[str] = None,
state: Optional[str] = None,
state_comments: Optional[Sequence[ImageStateCommentArgs]] = None,
tags: Optional[Sequence[ImageTagArgs]] = None,
timeouts: Optional[ImageTimeoutsArgs] = None,
vm_id: Optional[str] = None) -> Image
func GetImage(ctx *Context, name string, id IDInput, state *ImageState, opts ...ResourceOption) (*Image, error)
public static Image Get(string name, Input<string> id, ImageState? state, CustomResourceOptions? opts = null)
public static Image get(String name, Output<String> id, ImageState state, CustomResourceOptions options)
resources: _: type: outscale:Image 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 OMI.
- Account
Id string - The account ID of the owner of the OMI.
- Architecture string
- (when registering from a snapshot) The architecture of the OMI (
i386
orx86_64
). - Block
Device List<ImageMappings Block Device Mapping> - (when registering from a snapshot) One or more block device mappings.
- Creation
Date string - The date and time (UTC) at which the OMI was created.
- Description string
- A description for the new OMI.
- File
Location string - (when registering from a bucket by using a manifest file) The pre-signed URL of the manifest file for the OMI you want to register. For more information, see Creating a Pre-signed URL.
- Image
Id string - The ID of the OMI.
- Image
Name string - A unique name for the new OMI.
Constraints: 3-128 alphanumeric characters, underscores (
_
), spaces (()
), slashes (/
), periods (.
), or dashes (-
). - Image
Type string - The type of the OMI.
- Is
Public bool - No
Reboot bool - (when creating from a VM) If false, the VM shuts down before creating the OMI and then reboots. If true, the VM does not.
- Outscale
Image stringId - Permissions
To List<ImageLaunches Permissions To Launch> - Permissions for the resource.
- Product
Codes List<string> - The product codes associated with the OMI.
- Request
Id string - Root
Device stringName - (when registering from a snapshot) The name of the root device for the new OMI.
- Root
Device stringType - The type of root device used by the OMI (always
bsu
). - Source
Image stringId - (when copying an OMI) The ID of the OMI you want to copy.
- Source
Region stringName - (when copying an OMI) The name of the source Region (always the same as the Region of your account).
- State string
- The state of the OMI (
pending
|available
|failed
). - State
Comments List<ImageState Comment> - Information about the change of state.
- List<Image
Tag> - A tag to add to this resource. You can specify this argument several times.
- Timeouts
Image
Timeouts - Vm
Id string - (when creating from a VM) The ID of the VM from which you want to create the OMI.
- Account
Alias string - The account alias of the owner of the OMI.
- Account
Id string - The account ID of the owner of the OMI.
- Architecture string
- (when registering from a snapshot) The architecture of the OMI (
i386
orx86_64
). - Block
Device []ImageMappings Block Device Mapping Args - (when registering from a snapshot) One or more block device mappings.
- Creation
Date string - The date and time (UTC) at which the OMI was created.
- Description string
- A description for the new OMI.
- File
Location string - (when registering from a bucket by using a manifest file) The pre-signed URL of the manifest file for the OMI you want to register. For more information, see Creating a Pre-signed URL.
- Image
Id string - The ID of the OMI.
- Image
Name string - A unique name for the new OMI.
Constraints: 3-128 alphanumeric characters, underscores (
_
), spaces (()
), slashes (/
), periods (.
), or dashes (-
). - Image
Type string - The type of the OMI.
- Is
Public bool - No
Reboot bool - (when creating from a VM) If false, the VM shuts down before creating the OMI and then reboots. If true, the VM does not.
- Outscale
Image stringId - Permissions
To []ImageLaunches Permissions To Launch Args - Permissions for the resource.
- Product
Codes []string - The product codes associated with the OMI.
- Request
Id string - Root
Device stringName - (when registering from a snapshot) The name of the root device for the new OMI.
- Root
Device stringType - The type of root device used by the OMI (always
bsu
). - Source
Image stringId - (when copying an OMI) The ID of the OMI you want to copy.
- Source
Region stringName - (when copying an OMI) The name of the source Region (always the same as the Region of your account).
- State string
- The state of the OMI (
pending
|available
|failed
). - State
Comments []ImageState Comment Args - Information about the change of state.
- []Image
Tag Args - A tag to add to this resource. You can specify this argument several times.
- Timeouts
Image
Timeouts Args - Vm
Id string - (when creating from a VM) The ID of the VM from which you want to create the OMI.
- account
Alias String - The account alias of the owner of the OMI.
- account
Id String - The account ID of the owner of the OMI.
- architecture String
- (when registering from a snapshot) The architecture of the OMI (
i386
orx86_64
). - block
Device List<ImageMappings Block Device Mapping> - (when registering from a snapshot) One or more block device mappings.
- creation
Date String - The date and time (UTC) at which the OMI was created.
- description String
- A description for the new OMI.
- file
Location String - (when registering from a bucket by using a manifest file) The pre-signed URL of the manifest file for the OMI you want to register. For more information, see Creating a Pre-signed URL.
- image
Id String - The ID of the OMI.
- image
Name String - A unique name for the new OMI.
Constraints: 3-128 alphanumeric characters, underscores (
_
), spaces (()
), slashes (/
), periods (.
), or dashes (-
). - image
Type String - The type of the OMI.
- is
Public Boolean - no
Reboot Boolean - (when creating from a VM) If false, the VM shuts down before creating the OMI and then reboots. If true, the VM does not.
- outscale
Image StringId - permissions
To List<ImageLaunches Permissions To Launch> - Permissions for the resource.
- product
Codes List<String> - The product codes associated with the OMI.
- request
Id String - root
Device StringName - (when registering from a snapshot) The name of the root device for the new OMI.
- root
Device StringType - The type of root device used by the OMI (always
bsu
). - source
Image StringId - (when copying an OMI) The ID of the OMI you want to copy.
- source
Region StringName - (when copying an OMI) The name of the source Region (always the same as the Region of your account).
- state String
- The state of the OMI (
pending
|available
|failed
). - state
Comments List<ImageState Comment> - Information about the change of state.
- List<Image
Tag> - A tag to add to this resource. You can specify this argument several times.
- timeouts
Image
Timeouts - vm
Id String - (when creating from a VM) The ID of the VM from which you want to create the OMI.
- account
Alias string - The account alias of the owner of the OMI.
- account
Id string - The account ID of the owner of the OMI.
- architecture string
- (when registering from a snapshot) The architecture of the OMI (
i386
orx86_64
). - block
Device ImageMappings Block Device Mapping[] - (when registering from a snapshot) One or more block device mappings.
- creation
Date string - The date and time (UTC) at which the OMI was created.
- description string
- A description for the new OMI.
- file
Location string - (when registering from a bucket by using a manifest file) The pre-signed URL of the manifest file for the OMI you want to register. For more information, see Creating a Pre-signed URL.
- image
Id string - The ID of the OMI.
- image
Name string - A unique name for the new OMI.
Constraints: 3-128 alphanumeric characters, underscores (
_
), spaces (()
), slashes (/
), periods (.
), or dashes (-
). - image
Type string - The type of the OMI.
- is
Public boolean - no
Reboot boolean - (when creating from a VM) If false, the VM shuts down before creating the OMI and then reboots. If true, the VM does not.
- outscale
Image stringId - permissions
To ImageLaunches Permissions To Launch[] - Permissions for the resource.
- product
Codes string[] - The product codes associated with the OMI.
- request
Id string - root
Device stringName - (when registering from a snapshot) The name of the root device for the new OMI.
- root
Device stringType - The type of root device used by the OMI (always
bsu
). - source
Image stringId - (when copying an OMI) The ID of the OMI you want to copy.
- source
Region stringName - (when copying an OMI) The name of the source Region (always the same as the Region of your account).
- state string
- The state of the OMI (
pending
|available
|failed
). - state
Comments ImageState Comment[] - Information about the change of state.
- Image
Tag[] - A tag to add to this resource. You can specify this argument several times.
- timeouts
Image
Timeouts - vm
Id string - (when creating from a VM) The ID of the VM from which you want to create the OMI.
- account_
alias str - The account alias of the owner of the OMI.
- account_
id str - The account ID of the owner of the OMI.
- architecture str
- (when registering from a snapshot) The architecture of the OMI (
i386
orx86_64
). - block_
device_ Sequence[Imagemappings Block Device Mapping Args] - (when registering from a snapshot) One or more block device mappings.
- creation_
date str - The date and time (UTC) at which the OMI was created.
- description str
- A description for the new OMI.
- file_
location str - (when registering from a bucket by using a manifest file) The pre-signed URL of the manifest file for the OMI you want to register. For more information, see Creating a Pre-signed URL.
- image_
id str - The ID of the OMI.
- image_
name str - A unique name for the new OMI.
Constraints: 3-128 alphanumeric characters, underscores (
_
), spaces (()
), slashes (/
), periods (.
), or dashes (-
). - image_
type str - The type of the OMI.
- is_
public bool - no_
reboot bool - (when creating from a VM) If false, the VM shuts down before creating the OMI and then reboots. If true, the VM does not.
- outscale_
image_ strid - permissions_
to_ Sequence[Imagelaunches Permissions To Launch Args] - Permissions for the resource.
- product_
codes Sequence[str] - The product codes associated with the OMI.
- request_
id str - root_
device_ strname - (when registering from a snapshot) The name of the root device for the new OMI.
- root_
device_ strtype - The type of root device used by the OMI (always
bsu
). - source_
image_ strid - (when copying an OMI) The ID of the OMI you want to copy.
- source_
region_ strname - (when copying an OMI) The name of the source Region (always the same as the Region of your account).
- state str
- The state of the OMI (
pending
|available
|failed
). - state_
comments Sequence[ImageState Comment Args] - Information about the change of state.
- Sequence[Image
Tag Args] - A tag to add to this resource. You can specify this argument several times.
- timeouts
Image
Timeouts Args - vm_
id str - (when creating from a VM) The ID of the VM from which you want to create the OMI.
- account
Alias String - The account alias of the owner of the OMI.
- account
Id String - The account ID of the owner of the OMI.
- architecture String
- (when registering from a snapshot) The architecture of the OMI (
i386
orx86_64
). - block
Device List<Property Map>Mappings - (when registering from a snapshot) One or more block device mappings.
- creation
Date String - The date and time (UTC) at which the OMI was created.
- description String
- A description for the new OMI.
- file
Location String - (when registering from a bucket by using a manifest file) The pre-signed URL of the manifest file for the OMI you want to register. For more information, see Creating a Pre-signed URL.
- image
Id String - The ID of the OMI.
- image
Name String - A unique name for the new OMI.
Constraints: 3-128 alphanumeric characters, underscores (
_
), spaces (()
), slashes (/
), periods (.
), or dashes (-
). - image
Type String - The type of the OMI.
- is
Public Boolean - no
Reboot Boolean - (when creating from a VM) If false, the VM shuts down before creating the OMI and then reboots. If true, the VM does not.
- outscale
Image StringId - permissions
To List<Property Map>Launches - Permissions for the resource.
- product
Codes List<String> - The product codes associated with the OMI.
- request
Id String - root
Device StringName - (when registering from a snapshot) The name of the root device for the new OMI.
- root
Device StringType - The type of root device used by the OMI (always
bsu
). - source
Image StringId - (when copying an OMI) The ID of the OMI you want to copy.
- source
Region StringName - (when copying an OMI) The name of the source Region (always the same as the Region of your account).
- state String
- The state of the OMI (
pending
|available
|failed
). - state
Comments List<Property Map> - Information about the change of state.
- List<Property Map>
- A tag to add to this resource. You can specify this argument several times.
- timeouts Property Map
- vm
Id String - (when creating from a VM) The ID of the VM from which you want to create the OMI.
Supporting Types
ImageBlockDeviceMapping, ImageBlockDeviceMappingArgs
- Bsus
List<Image
Block Device Mapping Bsus> - Information about the BSU volume to create.
- Device
Name string - The device name for the volume. For a root device, you must use
/dev/sda1
. For other volumes, you must use/dev/sdX
,/dev/sdXX
,/dev/xvdX
, or/dev/xvdXX
(where the firstX
is a letter betweenb
andz
, and the secondX
is a letter betweena
andz
). - Virtual
Device stringName - The name of the virtual device (
ephemeralN
).
- Bsus
[]Image
Block Device Mapping Bsus - Information about the BSU volume to create.
- Device
Name string - The device name for the volume. For a root device, you must use
/dev/sda1
. For other volumes, you must use/dev/sdX
,/dev/sdXX
,/dev/xvdX
, or/dev/xvdXX
(where the firstX
is a letter betweenb
andz
, and the secondX
is a letter betweena
andz
). - Virtual
Device stringName - The name of the virtual device (
ephemeralN
).
- bsus
List<Image
Block Device Mapping Bsus> - Information about the BSU volume to create.
- device
Name String - The device name for the volume. For a root device, you must use
/dev/sda1
. For other volumes, you must use/dev/sdX
,/dev/sdXX
,/dev/xvdX
, or/dev/xvdXX
(where the firstX
is a letter betweenb
andz
, and the secondX
is a letter betweena
andz
). - virtual
Device StringName - The name of the virtual device (
ephemeralN
).
- bsus
Image
Block Device Mapping Bsus[] - Information about the BSU volume to create.
- device
Name string - The device name for the volume. For a root device, you must use
/dev/sda1
. For other volumes, you must use/dev/sdX
,/dev/sdXX
,/dev/xvdX
, or/dev/xvdXX
(where the firstX
is a letter betweenb
andz
, and the secondX
is a letter betweena
andz
). - virtual
Device stringName - The name of the virtual device (
ephemeralN
).
- bsus
Sequence[Image
Block Device Mapping Bsus] - Information about the BSU volume to create.
- device_
name str - The device name for the volume. For a root device, you must use
/dev/sda1
. For other volumes, you must use/dev/sdX
,/dev/sdXX
,/dev/xvdX
, or/dev/xvdXX
(where the firstX
is a letter betweenb
andz
, and the secondX
is a letter betweena
andz
). - virtual_
device_ strname - The name of the virtual device (
ephemeralN
).
- bsus List<Property Map>
- Information about the BSU volume to create.
- device
Name String - The device name for the volume. For a root device, you must use
/dev/sda1
. For other volumes, you must use/dev/sdX
,/dev/sdXX
,/dev/xvdX
, or/dev/xvdXX
(where the firstX
is a letter betweenb
andz
, and the secondX
is a letter betweena
andz
). - virtual
Device StringName - The name of the virtual device (
ephemeralN
).
ImageBlockDeviceMappingBsus, ImageBlockDeviceMappingBsusArgs
- Delete
On boolVm Deletion - By default or if set to true, the volume is deleted when terminating the VM. If false, the volume is not deleted when terminating the VM.
- Iops double
- The number of I/O operations per second (IOPS). This parameter must be specified only if you create an
io1
volume. The maximum number of IOPS allowed forio1
volumes is13000
with a maximum performance ratio of 300 IOPS per gibibyte. - Snapshot
Id string - The ID of the snapshot used to create the volume.
- Volume
Size double - The size of the volume, in gibibytes (GiB). If you specify a snapshot ID, the volume size must be at least equal to the snapshot size. If you specify a snapshot ID but no volume size, the volume is created with a size similar to the snapshot one.
- Volume
Type string - The type of the volume (
standard
|io1
|gp2
). If not specified in the request, astandard
volume is created. For more information about volume types, see About Volumes > Volume Types and IOPS.
- Delete
On boolVm Deletion - By default or if set to true, the volume is deleted when terminating the VM. If false, the volume is not deleted when terminating the VM.
- Iops float64
- The number of I/O operations per second (IOPS). This parameter must be specified only if you create an
io1
volume. The maximum number of IOPS allowed forio1
volumes is13000
with a maximum performance ratio of 300 IOPS per gibibyte. - Snapshot
Id string - The ID of the snapshot used to create the volume.
- Volume
Size float64 - The size of the volume, in gibibytes (GiB). If you specify a snapshot ID, the volume size must be at least equal to the snapshot size. If you specify a snapshot ID but no volume size, the volume is created with a size similar to the snapshot one.
- Volume
Type string - The type of the volume (
standard
|io1
|gp2
). If not specified in the request, astandard
volume is created. For more information about volume types, see About Volumes > Volume Types and IOPS.
- delete
On BooleanVm Deletion - By default or if set to true, the volume is deleted when terminating the VM. If false, the volume is not deleted when terminating the VM.
- iops Double
- The number of I/O operations per second (IOPS). This parameter must be specified only if you create an
io1
volume. The maximum number of IOPS allowed forio1
volumes is13000
with a maximum performance ratio of 300 IOPS per gibibyte. - snapshot
Id String - The ID of the snapshot used to create the volume.
- volume
Size Double - The size of the volume, in gibibytes (GiB). If you specify a snapshot ID, the volume size must be at least equal to the snapshot size. If you specify a snapshot ID but no volume size, the volume is created with a size similar to the snapshot one.
- volume
Type String - The type of the volume (
standard
|io1
|gp2
). If not specified in the request, astandard
volume is created. For more information about volume types, see About Volumes > Volume Types and IOPS.
- delete
On booleanVm Deletion - By default or if set to true, the volume is deleted when terminating the VM. If false, the volume is not deleted when terminating the VM.
- iops number
- The number of I/O operations per second (IOPS). This parameter must be specified only if you create an
io1
volume. The maximum number of IOPS allowed forio1
volumes is13000
with a maximum performance ratio of 300 IOPS per gibibyte. - snapshot
Id string - The ID of the snapshot used to create the volume.
- volume
Size number - The size of the volume, in gibibytes (GiB). If you specify a snapshot ID, the volume size must be at least equal to the snapshot size. If you specify a snapshot ID but no volume size, the volume is created with a size similar to the snapshot one.
- volume
Type string - The type of the volume (
standard
|io1
|gp2
). If not specified in the request, astandard
volume is created. For more information about volume types, see About Volumes > Volume Types and IOPS.
- delete_
on_ boolvm_ deletion - By default or if set to true, the volume is deleted when terminating the VM. If false, the volume is not deleted when terminating the VM.
- iops float
- The number of I/O operations per second (IOPS). This parameter must be specified only if you create an
io1
volume. The maximum number of IOPS allowed forio1
volumes is13000
with a maximum performance ratio of 300 IOPS per gibibyte. - snapshot_
id str - The ID of the snapshot used to create the volume.
- volume_
size float - The size of the volume, in gibibytes (GiB). If you specify a snapshot ID, the volume size must be at least equal to the snapshot size. If you specify a snapshot ID but no volume size, the volume is created with a size similar to the snapshot one.
- volume_
type str - The type of the volume (
standard
|io1
|gp2
). If not specified in the request, astandard
volume is created. For more information about volume types, see About Volumes > Volume Types and IOPS.
- delete
On BooleanVm Deletion - By default or if set to true, the volume is deleted when terminating the VM. If false, the volume is not deleted when terminating the VM.
- iops Number
- The number of I/O operations per second (IOPS). This parameter must be specified only if you create an
io1
volume. The maximum number of IOPS allowed forio1
volumes is13000
with a maximum performance ratio of 300 IOPS per gibibyte. - snapshot
Id String - The ID of the snapshot used to create the volume.
- volume
Size Number - The size of the volume, in gibibytes (GiB). If you specify a snapshot ID, the volume size must be at least equal to the snapshot size. If you specify a snapshot ID but no volume size, the volume is created with a size similar to the snapshot one.
- volume
Type String - The type of the volume (
standard
|io1
|gp2
). If not specified in the request, astandard
volume is created. For more information about volume types, see About Volumes > Volume Types and IOPS.
ImagePermissionsToLaunch, ImagePermissionsToLaunchArgs
- Account
Ids List<string> - One or more account IDs that the permission is associated with.
- 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
Ids []string - One or more account IDs that the permission is associated with.
- 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
Ids List<String> - One or more account IDs that the permission is associated with.
- 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
Ids string[] - One or more account IDs that the permission is associated with.
- 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_
ids Sequence[str] - One or more account IDs that the permission is associated with.
- 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
Ids List<String> - One or more account IDs that the permission is associated with.
- 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.
ImageStateComment, ImageStateCommentArgs
- State
Code string - The code of the change of state.
- State
Message string - A message explaining the change of state.
- State
Code string - The code of the change of state.
- State
Message string - A message explaining the change of state.
- state
Code String - The code of the change of state.
- state
Message String - A message explaining the change of state.
- state
Code string - The code of the change of state.
- state
Message string - A message explaining the change of state.
- state_
code str - The code of the change of state.
- state_
message str - A message explaining the change of state.
- state
Code String - The code of the change of state.
- state
Message String - A message explaining the change of state.
ImageTag, ImageTagArgs
ImageTimeouts, ImageTimeoutsArgs
Import
An image can be imported using its ID. For example:
console
$ pulumi import outscale:index/image:Image ImportedImage ami-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.