Show / Hide Table of Contents

Class RepositoryWebhookArgs

Inheritance
System.Object
InputArgs
ResourceArgs
RepositoryWebhookArgs
Inherited Members
ResourceArgs.Empty
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 RepositoryWebhookArgs : ResourceArgs

Constructors

View Source

RepositoryWebhookArgs()

Declaration
public RepositoryWebhookArgs()

Properties

View Source

Active

Indicate of the webhook should receive events. Defaults to true.

Declaration
public Input<bool> Active { get; set; }
Property Value
Type Description
Input<System.Boolean>
View Source

Configuration

key/value pair of configuration for this webhook. Available keys are url, content_type, secret and insecure_ssl. secret is the shared secret, see API documentation.

Declaration
public Input<RepositoryWebhookConfigurationArgs> Configuration { get; set; }
Property Value
Type Description
Input<RepositoryWebhookConfigurationArgs>
View Source

Events

A list of events which should trigger the webhook. See a list of available events.

Declaration
public InputList<string> Events { get; set; }
Property Value
Type Description
InputList<System.String>
View Source

Repository

The repository of the webhook.

Declaration
public Input<string> Repository { get; set; }
Property Value
Type Description
Input<System.String>
  • View Source
Back to top Copyright 2016-2020, Pulumi Corporation.