Show / Hide Table of Contents

Class KeypairState

Inheritance
System.Object
InputArgs
ResourceArgs
KeypairState
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 KeypairState : ResourceArgs

Constructors

View Source

KeypairState()

Declaration
public KeypairState()

Properties

View Source

Fingerprint

The fingerprint of the public key.

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

Name

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

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

PrivateKey

The generated private key when no public key is specified.

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

PublicKey

A pregenerated OpenSSH-formatted public key. Changing this creates a new keypair. If a public key is not specified, then a public/private key pair will be automatically generated. If a pair is created, then destroying this resource means you will lose access to that keypair forever.

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

Region

The region in which to obtain the V2 Compute client. Keypairs 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 keypair.

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

ValueSpecs

Map of additional options.

Declaration
public InputMap<object> ValueSpecs { get; set; }
Property Value
Type Description
InputMap<System.Object>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.