Show / Hide Table of Contents

Class ProviderArgs

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

Constructors

View Source

ProviderArgs()

Declaration
public ProviderArgs()

Properties

View Source

Anonymous

Authenticate without a token. When anonymousis true, the provider will not be able to access resourcesthat require authentication.

Declaration
public Input<bool> Anonymous { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

BaseUrl

The GitHub Base API URL

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

Individual

Run outside an organization. When individualis true, the provider will run outside the scope of anorganization.

Declaration
public Input<bool> Individual { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Insecure

Whether server should be accessed without verifying the TLS certificate.

Declaration
public Input<bool> Insecure { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Organization

The GitHub organization name to manage. If individual is false, organization is required.

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

Token

The OAuth token used to connect to GitHub. If anonymous is false, token is required.

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