Show / Hide Table of Contents

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 Source

Anonymous

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

BaseUrl

The GitHub Base API URL

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

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

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

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

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
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.