Show / Hide Table of Contents

Class DeployTokenState

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

Constructors

View Source

DeployTokenState()

Declaration
public DeployTokenState()

Properties

View Source

ExpiresAt

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

Group

The name or id of the group to add the deploy token to. Either project or group must be set.

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

Name

A name to describe the deploy token with.

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

Project

The name or id of the project to add the deploy token to. Either project or group must be set.

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

Scopes

Valid values: read_repository, read_registry.

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

Token

The secret token. This is only populated when creating a new deploy token.

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

Username

A username for the deploy token. Default is gitlab+deploy-token-{n}.

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