@pulumiverse/vercel 1.14.3 → 2.9.0-alpha.1747136220
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/accessGroup.d.ts +92 -0
- package/accessGroup.js +83 -0
- package/accessGroup.js.map +1 -0
- package/accessGroupProject.d.ts +122 -0
- package/accessGroupProject.js +102 -0
- package/accessGroupProject.js.map +1 -0
- package/customEnvironment.d.ts +150 -0
- package/customEnvironment.js +112 -0
- package/customEnvironment.js.map +1 -0
- package/edgeConfigItem.d.ts +131 -0
- package/edgeConfigItem.js +111 -0
- package/edgeConfigItem.js.map +1 -0
- package/getAccessGroup.d.ts +78 -0
- package/getAccessGroup.js +56 -0
- package/getAccessGroup.js.map +1 -0
- package/getAccessGroupProject.d.ts +102 -0
- package/getAccessGroupProject.js +66 -0
- package/getAccessGroupProject.js.map +1 -0
- package/getCustomEnvironment.d.ts +107 -0
- package/getCustomEnvironment.js +66 -0
- package/getCustomEnvironment.js.map +1 -0
- package/getEdgeConfigItem.d.ts +102 -0
- package/getEdgeConfigItem.js +70 -0
- package/getEdgeConfigItem.js.map +1 -0
- package/getProject.d.ts +7 -5
- package/getProject.js +2 -4
- package/getProject.js.map +1 -1
- package/getProjectMembers.d.ts +85 -0
- package/getProjectMembers.js +58 -0
- package/getProjectMembers.js.map +1 -0
- package/getSharedEnvironmentVariable.d.ts +4 -0
- package/getSharedEnvironmentVariable.js.map +1 -1
- package/getTeamConfig.d.ts +111 -0
- package/getTeamConfig.js +50 -0
- package/getTeamConfig.js.map +1 -0
- package/getTeamMember.d.ts +89 -0
- package/getTeamMember.js +54 -0
- package/getTeamMember.js.map +1 -0
- package/index.d.ts +45 -6
- package/index.js +63 -9
- package/index.js.map +1 -1
- package/logDrain.d.ts +2 -2
- package/logDrain.js +2 -2
- package/package.json +3 -2
- package/project.d.ts +9 -5
- package/project.js +3 -1
- package/project.js.map +1 -1
- package/projectDomain.d.ts +12 -0
- package/projectDomain.js +2 -0
- package/projectDomain.js.map +1 -1
- package/projectEnvironmentVariable.d.ts +31 -4
- package/projectEnvironmentVariable.js +7 -3
- package/projectEnvironmentVariable.js.map +1 -1
- package/projectEnvironmentVariables.d.ts +77 -0
- package/projectEnvironmentVariables.js +62 -0
- package/projectEnvironmentVariables.js.map +1 -0
- package/projectMembers.d.ts +97 -0
- package/{projectFunctionCpu.js → projectMembers.js} +25 -36
- package/projectMembers.js.map +1 -0
- package/sharedEnvironmentVariable.d.ts +13 -0
- package/sharedEnvironmentVariable.js +3 -0
- package/sharedEnvironmentVariable.js.map +1 -1
- package/teamConfig.d.ts +211 -0
- package/teamConfig.js +78 -0
- package/teamConfig.js.map +1 -0
- package/teamMember.d.ts +122 -0
- package/teamMember.js +90 -0
- package/teamMember.js.map +1 -0
- package/types/input.d.ts +108 -8
- package/types/output.d.ts +179 -7
- package/getProjectFunctionCpu.d.ts +0 -92
- package/getProjectFunctionCpu.js +0 -66
- package/getProjectFunctionCpu.js.map +0 -1
- package/package.json.bak +0 -27
- package/projectFunctionCpu.d.ts +0 -106
- package/projectFunctionCpu.js.map +0 -1
|
@@ -0,0 +1,66 @@
|
|
|
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.getCustomEnvironmentOutput = exports.getCustomEnvironment = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Provides information about an existing CustomEnvironment resource.
|
|
10
|
+
*
|
|
11
|
+
* An CustomEnvironment allows a `vercel.Deployment` to be accessed through a different 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 exampleProject = vercel.getProject({
|
|
20
|
+
* name: "example-project-with-custom-env",
|
|
21
|
+
* });
|
|
22
|
+
* const exampleCustomEnvironment = exampleProject.then(exampleProject => vercel.getCustomEnvironment({
|
|
23
|
+
* projectId: exampleProject.id,
|
|
24
|
+
* name: "example-custom-env",
|
|
25
|
+
* }));
|
|
26
|
+
* ```
|
|
27
|
+
*/
|
|
28
|
+
function getCustomEnvironment(args, opts) {
|
|
29
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
30
|
+
return pulumi.runtime.invoke("vercel:index/getCustomEnvironment:getCustomEnvironment", {
|
|
31
|
+
"name": args.name,
|
|
32
|
+
"projectId": args.projectId,
|
|
33
|
+
"teamId": args.teamId,
|
|
34
|
+
}, opts);
|
|
35
|
+
}
|
|
36
|
+
exports.getCustomEnvironment = getCustomEnvironment;
|
|
37
|
+
/**
|
|
38
|
+
* Provides information about an existing CustomEnvironment resource.
|
|
39
|
+
*
|
|
40
|
+
* An CustomEnvironment allows a `vercel.Deployment` to be accessed through a different URL.
|
|
41
|
+
*
|
|
42
|
+
* ## Example Usage
|
|
43
|
+
*
|
|
44
|
+
* ```typescript
|
|
45
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
46
|
+
* import * as vercel from "@pulumi/vercel";
|
|
47
|
+
*
|
|
48
|
+
* const exampleProject = vercel.getProject({
|
|
49
|
+
* name: "example-project-with-custom-env",
|
|
50
|
+
* });
|
|
51
|
+
* const exampleCustomEnvironment = exampleProject.then(exampleProject => vercel.getCustomEnvironment({
|
|
52
|
+
* projectId: exampleProject.id,
|
|
53
|
+
* name: "example-custom-env",
|
|
54
|
+
* }));
|
|
55
|
+
* ```
|
|
56
|
+
*/
|
|
57
|
+
function getCustomEnvironmentOutput(args, opts) {
|
|
58
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
59
|
+
return pulumi.runtime.invokeOutput("vercel:index/getCustomEnvironment:getCustomEnvironment", {
|
|
60
|
+
"name": args.name,
|
|
61
|
+
"projectId": args.projectId,
|
|
62
|
+
"teamId": args.teamId,
|
|
63
|
+
}, opts);
|
|
64
|
+
}
|
|
65
|
+
exports.getCustomEnvironmentOutput = getCustomEnvironmentOutput;
|
|
66
|
+
//# sourceMappingURL=getCustomEnvironment.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getCustomEnvironment.js","sourceRoot":"","sources":["../getCustomEnvironment.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,oBAAoB,CAAC,IAA8B,EAAE,IAA2B;IAC5F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wDAAwD,EAAE;QACnF,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,oDAOC;AAiDD;;;;;;;;;;;;;;;;;;;GAmBG;AACH,SAAgB,0BAA0B,CAAC,IAAoC,EAAE,IAA2B;IACxG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,wDAAwD,EAAE;QACzF,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,gEAOC"}
|
|
@@ -0,0 +1,102 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Provides the value of an existing Edge Config Item.
|
|
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 Item is a value within an Edge Config.
|
|
8
|
+
*
|
|
9
|
+
* ## Example Usage
|
|
10
|
+
*
|
|
11
|
+
* ```typescript
|
|
12
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
13
|
+
* import * as vercel from "@pulumi/vercel";
|
|
14
|
+
*
|
|
15
|
+
* const example = vercel.getEdgeConfig({
|
|
16
|
+
* id: "ecfg_xxxxxxxxxxxxxxxxxxxxxxxxxxxx",
|
|
17
|
+
* });
|
|
18
|
+
* const test = example.then(example => vercel.getEdgeConfigItem({
|
|
19
|
+
* id: example.id,
|
|
20
|
+
* key: "foobar",
|
|
21
|
+
* }));
|
|
22
|
+
* ```
|
|
23
|
+
*/
|
|
24
|
+
export declare function getEdgeConfigItem(args: GetEdgeConfigItemArgs, opts?: pulumi.InvokeOptions): Promise<GetEdgeConfigItemResult>;
|
|
25
|
+
/**
|
|
26
|
+
* A collection of arguments for invoking getEdgeConfigItem.
|
|
27
|
+
*/
|
|
28
|
+
export interface GetEdgeConfigItemArgs {
|
|
29
|
+
/**
|
|
30
|
+
* The ID of the Edge Config that the item should exist under.
|
|
31
|
+
*/
|
|
32
|
+
id: string;
|
|
33
|
+
/**
|
|
34
|
+
* The name of the key you want to retrieve within your Edge Config.
|
|
35
|
+
*/
|
|
36
|
+
key: string;
|
|
37
|
+
/**
|
|
38
|
+
* 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.
|
|
39
|
+
*/
|
|
40
|
+
teamId?: string;
|
|
41
|
+
}
|
|
42
|
+
/**
|
|
43
|
+
* A collection of values returned by getEdgeConfigItem.
|
|
44
|
+
*/
|
|
45
|
+
export interface GetEdgeConfigItemResult {
|
|
46
|
+
/**
|
|
47
|
+
* The ID of the Edge Config that the item should exist under.
|
|
48
|
+
*/
|
|
49
|
+
readonly id: string;
|
|
50
|
+
/**
|
|
51
|
+
* The name of the key you want to retrieve within your Edge Config.
|
|
52
|
+
*/
|
|
53
|
+
readonly key: string;
|
|
54
|
+
/**
|
|
55
|
+
* 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.
|
|
56
|
+
*/
|
|
57
|
+
readonly teamId: string;
|
|
58
|
+
/**
|
|
59
|
+
* The value assigned to the key.
|
|
60
|
+
*/
|
|
61
|
+
readonly value: string;
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* Provides the value of an existing Edge Config Item.
|
|
65
|
+
*
|
|
66
|
+
* An Edge Config is a global data store that enables experimentation with feature flags, A/B testing, critical redirects, and more.
|
|
67
|
+
*
|
|
68
|
+
* An Edge Config Item is a value within an Edge Config.
|
|
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.getEdgeConfig({
|
|
77
|
+
* id: "ecfg_xxxxxxxxxxxxxxxxxxxxxxxxxxxx",
|
|
78
|
+
* });
|
|
79
|
+
* const test = example.then(example => vercel.getEdgeConfigItem({
|
|
80
|
+
* id: example.id,
|
|
81
|
+
* key: "foobar",
|
|
82
|
+
* }));
|
|
83
|
+
* ```
|
|
84
|
+
*/
|
|
85
|
+
export declare function getEdgeConfigItemOutput(args: GetEdgeConfigItemOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetEdgeConfigItemResult>;
|
|
86
|
+
/**
|
|
87
|
+
* A collection of arguments for invoking getEdgeConfigItem.
|
|
88
|
+
*/
|
|
89
|
+
export interface GetEdgeConfigItemOutputArgs {
|
|
90
|
+
/**
|
|
91
|
+
* The ID of the Edge Config that the item should exist under.
|
|
92
|
+
*/
|
|
93
|
+
id: pulumi.Input<string>;
|
|
94
|
+
/**
|
|
95
|
+
* The name of the key you want to retrieve within your Edge Config.
|
|
96
|
+
*/
|
|
97
|
+
key: pulumi.Input<string>;
|
|
98
|
+
/**
|
|
99
|
+
* 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.
|
|
100
|
+
*/
|
|
101
|
+
teamId?: pulumi.Input<string>;
|
|
102
|
+
}
|
|
@@ -0,0 +1,70 @@
|
|
|
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.getEdgeConfigItemOutput = exports.getEdgeConfigItem = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Provides the value of an existing Edge Config Item.
|
|
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 Item is a value within an Edge Config.
|
|
14
|
+
*
|
|
15
|
+
* ## Example Usage
|
|
16
|
+
*
|
|
17
|
+
* ```typescript
|
|
18
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
19
|
+
* import * as vercel from "@pulumi/vercel";
|
|
20
|
+
*
|
|
21
|
+
* const example = vercel.getEdgeConfig({
|
|
22
|
+
* id: "ecfg_xxxxxxxxxxxxxxxxxxxxxxxxxxxx",
|
|
23
|
+
* });
|
|
24
|
+
* const test = example.then(example => vercel.getEdgeConfigItem({
|
|
25
|
+
* id: example.id,
|
|
26
|
+
* key: "foobar",
|
|
27
|
+
* }));
|
|
28
|
+
* ```
|
|
29
|
+
*/
|
|
30
|
+
function getEdgeConfigItem(args, opts) {
|
|
31
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
32
|
+
return pulumi.runtime.invoke("vercel:index/getEdgeConfigItem:getEdgeConfigItem", {
|
|
33
|
+
"id": args.id,
|
|
34
|
+
"key": args.key,
|
|
35
|
+
"teamId": args.teamId,
|
|
36
|
+
}, opts);
|
|
37
|
+
}
|
|
38
|
+
exports.getEdgeConfigItem = getEdgeConfigItem;
|
|
39
|
+
/**
|
|
40
|
+
* Provides the value of an existing Edge Config Item.
|
|
41
|
+
*
|
|
42
|
+
* An Edge Config is a global data store that enables experimentation with feature flags, A/B testing, critical redirects, and more.
|
|
43
|
+
*
|
|
44
|
+
* An Edge Config Item is a value within an Edge Config.
|
|
45
|
+
*
|
|
46
|
+
* ## Example Usage
|
|
47
|
+
*
|
|
48
|
+
* ```typescript
|
|
49
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
50
|
+
* import * as vercel from "@pulumi/vercel";
|
|
51
|
+
*
|
|
52
|
+
* const example = vercel.getEdgeConfig({
|
|
53
|
+
* id: "ecfg_xxxxxxxxxxxxxxxxxxxxxxxxxxxx",
|
|
54
|
+
* });
|
|
55
|
+
* const test = example.then(example => vercel.getEdgeConfigItem({
|
|
56
|
+
* id: example.id,
|
|
57
|
+
* key: "foobar",
|
|
58
|
+
* }));
|
|
59
|
+
* ```
|
|
60
|
+
*/
|
|
61
|
+
function getEdgeConfigItemOutput(args, opts) {
|
|
62
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
63
|
+
return pulumi.runtime.invokeOutput("vercel:index/getEdgeConfigItem:getEdgeConfigItem", {
|
|
64
|
+
"id": args.id,
|
|
65
|
+
"key": args.key,
|
|
66
|
+
"teamId": args.teamId,
|
|
67
|
+
}, opts);
|
|
68
|
+
}
|
|
69
|
+
exports.getEdgeConfigItemOutput = getEdgeConfigItemOutput;
|
|
70
|
+
//# sourceMappingURL=getEdgeConfigItem.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getEdgeConfigItem.js","sourceRoot":"","sources":["../getEdgeConfigItem.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAA2B;IACtF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kDAAkD,EAAE;QAC7E,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,8CAOC;AAyCD;;;;;;;;;;;;;;;;;;;;;GAqBG;AACH,SAAgB,uBAAuB,CAAC,IAAiC,EAAE,IAA2B;IAClG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,kDAAkD,EAAE;QACnF,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,0DAOC"}
|
package/getProject.d.ts
CHANGED
|
@@ -13,10 +13,9 @@ import * as outputs from "./types/output";
|
|
|
13
13
|
* import * as pulumi from "@pulumi/pulumi";
|
|
14
14
|
* import * as vercel from "@pulumi/vercel";
|
|
15
15
|
*
|
|
16
|
-
* const
|
|
16
|
+
* const example = vercel.getProject({
|
|
17
17
|
* name: "my-existing-project",
|
|
18
18
|
* });
|
|
19
|
-
* export const projectId = foo.then(foo => foo.id);
|
|
20
19
|
* ```
|
|
21
20
|
*/
|
|
22
21
|
export declare function getProject(args: GetProjectArgs, opts?: pulumi.InvokeOptions): Promise<GetProjectResult>;
|
|
@@ -130,9 +129,13 @@ export interface GetProjectResult {
|
|
|
130
129
|
*/
|
|
131
130
|
readonly prioritiseProductionBuilds: boolean;
|
|
132
131
|
/**
|
|
133
|
-
* Allows automation services to bypass
|
|
132
|
+
* Allows automation services to bypass Deployment Protection on this project when using an HTTP header named `x-vercel-protection-bypass` with the value from `protectionBypassForAutomationSecret`.
|
|
134
133
|
*/
|
|
135
134
|
readonly protectionBypassForAutomation: boolean;
|
|
135
|
+
/**
|
|
136
|
+
* If `protectionBypassForAutomation` is enabled, optionally set this value to specify a 32 character secret, otherwise a secret will be generated.
|
|
137
|
+
*/
|
|
138
|
+
readonly protectionBypassForAutomationSecret: string;
|
|
136
139
|
/**
|
|
137
140
|
* Specifies whether the source code and logs of the deployments for this project should be public or not.
|
|
138
141
|
*/
|
|
@@ -179,10 +182,9 @@ export interface GetProjectResult {
|
|
|
179
182
|
* import * as pulumi from "@pulumi/pulumi";
|
|
180
183
|
* import * as vercel from "@pulumi/vercel";
|
|
181
184
|
*
|
|
182
|
-
* const
|
|
185
|
+
* const example = vercel.getProject({
|
|
183
186
|
* name: "my-existing-project",
|
|
184
187
|
* });
|
|
185
|
-
* export const projectId = foo.then(foo => foo.id);
|
|
186
188
|
* ```
|
|
187
189
|
*/
|
|
188
190
|
export declare function getProjectOutput(args: GetProjectOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetProjectResult>;
|
package/getProject.js
CHANGED
|
@@ -18,10 +18,9 @@ const utilities = require("./utilities");
|
|
|
18
18
|
* import * as pulumi from "@pulumi/pulumi";
|
|
19
19
|
* import * as vercel from "@pulumi/vercel";
|
|
20
20
|
*
|
|
21
|
-
* const
|
|
21
|
+
* const example = vercel.getProject({
|
|
22
22
|
* name: "my-existing-project",
|
|
23
23
|
* });
|
|
24
|
-
* export const projectId = foo.then(foo => foo.id);
|
|
25
24
|
* ```
|
|
26
25
|
*/
|
|
27
26
|
function getProject(args, opts) {
|
|
@@ -45,10 +44,9 @@ exports.getProject = getProject;
|
|
|
45
44
|
* import * as pulumi from "@pulumi/pulumi";
|
|
46
45
|
* import * as vercel from "@pulumi/vercel";
|
|
47
46
|
*
|
|
48
|
-
* const
|
|
47
|
+
* const example = vercel.getProject({
|
|
49
48
|
* name: "my-existing-project",
|
|
50
49
|
* });
|
|
51
|
-
* export const projectId = foo.then(foo => foo.id);
|
|
52
50
|
* ```
|
|
53
51
|
*/
|
|
54
52
|
function getProjectOutput(args, opts) {
|
package/getProject.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getProject.js","sourceRoot":"","sources":["../getProject.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getProject.js","sourceRoot":"","sources":["../getProject.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;GAiBG;AACH,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAA2B;IACxE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oCAAoC,EAAE;QAC/D,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,gCAMC;AAyJD;;;;;;;;;;;;;;;;;GAiBG;AACH,SAAgB,gBAAgB,CAAC,IAA0B,EAAE,IAA2B;IACpF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,oCAAoC,EAAE;QACrE,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,4CAMC"}
|
|
@@ -0,0 +1,85 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "./types/output";
|
|
3
|
+
/**
|
|
4
|
+
* Retrieves members and their roles for a Vercel Project.
|
|
5
|
+
*
|
|
6
|
+
* ## Example Usage
|
|
7
|
+
*
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
+
* import * as vercel from "@pulumi/vercel";
|
|
11
|
+
*
|
|
12
|
+
* const exampleProject = vercel.getProject({
|
|
13
|
+
* name: "example-with-members",
|
|
14
|
+
* });
|
|
15
|
+
* const exampleProjectMembers = exampleProject.then(exampleProject => vercel.getProjectMembers({
|
|
16
|
+
* projectId: exampleProject.id,
|
|
17
|
+
* }));
|
|
18
|
+
* ```
|
|
19
|
+
*/
|
|
20
|
+
export declare function getProjectMembers(args: GetProjectMembersArgs, opts?: pulumi.InvokeOptions): Promise<GetProjectMembersResult>;
|
|
21
|
+
/**
|
|
22
|
+
* A collection of arguments for invoking getProjectMembers.
|
|
23
|
+
*/
|
|
24
|
+
export interface GetProjectMembersArgs {
|
|
25
|
+
/**
|
|
26
|
+
* The ID of the Vercel Project.
|
|
27
|
+
*/
|
|
28
|
+
projectId: string;
|
|
29
|
+
/**
|
|
30
|
+
* The team ID to which the project belongs. Required when accessing a team project if a default team has not been set in the provider.
|
|
31
|
+
*/
|
|
32
|
+
teamId?: string;
|
|
33
|
+
}
|
|
34
|
+
/**
|
|
35
|
+
* A collection of values returned by getProjectMembers.
|
|
36
|
+
*/
|
|
37
|
+
export interface GetProjectMembersResult {
|
|
38
|
+
/**
|
|
39
|
+
* The provider-assigned unique ID for this managed resource.
|
|
40
|
+
*/
|
|
41
|
+
readonly id: string;
|
|
42
|
+
/**
|
|
43
|
+
* The set of members in this project.
|
|
44
|
+
*/
|
|
45
|
+
readonly members: outputs.GetProjectMembersMember[];
|
|
46
|
+
/**
|
|
47
|
+
* The ID of the Vercel Project.
|
|
48
|
+
*/
|
|
49
|
+
readonly projectId: string;
|
|
50
|
+
/**
|
|
51
|
+
* The team ID to which the project belongs. Required when accessing a team project if a default team has not been set in the provider.
|
|
52
|
+
*/
|
|
53
|
+
readonly teamId?: string;
|
|
54
|
+
}
|
|
55
|
+
/**
|
|
56
|
+
* Retrieves members and their roles for a Vercel Project.
|
|
57
|
+
*
|
|
58
|
+
* ## Example Usage
|
|
59
|
+
*
|
|
60
|
+
* ```typescript
|
|
61
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
62
|
+
* import * as vercel from "@pulumi/vercel";
|
|
63
|
+
*
|
|
64
|
+
* const exampleProject = vercel.getProject({
|
|
65
|
+
* name: "example-with-members",
|
|
66
|
+
* });
|
|
67
|
+
* const exampleProjectMembers = exampleProject.then(exampleProject => vercel.getProjectMembers({
|
|
68
|
+
* projectId: exampleProject.id,
|
|
69
|
+
* }));
|
|
70
|
+
* ```
|
|
71
|
+
*/
|
|
72
|
+
export declare function getProjectMembersOutput(args: GetProjectMembersOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetProjectMembersResult>;
|
|
73
|
+
/**
|
|
74
|
+
* A collection of arguments for invoking getProjectMembers.
|
|
75
|
+
*/
|
|
76
|
+
export interface GetProjectMembersOutputArgs {
|
|
77
|
+
/**
|
|
78
|
+
* The ID of the Vercel Project.
|
|
79
|
+
*/
|
|
80
|
+
projectId: pulumi.Input<string>;
|
|
81
|
+
/**
|
|
82
|
+
* The team ID to which the project belongs. Required when accessing a team project if a default team has not been set in the provider.
|
|
83
|
+
*/
|
|
84
|
+
teamId?: pulumi.Input<string>;
|
|
85
|
+
}
|
|
@@ -0,0 +1,58 @@
|
|
|
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.getProjectMembersOutput = exports.getProjectMembers = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Retrieves members and their roles for a Vercel Project.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as vercel from "@pulumi/vercel";
|
|
16
|
+
*
|
|
17
|
+
* const exampleProject = vercel.getProject({
|
|
18
|
+
* name: "example-with-members",
|
|
19
|
+
* });
|
|
20
|
+
* const exampleProjectMembers = exampleProject.then(exampleProject => vercel.getProjectMembers({
|
|
21
|
+
* projectId: exampleProject.id,
|
|
22
|
+
* }));
|
|
23
|
+
* ```
|
|
24
|
+
*/
|
|
25
|
+
function getProjectMembers(args, opts) {
|
|
26
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
27
|
+
return pulumi.runtime.invoke("vercel:index/getProjectMembers:getProjectMembers", {
|
|
28
|
+
"projectId": args.projectId,
|
|
29
|
+
"teamId": args.teamId,
|
|
30
|
+
}, opts);
|
|
31
|
+
}
|
|
32
|
+
exports.getProjectMembers = getProjectMembers;
|
|
33
|
+
/**
|
|
34
|
+
* Retrieves members and their roles for a Vercel Project.
|
|
35
|
+
*
|
|
36
|
+
* ## Example Usage
|
|
37
|
+
*
|
|
38
|
+
* ```typescript
|
|
39
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
40
|
+
* import * as vercel from "@pulumi/vercel";
|
|
41
|
+
*
|
|
42
|
+
* const exampleProject = vercel.getProject({
|
|
43
|
+
* name: "example-with-members",
|
|
44
|
+
* });
|
|
45
|
+
* const exampleProjectMembers = exampleProject.then(exampleProject => vercel.getProjectMembers({
|
|
46
|
+
* projectId: exampleProject.id,
|
|
47
|
+
* }));
|
|
48
|
+
* ```
|
|
49
|
+
*/
|
|
50
|
+
function getProjectMembersOutput(args, opts) {
|
|
51
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
52
|
+
return pulumi.runtime.invokeOutput("vercel:index/getProjectMembers:getProjectMembers", {
|
|
53
|
+
"projectId": args.projectId,
|
|
54
|
+
"teamId": args.teamId,
|
|
55
|
+
}, opts);
|
|
56
|
+
}
|
|
57
|
+
exports.getProjectMembersOutput = getProjectMembersOutput;
|
|
58
|
+
//# sourceMappingURL=getProjectMembers.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getProjectMembers.js","sourceRoot":"","sources":["../getProjectMembers.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAA2B;IACtF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,kDAAkD,EAAE;QAC7E,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,8CAMC;AAqCD;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,uBAAuB,CAAC,IAAiC,EAAE,IAA2B;IAClG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,kDAAkD,EAAE;QACnF,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,0DAMC"}
|
|
@@ -50,6 +50,10 @@ export interface GetSharedEnvironmentVariableArgs {
|
|
|
50
50
|
* A collection of values returned by getSharedEnvironmentVariable.
|
|
51
51
|
*/
|
|
52
52
|
export interface GetSharedEnvironmentVariableResult {
|
|
53
|
+
/**
|
|
54
|
+
* A comment explaining what the environment variable is for.
|
|
55
|
+
*/
|
|
56
|
+
readonly comment: string;
|
|
53
57
|
/**
|
|
54
58
|
* The ID of the Environment Variable.
|
|
55
59
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getSharedEnvironmentVariable.js","sourceRoot":"","sources":["../getSharedEnvironmentVariable.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,SAAgB,4BAA4B,CAAC,IAAuC,EAAE,IAA2B;IAC7G,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wEAAwE,EAAE;QACnG,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,oEASC;
|
|
1
|
+
{"version":3,"file":"getSharedEnvironmentVariable.js","sourceRoot":"","sources":["../getSharedEnvironmentVariable.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,SAAgB,4BAA4B,CAAC,IAAuC,EAAE,IAA2B;IAC7G,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,wEAAwE,EAAE;QACnG,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,oEASC;AA6DD;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,SAAgB,kCAAkC,CAAC,IAA6C,EAAE,IAA2B;IACzH,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;IAClB,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,wEAAwE,EAAE;QACzG,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,gFASC"}
|
|
@@ -0,0 +1,111 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "./types/output";
|
|
3
|
+
/**
|
|
4
|
+
* Retrieves the configuration of an existing Vercel Team.
|
|
5
|
+
*
|
|
6
|
+
* ## Example Usage
|
|
7
|
+
*
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
+
* import * as vercel from "@pulumi/vercel";
|
|
11
|
+
*
|
|
12
|
+
* const example = vercel.getTeamConfig({
|
|
13
|
+
* id: "team_xxxxxxxxxxxxxxxxxxxxxxxx",
|
|
14
|
+
* });
|
|
15
|
+
* ```
|
|
16
|
+
*/
|
|
17
|
+
export declare function getTeamConfig(args: GetTeamConfigArgs, opts?: pulumi.InvokeOptions): Promise<GetTeamConfigResult>;
|
|
18
|
+
/**
|
|
19
|
+
* A collection of arguments for invoking getTeamConfig.
|
|
20
|
+
*/
|
|
21
|
+
export interface GetTeamConfigArgs {
|
|
22
|
+
/**
|
|
23
|
+
* The ID of the existing Vercel Team.
|
|
24
|
+
*/
|
|
25
|
+
id: string;
|
|
26
|
+
}
|
|
27
|
+
/**
|
|
28
|
+
* A collection of values returned by getTeamConfig.
|
|
29
|
+
*/
|
|
30
|
+
export interface GetTeamConfigResult {
|
|
31
|
+
/**
|
|
32
|
+
* A description of the team.
|
|
33
|
+
*/
|
|
34
|
+
readonly description: string;
|
|
35
|
+
/**
|
|
36
|
+
* Hostname that'll be matched with emails on sign-up to automatically join the Team.
|
|
37
|
+
*/
|
|
38
|
+
readonly emailDomain: string;
|
|
39
|
+
/**
|
|
40
|
+
* Preview feedback configuration.
|
|
41
|
+
*/
|
|
42
|
+
readonly enablePreviewFeedback: string;
|
|
43
|
+
/**
|
|
44
|
+
* Production feedback configuration.
|
|
45
|
+
*/
|
|
46
|
+
readonly enableProductionFeedback: string;
|
|
47
|
+
/**
|
|
48
|
+
* Indicates if ip addresses should be accessible in o11y tooling.
|
|
49
|
+
*/
|
|
50
|
+
readonly hideIpAddresses: boolean;
|
|
51
|
+
/**
|
|
52
|
+
* Indicates if ip addresses should be accessible in log drains.
|
|
53
|
+
*/
|
|
54
|
+
readonly hideIpAddressesInLogDrains: boolean;
|
|
55
|
+
/**
|
|
56
|
+
* The ID of the existing Vercel Team.
|
|
57
|
+
*/
|
|
58
|
+
readonly id: string;
|
|
59
|
+
/**
|
|
60
|
+
* A code that can be used to join this team. Only visible to Team owners.
|
|
61
|
+
*/
|
|
62
|
+
readonly inviteCode: string;
|
|
63
|
+
/**
|
|
64
|
+
* The name of the team.
|
|
65
|
+
*/
|
|
66
|
+
readonly name: string;
|
|
67
|
+
/**
|
|
68
|
+
* The hostname that is used as the preview deployment suffix.
|
|
69
|
+
*/
|
|
70
|
+
readonly previewDeploymentSuffix: string;
|
|
71
|
+
/**
|
|
72
|
+
* Configuration for Remote Caching.
|
|
73
|
+
*/
|
|
74
|
+
readonly remoteCaching: outputs.GetTeamConfigRemoteCaching;
|
|
75
|
+
/**
|
|
76
|
+
* Configuration for SAML authentication.
|
|
77
|
+
*/
|
|
78
|
+
readonly saml: outputs.GetTeamConfigSaml;
|
|
79
|
+
/**
|
|
80
|
+
* The policy for sensitive environment variables.
|
|
81
|
+
*/
|
|
82
|
+
readonly sensitiveEnvironmentVariablePolicy: string;
|
|
83
|
+
/**
|
|
84
|
+
* The slug of the team. Used in the URL of the team's dashboard.
|
|
85
|
+
*/
|
|
86
|
+
readonly slug: string;
|
|
87
|
+
}
|
|
88
|
+
/**
|
|
89
|
+
* Retrieves the configuration of an existing Vercel Team.
|
|
90
|
+
*
|
|
91
|
+
* ## Example Usage
|
|
92
|
+
*
|
|
93
|
+
* ```typescript
|
|
94
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
95
|
+
* import * as vercel from "@pulumi/vercel";
|
|
96
|
+
*
|
|
97
|
+
* const example = vercel.getTeamConfig({
|
|
98
|
+
* id: "team_xxxxxxxxxxxxxxxxxxxxxxxx",
|
|
99
|
+
* });
|
|
100
|
+
* ```
|
|
101
|
+
*/
|
|
102
|
+
export declare function getTeamConfigOutput(args: GetTeamConfigOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetTeamConfigResult>;
|
|
103
|
+
/**
|
|
104
|
+
* A collection of arguments for invoking getTeamConfig.
|
|
105
|
+
*/
|
|
106
|
+
export interface GetTeamConfigOutputArgs {
|
|
107
|
+
/**
|
|
108
|
+
* The ID of the existing Vercel Team.
|
|
109
|
+
*/
|
|
110
|
+
id: pulumi.Input<string>;
|
|
111
|
+
}
|
package/getTeamConfig.js
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
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.getTeamConfigOutput = exports.getTeamConfig = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Retrieves the configuration of an existing Vercel Team.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as vercel from "@pulumi/vercel";
|
|
16
|
+
*
|
|
17
|
+
* const example = vercel.getTeamConfig({
|
|
18
|
+
* id: "team_xxxxxxxxxxxxxxxxxxxxxxxx",
|
|
19
|
+
* });
|
|
20
|
+
* ```
|
|
21
|
+
*/
|
|
22
|
+
function getTeamConfig(args, opts) {
|
|
23
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
24
|
+
return pulumi.runtime.invoke("vercel:index/getTeamConfig:getTeamConfig", {
|
|
25
|
+
"id": args.id,
|
|
26
|
+
}, opts);
|
|
27
|
+
}
|
|
28
|
+
exports.getTeamConfig = getTeamConfig;
|
|
29
|
+
/**
|
|
30
|
+
* Retrieves the configuration of an existing Vercel Team.
|
|
31
|
+
*
|
|
32
|
+
* ## Example Usage
|
|
33
|
+
*
|
|
34
|
+
* ```typescript
|
|
35
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
36
|
+
* import * as vercel from "@pulumi/vercel";
|
|
37
|
+
*
|
|
38
|
+
* const example = vercel.getTeamConfig({
|
|
39
|
+
* id: "team_xxxxxxxxxxxxxxxxxxxxxxxx",
|
|
40
|
+
* });
|
|
41
|
+
* ```
|
|
42
|
+
*/
|
|
43
|
+
function getTeamConfigOutput(args, opts) {
|
|
44
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
45
|
+
return pulumi.runtime.invokeOutput("vercel:index/getTeamConfig:getTeamConfig", {
|
|
46
|
+
"id": args.id,
|
|
47
|
+
}, opts);
|
|
48
|
+
}
|
|
49
|
+
exports.getTeamConfigOutput = getTeamConfigOutput;
|
|
50
|
+
//# sourceMappingURL=getTeamConfig.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getTeamConfig.js","sourceRoot":"","sources":["../getTeamConfig.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,aAAa,CAAC,IAAuB,EAAE,IAA2B;IAC9E,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;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,sCAKC;AAyED;;;;;;;;;;;;;GAaG;AACH,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAA2B;IAC1F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,0CAA0C,EAAE;QAC3E,IAAI,EAAE,IAAI,CAAC,EAAE;KAChB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AALD,kDAKC"}
|