WebhookScopeConfiguration constructor

const WebhookScopeConfiguration({
  1. Input<String?>? domain,
  2. required Input<String> name,
  3. required Input<String> scope,
})

Creates a new WebhookScopeConfiguration. domain The domain of the GitHub Enterprise organization. Required if your project's source type is GITHUB_ENTERPRISE. name The name of either the enterprise or organization. scope The type of scope for a GitHub webhook. Valid values for this parameter are: GITHUB_ORGANIZATION, GITHUB_GLOBAL.

Implementation

const WebhookScopeConfiguration({
  this.domain,
  required this.name,
  required this.scope,
});