OpenStack
Volume
Manages a V3 volume resource within OpenStack.
Example Usage
using Pulumi;
using OpenStack = Pulumi.OpenStack;
class MyStack : Stack
{
public MyStack()
{
var volume1 = new OpenStack.BlockStorage.Volume("volume1", new OpenStack.BlockStorage.VolumeArgs
{
Description = "first test volume",
Region = "RegionOne",
Size = 3,
});
}
}
package main
import (
"github.com/pulumi/pulumi-openstack/sdk/v3/go/openstack/blockstorage"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := blockstorage.NewVolume(ctx, "volume1", &blockstorage.VolumeArgs{
Description: pulumi.String("first test volume"),
Region: pulumi.String("RegionOne"),
Size: pulumi.Int(3),
})
if err != nil {
return err
}
return nil
})
}
Coming soon!
import pulumi
import pulumi_openstack as openstack
volume1 = openstack.blockstorage.Volume("volume1",
description="first test volume",
region="RegionOne",
size=3)
import * as pulumi from "@pulumi/pulumi";
import * as openstack from "@pulumi/openstack";
const volume1 = new openstack.blockstorage.Volume("volume_1", {
description: "first test volume",
region: "RegionOne",
size: 3,
});
Coming soon!
Create a Volume Resource
new Volume(name: string, args: VolumeArgs, opts?: CustomResourceOptions);
@overload
def Volume(resource_name: str,
opts: Optional[ResourceOptions] = None,
availability_zone: Optional[str] = None,
consistency_group_id: Optional[str] = None,
description: Optional[str] = None,
enable_online_resize: Optional[bool] = None,
image_id: Optional[str] = None,
metadata: Optional[Mapping[str, Any]] = None,
multiattach: Optional[bool] = None,
name: Optional[str] = None,
region: Optional[str] = None,
scheduler_hints: Optional[Sequence[VolumeSchedulerHintArgs]] = None,
size: Optional[int] = None,
snapshot_id: Optional[str] = None,
source_replica: Optional[str] = None,
source_vol_id: Optional[str] = None,
volume_type: Optional[str] = None)
@overload
def Volume(resource_name: str,
args: VolumeArgs,
opts: Optional[ResourceOptions] = None)
func NewVolume(ctx *Context, name string, args VolumeArgs, opts ...ResourceOption) (*Volume, error)
public Volume(string name, VolumeArgs args, CustomResourceOptions? opts = null)
public Volume(String name, VolumeArgs args)
public Volume(String name, VolumeArgs args, CustomResourceOptions options)
type: openstack:blockstorage:Volume
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VolumeArgs
- 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 VolumeArgs
- 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 VolumeArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args VolumeArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args VolumeArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Volume Resource Properties
To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.
Inputs
The Volume resource accepts the following input properties:
- Size int
The size of the volume to create (in gigabytes).
- Availability
Zone string The availability zone for the volume. Changing this creates a new volume.
- Consistency
Group stringId The consistency group to place the volume in.
- Description string
A description of the volume. Changing this updates the volume's description.
- Enable
Online boolResize When this option is set it allows extending attached volumes. Note: updating size of an attached volume requires Cinder support for version 3.42 and a compatible storage driver.
- Image
Id string The image ID from which to create the volume. Changing this creates a new volume.
- Metadata Dictionary<string, object>
Metadata key/value pairs to associate with the volume. Changing this updates the existing volume metadata.
- Multiattach bool
Allow the volume to be attached to more than one Compute instance.
- Name string
A unique name for the volume. Changing this updates the volume's name.
- Region string
The region in which to create the volume. If omitted, the
region
argument of the provider is used. Changing this creates a new volume.- Scheduler
Hints List<Pulumi.Open Stack. Block Storage. Inputs. Volume Scheduler Hint Args> Provide the Cinder scheduler with hints on where to instantiate a volume in the OpenStack cloud. The available hints are described below.
- Snapshot
Id string The snapshot ID from which to create the volume. Changing this creates a new volume.
- Source
Replica string The volume ID to replicate with.
- Source
Vol stringId The volume ID from which to create the volume. Changing this creates a new volume.
- Volume
Type string The type of volume to create. Changing this creates a new volume.
- Size int
The size of the volume to create (in gigabytes).
- Availability
Zone string The availability zone for the volume. Changing this creates a new volume.
- Consistency
Group stringId The consistency group to place the volume in.
- Description string
A description of the volume. Changing this updates the volume's description.
- Enable
Online boolResize When this option is set it allows extending attached volumes. Note: updating size of an attached volume requires Cinder support for version 3.42 and a compatible storage driver.
- Image
Id string The image ID from which to create the volume. Changing this creates a new volume.
- Metadata map[string]interface{}
Metadata key/value pairs to associate with the volume. Changing this updates the existing volume metadata.
- Multiattach bool
Allow the volume to be attached to more than one Compute instance.
- Name string
A unique name for the volume. Changing this updates the volume's name.
- Region string
The region in which to create the volume. If omitted, the
region
argument of the provider is used. Changing this creates a new volume.- Scheduler
Hints []VolumeScheduler Hint Args Provide the Cinder scheduler with hints on where to instantiate a volume in the OpenStack cloud. The available hints are described below.
- Snapshot
Id string The snapshot ID from which to create the volume. Changing this creates a new volume.
- Source
Replica string The volume ID to replicate with.
- Source
Vol stringId The volume ID from which to create the volume. Changing this creates a new volume.
- Volume
Type string The type of volume to create. Changing this creates a new volume.
- size Integer
The size of the volume to create (in gigabytes).
- availability
Zone String The availability zone for the volume. Changing this creates a new volume.
- consistency
Group StringId The consistency group to place the volume in.
- description String
A description of the volume. Changing this updates the volume's description.
- enable
Online BooleanResize When this option is set it allows extending attached volumes. Note: updating size of an attached volume requires Cinder support for version 3.42 and a compatible storage driver.
- image
Id String The image ID from which to create the volume. Changing this creates a new volume.
- metadata Map<String,Object>
Metadata key/value pairs to associate with the volume. Changing this updates the existing volume metadata.
- multiattach Boolean
Allow the volume to be attached to more than one Compute instance.
- name String
A unique name for the volume. Changing this updates the volume's name.
- region String
The region in which to create the volume. If omitted, the
region
argument of the provider is used. Changing this creates a new volume.- scheduler
Hints List<VolumeScheduler Hint Args> Provide the Cinder scheduler with hints on where to instantiate a volume in the OpenStack cloud. The available hints are described below.
- snapshot
Id String The snapshot ID from which to create the volume. Changing this creates a new volume.
- source
Replica String The volume ID to replicate with.
- source
Vol StringId The volume ID from which to create the volume. Changing this creates a new volume.
- volume
Type String The type of volume to create. Changing this creates a new volume.
- size number
The size of the volume to create (in gigabytes).
- availability
Zone string The availability zone for the volume. Changing this creates a new volume.
- consistency
Group stringId The consistency group to place the volume in.
- description string
A description of the volume. Changing this updates the volume's description.
- enable
Online booleanResize When this option is set it allows extending attached volumes. Note: updating size of an attached volume requires Cinder support for version 3.42 and a compatible storage driver.
- image
Id string The image ID from which to create the volume. Changing this creates a new volume.
- metadata {[key: string]: any}
Metadata key/value pairs to associate with the volume. Changing this updates the existing volume metadata.
- multiattach boolean
Allow the volume to be attached to more than one Compute instance.
- name string
A unique name for the volume. Changing this updates the volume's name.
- region string
The region in which to create the volume. If omitted, the
region
argument of the provider is used. Changing this creates a new volume.- scheduler
Hints VolumeScheduler Hint Args[] Provide the Cinder scheduler with hints on where to instantiate a volume in the OpenStack cloud. The available hints are described below.
- snapshot
Id string The snapshot ID from which to create the volume. Changing this creates a new volume.
- source
Replica string The volume ID to replicate with.
- source
Vol stringId The volume ID from which to create the volume. Changing this creates a new volume.
- volume
Type string The type of volume to create. Changing this creates a new volume.
- size int
The size of the volume to create (in gigabytes).
- availability_
zone str The availability zone for the volume. Changing this creates a new volume.
- consistency_
group_ strid The consistency group to place the volume in.
- description str
A description of the volume. Changing this updates the volume's description.
- enable_
online_ boolresize When this option is set it allows extending attached volumes. Note: updating size of an attached volume requires Cinder support for version 3.42 and a compatible storage driver.
- image_
id str The image ID from which to create the volume. Changing this creates a new volume.
- metadata Mapping[str, Any]
Metadata key/value pairs to associate with the volume. Changing this updates the existing volume metadata.
- multiattach bool
Allow the volume to be attached to more than one Compute instance.
- name str
A unique name for the volume. Changing this updates the volume's name.
- region str
The region in which to create the volume. If omitted, the
region
argument of the provider is used. Changing this creates a new volume.- scheduler_
hints Sequence[VolumeScheduler Hint Args] Provide the Cinder scheduler with hints on where to instantiate a volume in the OpenStack cloud. The available hints are described below.
- snapshot_
id str The snapshot ID from which to create the volume. Changing this creates a new volume.
- source_
replica str The volume ID to replicate with.
- source_
vol_ strid The volume ID from which to create the volume. Changing this creates a new volume.
- volume_
type str The type of volume to create. Changing this creates a new volume.
- size Number
The size of the volume to create (in gigabytes).
- availability
Zone String The availability zone for the volume. Changing this creates a new volume.
- consistency
Group StringId The consistency group to place the volume in.
- description String
A description of the volume. Changing this updates the volume's description.
- enable
Online BooleanResize When this option is set it allows extending attached volumes. Note: updating size of an attached volume requires Cinder support for version 3.42 and a compatible storage driver.
- image
Id String The image ID from which to create the volume. Changing this creates a new volume.
- metadata Map<Any>
Metadata key/value pairs to associate with the volume. Changing this updates the existing volume metadata.
- multiattach Boolean
Allow the volume to be attached to more than one Compute instance.
- name String
A unique name for the volume. Changing this updates the volume's name.
- region String
The region in which to create the volume. If omitted, the
region
argument of the provider is used. Changing this creates a new volume.- scheduler
Hints List<Property Map> Provide the Cinder scheduler with hints on where to instantiate a volume in the OpenStack cloud. The available hints are described below.
- snapshot
Id String The snapshot ID from which to create the volume. Changing this creates a new volume.
- source
Replica String The volume ID to replicate with.
- source
Vol StringId The volume ID from which to create the volume. Changing this creates a new volume.
- volume
Type String The type of volume to create. Changing this creates a new volume.
Outputs
All input properties are implicitly available as output properties. Additionally, the Volume resource produces the following output properties:
- Attachments
List<Pulumi.
Open Stack. Block Storage. Outputs. Volume Attachment> If a volume is attached to an instance, this attribute will display the Attachment ID, Instance ID, and the Device as the Instance sees it.
- Id string
The provider-assigned unique ID for this managed resource.
- Attachments
[]Volume
Attachment If a volume is attached to an instance, this attribute will display the Attachment ID, Instance ID, and the Device as the Instance sees it.
- Id string
The provider-assigned unique ID for this managed resource.
- attachments
List<Volume
Attachment> If a volume is attached to an instance, this attribute will display the Attachment ID, Instance ID, and the Device as the Instance sees it.
- id String
The provider-assigned unique ID for this managed resource.
- attachments
Volume
Attachment[] If a volume is attached to an instance, this attribute will display the Attachment ID, Instance ID, and the Device as the Instance sees it.
- id string
The provider-assigned unique ID for this managed resource.
- attachments
Sequence[Volume
Attachment] If a volume is attached to an instance, this attribute will display the Attachment ID, Instance ID, and the Device as the Instance sees it.
- id str
The provider-assigned unique ID for this managed resource.
- attachments List<Property Map>
If a volume is attached to an instance, this attribute will display the Attachment ID, Instance ID, and the Device as the Instance sees it.
- id String
The provider-assigned unique ID for this managed resource.
Look up an Existing Volume Resource
Get an existing Volume 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?: VolumeState, opts?: CustomResourceOptions): Volume
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
attachments: Optional[Sequence[VolumeAttachmentArgs]] = None,
availability_zone: Optional[str] = None,
consistency_group_id: Optional[str] = None,
description: Optional[str] = None,
enable_online_resize: Optional[bool] = None,
image_id: Optional[str] = None,
metadata: Optional[Mapping[str, Any]] = None,
multiattach: Optional[bool] = None,
name: Optional[str] = None,
region: Optional[str] = None,
scheduler_hints: Optional[Sequence[VolumeSchedulerHintArgs]] = None,
size: Optional[int] = None,
snapshot_id: Optional[str] = None,
source_replica: Optional[str] = None,
source_vol_id: Optional[str] = None,
volume_type: Optional[str] = None) -> Volume
func GetVolume(ctx *Context, name string, id IDInput, state *VolumeState, opts ...ResourceOption) (*Volume, error)
public static Volume Get(string name, Input<string> id, VolumeState? state, CustomResourceOptions? opts = null)
public static Volume get(String name, Output<String> id, VolumeState state, CustomResourceOptions options)
Resource lookup is not supported in YAML
- 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.
- Attachments
List<Pulumi.
Open Stack. Block Storage. Inputs. Volume Attachment Args> If a volume is attached to an instance, this attribute will display the Attachment ID, Instance ID, and the Device as the Instance sees it.
- Availability
Zone string The availability zone for the volume. Changing this creates a new volume.
- Consistency
Group stringId The consistency group to place the volume in.
- Description string
A description of the volume. Changing this updates the volume's description.
- Enable
Online boolResize When this option is set it allows extending attached volumes. Note: updating size of an attached volume requires Cinder support for version 3.42 and a compatible storage driver.
- Image
Id string The image ID from which to create the volume. Changing this creates a new volume.
- Metadata Dictionary<string, object>
Metadata key/value pairs to associate with the volume. Changing this updates the existing volume metadata.
- Multiattach bool
Allow the volume to be attached to more than one Compute instance.
- Name string
A unique name for the volume. Changing this updates the volume's name.
- Region string
The region in which to create the volume. If omitted, the
region
argument of the provider is used. Changing this creates a new volume.- Scheduler
Hints List<Pulumi.Open Stack. Block Storage. Inputs. Volume Scheduler Hint Args> Provide the Cinder scheduler with hints on where to instantiate a volume in the OpenStack cloud. The available hints are described below.
- Size int
The size of the volume to create (in gigabytes).
- Snapshot
Id string The snapshot ID from which to create the volume. Changing this creates a new volume.
- Source
Replica string The volume ID to replicate with.
- Source
Vol stringId The volume ID from which to create the volume. Changing this creates a new volume.
- Volume
Type string The type of volume to create. Changing this creates a new volume.
- Attachments
[]Volume
Attachment Args If a volume is attached to an instance, this attribute will display the Attachment ID, Instance ID, and the Device as the Instance sees it.
- Availability
Zone string The availability zone for the volume. Changing this creates a new volume.
- Consistency
Group stringId The consistency group to place the volume in.
- Description string
A description of the volume. Changing this updates the volume's description.
- Enable
Online boolResize When this option is set it allows extending attached volumes. Note: updating size of an attached volume requires Cinder support for version 3.42 and a compatible storage driver.
- Image
Id string The image ID from which to create the volume. Changing this creates a new volume.
- Metadata map[string]interface{}
Metadata key/value pairs to associate with the volume. Changing this updates the existing volume metadata.
- Multiattach bool
Allow the volume to be attached to more than one Compute instance.
- Name string
A unique name for the volume. Changing this updates the volume's name.
- Region string
The region in which to create the volume. If omitted, the
region
argument of the provider is used. Changing this creates a new volume.- Scheduler
Hints []VolumeScheduler Hint Args Provide the Cinder scheduler with hints on where to instantiate a volume in the OpenStack cloud. The available hints are described below.
- Size int
The size of the volume to create (in gigabytes).
- Snapshot
Id string The snapshot ID from which to create the volume. Changing this creates a new volume.
- Source
Replica string The volume ID to replicate with.
- Source
Vol stringId The volume ID from which to create the volume. Changing this creates a new volume.
- Volume
Type string The type of volume to create. Changing this creates a new volume.
- attachments
List<Volume
Attachment Args> If a volume is attached to an instance, this attribute will display the Attachment ID, Instance ID, and the Device as the Instance sees it.
- availability
Zone String The availability zone for the volume. Changing this creates a new volume.
- consistency
Group StringId The consistency group to place the volume in.
- description String
A description of the volume. Changing this updates the volume's description.
- enable
Online BooleanResize When this option is set it allows extending attached volumes. Note: updating size of an attached volume requires Cinder support for version 3.42 and a compatible storage driver.
- image
Id String The image ID from which to create the volume. Changing this creates a new volume.
- metadata Map<String,Object>
Metadata key/value pairs to associate with the volume. Changing this updates the existing volume metadata.
- multiattach Boolean
Allow the volume to be attached to more than one Compute instance.
- name String
A unique name for the volume. Changing this updates the volume's name.
- region String
The region in which to create the volume. If omitted, the
region
argument of the provider is used. Changing this creates a new volume.- scheduler
Hints List<VolumeScheduler Hint Args> Provide the Cinder scheduler with hints on where to instantiate a volume in the OpenStack cloud. The available hints are described below.
- size Integer
The size of the volume to create (in gigabytes).
- snapshot
Id String The snapshot ID from which to create the volume. Changing this creates a new volume.
- source
Replica String The volume ID to replicate with.
- source
Vol StringId The volume ID from which to create the volume. Changing this creates a new volume.
- volume
Type String The type of volume to create. Changing this creates a new volume.
- attachments
Volume
Attachment Args[] If a volume is attached to an instance, this attribute will display the Attachment ID, Instance ID, and the Device as the Instance sees it.
- availability
Zone string The availability zone for the volume. Changing this creates a new volume.
- consistency
Group stringId The consistency group to place the volume in.
- description string
A description of the volume. Changing this updates the volume's description.
- enable
Online booleanResize When this option is set it allows extending attached volumes. Note: updating size of an attached volume requires Cinder support for version 3.42 and a compatible storage driver.
- image
Id string The image ID from which to create the volume. Changing this creates a new volume.
- metadata {[key: string]: any}
Metadata key/value pairs to associate with the volume. Changing this updates the existing volume metadata.
- multiattach boolean
Allow the volume to be attached to more than one Compute instance.
- name string
A unique name for the volume. Changing this updates the volume's name.
- region string
The region in which to create the volume. If omitted, the
region
argument of the provider is used. Changing this creates a new volume.- scheduler
Hints VolumeScheduler Hint Args[] Provide the Cinder scheduler with hints on where to instantiate a volume in the OpenStack cloud. The available hints are described below.
- size number
The size of the volume to create (in gigabytes).
- snapshot
Id string The snapshot ID from which to create the volume. Changing this creates a new volume.
- source
Replica string The volume ID to replicate with.
- source
Vol stringId The volume ID from which to create the volume. Changing this creates a new volume.
- volume
Type string The type of volume to create. Changing this creates a new volume.
- attachments
Sequence[Volume
Attachment Args] If a volume is attached to an instance, this attribute will display the Attachment ID, Instance ID, and the Device as the Instance sees it.
- availability_
zone str The availability zone for the volume. Changing this creates a new volume.
- consistency_
group_ strid The consistency group to place the volume in.
- description str
A description of the volume. Changing this updates the volume's description.
- enable_
online_ boolresize When this option is set it allows extending attached volumes. Note: updating size of an attached volume requires Cinder support for version 3.42 and a compatible storage driver.
- image_
id str The image ID from which to create the volume. Changing this creates a new volume.
- metadata Mapping[str, Any]
Metadata key/value pairs to associate with the volume. Changing this updates the existing volume metadata.
- multiattach bool
Allow the volume to be attached to more than one Compute instance.
- name str
A unique name for the volume. Changing this updates the volume's name.
- region str
The region in which to create the volume. If omitted, the
region
argument of the provider is used. Changing this creates a new volume.- scheduler_
hints Sequence[VolumeScheduler Hint Args] Provide the Cinder scheduler with hints on where to instantiate a volume in the OpenStack cloud. The available hints are described below.
- size int
The size of the volume to create (in gigabytes).
- snapshot_
id str The snapshot ID from which to create the volume. Changing this creates a new volume.
- source_
replica str The volume ID to replicate with.
- source_
vol_ strid The volume ID from which to create the volume. Changing this creates a new volume.
- volume_
type str The type of volume to create. Changing this creates a new volume.
- attachments List<Property Map>
If a volume is attached to an instance, this attribute will display the Attachment ID, Instance ID, and the Device as the Instance sees it.
- availability
Zone String The availability zone for the volume. Changing this creates a new volume.
- consistency
Group StringId The consistency group to place the volume in.
- description String
A description of the volume. Changing this updates the volume's description.
- enable
Online BooleanResize When this option is set it allows extending attached volumes. Note: updating size of an attached volume requires Cinder support for version 3.42 and a compatible storage driver.
- image
Id String The image ID from which to create the volume. Changing this creates a new volume.
- metadata Map<Any>
Metadata key/value pairs to associate with the volume. Changing this updates the existing volume metadata.
- multiattach Boolean
Allow the volume to be attached to more than one Compute instance.
- name String
A unique name for the volume. Changing this updates the volume's name.
- region String
The region in which to create the volume. If omitted, the
region
argument of the provider is used. Changing this creates a new volume.- scheduler
Hints List<Property Map> Provide the Cinder scheduler with hints on where to instantiate a volume in the OpenStack cloud. The available hints are described below.
- size Number
The size of the volume to create (in gigabytes).
- snapshot
Id String The snapshot ID from which to create the volume. Changing this creates a new volume.
- source
Replica String The volume ID to replicate with.
- source
Vol StringId The volume ID from which to create the volume. Changing this creates a new volume.
- volume
Type String The type of volume to create. Changing this creates a new volume.
Supporting Types
VolumeAttachment
- Device string
- Id string
- Instance
Id string
- Device string
- Id string
- Instance
Id string
- device String
- id String
- instance
Id String
- device string
- id string
- instance
Id string
- device str
- id str
- instance_
id str
- device String
- id String
- instance
Id String
VolumeSchedulerHint
- Additional
Properties Dictionary<string, object> Arbitrary key/value pairs of additional properties to pass to the scheduler.
- Different
Hosts List<string> The volume should be scheduled on a different host from the set of volumes specified in the list provided.
- Local
To stringInstance An instance UUID. The volume should be scheduled on the same host as the instance.
- Query string
A conditional query that a back-end must pass in order to host a volume. The query must use the
JsonFilter
syntax which is described here. At this time, only simple queries are supported. Compound queries usingand
,or
, ornot
are not supported. An example of a simple query is:- Same
Hosts List<string> A list of volume UUIDs. The volume should be scheduled on the same host as another volume specified in the list provided.
- Additional
Properties map[string]interface{} Arbitrary key/value pairs of additional properties to pass to the scheduler.
- Different
Hosts []string The volume should be scheduled on a different host from the set of volumes specified in the list provided.
- Local
To stringInstance An instance UUID. The volume should be scheduled on the same host as the instance.
- Query string
A conditional query that a back-end must pass in order to host a volume. The query must use the
JsonFilter
syntax which is described here. At this time, only simple queries are supported. Compound queries usingand
,or
, ornot
are not supported. An example of a simple query is:- Same
Hosts []string A list of volume UUIDs. The volume should be scheduled on the same host as another volume specified in the list provided.
- additional
Properties Map<String,Object> Arbitrary key/value pairs of additional properties to pass to the scheduler.
- different
Hosts List<String> The volume should be scheduled on a different host from the set of volumes specified in the list provided.
- local
To StringInstance An instance UUID. The volume should be scheduled on the same host as the instance.
- query String
A conditional query that a back-end must pass in order to host a volume. The query must use the
JsonFilter
syntax which is described here. At this time, only simple queries are supported. Compound queries usingand
,or
, ornot
are not supported. An example of a simple query is:- same
Hosts List<String> A list of volume UUIDs. The volume should be scheduled on the same host as another volume specified in the list provided.
- additional
Properties {[key: string]: any} Arbitrary key/value pairs of additional properties to pass to the scheduler.
- different
Hosts string[] The volume should be scheduled on a different host from the set of volumes specified in the list provided.
- local
To stringInstance An instance UUID. The volume should be scheduled on the same host as the instance.
- query string
A conditional query that a back-end must pass in order to host a volume. The query must use the
JsonFilter
syntax which is described here. At this time, only simple queries are supported. Compound queries usingand
,or
, ornot
are not supported. An example of a simple query is:- same
Hosts string[] A list of volume UUIDs. The volume should be scheduled on the same host as another volume specified in the list provided.
- additional_
properties Mapping[str, Any] Arbitrary key/value pairs of additional properties to pass to the scheduler.
- different_
hosts Sequence[str] The volume should be scheduled on a different host from the set of volumes specified in the list provided.
- local_
to_ strinstance An instance UUID. The volume should be scheduled on the same host as the instance.
- query str
A conditional query that a back-end must pass in order to host a volume. The query must use the
JsonFilter
syntax which is described here. At this time, only simple queries are supported. Compound queries usingand
,or
, ornot
are not supported. An example of a simple query is:- same_
hosts Sequence[str] A list of volume UUIDs. The volume should be scheduled on the same host as another volume specified in the list provided.
- additional
Properties Map<Any> Arbitrary key/value pairs of additional properties to pass to the scheduler.
- different
Hosts List<String> The volume should be scheduled on a different host from the set of volumes specified in the list provided.
- local
To StringInstance An instance UUID. The volume should be scheduled on the same host as the instance.
- query String
A conditional query that a back-end must pass in order to host a volume. The query must use the
JsonFilter
syntax which is described here. At this time, only simple queries are supported. Compound queries usingand
,or
, ornot
are not supported. An example of a simple query is:- same
Hosts List<String> A list of volume UUIDs. The volume should be scheduled on the same host as another volume specified in the list provided.
Import
Volumes can be imported using the id
, e.g.
$ pulumi import openstack:blockstorage/volume:Volume volume_1 ea257959-eeb1-4c10-8d33-26f0409a755d
Package Details
- Repository
- https://github.com/pulumi/pulumi-openstack
- License
- Apache-2.0
- Notes
This Pulumi package is based on the
openstack
Terraform Provider.