Class ProviderArgs
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 sealed class ProviderArgs : ResourceArgs
Constructors
View SourceProviderArgs()
Declaration
public ProviderArgs()
Properties
View SourceAnonymous
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> |
BaseUrl
The GitHub Base API URL
Declaration
public Input<string> BaseUrl { get; set; }
Property Value
| Type | Description |
|---|---|
| Input<System.String> |
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> |
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> |
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> |
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> |