Show / Hide Table of Contents

Class GetFlavorArgs

Inheritance
System.Object
InputArgs
InvokeArgs
GetFlavorArgs
Inherited Members
InvokeArgs.Empty
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 Source

GetFlavorArgs()

Declaration
public GetFlavorArgs()

Properties

View Source

Disk

The exact amount of disk (in gigabytes).

Declaration
public int? Disk { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>
View Source

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
View Source

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>
View Source

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>
View Source

Name

The name of the flavor. Conflicts with the flavor_id.

Declaration
public string Name { get; set; }
Property Value
Type Description
System.String
View Source

Ram

The exact amount of RAM (in megabytes).

Declaration
public int? Ram { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>
View Source

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
View Source

RxTxFactor

The rx_tx_factor of the flavor.

Declaration
public double? RxTxFactor { get; set; }
Property Value
Type Description
System.Nullable<System.Double>
View Source

Swap

The amount of swap (in gigabytes).

Declaration
public int? Swap { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>
View Source

Vcpus

The amount of VCPUs.

Declaration
public int? Vcpus { get; set; }
Property Value
Type Description
System.Nullable<System.Int32>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.