1. Packages
  2. Artifactory
  3. API Docs
  4. ReleaseBundleWebhook
artifactory v6.4.2 published on Thursday, Mar 28, 2024 by Pulumi

artifactory.ReleaseBundleWebhook

Explore with Pulumi AI

artifactory logo
artifactory v6.4.2 published on Thursday, Mar 28, 2024 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

    .

    import * as pulumi from "@pulumi/pulumi";
    import * as artifactory from "@pulumi/artifactory";
    
    const release_bundle_webhook = new artifactory.ReleaseBundleWebhook("release-bundle-webhook", {
        criteria: {
            anyReleaseBundle: false,
            excludePatterns: ["bar/**"],
            includePatterns: ["foo/**"],
            registeredReleaseBundleNames: ["bundle-name"],
        },
        eventTypes: [
            "created",
            "signed",
            "deleted",
        ],
        handlers: [{
            customHttpHeaders: {
                "header-1": "value-1",
                "header-2": "value-2",
            },
            proxy: "proxy-key",
            secret: "some-secret",
            url: "http://tempurl.org/webhook",
        }],
        key: "release-bundle-webhook",
    });
    
    import pulumi
    import pulumi_artifactory as artifactory
    
    release_bundle_webhook = artifactory.ReleaseBundleWebhook("release-bundle-webhook",
        criteria=artifactory.ReleaseBundleWebhookCriteriaArgs(
            any_release_bundle=False,
            exclude_patterns=["bar/**"],
            include_patterns=["foo/**"],
            registered_release_bundle_names=["bundle-name"],
        ),
        event_types=[
            "created",
            "signed",
            "deleted",
        ],
        handlers=[artifactory.ReleaseBundleWebhookHandlerArgs(
            custom_http_headers={
                "header-1": "value-1",
                "header-2": "value-2",
            },
            proxy="proxy-key",
            secret="some-secret",
            url="http://tempurl.org/webhook",
        )],
        key="release-bundle-webhook")
    
    package main
    
    import (
    	"github.com/pulumi/pulumi-artifactory/sdk/v6/go/artifactory"
    	"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
    )
    
    func main() {
    	pulumi.Run(func(ctx *pulumi.Context) error {
    		_, err := artifactory.NewReleaseBundleWebhook(ctx, "release-bundle-webhook", &artifactory.ReleaseBundleWebhookArgs{
    			Criteria: &artifactory.ReleaseBundleWebhookCriteriaArgs{
    				AnyReleaseBundle: pulumi.Bool(false),
    				ExcludePatterns: pulumi.StringArray{
    					pulumi.String("bar/**"),
    				},
    				IncludePatterns: pulumi.StringArray{
    					pulumi.String("foo/**"),
    				},
    				RegisteredReleaseBundleNames: pulumi.StringArray{
    					pulumi.String("bundle-name"),
    				},
    			},
    			EventTypes: pulumi.StringArray{
    				pulumi.String("created"),
    				pulumi.String("signed"),
    				pulumi.String("deleted"),
    			},
    			Handlers: artifactory.ReleaseBundleWebhookHandlerArray{
    				&artifactory.ReleaseBundleWebhookHandlerArgs{
    					CustomHttpHeaders: pulumi.StringMap{
    						"header-1": pulumi.String("value-1"),
    						"header-2": pulumi.String("value-2"),
    					},
    					Proxy:  pulumi.String("proxy-key"),
    					Secret: pulumi.String("some-secret"),
    					Url:    pulumi.String("http://tempurl.org/webhook"),
    				},
    			},
    			Key: pulumi.String("release-bundle-webhook"),
    		})
    		if err != nil {
    			return err
    		}
    		return nil
    	})
    }
    
    using System.Collections.Generic;
    using System.Linq;
    using Pulumi;
    using Artifactory = Pulumi.Artifactory;
    
    return await Deployment.RunAsync(() => 
    {
        var release_bundle_webhook = new Artifactory.ReleaseBundleWebhook("release-bundle-webhook", new()
        {
            Criteria = new Artifactory.Inputs.ReleaseBundleWebhookCriteriaArgs
            {
                AnyReleaseBundle = false,
                ExcludePatterns = new[]
                {
                    "bar/**",
                },
                IncludePatterns = new[]
                {
                    "foo/**",
                },
                RegisteredReleaseBundleNames = new[]
                {
                    "bundle-name",
                },
            },
            EventTypes = new[]
            {
                "created",
                "signed",
                "deleted",
            },
            Handlers = new[]
            {
                new Artifactory.Inputs.ReleaseBundleWebhookHandlerArgs
                {
                    CustomHttpHeaders = 
                    {
                        { "header-1", "value-1" },
                        { "header-2", "value-2" },
                    },
                    Proxy = "proxy-key",
                    Secret = "some-secret",
                    Url = "http://tempurl.org/webhook",
                },
            },
            Key = "release-bundle-webhook",
        });
    
    });
    
    package generated_program;
    
    import com.pulumi.Context;
    import com.pulumi.Pulumi;
    import com.pulumi.core.Output;
    import com.pulumi.artifactory.ReleaseBundleWebhook;
    import com.pulumi.artifactory.ReleaseBundleWebhookArgs;
    import com.pulumi.artifactory.inputs.ReleaseBundleWebhookCriteriaArgs;
    import com.pulumi.artifactory.inputs.ReleaseBundleWebhookHandlerArgs;
    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 release_bundle_webhook = new ReleaseBundleWebhook("release-bundle-webhook", ReleaseBundleWebhookArgs.builder()        
                .criteria(ReleaseBundleWebhookCriteriaArgs.builder()
                    .anyReleaseBundle(false)
                    .excludePatterns("bar/**")
                    .includePatterns("foo/**")
                    .registeredReleaseBundleNames("bundle-name")
                    .build())
                .eventTypes(            
                    "created",
                    "signed",
                    "deleted")
                .handlers(ReleaseBundleWebhookHandlerArgs.builder()
                    .customHttpHeaders(Map.ofEntries(
                        Map.entry("header-1", "value-1"),
                        Map.entry("header-2", "value-2")
                    ))
                    .proxy("proxy-key")
                    .secret("some-secret")
                    .url("http://tempurl.org/webhook")
                    .build())
                .key("release-bundle-webhook")
                .build());
    
        }
    }
    
    resources:
      release-bundle-webhook:
        type: artifactory:ReleaseBundleWebhook
        properties:
          criteria:
            anyReleaseBundle: false
            excludePatterns:
              - bar/**
            includePatterns:
              - foo/**
            registeredReleaseBundleNames:
              - bundle-name
          eventTypes:
            - created
            - signed
            - deleted
          handlers:
            - customHttpHeaders:
                header-1: value-1
                header-2: value-2
              proxy: proxy-key
              secret: some-secret
              url: http://tempurl.org/webhook
          key: release-bundle-webhook
    

    Create ReleaseBundleWebhook Resource

    new ReleaseBundleWebhook(name: string, args: ReleaseBundleWebhookArgs, opts?: CustomResourceOptions);
    @overload
    def ReleaseBundleWebhook(resource_name: str,
                             opts: Optional[ResourceOptions] = None,
                             criteria: Optional[ReleaseBundleWebhookCriteriaArgs] = None,
                             description: Optional[str] = None,
                             enabled: Optional[bool] = None,
                             event_types: Optional[Sequence[str]] = None,
                             handlers: Optional[Sequence[ReleaseBundleWebhookHandlerArgs]] = None,
                             key: Optional[str] = None)
    @overload
    def ReleaseBundleWebhook(resource_name: str,
                             args: ReleaseBundleWebhookArgs,
                             opts: Optional[ResourceOptions] = None)
    func NewReleaseBundleWebhook(ctx *Context, name string, args ReleaseBundleWebhookArgs, opts ...ResourceOption) (*ReleaseBundleWebhook, error)
    public ReleaseBundleWebhook(string name, ReleaseBundleWebhookArgs args, CustomResourceOptions? opts = null)
    public ReleaseBundleWebhook(String name, ReleaseBundleWebhookArgs args)
    public ReleaseBundleWebhook(String name, ReleaseBundleWebhookArgs args, CustomResourceOptions options)
    
    type: artifactory:ReleaseBundleWebhook
    properties: # The arguments to resource properties.
    options: # Bag of options to control resource's behavior.
    
    
    name string
    The unique name of the resource.
    args ReleaseBundleWebhookArgs
    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 ReleaseBundleWebhookArgs
    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 ReleaseBundleWebhookArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args ReleaseBundleWebhookArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args ReleaseBundleWebhookArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    ReleaseBundleWebhook 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 ReleaseBundleWebhook resource accepts the following input properties:

    Criteria ReleaseBundleWebhookCriteria
    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: created, signed, deleted.
    Handlers List<ReleaseBundleWebhookHandler>
    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 ReleaseBundleWebhookCriteriaArgs
    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: created, signed, deleted.
    Handlers []ReleaseBundleWebhookHandlerArgs
    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 ReleaseBundleWebhookCriteria
    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: created, signed, deleted.
    handlers List<ReleaseBundleWebhookHandler>
    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 ReleaseBundleWebhookCriteria
    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: created, signed, deleted.
    handlers ReleaseBundleWebhookHandler[]
    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 ReleaseBundleWebhookCriteriaArgs
    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: created, signed, deleted.
    handlers Sequence[ReleaseBundleWebhookHandlerArgs]
    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: created, signed, deleted.
    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 ReleaseBundleWebhook 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 ReleaseBundleWebhook Resource

    Get an existing ReleaseBundleWebhook 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?: ReleaseBundleWebhookState, opts?: CustomResourceOptions): ReleaseBundleWebhook
    @staticmethod
    def get(resource_name: str,
            id: str,
            opts: Optional[ResourceOptions] = None,
            criteria: Optional[ReleaseBundleWebhookCriteriaArgs] = None,
            description: Optional[str] = None,
            enabled: Optional[bool] = None,
            event_types: Optional[Sequence[str]] = None,
            handlers: Optional[Sequence[ReleaseBundleWebhookHandlerArgs]] = None,
            key: Optional[str] = None) -> ReleaseBundleWebhook
    func GetReleaseBundleWebhook(ctx *Context, name string, id IDInput, state *ReleaseBundleWebhookState, opts ...ResourceOption) (*ReleaseBundleWebhook, error)
    public static ReleaseBundleWebhook Get(string name, Input<string> id, ReleaseBundleWebhookState? state, CustomResourceOptions? opts = null)
    public static ReleaseBundleWebhook get(String name, Output<String> id, ReleaseBundleWebhookState 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 ReleaseBundleWebhookCriteria
    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: created, signed, deleted.
    Handlers List<ReleaseBundleWebhookHandler>
    At least one is required.
    Key string
    The identity key of the webhook. Must be between 2 and 200 characters. Cannot contain spaces.
    Criteria ReleaseBundleWebhookCriteriaArgs
    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: created, signed, deleted.
    Handlers []ReleaseBundleWebhookHandlerArgs
    At least one is required.
    Key string
    The identity key of the webhook. Must be between 2 and 200 characters. Cannot contain spaces.
    criteria ReleaseBundleWebhookCriteria
    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: created, signed, deleted.
    handlers List<ReleaseBundleWebhookHandler>
    At least one is required.
    key String
    The identity key of the webhook. Must be between 2 and 200 characters. Cannot contain spaces.
    criteria ReleaseBundleWebhookCriteria
    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: created, signed, deleted.
    handlers ReleaseBundleWebhookHandler[]
    At least one is required.
    key string
    The identity key of the webhook. Must be between 2 and 200 characters. Cannot contain spaces.
    criteria ReleaseBundleWebhookCriteriaArgs
    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: created, signed, deleted.
    handlers Sequence[ReleaseBundleWebhookHandlerArgs]
    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: created, signed, deleted.
    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

    ReleaseBundleWebhookCriteria, ReleaseBundleWebhookCriteriaArgs

    AnyReleaseBundle bool
    Trigger on any release bundle.
    RegisteredReleaseBundleNames List<string>
    Trigger on this list of release bundle names.
    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/**".
    AnyReleaseBundle bool
    Trigger on any release bundle.
    RegisteredReleaseBundleNames []string
    Trigger on this list of release bundle names.
    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/**".
    anyReleaseBundle Boolean
    Trigger on any release bundle.
    registeredReleaseBundleNames List<String>
    Trigger on this list of release bundle names.
    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/**".
    anyReleaseBundle boolean
    Trigger on any release bundle.
    registeredReleaseBundleNames string[]
    Trigger on this list of release bundle names.
    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_release_bundle bool
    Trigger on any release bundle.
    registered_release_bundle_names Sequence[str]
    Trigger on this list of release bundle names.
    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/**".
    anyReleaseBundle Boolean
    Trigger on any release bundle.
    registeredReleaseBundleNames List<String>
    Trigger on this list of release bundle names.
    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/**".

    ReleaseBundleWebhookHandler, ReleaseBundleWebhookHandlerArgs

    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.
    UseSecretForSigning bool
    When set to true, the secret will be used to sign the event payload, allowing the target to validate that the payload content has not been changed and will not be passed as part of the event. If left unset or set to false, the secret is passed through the X-JFrog-Event-Auth HTTP 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.
    UseSecretForSigning bool
    When set to true, the secret will be used to sign the event payload, allowing the target to validate that the payload content has not been changed and will not be passed as part of the event. If left unset or set to false, the secret is passed through the X-JFrog-Event-Auth HTTP 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.
    useSecretForSigning Boolean
    When set to true, the secret will be used to sign the event payload, allowing the target to validate that the payload content has not been changed and will not be passed as part of the event. If left unset or set to false, the secret is passed through the X-JFrog-Event-Auth HTTP 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.
    useSecretForSigning boolean
    When set to true, the secret will be used to sign the event payload, allowing the target to validate that the payload content has not been changed and will not be passed as part of the event. If left unset or set to false, the secret is passed through the X-JFrog-Event-Auth HTTP 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.
    use_secret_for_signing bool
    When set to true, the secret will be used to sign the event payload, allowing the target to validate that the payload content has not been changed and will not be passed as part of the event. If left unset or set to false, the secret is passed through the X-JFrog-Event-Auth HTTP 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.
    useSecretForSigning Boolean
    When set to true, the secret will be used to sign the event payload, allowing the target to validate that the payload content has not been changed and will not be passed as part of the event. If left unset or set to false, the secret is passed through the X-JFrog-Event-Auth HTTP 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 v6.4.2 published on Thursday, Mar 28, 2024 by Pulumi