artifactory.DestinationWebhook
Explore with Pulumi AI
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 destination_webhook = new artifactory.DestinationWebhook("destination-webhook", {
key: "destination-webhook",
eventTypes: [
"received",
"delete_started",
"delete_completed",
"delete_failed",
],
criteria: {
anyReleaseBundle: false,
registeredReleaseBundleNames: ["bundle-name"],
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",
},
}],
});
import pulumi
import pulumi_artifactory as artifactory
destination_webhook = artifactory.DestinationWebhook("destination-webhook",
key="destination-webhook",
event_types=[
"received",
"delete_started",
"delete_completed",
"delete_failed",
],
criteria={
"any_release_bundle": False,
"registered_release_bundle_names": ["bundle-name"],
"include_patterns": ["foo/**"],
"exclude_patterns": ["bar/**"],
},
handlers=[{
"url": "http://tempurl.org/webhook",
"secret": "some-secret",
"proxy": "proxy-key",
"custom_http_headers": {
"header_1": "value-1",
"header_2": "value-2",
},
}])
package main
import (
"github.com/pulumi/pulumi-artifactory/sdk/v8/go/artifactory"
"github.com/pulumi/pulumi/sdk/v3/go/pulumi"
)
func main() {
pulumi.Run(func(ctx *pulumi.Context) error {
_, err := artifactory.NewDestinationWebhook(ctx, "destination-webhook", &artifactory.DestinationWebhookArgs{
Key: pulumi.String("destination-webhook"),
EventTypes: pulumi.StringArray{
pulumi.String("received"),
pulumi.String("delete_started"),
pulumi.String("delete_completed"),
pulumi.String("delete_failed"),
},
Criteria: &artifactory.DestinationWebhookCriteriaArgs{
AnyReleaseBundle: pulumi.Bool(false),
RegisteredReleaseBundleNames: pulumi.StringArray{
pulumi.String("bundle-name"),
},
IncludePatterns: pulumi.StringArray{
pulumi.String("foo/**"),
},
ExcludePatterns: pulumi.StringArray{
pulumi.String("bar/**"),
},
},
Handlers: artifactory.DestinationWebhookHandlerArray{
&artifactory.DestinationWebhookHandlerArgs{
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"),
},
},
},
})
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 destination_webhook = new Artifactory.DestinationWebhook("destination-webhook", new()
{
Key = "destination-webhook",
EventTypes = new[]
{
"received",
"delete_started",
"delete_completed",
"delete_failed",
},
Criteria = new Artifactory.Inputs.DestinationWebhookCriteriaArgs
{
AnyReleaseBundle = false,
RegisteredReleaseBundleNames = new[]
{
"bundle-name",
},
IncludePatterns = new[]
{
"foo/**",
},
ExcludePatterns = new[]
{
"bar/**",
},
},
Handlers = new[]
{
new Artifactory.Inputs.DestinationWebhookHandlerArgs
{
Url = "http://tempurl.org/webhook",
Secret = "some-secret",
Proxy = "proxy-key",
CustomHttpHeaders =
{
{ "header-1", "value-1" },
{ "header-2", "value-2" },
},
},
},
});
});
package generated_program;
import com.pulumi.Context;
import com.pulumi.Pulumi;
import com.pulumi.core.Output;
import com.pulumi.artifactory.DestinationWebhook;
import com.pulumi.artifactory.DestinationWebhookArgs;
import com.pulumi.artifactory.inputs.DestinationWebhookCriteriaArgs;
import com.pulumi.artifactory.inputs.DestinationWebhookHandlerArgs;
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 destination_webhook = new DestinationWebhook("destination-webhook", DestinationWebhookArgs.builder()
.key("destination-webhook")
.eventTypes(
"received",
"delete_started",
"delete_completed",
"delete_failed")
.criteria(DestinationWebhookCriteriaArgs.builder()
.anyReleaseBundle(false)
.registeredReleaseBundleNames("bundle-name")
.includePatterns("foo/**")
.excludePatterns("bar/**")
.build())
.handlers(DestinationWebhookHandlerArgs.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());
}
}
resources:
destination-webhook:
type: artifactory:DestinationWebhook
properties:
key: destination-webhook
eventTypes:
- received
- delete_started
- delete_completed
- delete_failed
criteria:
anyReleaseBundle: false
registeredReleaseBundleNames:
- bundle-name
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
Create DestinationWebhook Resource
Resources are created with functions called constructors. To learn more about declaring and configuring resources, see Resources.
Constructor syntax
new DestinationWebhook(name: string, args: DestinationWebhookArgs, opts?: CustomResourceOptions);
@overload
def DestinationWebhook(resource_name: str,
args: DestinationWebhookArgs,
opts: Optional[ResourceOptions] = None)
@overload
def DestinationWebhook(resource_name: str,
opts: Optional[ResourceOptions] = None,
criteria: Optional[DestinationWebhookCriteriaArgs] = None,
event_types: Optional[Sequence[str]] = None,
handlers: Optional[Sequence[DestinationWebhookHandlerArgs]] = None,
key: Optional[str] = None,
description: Optional[str] = None,
enabled: Optional[bool] = None)
func NewDestinationWebhook(ctx *Context, name string, args DestinationWebhookArgs, opts ...ResourceOption) (*DestinationWebhook, error)
public DestinationWebhook(string name, DestinationWebhookArgs args, CustomResourceOptions? opts = null)
public DestinationWebhook(String name, DestinationWebhookArgs args)
public DestinationWebhook(String name, DestinationWebhookArgs args, CustomResourceOptions options)
type: artifactory:DestinationWebhook
properties: # The arguments to resource properties.
options: # Bag of options to control resource's behavior.
Parameters
- name string
- The unique name of the resource.
- args DestinationWebhookArgs
- 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 DestinationWebhookArgs
- 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 DestinationWebhookArgs
- The arguments to resource properties.
- opts ResourceOption
- Bag of options to control resource's behavior.
- name string
- The unique name of the resource.
- args DestinationWebhookArgs
- The arguments to resource properties.
- opts CustomResourceOptions
- Bag of options to control resource's behavior.
- name String
- The unique name of the resource.
- args DestinationWebhookArgs
- The arguments to resource properties.
- options CustomResourceOptions
- Bag of options to control resource's behavior.
Constructor example
The following reference example uses placeholder values for all input properties.
var destinationWebhookResource = new Artifactory.DestinationWebhook("destinationWebhookResource", new()
{
Criteria = new Artifactory.Inputs.DestinationWebhookCriteriaArgs
{
AnyReleaseBundle = false,
RegisteredReleaseBundleNames = new[]
{
"string",
},
ExcludePatterns = new[]
{
"string",
},
IncludePatterns = new[]
{
"string",
},
},
EventTypes = new[]
{
"string",
},
Handlers = new[]
{
new Artifactory.Inputs.DestinationWebhookHandlerArgs
{
Url = "string",
CustomHttpHeaders =
{
{ "string", "string" },
},
Proxy = "string",
Secret = "string",
UseSecretForSigning = false,
},
},
Key = "string",
Description = "string",
Enabled = false,
});
example, err := artifactory.NewDestinationWebhook(ctx, "destinationWebhookResource", &artifactory.DestinationWebhookArgs{
Criteria: &artifactory.DestinationWebhookCriteriaArgs{
AnyReleaseBundle: pulumi.Bool(false),
RegisteredReleaseBundleNames: pulumi.StringArray{
pulumi.String("string"),
},
ExcludePatterns: pulumi.StringArray{
pulumi.String("string"),
},
IncludePatterns: pulumi.StringArray{
pulumi.String("string"),
},
},
EventTypes: pulumi.StringArray{
pulumi.String("string"),
},
Handlers: artifactory.DestinationWebhookHandlerArray{
&artifactory.DestinationWebhookHandlerArgs{
Url: pulumi.String("string"),
CustomHttpHeaders: pulumi.StringMap{
"string": pulumi.String("string"),
},
Proxy: pulumi.String("string"),
Secret: pulumi.String("string"),
UseSecretForSigning: pulumi.Bool(false),
},
},
Key: pulumi.String("string"),
Description: pulumi.String("string"),
Enabled: pulumi.Bool(false),
})
var destinationWebhookResource = new DestinationWebhook("destinationWebhookResource", DestinationWebhookArgs.builder()
.criteria(DestinationWebhookCriteriaArgs.builder()
.anyReleaseBundle(false)
.registeredReleaseBundleNames("string")
.excludePatterns("string")
.includePatterns("string")
.build())
.eventTypes("string")
.handlers(DestinationWebhookHandlerArgs.builder()
.url("string")
.customHttpHeaders(Map.of("string", "string"))
.proxy("string")
.secret("string")
.useSecretForSigning(false)
.build())
.key("string")
.description("string")
.enabled(false)
.build());
destination_webhook_resource = artifactory.DestinationWebhook("destinationWebhookResource",
criteria=artifactory.DestinationWebhookCriteriaArgs(
any_release_bundle=False,
registered_release_bundle_names=["string"],
exclude_patterns=["string"],
include_patterns=["string"],
),
event_types=["string"],
handlers=[artifactory.DestinationWebhookHandlerArgs(
url="string",
custom_http_headers={
"string": "string",
},
proxy="string",
secret="string",
use_secret_for_signing=False,
)],
key="string",
description="string",
enabled=False)
const destinationWebhookResource = new artifactory.DestinationWebhook("destinationWebhookResource", {
criteria: {
anyReleaseBundle: false,
registeredReleaseBundleNames: ["string"],
excludePatterns: ["string"],
includePatterns: ["string"],
},
eventTypes: ["string"],
handlers: [{
url: "string",
customHttpHeaders: {
string: "string",
},
proxy: "string",
secret: "string",
useSecretForSigning: false,
}],
key: "string",
description: "string",
enabled: false,
});
type: artifactory:DestinationWebhook
properties:
criteria:
anyReleaseBundle: false
excludePatterns:
- string
includePatterns:
- string
registeredReleaseBundleNames:
- string
description: string
enabled: false
eventTypes:
- string
handlers:
- customHttpHeaders:
string: string
proxy: string
secret: string
url: string
useSecretForSigning: false
key: string
DestinationWebhook 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 DestinationWebhook resource accepts the following input properties:
- Criteria
Destination
Webhook Criteria - Specifies where the webhook will be applied on which repositories.
- Event
Types List<string> - List of Events in Artifactory, Distribution, Release Bundle that function as the event trigger for the Webhook. Allow values:
received
,delete_started
,delete_completed
,delete_failed
- Handlers
List<Destination
Webhook Handler> - 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
Destination
Webhook Criteria Args - Specifies where the webhook will be applied on which repositories.
- Event
Types []string - List of Events in Artifactory, Distribution, Release Bundle that function as the event trigger for the Webhook. Allow values:
received
,delete_started
,delete_completed
,delete_failed
- Handlers
[]Destination
Webhook Handler Args - 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
Destination
Webhook Criteria - Specifies where the webhook will be applied on which repositories.
- event
Types List<String> - List of Events in Artifactory, Distribution, Release Bundle that function as the event trigger for the Webhook. Allow values:
received
,delete_started
,delete_completed
,delete_failed
- handlers
List<Destination
Webhook Handler> - 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
Destination
Webhook Criteria - Specifies where the webhook will be applied on which repositories.
- event
Types string[] - List of Events in Artifactory, Distribution, Release Bundle that function as the event trigger for the Webhook. Allow values:
received
,delete_started
,delete_completed
,delete_failed
- handlers
Destination
Webhook Handler[] - 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
Destination
Webhook Criteria Args - 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:
received
,delete_started
,delete_completed
,delete_failed
- handlers
Sequence[Destination
Webhook Handler Args] - 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.
- event
Types List<String> - List of Events in Artifactory, Distribution, Release Bundle that function as the event trigger for the Webhook. Allow values:
received
,delete_started
,delete_completed
,delete_failed
- 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 DestinationWebhook 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 DestinationWebhook Resource
Get an existing DestinationWebhook 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?: DestinationWebhookState, opts?: CustomResourceOptions): DestinationWebhook
@staticmethod
def get(resource_name: str,
id: str,
opts: Optional[ResourceOptions] = None,
criteria: Optional[DestinationWebhookCriteriaArgs] = None,
description: Optional[str] = None,
enabled: Optional[bool] = None,
event_types: Optional[Sequence[str]] = None,
handlers: Optional[Sequence[DestinationWebhookHandlerArgs]] = None,
key: Optional[str] = None) -> DestinationWebhook
func GetDestinationWebhook(ctx *Context, name string, id IDInput, state *DestinationWebhookState, opts ...ResourceOption) (*DestinationWebhook, error)
public static DestinationWebhook Get(string name, Input<string> id, DestinationWebhookState? state, CustomResourceOptions? opts = null)
public static DestinationWebhook get(String name, Output<String> id, DestinationWebhookState 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.
- Criteria
Destination
Webhook Criteria - 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
- Event
Types List<string> - List of Events in Artifactory, Distribution, Release Bundle that function as the event trigger for the Webhook. Allow values:
received
,delete_started
,delete_completed
,delete_failed
- Handlers
List<Destination
Webhook Handler> - At least one is required.
- Key string
- The identity key of the webhook. Must be between 2 and 200 characters. Cannot contain spaces.
- Criteria
Destination
Webhook Criteria Args - 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
- Event
Types []string - List of Events in Artifactory, Distribution, Release Bundle that function as the event trigger for the Webhook. Allow values:
received
,delete_started
,delete_completed
,delete_failed
- Handlers
[]Destination
Webhook Handler Args - At least one is required.
- Key string
- The identity key of the webhook. Must be between 2 and 200 characters. Cannot contain spaces.
- criteria
Destination
Webhook Criteria - 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
- event
Types List<String> - List of Events in Artifactory, Distribution, Release Bundle that function as the event trigger for the Webhook. Allow values:
received
,delete_started
,delete_completed
,delete_failed
- handlers
List<Destination
Webhook Handler> - At least one is required.
- key String
- The identity key of the webhook. Must be between 2 and 200 characters. Cannot contain spaces.
- criteria
Destination
Webhook Criteria - 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
- event
Types string[] - List of Events in Artifactory, Distribution, Release Bundle that function as the event trigger for the Webhook. Allow values:
received
,delete_started
,delete_completed
,delete_failed
- handlers
Destination
Webhook Handler[] - At least one is required.
- key string
- The identity key of the webhook. Must be between 2 and 200 characters. Cannot contain spaces.
- criteria
Destination
Webhook Criteria Args - 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:
received
,delete_started
,delete_completed
,delete_failed
- handlers
Sequence[Destination
Webhook Handler Args] - 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
- event
Types List<String> - List of Events in Artifactory, Distribution, Release Bundle that function as the event trigger for the Webhook. Allow values:
received
,delete_started
,delete_completed
,delete_failed
- 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
DestinationWebhookCriteria, DestinationWebhookCriteriaArgs
- Any
Release boolBundle - Trigger on any release bundle
- Registered
Release List<string>Bundle Names - Trigger on this list of release bundle names
- Exclude
Patterns 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/**
- Include
Patterns 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/**
- Any
Release boolBundle - Trigger on any release bundle
- Registered
Release []stringBundle Names - Trigger on this list of release bundle names
- Exclude
Patterns []string - 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 []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 BooleanBundle - Trigger on any release bundle
- registered
Release List<String>Bundle Names - Trigger on this list of release bundle names
- exclude
Patterns 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/**
- include
Patterns 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/**
- any
Release booleanBundle - Trigger on any release bundle
- registered
Release string[]Bundle Names - Trigger on this list of release bundle names
- exclude
Patterns string[] - 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 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_ boolbundle - Trigger on any release bundle
- registered_
release_ Sequence[str]bundle_ names - 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/**
- any
Release BooleanBundle - Trigger on any release bundle
- registered
Release List<String>Bundle Names - Trigger on this list of release bundle names
- exclude
Patterns 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/**
- include
Patterns 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/**
DestinationWebhookHandler, DestinationWebhookHandlerArgs
- Url string
- Specifies the URL that the Webhook invokes. This will be the URL that Artifactory will send an HTTP POST request to.
- Custom
Http Dictionary<string, string>Headers - 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. - Use
Secret boolFor Signing - 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 tofalse
, the secret is passed through theX-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.
- Custom
Http map[string]stringHeaders - 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. - Use
Secret boolFor Signing - 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 tofalse
, the secret is passed through theX-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.
- custom
Http Map<String,String>Headers - 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. - use
Secret BooleanFor Signing - 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 tofalse
, the secret is passed through theX-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.
- custom
Http {[key: string]: string}Headers - 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. - use
Secret booleanFor Signing - 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 tofalse
, the secret is passed through theX-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_ Mapping[str, str]headers - 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_ boolfor_ signing - 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 tofalse
, the secret is passed through theX-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.
- custom
Http Map<String>Headers - 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. - use
Secret BooleanFor Signing - 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 tofalse
, the secret is passed through theX-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.