Show / Hide Table of Contents

Class FlavorArgs

Inheritance
System.Object
InputArgs
ResourceArgs
FlavorArgs
Inherited Members
ResourceArgs.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 FlavorArgs : ResourceArgs

Constructors

View Source

FlavorArgs()

Declaration
public FlavorArgs()

Properties

View Source

Disk

The amount of disk space in gigabytes to use for the root (/) partition. Changing this creates a new flavor.

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

Ephemeral

Declaration
public Input<int> Ephemeral { get; set; }
Property Value
Type Description
Input<System.Int32>
View Source

ExtraSpecs

Key/Value pairs of metadata for the flavor.

Declaration
public InputMap<object> ExtraSpecs { get; set; }
Property Value
Type Description
InputMap<System.Object>
View Source

IsPublic

Whether the flavor is public. Changing this creates a new flavor.

Declaration
public Input<bool> IsPublic { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Name

A unique name for the flavor. Changing this creates a new flavor.

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

Ram

The amount of RAM to use, in megabytes. Changing this creates a new flavor.

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

Region

The region in which to obtain the V2 Compute client. Flavors are associated with accounts, but a Compute client is needed to create one. If omitted, the region argument of the provider is used. Changing this creates a new flavor.

Declaration
public Input<string> Region { get; set; }
Property Value
Type Description
Input<System.String>
View Source

RxTxFactor

RX/TX bandwith factor. The default is 1. Changing this creates a new flavor.

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

Swap

The amount of disk space in megabytes to use. If unspecified, the default is 0. Changing this creates a new flavor.

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

Vcpus

The number of virtual CPUs to use. Changing this creates a new flavor.

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