GetFlavor

Use this data source to get the ID of an available OpenStack flavor.

Example Usage

using Pulumi;
using OpenStack = Pulumi.OpenStack;

class MyStack : Stack
{
    public MyStack()
    {
        var small = Output.Create(OpenStack.Compute.GetFlavor.InvokeAsync(new OpenStack.Compute.GetFlavorArgs
        {
            Ram = 512,
            Vcpus = 1,
        }));
    }

}

Coming soon!

import pulumi
import pulumi_openstack as openstack

small = openstack.compute.get_flavor(ram=512,
    vcpus=1)
import * as pulumi from "@pulumi/pulumi";
import * as openstack from "@pulumi/openstack";

const small = pulumi.output(openstack.compute.getFlavor({
    ram: 512,
    vcpus: 1,
}, { async: true }));

Using GetFlavor

function getFlavor(args: GetFlavorArgs, opts?: InvokeOptions): Promise<GetFlavorResult>
function  get_flavor(disk=None, flavor_id=None, is_public=None, min_disk=None, min_ram=None, name=None, ram=None, region=None, rx_tx_factor=None, swap=None, vcpus=None, opts=None)
func LookupFlavor(ctx *Context, args *LookupFlavorArgs, opts ...InvokeOption) (*LookupFlavorResult, error)

Note: This function is named LookupFlavor in the Go SDK.

public static class GetFlavor {
    public static Task<GetFlavorResult> InvokeAsync(GetFlavorArgs args, InvokeOptions? opts = null)
}

The following arguments are supported:

Disk int

The exact amount of disk (in gigabytes).

FlavorId string

The ID of the flavor. Conflicts with the name, min_ram and min_disk

IsPublic bool

The flavor visibility.

MinDisk int

The minimum amount of disk (in gigabytes). Conflicts with the flavor_id.

MinRam int

The minimum amount of RAM (in megabytes). Conflicts with the flavor_id.

Name string

The name of the flavor. Conflicts with the flavor_id.

Ram int

The exact amount of RAM (in megabytes).

Region string

The region in which to obtain the V2 Compute client. If omitted, the region argument of the provider is used.

RxTxFactor double

The rx_tx_factor of the flavor.

Swap int

The amount of swap (in gigabytes).

Vcpus int

The amount of VCPUs.

Disk int

The exact amount of disk (in gigabytes).

FlavorId string

The ID of the flavor. Conflicts with the name, min_ram and min_disk

IsPublic bool

The flavor visibility.

MinDisk int

The minimum amount of disk (in gigabytes). Conflicts with the flavor_id.

MinRam int

The minimum amount of RAM (in megabytes). Conflicts with the flavor_id.

Name string

The name of the flavor. Conflicts with the flavor_id.

Ram int

The exact amount of RAM (in megabytes).

Region string

The region in which to obtain the V2 Compute client. If omitted, the region argument of the provider is used.

RxTxFactor float64

The rx_tx_factor of the flavor.

Swap int

The amount of swap (in gigabytes).

Vcpus int

The amount of VCPUs.

disk number

The exact amount of disk (in gigabytes).

flavorId string

The ID of the flavor. Conflicts with the name, min_ram and min_disk

isPublic boolean

The flavor visibility.

minDisk number

The minimum amount of disk (in gigabytes). Conflicts with the flavor_id.

minRam number

The minimum amount of RAM (in megabytes). Conflicts with the flavor_id.

name string

The name of the flavor. Conflicts with the flavor_id.

ram number

The exact amount of RAM (in megabytes).

region string

The region in which to obtain the V2 Compute client. If omitted, the region argument of the provider is used.

rxTxFactor number

The rx_tx_factor of the flavor.

swap number

The amount of swap (in gigabytes).

vcpus number

The amount of VCPUs.

disk float

The exact amount of disk (in gigabytes).

flavor_id str

The ID of the flavor. Conflicts with the name, min_ram and min_disk

is_public bool

The flavor visibility.

min_disk float

The minimum amount of disk (in gigabytes). Conflicts with the flavor_id.

min_ram float

The minimum amount of RAM (in megabytes). Conflicts with the flavor_id.

name str

The name of the flavor. Conflicts with the flavor_id.

ram float

The exact amount of RAM (in megabytes).

region str

The region in which to obtain the V2 Compute client. If omitted, the region argument of the provider is used.

rx_tx_factor float

The rx_tx_factor of the flavor.

swap float

The amount of swap (in gigabytes).

vcpus float

The amount of VCPUs.

GetFlavor Result

The following output properties are available:

ExtraSpecs Dictionary<string, object>

Key/Value pairs of metadata for the flavor.

Id string

The provider-assigned unique ID for this managed resource.

Region string
Disk int
FlavorId string
IsPublic bool
MinDisk int
MinRam int
Name string
Ram int
RxTxFactor double
Swap int
Vcpus int
ExtraSpecs map[string]interface{}

Key/Value pairs of metadata for the flavor.

Id string

The provider-assigned unique ID for this managed resource.

Region string
Disk int
FlavorId string
IsPublic bool
MinDisk int
MinRam int
Name string
Ram int
RxTxFactor float64
Swap int
Vcpus int
extraSpecs {[key: string]: any}

Key/Value pairs of metadata for the flavor.

id string

The provider-assigned unique ID for this managed resource.

region string
disk number
flavorId string
isPublic boolean
minDisk number
minRam number
name string
ram number
rxTxFactor number
swap number
vcpus number
extra_specs Dict[str, Any]

Key/Value pairs of metadata for the flavor.

id str

The provider-assigned unique ID for this managed resource.

region str
disk float
flavor_id str
is_public bool
min_disk float
min_ram float
name str
ram float
rx_tx_factor float
swap float
vcpus float

Package Details

Repository
https://github.com/pulumi/pulumi-openstack
License
Apache-2.0
Notes
This Pulumi package is based on the openstack Terraform Provider.