Show / Hide Table of Contents

Class DeployKeyArgs

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

Constructors

View Source

DeployKeyArgs()

Declaration
public DeployKeyArgs()

Properties

View Source

CanPush

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>
View Source

Key

The public ssh key body.

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

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>
View Source

Title

A title to describe the deploy key with.

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