Show / Hide Table of Contents

Class InstanceArgs

Inheritance
System.Object
InputArgs
ResourceArgs
InstanceArgs
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.Database
Assembly: Pulumi.OpenStack.dll
Syntax
public sealed class InstanceArgs : ResourceArgs

Constructors

View Source

InstanceArgs()

Declaration
public InstanceArgs()

Properties

View Source

ConfigurationId

Configuration ID to be attached to the instance. Database instance will be rebooted when configuration is detached.

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

Databases

An array of database name, charset and collate. The database object structure is documented below.

Declaration
public InputList<InstanceDatabaseArgs> Databases { get; set; }
Property Value
Type Description
InputList<InstanceDatabaseArgs>
View Source

Datastore

An array of database engine type and version. The datastore object structure is documented below. Changing this creates a new instance.

Declaration
public Input<InstanceDatastoreArgs> Datastore { get; set; }
Property Value
Type Description
Input<InstanceDatastoreArgs>
View Source

FlavorId

The flavor ID of the desired flavor for the instance. Changing this creates new instance.

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

Name

Database to be created on new instance. Changing this creates a new instance.

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

Networks

An array of one or more networks to attach to the instance. The network object structure is documented below. Changing this creates a new instance.

Declaration
public InputList<InstanceNetworkArgs> Networks { get; set; }
Property Value
Type Description
InputList<InstanceNetworkArgs>
View Source

Region

The region in which to create the db instance. Changing this creates a new instance.

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

Size

Specifies the volume size in GB. Changing this creates new instance.

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

Users

An array of username, password, host and databases. The user object structure is documented below.

Declaration
public InputList<InstanceUserArgs> Users { get; set; }
Property Value
Type Description
InputList<InstanceUserArgs>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.