Class Config
Inheritance
System.Object
Config
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.Github
Assembly: Pulumi.Github.dll
Syntax
public static class Config
Properties
View SourceAnonymous
Authenticate without a token. When anonymousis true, the provider will not be able to access resourcesthat require
authentication.
Declaration
public static bool? Anonymous { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Boolean> |
BaseUrl
The GitHub Base API URL
Declaration
public static string BaseUrl { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Individual
Run outside an organization. When individualis true, the provider will run outside the scope of anorganization.
Declaration
public static bool? Individual { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Boolean> |
Insecure
Whether server should be accessed without verifying the TLS certificate.
Declaration
public static bool? Insecure { get; set; }
Property Value
| Type | Description |
|---|---|
| System.Nullable<System.Boolean> |
Organization
The GitHub organization name to manage. If individual is false, organization is required.
Declaration
public static string Organization { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |
Token
The OAuth token used to connect to GitHub. If anonymous is false, token is required.
Declaration
public static string Token { get; set; }
Property Value
| Type | Description |
|---|---|
| System.String |