@pulumiverse/vercel 1.1.2 → 1.9.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dnsRecord.d.ts +21 -5
- package/dnsRecord.js +11 -5
- package/dnsRecord.js.map +1 -1
- package/edgeConfig.d.ts +111 -0
- package/edgeConfig.js +102 -0
- package/edgeConfig.js.map +1 -0
- package/edgeConfigSchema.d.ts +85 -0
- package/edgeConfigSchema.js +79 -0
- package/edgeConfigSchema.js.map +1 -0
- package/edgeConfigToken.d.ts +145 -0
- package/edgeConfigToken.js +120 -0
- package/edgeConfigToken.js.map +1 -0
- package/getDeployment.d.ts +94 -0
- package/getDeployment.js +52 -0
- package/getDeployment.js.map +1 -0
- package/getEdgeConfig.d.ts +78 -0
- package/getEdgeConfig.js +52 -0
- package/getEdgeConfig.js.map +1 -0
- package/getEdgeConfigSchema.d.ts +74 -0
- package/getEdgeConfigSchema.js +48 -0
- package/getEdgeConfigSchema.js.map +1 -0
- package/getEdgeConfigToken.d.ts +104 -0
- package/getEdgeConfigToken.js +59 -0
- package/getEdgeConfigToken.js.map +1 -0
- package/getEndpointVerification.d.ts +62 -0
- package/getEndpointVerification.js +44 -0
- package/getEndpointVerification.js.map +1 -0
- package/getLogDrain.d.ts +116 -0
- package/getLogDrain.js +57 -0
- package/getLogDrain.js.map +1 -0
- package/getProject.d.ts +48 -0
- package/getProject.js.map +1 -1
- package/getSharedEnvironmentVariable.d.ts +128 -0
- package/getSharedEnvironmentVariable.js +73 -0
- package/getSharedEnvironmentVariable.js.map +1 -0
- package/index.d.ts +36 -0
- package/index.js +47 -1
- package/index.js.map +1 -1
- package/logDrain.d.ts +206 -0
- package/logDrain.js +135 -0
- package/logDrain.js.map +1 -0
- package/package.json +1 -1
- package/project.d.ts +137 -5
- package/project.js +27 -5
- package/project.js.map +1 -1
- package/projectDomain.d.ts +5 -5
- package/projectDomain.js +5 -5
- package/projectEnvironmentVariable.d.ts +14 -10
- package/projectEnvironmentVariable.js +14 -10
- package/projectEnvironmentVariable.js.map +1 -1
- package/sharedEnvironmentVariable.d.ts +3 -3
- package/sharedEnvironmentVariable.js +3 -3
- package/types/input.d.ts +33 -1
- package/types/output.d.ts +43 -4
- package/webhook.d.ts +127 -0
- package/webhook.js +100 -0
- package/webhook.js.map +1 -0
package/types/output.d.ts
CHANGED
|
@@ -65,6 +65,16 @@ export interface GetProjectEnvironment {
|
|
|
65
65
|
*/
|
|
66
66
|
value: string;
|
|
67
67
|
}
|
|
68
|
+
export interface GetProjectGitComments {
|
|
69
|
+
/**
|
|
70
|
+
* Whether Commit comments are enabled
|
|
71
|
+
*/
|
|
72
|
+
onCommit: boolean;
|
|
73
|
+
/**
|
|
74
|
+
* Whether Pull Request comments are enabled
|
|
75
|
+
*/
|
|
76
|
+
onPullRequest: boolean;
|
|
77
|
+
}
|
|
68
78
|
export interface GetProjectGitRepository {
|
|
69
79
|
/**
|
|
70
80
|
* By default, every commit pushed to the main branch will trigger a Production Deployment instead of the usual Preview Deployment. You can switch to a different branch here.
|
|
@@ -101,9 +111,6 @@ export interface GetProjectTrustedIps {
|
|
|
101
111
|
}
|
|
102
112
|
export interface GetProjectTrustedIpsAddress {
|
|
103
113
|
note: string;
|
|
104
|
-
/**
|
|
105
|
-
* The value of the environment variable.
|
|
106
|
-
*/
|
|
107
114
|
value: string;
|
|
108
115
|
}
|
|
109
116
|
export interface GetProjectVercelAuthentication {
|
|
@@ -138,7 +145,21 @@ export interface ProjectEnvironment {
|
|
|
138
145
|
*/
|
|
139
146
|
value: string;
|
|
140
147
|
}
|
|
148
|
+
export interface ProjectGitComments {
|
|
149
|
+
/**
|
|
150
|
+
* Whether Commit comments are enabled
|
|
151
|
+
*/
|
|
152
|
+
onCommit: boolean;
|
|
153
|
+
/**
|
|
154
|
+
* Whether Pull Request comments are enabled
|
|
155
|
+
*/
|
|
156
|
+
onPullRequest: boolean;
|
|
157
|
+
}
|
|
141
158
|
export interface ProjectGitRepository {
|
|
159
|
+
/**
|
|
160
|
+
* Deploy hooks are unique URLs that allow you to trigger a deployment of a given branch. See https://vercel.com/docs/deployments/deploy-hooks for full information.
|
|
161
|
+
*/
|
|
162
|
+
deployHooks?: outputs.ProjectGitRepositoryDeployHook[];
|
|
142
163
|
/**
|
|
143
164
|
* By default, every commit pushed to the main branch will trigger a Production Deployment instead of the usual Preview Deployment. You can switch to a different branch here.
|
|
144
165
|
*/
|
|
@@ -152,6 +173,24 @@ export interface ProjectGitRepository {
|
|
|
152
173
|
*/
|
|
153
174
|
type: string;
|
|
154
175
|
}
|
|
176
|
+
export interface ProjectGitRepositoryDeployHook {
|
|
177
|
+
/**
|
|
178
|
+
* The ID of the deploy hook.
|
|
179
|
+
*/
|
|
180
|
+
id: string;
|
|
181
|
+
/**
|
|
182
|
+
* The name of the deploy hook.
|
|
183
|
+
*/
|
|
184
|
+
name: string;
|
|
185
|
+
/**
|
|
186
|
+
* The branch or commit hash that should be deployed.
|
|
187
|
+
*/
|
|
188
|
+
ref: string;
|
|
189
|
+
/**
|
|
190
|
+
* A URL that, when a POST request is made to, will trigger a new deployment.
|
|
191
|
+
*/
|
|
192
|
+
url: string;
|
|
193
|
+
}
|
|
155
194
|
export interface ProjectPasswordProtection {
|
|
156
195
|
/**
|
|
157
196
|
* The deployment environment to protect. Must be one of `standardProtection`, `allDeployments`, or `onlyPreviewDeployments`.
|
|
@@ -182,7 +221,7 @@ export interface ProjectTrustedIpsAddress {
|
|
|
182
221
|
*/
|
|
183
222
|
note?: string;
|
|
184
223
|
/**
|
|
185
|
-
* The
|
|
224
|
+
* The address or CIDR range that can access deployments.
|
|
186
225
|
*/
|
|
187
226
|
value: string;
|
|
188
227
|
}
|
package/webhook.d.ts
ADDED
|
@@ -0,0 +1,127 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* A webhook is a trigger-based HTTP endpoint configured to receive HTTP POST requests through events.
|
|
4
|
+
*
|
|
5
|
+
* When an event happens, a webhook is sent to a third-party app, which can then take appropriate action.
|
|
6
|
+
*
|
|
7
|
+
* > Only Pro and Enterprise teams are able to configure these webhooks at the account level.
|
|
8
|
+
*
|
|
9
|
+
* ## Example Usage
|
|
10
|
+
*
|
|
11
|
+
* ```typescript
|
|
12
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
13
|
+
* import * as vercel from "@pulumiverse/vercel";
|
|
14
|
+
*
|
|
15
|
+
* const example = new vercel.Project("example", {});
|
|
16
|
+
* const example2 = new vercel.Project("example2", {});
|
|
17
|
+
* const withProjectIds = new vercel.Webhook("withProjectIds", {
|
|
18
|
+
* events: [
|
|
19
|
+
* "deployment.created",
|
|
20
|
+
* "deployment.succeeded",
|
|
21
|
+
* ],
|
|
22
|
+
* endpoint: "https://example.com/endpoint",
|
|
23
|
+
* projectIds: [
|
|
24
|
+
* example.id,
|
|
25
|
+
* example2.id,
|
|
26
|
+
* ],
|
|
27
|
+
* });
|
|
28
|
+
* const withoutProjectIds = new vercel.Webhook("withoutProjectIds", {
|
|
29
|
+
* events: [
|
|
30
|
+
* "deployment.created",
|
|
31
|
+
* "deployment.succeeded",
|
|
32
|
+
* ],
|
|
33
|
+
* endpoint: "https://example.com/endpoint",
|
|
34
|
+
* });
|
|
35
|
+
* ```
|
|
36
|
+
*/
|
|
37
|
+
export declare class Webhook extends pulumi.CustomResource {
|
|
38
|
+
/**
|
|
39
|
+
* Get an existing Webhook resource's state with the given name, ID, and optional extra
|
|
40
|
+
* properties used to qualify the lookup.
|
|
41
|
+
*
|
|
42
|
+
* @param name The _unique_ name of the resulting resource.
|
|
43
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
44
|
+
* @param state Any extra arguments used during the lookup.
|
|
45
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
46
|
+
*/
|
|
47
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: WebhookState, opts?: pulumi.CustomResourceOptions): Webhook;
|
|
48
|
+
/**
|
|
49
|
+
* Returns true if the given object is an instance of Webhook. This is designed to work even
|
|
50
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
51
|
+
*/
|
|
52
|
+
static isInstance(obj: any): obj is Webhook;
|
|
53
|
+
/**
|
|
54
|
+
* Webhooks events will be sent as POST requests to this URL.
|
|
55
|
+
*/
|
|
56
|
+
readonly endpoint: pulumi.Output<string>;
|
|
57
|
+
/**
|
|
58
|
+
* A list of the events the webhook will listen to. At least one must be present.
|
|
59
|
+
*/
|
|
60
|
+
readonly events: pulumi.Output<string[]>;
|
|
61
|
+
/**
|
|
62
|
+
* A list of project IDs that the webhook should be associated with. These projects should send events to the specified endpoint.
|
|
63
|
+
*/
|
|
64
|
+
readonly projectIds: pulumi.Output<string[] | undefined>;
|
|
65
|
+
/**
|
|
66
|
+
* A secret value which will be provided in the `x-vercel-signature` header and can be used to verify the authenticity of the webhook. See https://vercel.com/docs/observability/webhooks-overview/webhooks-api#securing-webhooks for further details.
|
|
67
|
+
*/
|
|
68
|
+
readonly secret: pulumi.Output<string>;
|
|
69
|
+
/**
|
|
70
|
+
* The ID of the team the Webhook should exist under. Required when configuring a team resource if a default team has not been set in the provider.
|
|
71
|
+
*/
|
|
72
|
+
readonly teamId: pulumi.Output<string>;
|
|
73
|
+
/**
|
|
74
|
+
* Create a Webhook resource with the given unique name, arguments, and options.
|
|
75
|
+
*
|
|
76
|
+
* @param name The _unique_ name of the resource.
|
|
77
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
78
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
79
|
+
*/
|
|
80
|
+
constructor(name: string, args: WebhookArgs, opts?: pulumi.CustomResourceOptions);
|
|
81
|
+
}
|
|
82
|
+
/**
|
|
83
|
+
* Input properties used for looking up and filtering Webhook resources.
|
|
84
|
+
*/
|
|
85
|
+
export interface WebhookState {
|
|
86
|
+
/**
|
|
87
|
+
* Webhooks events will be sent as POST requests to this URL.
|
|
88
|
+
*/
|
|
89
|
+
endpoint?: pulumi.Input<string>;
|
|
90
|
+
/**
|
|
91
|
+
* A list of the events the webhook will listen to. At least one must be present.
|
|
92
|
+
*/
|
|
93
|
+
events?: pulumi.Input<pulumi.Input<string>[]>;
|
|
94
|
+
/**
|
|
95
|
+
* A list of project IDs that the webhook should be associated with. These projects should send events to the specified endpoint.
|
|
96
|
+
*/
|
|
97
|
+
projectIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
98
|
+
/**
|
|
99
|
+
* A secret value which will be provided in the `x-vercel-signature` header and can be used to verify the authenticity of the webhook. See https://vercel.com/docs/observability/webhooks-overview/webhooks-api#securing-webhooks for further details.
|
|
100
|
+
*/
|
|
101
|
+
secret?: pulumi.Input<string>;
|
|
102
|
+
/**
|
|
103
|
+
* The ID of the team the Webhook should exist under. Required when configuring a team resource if a default team has not been set in the provider.
|
|
104
|
+
*/
|
|
105
|
+
teamId?: pulumi.Input<string>;
|
|
106
|
+
}
|
|
107
|
+
/**
|
|
108
|
+
* The set of arguments for constructing a Webhook resource.
|
|
109
|
+
*/
|
|
110
|
+
export interface WebhookArgs {
|
|
111
|
+
/**
|
|
112
|
+
* Webhooks events will be sent as POST requests to this URL.
|
|
113
|
+
*/
|
|
114
|
+
endpoint: pulumi.Input<string>;
|
|
115
|
+
/**
|
|
116
|
+
* A list of the events the webhook will listen to. At least one must be present.
|
|
117
|
+
*/
|
|
118
|
+
events: pulumi.Input<pulumi.Input<string>[]>;
|
|
119
|
+
/**
|
|
120
|
+
* A list of project IDs that the webhook should be associated with. These projects should send events to the specified endpoint.
|
|
121
|
+
*/
|
|
122
|
+
projectIds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
123
|
+
/**
|
|
124
|
+
* The ID of the team the Webhook should exist under. Required when configuring a team resource if a default team has not been set in the provider.
|
|
125
|
+
*/
|
|
126
|
+
teamId?: pulumi.Input<string>;
|
|
127
|
+
}
|
package/webhook.js
ADDED
|
@@ -0,0 +1,100 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
// *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
// *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
|
+
exports.Webhook = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* A webhook is a trigger-based HTTP endpoint configured to receive HTTP POST requests through events.
|
|
10
|
+
*
|
|
11
|
+
* When an event happens, a webhook is sent to a third-party app, which can then take appropriate action.
|
|
12
|
+
*
|
|
13
|
+
* > Only Pro and Enterprise teams are able to configure these webhooks at the account level.
|
|
14
|
+
*
|
|
15
|
+
* ## Example Usage
|
|
16
|
+
*
|
|
17
|
+
* ```typescript
|
|
18
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
19
|
+
* import * as vercel from "@pulumiverse/vercel";
|
|
20
|
+
*
|
|
21
|
+
* const example = new vercel.Project("example", {});
|
|
22
|
+
* const example2 = new vercel.Project("example2", {});
|
|
23
|
+
* const withProjectIds = new vercel.Webhook("withProjectIds", {
|
|
24
|
+
* events: [
|
|
25
|
+
* "deployment.created",
|
|
26
|
+
* "deployment.succeeded",
|
|
27
|
+
* ],
|
|
28
|
+
* endpoint: "https://example.com/endpoint",
|
|
29
|
+
* projectIds: [
|
|
30
|
+
* example.id,
|
|
31
|
+
* example2.id,
|
|
32
|
+
* ],
|
|
33
|
+
* });
|
|
34
|
+
* const withoutProjectIds = new vercel.Webhook("withoutProjectIds", {
|
|
35
|
+
* events: [
|
|
36
|
+
* "deployment.created",
|
|
37
|
+
* "deployment.succeeded",
|
|
38
|
+
* ],
|
|
39
|
+
* endpoint: "https://example.com/endpoint",
|
|
40
|
+
* });
|
|
41
|
+
* ```
|
|
42
|
+
*/
|
|
43
|
+
class Webhook extends pulumi.CustomResource {
|
|
44
|
+
/**
|
|
45
|
+
* Get an existing Webhook resource's state with the given name, ID, and optional extra
|
|
46
|
+
* properties used to qualify the lookup.
|
|
47
|
+
*
|
|
48
|
+
* @param name The _unique_ name of the resulting resource.
|
|
49
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
50
|
+
* @param state Any extra arguments used during the lookup.
|
|
51
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
52
|
+
*/
|
|
53
|
+
static get(name, id, state, opts) {
|
|
54
|
+
return new Webhook(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
55
|
+
}
|
|
56
|
+
/**
|
|
57
|
+
* Returns true if the given object is an instance of Webhook. This is designed to work even
|
|
58
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
59
|
+
*/
|
|
60
|
+
static isInstance(obj) {
|
|
61
|
+
if (obj === undefined || obj === null) {
|
|
62
|
+
return false;
|
|
63
|
+
}
|
|
64
|
+
return obj['__pulumiType'] === Webhook.__pulumiType;
|
|
65
|
+
}
|
|
66
|
+
constructor(name, argsOrState, opts) {
|
|
67
|
+
let resourceInputs = {};
|
|
68
|
+
opts = opts || {};
|
|
69
|
+
if (opts.id) {
|
|
70
|
+
const state = argsOrState;
|
|
71
|
+
resourceInputs["endpoint"] = state ? state.endpoint : undefined;
|
|
72
|
+
resourceInputs["events"] = state ? state.events : undefined;
|
|
73
|
+
resourceInputs["projectIds"] = state ? state.projectIds : undefined;
|
|
74
|
+
resourceInputs["secret"] = state ? state.secret : undefined;
|
|
75
|
+
resourceInputs["teamId"] = state ? state.teamId : undefined;
|
|
76
|
+
}
|
|
77
|
+
else {
|
|
78
|
+
const args = argsOrState;
|
|
79
|
+
if ((!args || args.endpoint === undefined) && !opts.urn) {
|
|
80
|
+
throw new Error("Missing required property 'endpoint'");
|
|
81
|
+
}
|
|
82
|
+
if ((!args || args.events === undefined) && !opts.urn) {
|
|
83
|
+
throw new Error("Missing required property 'events'");
|
|
84
|
+
}
|
|
85
|
+
resourceInputs["endpoint"] = args ? args.endpoint : undefined;
|
|
86
|
+
resourceInputs["events"] = args ? args.events : undefined;
|
|
87
|
+
resourceInputs["projectIds"] = args ? args.projectIds : undefined;
|
|
88
|
+
resourceInputs["teamId"] = args ? args.teamId : undefined;
|
|
89
|
+
resourceInputs["secret"] = undefined /*out*/;
|
|
90
|
+
}
|
|
91
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
92
|
+
const secretOpts = { additionalSecretOutputs: ["secret"] };
|
|
93
|
+
opts = pulumi.mergeOptions(opts, secretOpts);
|
|
94
|
+
super(Webhook.__pulumiType, name, resourceInputs, opts);
|
|
95
|
+
}
|
|
96
|
+
}
|
|
97
|
+
exports.Webhook = Webhook;
|
|
98
|
+
/** @internal */
|
|
99
|
+
Webhook.__pulumiType = 'vercel:index/webhook:Webhook';
|
|
100
|
+
//# sourceMappingURL=webhook.js.map
|
package/webhook.js.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"webhook.js","sourceRoot":"","sources":["../webhook.ts"],"names":[],"mappings":"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"}
|