Class DeployKeyArgs
Inherited Members
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.GitLab
Assembly: Pulumi.GitLab.dll
Syntax
public sealed class DeployKeyArgs : ResourceArgs
Constructors
View SourceDeployKeyArgs()
Declaration
public DeployKeyArgs()
Properties
View SourceCanPush
Allow this deploy key to be used to push changes to the project. Defaults to false. NOTE:: this cannot currently be managed.
Declaration
public Input<bool> CanPush { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.Boolean> |
Key
The public ssh key body.
Declaration
public Input<string> Key { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Project
The name or id of the project to add the deploy key to.
Declaration
public Input<string> Project { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
Title
A title to describe the deploy key with.
Declaration
public Input<string> Title { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |