Class GetFlavorArgs
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Pulumi.OpenStack.Compute
Assembly: Pulumi.OpenStack.dll
Syntax
public sealed class GetFlavorArgs : InvokeArgs
Constructors
View SourceGetFlavorArgs()
Declaration
public GetFlavorArgs()
Properties
View SourceDisk
The exact amount of disk (in gigabytes).
Declaration
public int? Disk { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Int32> |
FlavorId
The ID of the flavor. Conflicts with the name,
min_ram and min_disk
Declaration
public string FlavorId { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
MinDisk
The minimum amount of disk (in gigabytes). Conflicts
with the flavor_id.
Declaration
public int? MinDisk { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Int32> |
MinRam
The minimum amount of RAM (in megabytes). Conflicts
with the flavor_id.
Declaration
public int? MinRam { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Int32> |
Name
The name of the flavor. Conflicts with the flavor_id.
Declaration
public string Name { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Ram
The exact amount of RAM (in megabytes).
Declaration
public int? Ram { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Int32> |
Region
The region in which to obtain the V2 Compute client.
If omitted, the region argument of the provider is used.
Declaration
public string Region { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
RxTxFactor
The rx_tx_factor of the flavor.
Declaration
public double? RxTxFactor { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Double> |
Swap
The amount of swap (in gigabytes).
Declaration
public int? Swap { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Int32> |
Vcpus
The amount of VCPUs.
Declaration
public int? Vcpus { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Int32> |