@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
|
@@ -0,0 +1,120 @@
|
|
|
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.EdgeConfigToken = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Provides an Edge Config Token resource.
|
|
10
|
+
*
|
|
11
|
+
* An Edge Config is a global data store that enables experimentation with feature flags, A/B testing, critical redirects, and more.
|
|
12
|
+
*
|
|
13
|
+
* An Edge Config token is used to authenticate against an Edge Config's endpoint.
|
|
14
|
+
*
|
|
15
|
+
* ## Example Usage
|
|
16
|
+
*
|
|
17
|
+
* ```typescript
|
|
18
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
19
|
+
* import * as vercel from "@pulumiverse/vercel";
|
|
20
|
+
*
|
|
21
|
+
* const exampleEdgeConfig = new vercel.EdgeConfig("exampleEdgeConfig", {});
|
|
22
|
+
* const exampleProject = new vercel.Project("exampleProject", {});
|
|
23
|
+
* const exampleEdgeConfigToken = new vercel.EdgeConfigToken("exampleEdgeConfigToken", {
|
|
24
|
+
* edgeConfigId: exampleEdgeConfig.id,
|
|
25
|
+
* label: "example token",
|
|
26
|
+
* });
|
|
27
|
+
* const exampleProjectEnvironmentVariable = new vercel.ProjectEnvironmentVariable("exampleProjectEnvironmentVariable", {
|
|
28
|
+
* projectId: exampleProject.id,
|
|
29
|
+
* targets: [
|
|
30
|
+
* "production",
|
|
31
|
+
* "preview",
|
|
32
|
+
* "development",
|
|
33
|
+
* ],
|
|
34
|
+
* key: "EDGE_CONFIG",
|
|
35
|
+
* value: exampleEdgeConfigToken.connectionString,
|
|
36
|
+
* });
|
|
37
|
+
* ```
|
|
38
|
+
*
|
|
39
|
+
* ## Import
|
|
40
|
+
*
|
|
41
|
+
* If importing into a personal account, or with a team configured on
|
|
42
|
+
*
|
|
43
|
+
* the provider, simply use the edge config id and token value.
|
|
44
|
+
*
|
|
45
|
+
* - edge_config_id can be found by navigating to the Edge Config in the Vercel UI. It should begin with `ecfg_`.
|
|
46
|
+
*
|
|
47
|
+
* - token can be found in the Vercel UI under Storage, Edge Config, the specific Edge Config, Tokens.
|
|
48
|
+
*
|
|
49
|
+
* ```sh
|
|
50
|
+
* $ pulumi import vercel:index/edgeConfigToken:EdgeConfigToken example ecfg_xxxxxxxxxxxxxxxxxxxxxxxxxxxx/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
|
|
51
|
+
* ```
|
|
52
|
+
*
|
|
53
|
+
* Alternatively, you can import via the team_id and edge_config_id.
|
|
54
|
+
*
|
|
55
|
+
* - team_id can be found in the team `settings` tab in the Vercel UI.
|
|
56
|
+
*
|
|
57
|
+
* - edge_config_id can be found by navigating to the Edge Config in the Vercel UI. It should begin with `ecfg_`.
|
|
58
|
+
*
|
|
59
|
+
* - token can be found in the Vercel UI under Storage, Edge Config, the specific Edge Config, Tokens.
|
|
60
|
+
*
|
|
61
|
+
* ```sh
|
|
62
|
+
* $ pulumi import vercel:index/edgeConfigToken:EdgeConfigToken example team_xxxxxxxxxxxxxxxxxxxxxxxx/ecfg_xxxxxxxxxxxxxxxxxxxxxxxxxxxx/xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx
|
|
63
|
+
* ```
|
|
64
|
+
*/
|
|
65
|
+
class EdgeConfigToken extends pulumi.CustomResource {
|
|
66
|
+
/**
|
|
67
|
+
* Get an existing EdgeConfigToken resource's state with the given name, ID, and optional extra
|
|
68
|
+
* properties used to qualify the lookup.
|
|
69
|
+
*
|
|
70
|
+
* @param name The _unique_ name of the resulting resource.
|
|
71
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
72
|
+
* @param state Any extra arguments used during the lookup.
|
|
73
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
74
|
+
*/
|
|
75
|
+
static get(name, id, state, opts) {
|
|
76
|
+
return new EdgeConfigToken(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
77
|
+
}
|
|
78
|
+
/**
|
|
79
|
+
* Returns true if the given object is an instance of EdgeConfigToken. This is designed to work even
|
|
80
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
81
|
+
*/
|
|
82
|
+
static isInstance(obj) {
|
|
83
|
+
if (obj === undefined || obj === null) {
|
|
84
|
+
return false;
|
|
85
|
+
}
|
|
86
|
+
return obj['__pulumiType'] === EdgeConfigToken.__pulumiType;
|
|
87
|
+
}
|
|
88
|
+
constructor(name, argsOrState, opts) {
|
|
89
|
+
let resourceInputs = {};
|
|
90
|
+
opts = opts || {};
|
|
91
|
+
if (opts.id) {
|
|
92
|
+
const state = argsOrState;
|
|
93
|
+
resourceInputs["connectionString"] = state ? state.connectionString : undefined;
|
|
94
|
+
resourceInputs["edgeConfigId"] = state ? state.edgeConfigId : undefined;
|
|
95
|
+
resourceInputs["label"] = state ? state.label : undefined;
|
|
96
|
+
resourceInputs["teamId"] = state ? state.teamId : undefined;
|
|
97
|
+
resourceInputs["token"] = state ? state.token : undefined;
|
|
98
|
+
}
|
|
99
|
+
else {
|
|
100
|
+
const args = argsOrState;
|
|
101
|
+
if ((!args || args.edgeConfigId === undefined) && !opts.urn) {
|
|
102
|
+
throw new Error("Missing required property 'edgeConfigId'");
|
|
103
|
+
}
|
|
104
|
+
if ((!args || args.label === undefined) && !opts.urn) {
|
|
105
|
+
throw new Error("Missing required property 'label'");
|
|
106
|
+
}
|
|
107
|
+
resourceInputs["edgeConfigId"] = args ? args.edgeConfigId : undefined;
|
|
108
|
+
resourceInputs["label"] = args ? args.label : undefined;
|
|
109
|
+
resourceInputs["teamId"] = args ? args.teamId : undefined;
|
|
110
|
+
resourceInputs["connectionString"] = undefined /*out*/;
|
|
111
|
+
resourceInputs["token"] = undefined /*out*/;
|
|
112
|
+
}
|
|
113
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
114
|
+
super(EdgeConfigToken.__pulumiType, name, resourceInputs, opts);
|
|
115
|
+
}
|
|
116
|
+
}
|
|
117
|
+
exports.EdgeConfigToken = EdgeConfigToken;
|
|
118
|
+
/** @internal */
|
|
119
|
+
EdgeConfigToken.__pulumiType = 'vercel:index/edgeConfigToken:EdgeConfigToken';
|
|
120
|
+
//# sourceMappingURL=edgeConfigToken.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"edgeConfigToken.js","sourceRoot":"","sources":["../edgeConfigToken.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,94 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Provides information about an existing Deployment.
|
|
4
|
+
*
|
|
5
|
+
* A Deployment is the result of building your Project and making it available through a live URL.
|
|
6
|
+
*
|
|
7
|
+
* ## Example Usage
|
|
8
|
+
*
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
+
* import * as vercel from "@pulumi/vercel";
|
|
12
|
+
*
|
|
13
|
+
* const example = vercel.getDeployment({
|
|
14
|
+
* id: "https://my-vercel-project.vercel.app",
|
|
15
|
+
* });
|
|
16
|
+
* ```
|
|
17
|
+
*/
|
|
18
|
+
export declare function getDeployment(args: GetDeploymentArgs, opts?: pulumi.InvokeOptions): Promise<GetDeploymentResult>;
|
|
19
|
+
/**
|
|
20
|
+
* A collection of arguments for invoking getDeployment.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetDeploymentArgs {
|
|
23
|
+
/**
|
|
24
|
+
* The ID or URL of the Deployment to read.
|
|
25
|
+
*/
|
|
26
|
+
id: string;
|
|
27
|
+
/**
|
|
28
|
+
* The Team ID to the Deployment belong to. Required when reading a team resource if a default team has not been set in the provider.
|
|
29
|
+
*/
|
|
30
|
+
teamId?: string;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* A collection of values returned by getDeployment.
|
|
34
|
+
*/
|
|
35
|
+
export interface GetDeploymentResult {
|
|
36
|
+
/**
|
|
37
|
+
* A list of all the domains (default domains, staging domains and production domains) that were assigned upon deployment creation.
|
|
38
|
+
*/
|
|
39
|
+
readonly domains: string[];
|
|
40
|
+
/**
|
|
41
|
+
* The ID or URL of the Deployment to read.
|
|
42
|
+
*/
|
|
43
|
+
readonly id: string;
|
|
44
|
+
/**
|
|
45
|
+
* true if the deployment is a production deployment, meaning production aliases will be assigned.
|
|
46
|
+
*/
|
|
47
|
+
readonly production: boolean;
|
|
48
|
+
/**
|
|
49
|
+
* The project ID to add the deployment to.
|
|
50
|
+
*/
|
|
51
|
+
readonly projectId: string;
|
|
52
|
+
/**
|
|
53
|
+
* The branch or commit hash that has been deployed. Note this will only work if the project is configured to use a Git repository.
|
|
54
|
+
*/
|
|
55
|
+
readonly ref: string;
|
|
56
|
+
/**
|
|
57
|
+
* The Team ID to the Deployment belong to. Required when reading a team resource if a default team has not been set in the provider.
|
|
58
|
+
*/
|
|
59
|
+
readonly teamId: string;
|
|
60
|
+
/**
|
|
61
|
+
* A unique URL that is automatically generated for a deployment.
|
|
62
|
+
*/
|
|
63
|
+
readonly url: string;
|
|
64
|
+
}
|
|
65
|
+
/**
|
|
66
|
+
* Provides information about an existing Deployment.
|
|
67
|
+
*
|
|
68
|
+
* A Deployment is the result of building your Project and making it available through a live URL.
|
|
69
|
+
*
|
|
70
|
+
* ## Example Usage
|
|
71
|
+
*
|
|
72
|
+
* ```typescript
|
|
73
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
74
|
+
* import * as vercel from "@pulumi/vercel";
|
|
75
|
+
*
|
|
76
|
+
* const example = vercel.getDeployment({
|
|
77
|
+
* id: "https://my-vercel-project.vercel.app",
|
|
78
|
+
* });
|
|
79
|
+
* ```
|
|
80
|
+
*/
|
|
81
|
+
export declare function getDeploymentOutput(args: GetDeploymentOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetDeploymentResult>;
|
|
82
|
+
/**
|
|
83
|
+
* A collection of arguments for invoking getDeployment.
|
|
84
|
+
*/
|
|
85
|
+
export interface GetDeploymentOutputArgs {
|
|
86
|
+
/**
|
|
87
|
+
* The ID or URL of the Deployment to read.
|
|
88
|
+
*/
|
|
89
|
+
id: pulumi.Input<string>;
|
|
90
|
+
/**
|
|
91
|
+
* The Team ID to the Deployment belong to. Required when reading a team resource if a default team has not been set in the provider.
|
|
92
|
+
*/
|
|
93
|
+
teamId?: pulumi.Input<string>;
|
|
94
|
+
}
|
package/getDeployment.js
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
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.getDeploymentOutput = exports.getDeployment = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Provides information about an existing Deployment.
|
|
10
|
+
*
|
|
11
|
+
* A Deployment is the result of building your Project and making it available through a live URL.
|
|
12
|
+
*
|
|
13
|
+
* ## Example Usage
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as vercel from "@pulumi/vercel";
|
|
18
|
+
*
|
|
19
|
+
* const example = vercel.getDeployment({
|
|
20
|
+
* id: "https://my-vercel-project.vercel.app",
|
|
21
|
+
* });
|
|
22
|
+
* ```
|
|
23
|
+
*/
|
|
24
|
+
function getDeployment(args, opts) {
|
|
25
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
26
|
+
return pulumi.runtime.invoke("vercel:index/getDeployment:getDeployment", {
|
|
27
|
+
"id": args.id,
|
|
28
|
+
"teamId": args.teamId,
|
|
29
|
+
}, opts);
|
|
30
|
+
}
|
|
31
|
+
exports.getDeployment = getDeployment;
|
|
32
|
+
/**
|
|
33
|
+
* Provides information about an existing Deployment.
|
|
34
|
+
*
|
|
35
|
+
* A Deployment is the result of building your Project and making it available through a live URL.
|
|
36
|
+
*
|
|
37
|
+
* ## Example Usage
|
|
38
|
+
*
|
|
39
|
+
* ```typescript
|
|
40
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
41
|
+
* import * as vercel from "@pulumi/vercel";
|
|
42
|
+
*
|
|
43
|
+
* const example = vercel.getDeployment({
|
|
44
|
+
* id: "https://my-vercel-project.vercel.app",
|
|
45
|
+
* });
|
|
46
|
+
* ```
|
|
47
|
+
*/
|
|
48
|
+
function getDeploymentOutput(args, opts) {
|
|
49
|
+
return pulumi.output(args).apply((a) => getDeployment(a, opts));
|
|
50
|
+
}
|
|
51
|
+
exports.getDeploymentOutput = getDeploymentOutput;
|
|
52
|
+
//# sourceMappingURL=getDeployment.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getDeployment.js","sourceRoot":"","sources":["../getDeployment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAE9E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0CAA0C,EAAE;QACrE,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,sCAOC;AAiDD;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAA2B;IAC1F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,aAAa,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACxE,CAAC;AAFD,kDAEC"}
|
|
@@ -0,0 +1,78 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Provides information about an existing Edge Config.
|
|
4
|
+
*
|
|
5
|
+
* An Edge Config is a global data store that enables experimentation with feature flags, A/B testing, critical redirects, and more.
|
|
6
|
+
*
|
|
7
|
+
* ## Example Usage
|
|
8
|
+
*
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
+
* import * as vercel from "@pulumi/vercel";
|
|
12
|
+
*
|
|
13
|
+
* const example = vercel.getEdgeConfig({
|
|
14
|
+
* id: "ecfg_xxxxxxxxxxxxxxxxxxxxxxxxxxxx",
|
|
15
|
+
* });
|
|
16
|
+
* ```
|
|
17
|
+
*/
|
|
18
|
+
export declare function getEdgeConfig(args: GetEdgeConfigArgs, opts?: pulumi.InvokeOptions): Promise<GetEdgeConfigResult>;
|
|
19
|
+
/**
|
|
20
|
+
* A collection of arguments for invoking getEdgeConfig.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetEdgeConfigArgs {
|
|
23
|
+
/**
|
|
24
|
+
* The Edge Config ID to be retrieved. This can be found by navigating to the Edge Config in the Vercel UI and looking at the URL. It should begin with `ecfg_`.
|
|
25
|
+
*/
|
|
26
|
+
id: string;
|
|
27
|
+
/**
|
|
28
|
+
* The ID of the team the Edge Config should exist under. Required when configuring a team resource if a default team has not been set in the provider.
|
|
29
|
+
*/
|
|
30
|
+
teamId?: string;
|
|
31
|
+
}
|
|
32
|
+
/**
|
|
33
|
+
* A collection of values returned by getEdgeConfig.
|
|
34
|
+
*/
|
|
35
|
+
export interface GetEdgeConfigResult {
|
|
36
|
+
/**
|
|
37
|
+
* The Edge Config ID to be retrieved. This can be found by navigating to the Edge Config in the Vercel UI and looking at the URL. It should begin with `ecfg_`.
|
|
38
|
+
*/
|
|
39
|
+
readonly id: string;
|
|
40
|
+
/**
|
|
41
|
+
* The name/slug of the Edge Config.
|
|
42
|
+
*/
|
|
43
|
+
readonly name: string;
|
|
44
|
+
/**
|
|
45
|
+
* The ID of the team the Edge Config should exist under. Required when configuring a team resource if a default team has not been set in the provider.
|
|
46
|
+
*/
|
|
47
|
+
readonly teamId: string;
|
|
48
|
+
}
|
|
49
|
+
/**
|
|
50
|
+
* Provides information about an existing Edge Config.
|
|
51
|
+
*
|
|
52
|
+
* An Edge Config is a global data store that enables experimentation with feature flags, A/B testing, critical redirects, and more.
|
|
53
|
+
*
|
|
54
|
+
* ## Example Usage
|
|
55
|
+
*
|
|
56
|
+
* ```typescript
|
|
57
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
58
|
+
* import * as vercel from "@pulumi/vercel";
|
|
59
|
+
*
|
|
60
|
+
* const example = vercel.getEdgeConfig({
|
|
61
|
+
* id: "ecfg_xxxxxxxxxxxxxxxxxxxxxxxxxxxx",
|
|
62
|
+
* });
|
|
63
|
+
* ```
|
|
64
|
+
*/
|
|
65
|
+
export declare function getEdgeConfigOutput(args: GetEdgeConfigOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetEdgeConfigResult>;
|
|
66
|
+
/**
|
|
67
|
+
* A collection of arguments for invoking getEdgeConfig.
|
|
68
|
+
*/
|
|
69
|
+
export interface GetEdgeConfigOutputArgs {
|
|
70
|
+
/**
|
|
71
|
+
* The Edge Config ID to be retrieved. This can be found by navigating to the Edge Config in the Vercel UI and looking at the URL. It should begin with `ecfg_`.
|
|
72
|
+
*/
|
|
73
|
+
id: pulumi.Input<string>;
|
|
74
|
+
/**
|
|
75
|
+
* The ID of the team the Edge Config should exist under. Required when configuring a team resource if a default team has not been set in the provider.
|
|
76
|
+
*/
|
|
77
|
+
teamId?: pulumi.Input<string>;
|
|
78
|
+
}
|
package/getEdgeConfig.js
ADDED
|
@@ -0,0 +1,52 @@
|
|
|
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.getEdgeConfigOutput = exports.getEdgeConfig = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Provides information about an existing Edge Config.
|
|
10
|
+
*
|
|
11
|
+
* An Edge Config is a global data store that enables experimentation with feature flags, A/B testing, critical redirects, and more.
|
|
12
|
+
*
|
|
13
|
+
* ## Example Usage
|
|
14
|
+
*
|
|
15
|
+
* ```typescript
|
|
16
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
17
|
+
* import * as vercel from "@pulumi/vercel";
|
|
18
|
+
*
|
|
19
|
+
* const example = vercel.getEdgeConfig({
|
|
20
|
+
* id: "ecfg_xxxxxxxxxxxxxxxxxxxxxxxxxxxx",
|
|
21
|
+
* });
|
|
22
|
+
* ```
|
|
23
|
+
*/
|
|
24
|
+
function getEdgeConfig(args, opts) {
|
|
25
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
26
|
+
return pulumi.runtime.invoke("vercel:index/getEdgeConfig:getEdgeConfig", {
|
|
27
|
+
"id": args.id,
|
|
28
|
+
"teamId": args.teamId,
|
|
29
|
+
}, opts);
|
|
30
|
+
}
|
|
31
|
+
exports.getEdgeConfig = getEdgeConfig;
|
|
32
|
+
/**
|
|
33
|
+
* Provides information about an existing Edge Config.
|
|
34
|
+
*
|
|
35
|
+
* An Edge Config is a global data store that enables experimentation with feature flags, A/B testing, critical redirects, and more.
|
|
36
|
+
*
|
|
37
|
+
* ## Example Usage
|
|
38
|
+
*
|
|
39
|
+
* ```typescript
|
|
40
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
41
|
+
* import * as vercel from "@pulumi/vercel";
|
|
42
|
+
*
|
|
43
|
+
* const example = vercel.getEdgeConfig({
|
|
44
|
+
* id: "ecfg_xxxxxxxxxxxxxxxxxxxxxxxxxxxx",
|
|
45
|
+
* });
|
|
46
|
+
* ```
|
|
47
|
+
*/
|
|
48
|
+
function getEdgeConfigOutput(args, opts) {
|
|
49
|
+
return pulumi.output(args).apply((a) => getEdgeConfig(a, opts));
|
|
50
|
+
}
|
|
51
|
+
exports.getEdgeConfigOutput = getEdgeConfigOutput;
|
|
52
|
+
//# sourceMappingURL=getEdgeConfig.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getEdgeConfig.js","sourceRoot":"","sources":["../getEdgeConfig.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAE9E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,0CAA0C,EAAE;QACrE,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,sCAOC;AAiCD;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAA2B;IAC1F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,aAAa,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACxE,CAAC;AAFD,kDAEC"}
|
|
@@ -0,0 +1,74 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* An Edge Config Schema provides an existing Edge Config with a JSON schema. Use schema protection to prevent unexpected updates that may cause bugs or downtime.
|
|
4
|
+
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as vercel from "@pulumi/vercel";
|
|
10
|
+
*
|
|
11
|
+
* const test = vercel.getEdgeConfigSchema({
|
|
12
|
+
* id: "ecfg_xxxxxxxxxxxxxxxxxxxxxxxxxxxx",
|
|
13
|
+
* });
|
|
14
|
+
* ```
|
|
15
|
+
*/
|
|
16
|
+
export declare function getEdgeConfigSchema(args: GetEdgeConfigSchemaArgs, opts?: pulumi.InvokeOptions): Promise<GetEdgeConfigSchemaResult>;
|
|
17
|
+
/**
|
|
18
|
+
* A collection of arguments for invoking getEdgeConfigSchema.
|
|
19
|
+
*/
|
|
20
|
+
export interface GetEdgeConfigSchemaArgs {
|
|
21
|
+
/**
|
|
22
|
+
* The ID of the Edge Config that the schema should be for.
|
|
23
|
+
*/
|
|
24
|
+
id: string;
|
|
25
|
+
/**
|
|
26
|
+
* The ID of the team the Edge Config should exist under. Required when configuring a team resource if a default team has not been set in the provider.
|
|
27
|
+
*/
|
|
28
|
+
teamId?: string;
|
|
29
|
+
}
|
|
30
|
+
/**
|
|
31
|
+
* A collection of values returned by getEdgeConfigSchema.
|
|
32
|
+
*/
|
|
33
|
+
export interface GetEdgeConfigSchemaResult {
|
|
34
|
+
/**
|
|
35
|
+
* A JSON schema that will be used to validate data in the Edge Config.
|
|
36
|
+
*/
|
|
37
|
+
readonly definition: string;
|
|
38
|
+
/**
|
|
39
|
+
* The ID of the Edge Config that the schema should be for.
|
|
40
|
+
*/
|
|
41
|
+
readonly id: string;
|
|
42
|
+
/**
|
|
43
|
+
* The ID of the team the Edge Config should exist under. Required when configuring a team resource if a default team has not been set in the provider.
|
|
44
|
+
*/
|
|
45
|
+
readonly teamId: string;
|
|
46
|
+
}
|
|
47
|
+
/**
|
|
48
|
+
* An Edge Config Schema provides an existing Edge Config with a JSON schema. Use schema protection to prevent unexpected updates that may cause bugs or downtime.
|
|
49
|
+
*
|
|
50
|
+
* ## Example Usage
|
|
51
|
+
*
|
|
52
|
+
* ```typescript
|
|
53
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
54
|
+
* import * as vercel from "@pulumi/vercel";
|
|
55
|
+
*
|
|
56
|
+
* const test = vercel.getEdgeConfigSchema({
|
|
57
|
+
* id: "ecfg_xxxxxxxxxxxxxxxxxxxxxxxxxxxx",
|
|
58
|
+
* });
|
|
59
|
+
* ```
|
|
60
|
+
*/
|
|
61
|
+
export declare function getEdgeConfigSchemaOutput(args: GetEdgeConfigSchemaOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetEdgeConfigSchemaResult>;
|
|
62
|
+
/**
|
|
63
|
+
* A collection of arguments for invoking getEdgeConfigSchema.
|
|
64
|
+
*/
|
|
65
|
+
export interface GetEdgeConfigSchemaOutputArgs {
|
|
66
|
+
/**
|
|
67
|
+
* The ID of the Edge Config that the schema should be for.
|
|
68
|
+
*/
|
|
69
|
+
id: pulumi.Input<string>;
|
|
70
|
+
/**
|
|
71
|
+
* The ID of the team the Edge Config should exist under. Required when configuring a team resource if a default team has not been set in the provider.
|
|
72
|
+
*/
|
|
73
|
+
teamId?: pulumi.Input<string>;
|
|
74
|
+
}
|
|
@@ -0,0 +1,48 @@
|
|
|
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.getEdgeConfigSchemaOutput = exports.getEdgeConfigSchema = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* An Edge Config Schema provides an existing Edge Config with a JSON schema. Use schema protection to prevent unexpected updates that may cause bugs or downtime.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as vercel from "@pulumi/vercel";
|
|
16
|
+
*
|
|
17
|
+
* const test = vercel.getEdgeConfigSchema({
|
|
18
|
+
* id: "ecfg_xxxxxxxxxxxxxxxxxxxxxxxxxxxx",
|
|
19
|
+
* });
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
function getEdgeConfigSchema(args, opts) {
|
|
23
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
24
|
+
return pulumi.runtime.invoke("vercel:index/getEdgeConfigSchema:getEdgeConfigSchema", {
|
|
25
|
+
"id": args.id,
|
|
26
|
+
"teamId": args.teamId,
|
|
27
|
+
}, opts);
|
|
28
|
+
}
|
|
29
|
+
exports.getEdgeConfigSchema = getEdgeConfigSchema;
|
|
30
|
+
/**
|
|
31
|
+
* An Edge Config Schema provides an existing Edge Config with a JSON schema. Use schema protection to prevent unexpected updates that may cause bugs or downtime.
|
|
32
|
+
*
|
|
33
|
+
* ## Example Usage
|
|
34
|
+
*
|
|
35
|
+
* ```typescript
|
|
36
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
37
|
+
* import * as vercel from "@pulumi/vercel";
|
|
38
|
+
*
|
|
39
|
+
* const test = vercel.getEdgeConfigSchema({
|
|
40
|
+
* id: "ecfg_xxxxxxxxxxxxxxxxxxxxxxxxxxxx",
|
|
41
|
+
* });
|
|
42
|
+
* ```
|
|
43
|
+
*/
|
|
44
|
+
function getEdgeConfigSchemaOutput(args, opts) {
|
|
45
|
+
return pulumi.output(args).apply((a) => getEdgeConfigSchema(a, opts));
|
|
46
|
+
}
|
|
47
|
+
exports.getEdgeConfigSchemaOutput = getEdgeConfigSchemaOutput;
|
|
48
|
+
//# sourceMappingURL=getEdgeConfigSchema.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getEdgeConfigSchema.js","sourceRoot":"","sources":["../getEdgeConfigSchema.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAA2B;IAE1F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sDAAsD,EAAE;QACjF,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,kDAOC;AAiCD;;;;;;;;;;;;;GAaG;AACH,SAAgB,yBAAyB,CAAC,IAAmC,EAAE,IAA2B;IACtG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC9E,CAAC;AAFD,8DAEC"}
|
|
@@ -0,0 +1,104 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Provides information about an existing Edge Config Token.
|
|
4
|
+
*
|
|
5
|
+
* An Edge Config is a global data store that enables experimentation with feature flags, A/B testing, critical redirects, and more.
|
|
6
|
+
*
|
|
7
|
+
* An Edge Config token is used to authenticate against an Edge Config's endpoint.
|
|
8
|
+
*
|
|
9
|
+
* ## Example Usage
|
|
10
|
+
*
|
|
11
|
+
* ```typescript
|
|
12
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
13
|
+
* import * as vercel from "@pulumi/vercel";
|
|
14
|
+
*
|
|
15
|
+
* const test = vercel.getEdgeConfigToken({
|
|
16
|
+
* edgeConfigId: "ecfg_xxxxxxxxxxxxxxxxxxxxxxxxxxxx",
|
|
17
|
+
* token: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
|
|
18
|
+
* });
|
|
19
|
+
* ```
|
|
20
|
+
*/
|
|
21
|
+
export declare function getEdgeConfigToken(args: GetEdgeConfigTokenArgs, opts?: pulumi.InvokeOptions): Promise<GetEdgeConfigTokenResult>;
|
|
22
|
+
/**
|
|
23
|
+
* A collection of arguments for invoking getEdgeConfigToken.
|
|
24
|
+
*/
|
|
25
|
+
export interface GetEdgeConfigTokenArgs {
|
|
26
|
+
/**
|
|
27
|
+
* The label of the Edge Config Token.
|
|
28
|
+
*/
|
|
29
|
+
edgeConfigId: string;
|
|
30
|
+
/**
|
|
31
|
+
* The ID of the team the Edge Config should exist under. Required when configuring a team resource if a default team has not been set in the provider.
|
|
32
|
+
*/
|
|
33
|
+
teamId?: string;
|
|
34
|
+
/**
|
|
35
|
+
* A read access token used for authenticating against the Edge Config's endpoint for high volume, low-latency requests.
|
|
36
|
+
*/
|
|
37
|
+
token: string;
|
|
38
|
+
}
|
|
39
|
+
/**
|
|
40
|
+
* A collection of values returned by getEdgeConfigToken.
|
|
41
|
+
*/
|
|
42
|
+
export interface GetEdgeConfigTokenResult {
|
|
43
|
+
/**
|
|
44
|
+
* A connection string is a URL that connects a project to an Edge Config. The variable can be called anything, but our Edge Config client SDK will search for process.env.EDGE_CONFIG by default.
|
|
45
|
+
*/
|
|
46
|
+
readonly connectionString: string;
|
|
47
|
+
/**
|
|
48
|
+
* The label of the Edge Config Token.
|
|
49
|
+
*/
|
|
50
|
+
readonly edgeConfigId: string;
|
|
51
|
+
/**
|
|
52
|
+
* The ID of this resource.
|
|
53
|
+
*/
|
|
54
|
+
readonly id: string;
|
|
55
|
+
/**
|
|
56
|
+
* The label of the Edge Config Token.
|
|
57
|
+
*/
|
|
58
|
+
readonly label: string;
|
|
59
|
+
/**
|
|
60
|
+
* The ID of the team the Edge Config should exist under. Required when configuring a team resource if a default team has not been set in the provider.
|
|
61
|
+
*/
|
|
62
|
+
readonly teamId: string;
|
|
63
|
+
/**
|
|
64
|
+
* A read access token used for authenticating against the Edge Config's endpoint for high volume, low-latency requests.
|
|
65
|
+
*/
|
|
66
|
+
readonly token: string;
|
|
67
|
+
}
|
|
68
|
+
/**
|
|
69
|
+
* Provides information about an existing Edge Config Token.
|
|
70
|
+
*
|
|
71
|
+
* An Edge Config is a global data store that enables experimentation with feature flags, A/B testing, critical redirects, and more.
|
|
72
|
+
*
|
|
73
|
+
* An Edge Config token is used to authenticate against an Edge Config's endpoint.
|
|
74
|
+
*
|
|
75
|
+
* ## Example Usage
|
|
76
|
+
*
|
|
77
|
+
* ```typescript
|
|
78
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
79
|
+
* import * as vercel from "@pulumi/vercel";
|
|
80
|
+
*
|
|
81
|
+
* const test = vercel.getEdgeConfigToken({
|
|
82
|
+
* edgeConfigId: "ecfg_xxxxxxxxxxxxxxxxxxxxxxxxxxxx",
|
|
83
|
+
* token: "xxxxxxxx-xxxx-xxxx-xxxx-xxxxxxxxxxxx",
|
|
84
|
+
* });
|
|
85
|
+
* ```
|
|
86
|
+
*/
|
|
87
|
+
export declare function getEdgeConfigTokenOutput(args: GetEdgeConfigTokenOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetEdgeConfigTokenResult>;
|
|
88
|
+
/**
|
|
89
|
+
* A collection of arguments for invoking getEdgeConfigToken.
|
|
90
|
+
*/
|
|
91
|
+
export interface GetEdgeConfigTokenOutputArgs {
|
|
92
|
+
/**
|
|
93
|
+
* The label of the Edge Config Token.
|
|
94
|
+
*/
|
|
95
|
+
edgeConfigId: pulumi.Input<string>;
|
|
96
|
+
/**
|
|
97
|
+
* The ID of the team the Edge Config should exist under. Required when configuring a team resource if a default team has not been set in the provider.
|
|
98
|
+
*/
|
|
99
|
+
teamId?: pulumi.Input<string>;
|
|
100
|
+
/**
|
|
101
|
+
* A read access token used for authenticating against the Edge Config's endpoint for high volume, low-latency requests.
|
|
102
|
+
*/
|
|
103
|
+
token: pulumi.Input<string>;
|
|
104
|
+
}
|