Documentation
¶
Index ¶
- type LookupSshPublicKeyArgs
- type LookupSshPublicKeyOutputArgs
- type LookupSshPublicKeyResult
- type LookupSshPublicKeyResultOutput
- func (LookupSshPublicKeyResultOutput) ElementType() reflect.Type
- func (o LookupSshPublicKeyResultOutput) ExpirationTimeUsec() pulumi.StringOutput
- func (o LookupSshPublicKeyResultOutput) Fingerprint() pulumi.StringOutput
- func (o LookupSshPublicKeyResultOutput) Key() pulumi.StringOutput
- func (o LookupSshPublicKeyResultOutput) Name() pulumi.StringOutput
- func (o LookupSshPublicKeyResultOutput) ToLookupSshPublicKeyResultOutput() LookupSshPublicKeyResultOutput
- func (o LookupSshPublicKeyResultOutput) ToLookupSshPublicKeyResultOutputWithContext(ctx context.Context) LookupSshPublicKeyResultOutput
- type SshPublicKey
- type SshPublicKeyArgs
- type SshPublicKeyInput
- type SshPublicKeyOutput
- func (SshPublicKeyOutput) ElementType() reflect.Type
- func (o SshPublicKeyOutput) ExpirationTimeUsec() pulumi.StringOutput
- func (o SshPublicKeyOutput) Fingerprint() pulumi.StringOutput
- func (o SshPublicKeyOutput) Key() pulumi.StringOutput
- func (o SshPublicKeyOutput) Name() pulumi.StringOutput
- func (o SshPublicKeyOutput) ToSshPublicKeyOutput() SshPublicKeyOutput
- func (o SshPublicKeyOutput) ToSshPublicKeyOutputWithContext(ctx context.Context) SshPublicKeyOutput
- func (o SshPublicKeyOutput) UserId() pulumi.StringOutput
- type SshPublicKeyState
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type LookupSshPublicKeyArgs ¶
type LookupSshPublicKeyOutputArgs ¶
type LookupSshPublicKeyOutputArgs struct { SshPublicKeyId pulumi.StringInput `pulumi:"sshPublicKeyId"` UserId pulumi.StringInput `pulumi:"userId"` }
func (LookupSshPublicKeyOutputArgs) ElementType ¶
func (LookupSshPublicKeyOutputArgs) ElementType() reflect.Type
type LookupSshPublicKeyResult ¶
type LookupSshPublicKeyResult struct { // An expiration time in microseconds since epoch. ExpirationTimeUsec string `pulumi:"expirationTimeUsec"` // The SHA-256 fingerprint of the SSH public key. Fingerprint string `pulumi:"fingerprint"` // Public key text in SSH format, defined by RFC4253 section 6.6. Key string `pulumi:"key"` // The canonical resource name. Name string `pulumi:"name"` }
func LookupSshPublicKey ¶
func LookupSshPublicKey(ctx *pulumi.Context, args *LookupSshPublicKeyArgs, opts ...pulumi.InvokeOption) (*LookupSshPublicKeyResult, error)
Retrieves an SSH public key.
type LookupSshPublicKeyResultOutput ¶
type LookupSshPublicKeyResultOutput struct{ *pulumi.OutputState }
func LookupSshPublicKeyOutput ¶
func LookupSshPublicKeyOutput(ctx *pulumi.Context, args LookupSshPublicKeyOutputArgs, opts ...pulumi.InvokeOption) LookupSshPublicKeyResultOutput
func (LookupSshPublicKeyResultOutput) ElementType ¶
func (LookupSshPublicKeyResultOutput) ElementType() reflect.Type
func (LookupSshPublicKeyResultOutput) ExpirationTimeUsec ¶
func (o LookupSshPublicKeyResultOutput) ExpirationTimeUsec() pulumi.StringOutput
An expiration time in microseconds since epoch.
func (LookupSshPublicKeyResultOutput) Fingerprint ¶
func (o LookupSshPublicKeyResultOutput) Fingerprint() pulumi.StringOutput
The SHA-256 fingerprint of the SSH public key.
func (LookupSshPublicKeyResultOutput) Key ¶
func (o LookupSshPublicKeyResultOutput) Key() pulumi.StringOutput
Public key text in SSH format, defined by RFC4253 section 6.6.
func (LookupSshPublicKeyResultOutput) Name ¶
func (o LookupSshPublicKeyResultOutput) Name() pulumi.StringOutput
The canonical resource name.
func (LookupSshPublicKeyResultOutput) ToLookupSshPublicKeyResultOutput ¶
func (o LookupSshPublicKeyResultOutput) ToLookupSshPublicKeyResultOutput() LookupSshPublicKeyResultOutput
func (LookupSshPublicKeyResultOutput) ToLookupSshPublicKeyResultOutputWithContext ¶
func (o LookupSshPublicKeyResultOutput) ToLookupSshPublicKeyResultOutputWithContext(ctx context.Context) LookupSshPublicKeyResultOutput
type SshPublicKey ¶
type SshPublicKey struct { pulumi.CustomResourceState // An expiration time in microseconds since epoch. ExpirationTimeUsec pulumi.StringOutput `pulumi:"expirationTimeUsec"` // The SHA-256 fingerprint of the SSH public key. Fingerprint pulumi.StringOutput `pulumi:"fingerprint"` // Public key text in SSH format, defined by RFC4253 section 6.6. Key pulumi.StringOutput `pulumi:"key"` // The canonical resource name. Name pulumi.StringOutput `pulumi:"name"` UserId pulumi.StringOutput `pulumi:"userId"` }
Create an SSH public key Auto-naming is currently not supported for this resource.
func GetSshPublicKey ¶
func GetSshPublicKey(ctx *pulumi.Context, name string, id pulumi.IDInput, state *SshPublicKeyState, opts ...pulumi.ResourceOption) (*SshPublicKey, error)
GetSshPublicKey gets an existing SshPublicKey resource's state with the given name, ID, and optional state properties that are used to uniquely qualify the lookup (nil if not required).
func NewSshPublicKey ¶
func NewSshPublicKey(ctx *pulumi.Context, name string, args *SshPublicKeyArgs, opts ...pulumi.ResourceOption) (*SshPublicKey, error)
NewSshPublicKey registers a new resource with the given unique name, arguments, and options.
func (*SshPublicKey) ElementType ¶
func (*SshPublicKey) ElementType() reflect.Type
func (*SshPublicKey) ToSshPublicKeyOutput ¶
func (i *SshPublicKey) ToSshPublicKeyOutput() SshPublicKeyOutput
func (*SshPublicKey) ToSshPublicKeyOutputWithContext ¶
func (i *SshPublicKey) ToSshPublicKeyOutputWithContext(ctx context.Context) SshPublicKeyOutput
type SshPublicKeyArgs ¶
type SshPublicKeyArgs struct { // An expiration time in microseconds since epoch. ExpirationTimeUsec pulumi.StringPtrInput // Public key text in SSH format, defined by RFC4253 section 6.6. Key pulumi.StringPtrInput UserId pulumi.StringInput }
The set of arguments for constructing a SshPublicKey resource.
func (SshPublicKeyArgs) ElementType ¶
func (SshPublicKeyArgs) ElementType() reflect.Type
type SshPublicKeyInput ¶
type SshPublicKeyInput interface { pulumi.Input ToSshPublicKeyOutput() SshPublicKeyOutput ToSshPublicKeyOutputWithContext(ctx context.Context) SshPublicKeyOutput }
type SshPublicKeyOutput ¶
type SshPublicKeyOutput struct{ *pulumi.OutputState }
func (SshPublicKeyOutput) ElementType ¶
func (SshPublicKeyOutput) ElementType() reflect.Type
func (SshPublicKeyOutput) ExpirationTimeUsec ¶ added in v0.19.0
func (o SshPublicKeyOutput) ExpirationTimeUsec() pulumi.StringOutput
An expiration time in microseconds since epoch.
func (SshPublicKeyOutput) Fingerprint ¶ added in v0.19.0
func (o SshPublicKeyOutput) Fingerprint() pulumi.StringOutput
The SHA-256 fingerprint of the SSH public key.
func (SshPublicKeyOutput) Key ¶ added in v0.19.0
func (o SshPublicKeyOutput) Key() pulumi.StringOutput
Public key text in SSH format, defined by RFC4253 section 6.6.
func (SshPublicKeyOutput) Name ¶ added in v0.19.0
func (o SshPublicKeyOutput) Name() pulumi.StringOutput
The canonical resource name.
func (SshPublicKeyOutput) ToSshPublicKeyOutput ¶
func (o SshPublicKeyOutput) ToSshPublicKeyOutput() SshPublicKeyOutput
func (SshPublicKeyOutput) ToSshPublicKeyOutputWithContext ¶
func (o SshPublicKeyOutput) ToSshPublicKeyOutputWithContext(ctx context.Context) SshPublicKeyOutput
func (SshPublicKeyOutput) UserId ¶ added in v0.21.0
func (o SshPublicKeyOutput) UserId() pulumi.StringOutput
type SshPublicKeyState ¶
type SshPublicKeyState struct { }
func (SshPublicKeyState) ElementType ¶
func (SshPublicKeyState) ElementType() reflect.Type