Provider Args
data class ProviderArgs(val appAuth: Output<ProviderAppAuthArgs>? = null, val baseUrl: Output<String>? = null, val insecure: Output<Boolean>? = null, val organization: Output<String>? = null, val owner: Output<String>? = null, val parallelRequests: Output<Boolean>? = null, val readDelayMs: Output<Int>? = null, val token: Output<String>? = null, val writeDelayMs: Output<Int>? = null) : ConvertibleToJava<ProviderArgs>
The provider type for the github package. By default, resources use package-wide configuration settings, however an explicit Provider
instance may be created and passed during resource construction to achieve fine-grained programmatic control over provider settings. See the documentation for more information.
Constructors
Link copied to clipboard
fun ProviderArgs(appAuth: Output<ProviderAppAuthArgs>? = null, baseUrl: Output<String>? = null, insecure: Output<Boolean>? = null, organization: Output<String>? = null, owner: Output<String>? = null, parallelRequests: Output<Boolean>? = null, readDelayMs: Output<Int>? = null, token: Output<String>? = null, writeDelayMs: Output<Int>? = null)
Functions
Properties
Link copied to clipboard
Allow the provider to make parallel API calls to GitHub. You may want to set it to true when you have a private Github Enterprise without strict rate limits. Although, it is not possible to enable this setting on github.com because we enforce the respect of github.com's best practices to avoid hitting abuse rate limitsDefaults to false if not set