1. Packages
  2. Artifactory
  3. API Docs
  4. ArtifactWebhook
artifactory v4.6.0 published on Thursday, Sep 14, 2023 by Pulumi

artifactory.ArtifactWebhook

Explore with Pulumi AI

artifactory logo
artifactory v4.6.0 published on Thursday, Sep 14, 2023 by Pulumi

    Provides an Artifactory webhook resource. This can be used to register and manage Artifactory webhook subscription which enables you to be notified or notify other users when such events take place in Artifactory.

    Example Usage

    .

    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Artifactory = Pulumi.Artifactory;
    
    return await Deployment.RunAsync(() => 
    {
        var my_generic_local = new Artifactory.LocalGenericRepository("my-generic-local", new()
        {
            Key = "my-generic-local",
        });
    
        var artifact_webhook = new Artifactory.ArtifactWebhook("artifact-webhook", new()
        {
            Key = "artifact-webhook",
            EventTypes = new[]
            {
                "deployed",
                "deleted",
                "moved",
                "copied",
            },
            Criteria = new Artifactory.Inputs.ArtifactWebhookCriteriaArgs
            {
                AnyLocal = true,
                AnyRemote = false,
                RepoKeys = new[]
                {
                    my_generic_local.Key,
                },
                IncludePatterns = new[]
                {
                    "foo/**",
                },
                ExcludePatterns = new[]
                {
                    "bar/**",
                },
            },
            Handlers = new[]
            {
                new Artifactory.Inputs.ArtifactWebhookHandlerArgs
                {
                    Url = "http://tempurl.org/webhook",
                    Secret = "some-secret",
                    Proxy = "proxy-key",
                    CustomHttpHeaders = 
                    {
                        { "header-1", "value-1" },
                        { "header-2", "value-2" },
                    },
                },
            },
        }, new CustomResourceOptions
        {
            DependsOn = new[]
            {
                my_generic_local,
            },
        });
    
    });
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-artifactory/sdk/v4/go/artifactory"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := artifactory.NewLocalGenericRepository(ctx, "my-generic-local", &artifactory.LocalGenericRepositoryArgs{
    			Key: pulumi.String("my-generic-local"),
    		})
    		if err != nil {
    			return err
    		}
    		_, err = artifactory.NewArtifactWebhook(ctx, "artifact-webhook", &artifactory.ArtifactWebhookArgs{
    			Key: pulumi.String("artifact-webhook"),
    			EventTypes: pulumi.StringArray{
    				pulumi.String("deployed"),
    				pulumi.String("deleted"),
    				pulumi.String("moved"),
    				pulumi.String("copied"),
    			},
    			Criteria: &artifactory.ArtifactWebhookCriteriaArgs{
    				AnyLocal:  pulumi.Bool(true),
    				AnyRemote: pulumi.Bool(false),
    				RepoKeys: pulumi.StringArray{
    					my_generic_local.Key,
    				},
    				IncludePatterns: pulumi.StringArray{
    					pulumi.String("foo/**"),
    				},
    				ExcludePatterns: pulumi.StringArray{
    					pulumi.String("bar/**"),
    				},
    			},
    			Handlers: artifactory.ArtifactWebhookHandlerArray{
    				&artifactory.ArtifactWebhookHandlerArgs{
    					Url:    pulumi.String("http://tempurl.org/webhook"),
    					Secret: pulumi.String("some-secret"),
    					Proxy:  pulumi.String("proxy-key"),
    					CustomHttpHeaders: pulumi.StringMap{
    						"header-1": pulumi.String("value-1"),
    						"header-2": pulumi.String("value-2"),
    					},
    				},
    			},
    		}, pulumi.DependsOn([]pulumi.Resource{
    			my_generic_local,
    		}))
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.artifactory.LocalGenericRepository;
    import com.pulumi.artifactory.LocalGenericRepositoryArgs;
    import com.pulumi.artifactory.ArtifactWebhook;
    import com.pulumi.artifactory.ArtifactWebhookArgs;
    import com.pulumi.artifactory.inputs.ArtifactWebhookCriteriaArgs;
    import com.pulumi.artifactory.inputs.ArtifactWebhookHandlerArgs;
    import com.pulumi.resources.CustomResourceOptions;
    import java.util.List;
    import java.util.ArrayList;
    import java.util.Map;
    import java.io.File;
    import java.nio.file.Files;
    import java.nio.file.Paths;
    
    public class App {
        public static void main(String[] args) {
            Pulumi.run(App::stack);
        }
    
        public static void stack(Context ctx) {
            var my_generic_local = new LocalGenericRepository("my-generic-local", LocalGenericRepositoryArgs.builder()        
                .key("my-generic-local")
                .build());
    
            var artifact_webhook = new ArtifactWebhook("artifact-webhook", ArtifactWebhookArgs.builder()        
                .key("artifact-webhook")
                .eventTypes(            
                    "deployed",
                    "deleted",
                    "moved",
                    "copied")
                .criteria(ArtifactWebhookCriteriaArgs.builder()
                    .anyLocal(true)
                    .anyRemote(false)
                    .repoKeys(my_generic_local.key())
                    .includePatterns("foo/**")
                    .excludePatterns("bar/**")
                    .build())
                .handlers(ArtifactWebhookHandlerArgs.builder()
                    .url("http://tempurl.org/webhook")
                    .secret("some-secret")
                    .proxy("proxy-key")
                    .customHttpHeaders(Map.ofEntries(
                        Map.entry("header-1", "value-1"),
                        Map.entry("header-2", "value-2")
                    ))
                    .build())
                .build(), CustomResourceOptions.builder()
                    .dependsOn(my_generic_local)
                    .build());
    
        }
    }
    
    import pulumi
    import pulumi_artifactory as artifactory
    
    my_generic_local = artifactory.LocalGenericRepository("my-generic-local", key="my-generic-local")
    artifact_webhook = artifactory.ArtifactWebhook("artifact-webhook",
        key="artifact-webhook",
        event_types=[
            "deployed",
            "deleted",
            "moved",
            "copied",
        ],
        criteria=artifactory.ArtifactWebhookCriteriaArgs(
            any_local=True,
            any_remote=False,
            repo_keys=[my_generic_local.key],
            include_patterns=["foo/**"],
            exclude_patterns=["bar/**"],
        ),
        handlers=[artifactory.ArtifactWebhookHandlerArgs(
            url="http://tempurl.org/webhook",
            secret="some-secret",
            proxy="proxy-key",
            custom_http_headers={
                "header-1": "value-1",
                "header-2": "value-2",
            },
        )],
        opts=pulumi.ResourceOptions(depends_on=[my_generic_local]))
    
    import * as pulumi from "@pulumi/pulumi";
    import * as artifactory from "@pulumi/artifactory";
    
    const my_generic_local = new artifactory.LocalGenericRepository("my-generic-local", {key: "my-generic-local"});
    const artifact_webhook = new artifactory.ArtifactWebhook("artifact-webhook", {
        key: "artifact-webhook",
        eventTypes: [
            "deployed",
            "deleted",
            "moved",
            "copied",
        ],
        criteria: {
            anyLocal: true,
            anyRemote: false,
            repoKeys: [my_generic_local.key],
            includePatterns: ["foo/**"],
            excludePatterns: ["bar/**"],
        },
        handlers: [{
            url: "http://tempurl.org/webhook",
            secret: "some-secret",
            proxy: "proxy-key",
            customHttpHeaders: {
                "header-1": "value-1",
                "header-2": "value-2",
            },
        }],
    }, {
        dependsOn: [my_generic_local],
    });
    
    resources:
      my-generic-local:
        type: artifactory:LocalGenericRepository
        properties:
          key: my-generic-local
      artifact-webhook:
        type: artifactory:ArtifactWebhook
        properties:
          key: artifact-webhook
          eventTypes:
            - deployed
            - deleted
            - moved
            - copied
          criteria:
            anyLocal: true
            anyRemote: false
            repoKeys:
              - ${["my-generic-local"].key}
            includePatterns:
              - foo/**
            excludePatterns:
              - bar/**
          handlers:
            - url: http://tempurl.org/webhook
              secret: some-secret
              proxy: proxy-key
              customHttpHeaders:
                header-1: value-1
                header-2: value-2
        options:
          dependson:
            - ${["my-generic-local"]}
    

    Create ArtifactWebhook Resource

    new ArtifactWebhook(name: string, args: ArtifactWebhookArgs, opts?: CustomResourceOptions);
    @overload
    def ArtifactWebhook(resource_name: str,
                        opts: Optional[ResourceOptions] = None,
                        criteria: Optional[ArtifactWebhookCriteriaArgs] = None,
                        description: Optional[str] = None,
                        enabled: Optional[bool] = None,
                        event_types: Optional[Sequence[str]] = None,
                        handlers: Optional[Sequence[ArtifactWebhookHandlerArgs]] = None,
                        key: Optional[str] = None)
    @overload
    def ArtifactWebhook(resource_name: str,
                        args: ArtifactWebhookArgs,
                        opts: Optional[ResourceOptions] = None)
    func NewArtifactWebhook(ctx *Context, name string, args ArtifactWebhookArgs, opts ...ResourceOption) (*ArtifactWebhook, error)
    public ArtifactWebhook(string name, ArtifactWebhookArgs args, CustomResourceOptions? opts = null)
    public ArtifactWebhook(String name, ArtifactWebhookArgs args)
    public ArtifactWebhook(String name, ArtifactWebhookArgs args, CustomResourceOptions options)
    
    type: artifactory:ArtifactWebhook
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args ArtifactWebhookArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    resource_name str
    The unique name of the resource.
    args ArtifactWebhookArgs
    The arguments to resource properties.
    opts ResourceOptions
    Bag of options to control resource's behavior.
    ctx Context
    Context object for the current deployment.
    name string
    The unique name of the resource.
    args ArtifactWebhookArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ArtifactWebhookArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ArtifactWebhookArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    ArtifactWebhook Resource Properties

    To learn more about resource properties and how to use them, see Inputs and Outputs in the Architecture and Concepts docs.

    Inputs

    The ArtifactWebhook resource accepts the following input properties:

    Criteria ArtifactWebhookCriteria

    Specifies where the webhook will be applied on which repositories.

    EventTypes List<string>

    List of Events in Artifactory, Distribution, Release Bundle that function as the event trigger for the Webhook. Allow values: deployed, deleted, moved, copied, cached.

    Handlers List<ArtifactWebhookHandler>

    At least one is required.

    Key string

    The identity key of the webhook. Must be between 2 and 200 characters. Cannot contain spaces.

    Description string

    Webhook description. Max length 1000 characters.

    Enabled bool

    Status of webhook. Default to true.

    Criteria ArtifactWebhookCriteriaArgs

    Specifies where the webhook will be applied on which repositories.

    EventTypes []string

    List of Events in Artifactory, Distribution, Release Bundle that function as the event trigger for the Webhook. Allow values: deployed, deleted, moved, copied, cached.

    Handlers []ArtifactWebhookHandlerArgs

    At least one is required.

    Key string

    The identity key of the webhook. Must be between 2 and 200 characters. Cannot contain spaces.

    Description string

    Webhook description. Max length 1000 characters.

    Enabled bool

    Status of webhook. Default to true.

    criteria ArtifactWebhookCriteria

    Specifies where the webhook will be applied on which repositories.

    eventTypes List<String>

    List of Events in Artifactory, Distribution, Release Bundle that function as the event trigger for the Webhook. Allow values: deployed, deleted, moved, copied, cached.

    handlers List<ArtifactWebhookHandler>

    At least one is required.

    key String

    The identity key of the webhook. Must be between 2 and 200 characters. Cannot contain spaces.

    description String

    Webhook description. Max length 1000 characters.

    enabled Boolean

    Status of webhook. Default to true.

    criteria ArtifactWebhookCriteria

    Specifies where the webhook will be applied on which repositories.

    eventTypes string[]

    List of Events in Artifactory, Distribution, Release Bundle that function as the event trigger for the Webhook. Allow values: deployed, deleted, moved, copied, cached.

    handlers ArtifactWebhookHandler[]

    At least one is required.

    key string

    The identity key of the webhook. Must be between 2 and 200 characters. Cannot contain spaces.

    description string

    Webhook description. Max length 1000 characters.

    enabled boolean

    Status of webhook. Default to true.

    criteria ArtifactWebhookCriteriaArgs

    Specifies where the webhook will be applied on which repositories.

    event_types Sequence[str]

    List of Events in Artifactory, Distribution, Release Bundle that function as the event trigger for the Webhook. Allow values: deployed, deleted, moved, copied, cached.

    handlers Sequence[ArtifactWebhookHandlerArgs]

    At least one is required.

    key str

    The identity key of the webhook. Must be between 2 and 200 characters. Cannot contain spaces.

    description str

    Webhook description. Max length 1000 characters.

    enabled bool

    Status of webhook. Default to true.

    criteria Property Map

    Specifies where the webhook will be applied on which repositories.

    eventTypes List<String>

    List of Events in Artifactory, Distribution, Release Bundle that function as the event trigger for the Webhook. Allow values: deployed, deleted, moved, copied, cached.

    handlers List<Property Map>

    At least one is required.

    key String

    The identity key of the webhook. Must be between 2 and 200 characters. Cannot contain spaces.

    description String

    Webhook description. Max length 1000 characters.

    enabled Boolean

    Status of webhook. Default to true.

    Outputs

    All input properties are implicitly available as output properties. Additionally, the ArtifactWebhook resource produces the following output properties:

    Id string

    The provider-assigned unique ID for this managed resource.

    Id string

    The provider-assigned unique ID for this managed resource.

    id String

    The provider-assigned unique ID for this managed resource.

    id string

    The provider-assigned unique ID for this managed resource.

    id str

    The provider-assigned unique ID for this managed resource.

    id String

    The provider-assigned unique ID for this managed resource.

    Look up Existing ArtifactWebhook Resource

    Get an existing ArtifactWebhook resource’s state with the given name, ID, and optional extra properties used to qualify the lookup.

    public static get(name: string, id: Input<ID>, state?: ArtifactWebhookState, opts?: CustomResourceOptions): ArtifactWebhook
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            criteria: Optional[ArtifactWebhookCriteriaArgs] = None,
            description: Optional[str] = None,
            enabled: Optional[bool] = None,
            event_types: Optional[Sequence[str]] = None,
            handlers: Optional[Sequence[ArtifactWebhookHandlerArgs]] = None,
            key: Optional[str] = None) -> ArtifactWebhook
    func GetArtifactWebhook(ctx *Context, name string, id IDInput, state *ArtifactWebhookState, opts ...ResourceOption) (*ArtifactWebhook, error)
    public static ArtifactWebhook Get(string name, Input<string> id, ArtifactWebhookState? state, CustomResourceOptions? opts = null)
    public static ArtifactWebhook get(String name, Output<String> id, ArtifactWebhookState state, CustomResourceOptions options)
    Resource lookup is not supported in YAML
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    resource_name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    name
    The unique name of the resulting resource.
    id
    The unique provider ID of the resource to lookup.
    state
    Any extra arguments used during the lookup.
    opts
    A bag of options that control this resource's behavior.
    The following state arguments are supported:
    Criteria ArtifactWebhookCriteria

    Specifies where the webhook will be applied on which repositories.

    Description string

    Webhook description. Max length 1000 characters.

    Enabled bool

    Status of webhook. Default to true.

    EventTypes List<string>

    List of Events in Artifactory, Distribution, Release Bundle that function as the event trigger for the Webhook. Allow values: deployed, deleted, moved, copied, cached.

    Handlers List<ArtifactWebhookHandler>

    At least one is required.

    Key string

    The identity key of the webhook. Must be between 2 and 200 characters. Cannot contain spaces.

    Criteria ArtifactWebhookCriteriaArgs

    Specifies where the webhook will be applied on which repositories.

    Description string

    Webhook description. Max length 1000 characters.

    Enabled bool

    Status of webhook. Default to true.

    EventTypes []string

    List of Events in Artifactory, Distribution, Release Bundle that function as the event trigger for the Webhook. Allow values: deployed, deleted, moved, copied, cached.

    Handlers []ArtifactWebhookHandlerArgs

    At least one is required.

    Key string

    The identity key of the webhook. Must be between 2 and 200 characters. Cannot contain spaces.

    criteria ArtifactWebhookCriteria

    Specifies where the webhook will be applied on which repositories.

    description String

    Webhook description. Max length 1000 characters.

    enabled Boolean

    Status of webhook. Default to true.

    eventTypes List<String>

    List of Events in Artifactory, Distribution, Release Bundle that function as the event trigger for the Webhook. Allow values: deployed, deleted, moved, copied, cached.

    handlers List<ArtifactWebhookHandler>

    At least one is required.

    key String

    The identity key of the webhook. Must be between 2 and 200 characters. Cannot contain spaces.

    criteria ArtifactWebhookCriteria

    Specifies where the webhook will be applied on which repositories.

    description string

    Webhook description. Max length 1000 characters.

    enabled boolean

    Status of webhook. Default to true.

    eventTypes string[]

    List of Events in Artifactory, Distribution, Release Bundle that function as the event trigger for the Webhook. Allow values: deployed, deleted, moved, copied, cached.

    handlers ArtifactWebhookHandler[]

    At least one is required.

    key string

    The identity key of the webhook. Must be between 2 and 200 characters. Cannot contain spaces.

    criteria ArtifactWebhookCriteriaArgs

    Specifies where the webhook will be applied on which repositories.

    description str

    Webhook description. Max length 1000 characters.

    enabled bool

    Status of webhook. Default to true.

    event_types Sequence[str]

    List of Events in Artifactory, Distribution, Release Bundle that function as the event trigger for the Webhook. Allow values: deployed, deleted, moved, copied, cached.

    handlers Sequence[ArtifactWebhookHandlerArgs]

    At least one is required.

    key str

    The identity key of the webhook. Must be between 2 and 200 characters. Cannot contain spaces.

    criteria Property Map

    Specifies where the webhook will be applied on which repositories.

    description String

    Webhook description. Max length 1000 characters.

    enabled Boolean

    Status of webhook. Default to true.

    eventTypes List<String>

    List of Events in Artifactory, Distribution, Release Bundle that function as the event trigger for the Webhook. Allow values: deployed, deleted, moved, copied, cached.

    handlers List<Property Map>

    At least one is required.

    key String

    The identity key of the webhook. Must be between 2 and 200 characters. Cannot contain spaces.

    Supporting Types

    ArtifactWebhookCriteria, ArtifactWebhookCriteriaArgs

    AnyLocal bool

    Trigger on any local repo.

    AnyRemote bool

    Trigger on any remote repo.

    RepoKeys List<string>

    Trigger on this list of repo keys.

    ExcludePatterns List<string>

    Simple comma separated wildcard patterns for repository artifact paths (with no leading slash). Ant-style path expressions are supported (*, **, ?). For example: org/apache/**.

    IncludePatterns List<string>

    Simple comma separated wildcard patterns for repository artifact paths (with no leading slash). Ant-style path expressions are supported (*, **, ?). For example: org/apache/**.

    AnyLocal bool

    Trigger on any local repo.

    AnyRemote bool

    Trigger on any remote repo.

    RepoKeys []string

    Trigger on this list of repo keys.

    ExcludePatterns []string

    Simple comma separated wildcard patterns for repository artifact paths (with no leading slash). Ant-style path expressions are supported (*, **, ?). For example: org/apache/**.

    IncludePatterns []string

    Simple comma separated wildcard patterns for repository artifact paths (with no leading slash). Ant-style path expressions are supported (*, **, ?). For example: org/apache/**.

    anyLocal Boolean

    Trigger on any local repo.

    anyRemote Boolean

    Trigger on any remote repo.

    repoKeys List<String>

    Trigger on this list of repo keys.

    excludePatterns List<String>

    Simple comma separated wildcard patterns for repository artifact paths (with no leading slash). Ant-style path expressions are supported (*, **, ?). For example: org/apache/**.

    includePatterns List<String>

    Simple comma separated wildcard patterns for repository artifact paths (with no leading slash). Ant-style path expressions are supported (*, **, ?). For example: org/apache/**.

    anyLocal boolean

    Trigger on any local repo.

    anyRemote boolean

    Trigger on any remote repo.

    repoKeys string[]

    Trigger on this list of repo keys.

    excludePatterns string[]

    Simple comma separated wildcard patterns for repository artifact paths (with no leading slash). Ant-style path expressions are supported (*, **, ?). For example: org/apache/**.

    includePatterns string[]

    Simple comma separated wildcard patterns for repository artifact paths (with no leading slash). Ant-style path expressions are supported (*, **, ?). For example: org/apache/**.

    any_local bool

    Trigger on any local repo.

    any_remote bool

    Trigger on any remote repo.

    repo_keys Sequence[str]

    Trigger on this list of repo keys.

    exclude_patterns Sequence[str]

    Simple comma separated wildcard patterns for repository artifact paths (with no leading slash). Ant-style path expressions are supported (*, **, ?). For example: org/apache/**.

    include_patterns Sequence[str]

    Simple comma separated wildcard patterns for repository artifact paths (with no leading slash). Ant-style path expressions are supported (*, **, ?). For example: org/apache/**.

    anyLocal Boolean

    Trigger on any local repo.

    anyRemote Boolean

    Trigger on any remote repo.

    repoKeys List<String>

    Trigger on this list of repo keys.

    excludePatterns List<String>

    Simple comma separated wildcard patterns for repository artifact paths (with no leading slash). Ant-style path expressions are supported (*, **, ?). For example: org/apache/**.

    includePatterns List<String>

    Simple comma separated wildcard patterns for repository artifact paths (with no leading slash). Ant-style path expressions are supported (*, **, ?). For example: org/apache/**.

    ArtifactWebhookHandler, ArtifactWebhookHandlerArgs

    Url string

    Specifies the URL that the Webhook invokes. This will be the URL that Artifactory will send an HTTP POST request to.

    CustomHttpHeaders Dictionary<string, string>

    Custom HTTP headers you wish to use to invoke the Webhook, comprise of key/value pair.

    Proxy string

    Proxy key from Artifactory UI (Administration > Proxies > Configuration).

    Secret string

    Secret authentication token that will be sent to the configured URL. The value will be sent as x-jfrog-event-auth header.

    Url string

    Specifies the URL that the Webhook invokes. This will be the URL that Artifactory will send an HTTP POST request to.

    CustomHttpHeaders map[string]string

    Custom HTTP headers you wish to use to invoke the Webhook, comprise of key/value pair.

    Proxy string

    Proxy key from Artifactory UI (Administration > Proxies > Configuration).

    Secret string

    Secret authentication token that will be sent to the configured URL. The value will be sent as x-jfrog-event-auth header.

    url String

    Specifies the URL that the Webhook invokes. This will be the URL that Artifactory will send an HTTP POST request to.

    customHttpHeaders Map<String,String>

    Custom HTTP headers you wish to use to invoke the Webhook, comprise of key/value pair.

    proxy String

    Proxy key from Artifactory UI (Administration > Proxies > Configuration).

    secret String

    Secret authentication token that will be sent to the configured URL. The value will be sent as x-jfrog-event-auth header.

    url string

    Specifies the URL that the Webhook invokes. This will be the URL that Artifactory will send an HTTP POST request to.

    customHttpHeaders {[key: string]: string}

    Custom HTTP headers you wish to use to invoke the Webhook, comprise of key/value pair.

    proxy string

    Proxy key from Artifactory UI (Administration > Proxies > Configuration).

    secret string

    Secret authentication token that will be sent to the configured URL. The value will be sent as x-jfrog-event-auth header.

    url str

    Specifies the URL that the Webhook invokes. This will be the URL that Artifactory will send an HTTP POST request to.

    custom_http_headers Mapping[str, str]

    Custom HTTP headers you wish to use to invoke the Webhook, comprise of key/value pair.

    proxy str

    Proxy key from Artifactory UI (Administration > Proxies > Configuration).

    secret str

    Secret authentication token that will be sent to the configured URL. The value will be sent as x-jfrog-event-auth header.

    url String

    Specifies the URL that the Webhook invokes. This will be the URL that Artifactory will send an HTTP POST request to.

    customHttpHeaders Map<String>

    Custom HTTP headers you wish to use to invoke the Webhook, comprise of key/value pair.

    proxy String

    Proxy key from Artifactory UI (Administration > Proxies > Configuration).

    secret String

    Secret authentication token that will be sent to the configured URL. The value will be sent as x-jfrog-event-auth header.

    Package Details

    Repository
    artifactory pulumi/pulumi-artifactory
    License
    Apache-2.0
    Notes

    This Pulumi package is based on the artifactory Terraform Provider.

    artifactory logo
    artifactory v4.6.0 published on Thursday, Sep 14, 2023 by Pulumi