@pulumi/harness 0.11.2 → 0.11.3
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/autostopping/awsAlb.d.ts +7 -24
- package/autostopping/awsAlb.js +0 -9
- package/autostopping/awsAlb.js.map +1 -1
- package/autostopping/awsProxy.d.ts +6 -23
- package/autostopping/awsProxy.js +0 -9
- package/autostopping/awsProxy.js.map +1 -1
- package/autostopping/azureGateway.d.ts +9 -12
- package/autostopping/azureGateway.js +0 -5
- package/autostopping/azureGateway.js.map +1 -1
- package/autostopping/azureProxy.d.ts +6 -10
- package/autostopping/azureProxy.js +0 -6
- package/autostopping/azureProxy.js.map +1 -1
- package/autostopping/gcpProxy.d.ts +6 -10
- package/autostopping/gcpProxy.js +0 -6
- package/autostopping/gcpProxy.js.map +1 -1
- package/autostopping/getAwsAlb.d.ts +6 -21
- package/autostopping/getAwsAlb.js +0 -4
- package/autostopping/getAwsAlb.js.map +1 -1
- package/autostopping/getAwsProxy.d.ts +6 -21
- package/autostopping/getAwsProxy.js +0 -4
- package/autostopping/getAwsProxy.js.map +1 -1
- package/autostopping/getAzureGateway.d.ts +9 -12
- package/autostopping/getAzureGateway.js +0 -2
- package/autostopping/getAzureGateway.js.map +1 -1
- package/autostopping/getAzureProxy.d.ts +6 -9
- package/autostopping/getAzureProxy.js +0 -2
- package/autostopping/getAzureProxy.js.map +1 -1
- package/autostopping/getGcpProxy.d.ts +6 -9
- package/autostopping/getGcpProxy.js +0 -2
- package/autostopping/getGcpProxy.js.map +1 -1
- package/cluster/orchestrator.d.ts +28 -0
- package/cluster/orchestrator.js +28 -0
- package/cluster/orchestrator.js.map +1 -1
- package/encryptedText.d.ts +0 -1
- package/encryptedText.js +0 -1
- package/encryptedText.js.map +1 -1
- package/package.json +2 -2
- package/platform/environmentClustersMapping.d.ts +4 -0
- package/platform/environmentClustersMapping.js +4 -0
- package/platform/environmentClustersMapping.js.map +1 -1
- package/platform/getAzureKeyVaultConnector.d.ts +14 -0
- package/platform/getAzureKeyVaultConnector.js +14 -0
- package/platform/getAzureKeyVaultConnector.js.map +1 -1
- package/platform/getDelegateList.d.ts +9 -3
- package/platform/getDelegateList.js +6 -0
- package/platform/getDelegateList.js.map +1 -1
- package/platform/getInfraModule.d.ts +59 -9
- package/platform/getInfraModule.js +10 -0
- package/platform/getInfraModule.js.map +1 -1
- package/platform/getInfraModuleTesting.d.ts +9 -0
- package/platform/getInfraModuleTesting.js.map +1 -1
- package/platform/getInfraVariableSet.d.ts +18 -0
- package/platform/getInfraVariableSet.js.map +1 -1
- package/platform/getTerraformCloudConnector.d.ts +10 -0
- package/platform/getTerraformCloudConnector.js +4 -0
- package/platform/getTerraformCloudConnector.js.map +1 -1
- package/platform/getWorkspace.d.ts +18 -0
- package/platform/getWorkspace.js.map +1 -1
- package/platform/harRegistry.d.ts +8 -4
- package/platform/harRegistry.js +8 -4
- package/platform/harRegistry.js.map +1 -1
- package/platform/infraModule.d.ts +93 -0
- package/platform/infraModule.js +23 -0
- package/platform/infraModule.js.map +1 -1
- package/platform/infraModuleTesting.d.ts +11 -0
- package/platform/infraModuleTesting.js +2 -0
- package/platform/infraModuleTesting.js.map +1 -1
- package/platform/infraVariableSet.d.ts +18 -0
- package/platform/infraVariableSet.js.map +1 -1
- package/platform/monitoredService.d.ts +3 -3
- package/platform/monitoredService.js +3 -3
- package/platform/terraformCloudConnector.d.ts +19 -1
- package/platform/terraformCloudConnector.js +1 -1
- package/platform/terraformCloudConnector.js.map +1 -1
- package/platform/token.d.ts +6 -13
- package/platform/token.js +6 -13
- package/platform/token.js.map +1 -1
- package/platform/workspace.d.ts +36 -0
- package/platform/workspace.js.map +1 -1
- package/platformApiKey.d.ts +6 -13
- package/platformApiKey.js +6 -13
- package/platformApiKey.js.map +1 -1
- package/service/discoveryAgent.d.ts +0 -1
- package/service/discoveryAgent.js +0 -1
- package/service/discoveryAgent.js.map +1 -1
- package/types/output.d.ts +28 -0
- package/yamlConfig.d.ts +1 -1
- package/yamlConfig.js +1 -1
|
@@ -6,6 +6,13 @@ exports.getAzureKeyVaultConnectorOutput = exports.getAzureKeyVaultConnector = vo
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
/**
|
|
9
|
+
* Data source for looking up an Azure key vault connector.
|
|
10
|
+
*
|
|
11
|
+
* References:
|
|
12
|
+
* - For details on how to onboard with Terraform, please see Harness Terraform Provider Overview
|
|
13
|
+
* - To understand how to use Azure Key Vault, please see [Documentation](https://developer.harness.io/docs/platform/Secrets/Secrets-Management/azure-key-vault)
|
|
14
|
+
* - To get more information about Api, please see [API documentation](https://apidocs.harness.io/tag/Connectors)
|
|
15
|
+
*
|
|
9
16
|
* ## Example Usage
|
|
10
17
|
*
|
|
11
18
|
* ```typescript
|
|
@@ -28,6 +35,13 @@ function getAzureKeyVaultConnector(args, opts) {
|
|
|
28
35
|
}
|
|
29
36
|
exports.getAzureKeyVaultConnector = getAzureKeyVaultConnector;
|
|
30
37
|
/**
|
|
38
|
+
* Data source for looking up an Azure key vault connector.
|
|
39
|
+
*
|
|
40
|
+
* References:
|
|
41
|
+
* - For details on how to onboard with Terraform, please see Harness Terraform Provider Overview
|
|
42
|
+
* - To understand how to use Azure Key Vault, please see [Documentation](https://developer.harness.io/docs/platform/Secrets/Secrets-Management/azure-key-vault)
|
|
43
|
+
* - To get more information about Api, please see [API documentation](https://apidocs.harness.io/tag/Connectors)
|
|
44
|
+
*
|
|
31
45
|
* ## Example Usage
|
|
32
46
|
*
|
|
33
47
|
* ```typescript
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getAzureKeyVaultConnector.js","sourceRoot":"","sources":["../../platform/getAzureKeyVaultConnector.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"getAzureKeyVaultConnector.js","sourceRoot":"","sources":["../../platform/getAzureKeyVaultConnector.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,yBAAyB,CAAC,IAAmC,EAAE,IAA2B;IACtG,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,sEAAsE,EAAE;QACjG,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,8DAQC;AAyFD;;;;;;;;;;;;;;;;;;GAkBG;AACH,SAAgB,+BAA+B,CAAC,IAAyC,EAAE,IAAiC;IACxH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,sEAAsE,EAAE;QACvG,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,0EAQC"}
|
|
@@ -12,6 +12,7 @@ import * as outputs from "../types/output";
|
|
|
12
12
|
* // Get all delegates in an account
|
|
13
13
|
* const all = harness.platform.getDelegateList({
|
|
14
14
|
* accountId: "your_account_id",
|
|
15
|
+
* filterType: "Delegate",
|
|
15
16
|
* fetchAll: true,
|
|
16
17
|
* });
|
|
17
18
|
* // Get only connected delegates with specific tags
|
|
@@ -19,6 +20,7 @@ import * as outputs from "../types/output";
|
|
|
19
20
|
* accountId: "your_account_id",
|
|
20
21
|
* orgId: "your_org_id",
|
|
21
22
|
* projectId: "your_project_id",
|
|
23
|
+
* filterType: "Delegate",
|
|
22
24
|
* status: "CONNECTED",
|
|
23
25
|
* delegateTags: [
|
|
24
26
|
* "production",
|
|
@@ -28,6 +30,7 @@ import * as outputs from "../types/output";
|
|
|
28
30
|
* // Get delegates by name pattern and group
|
|
29
31
|
* const specificGroup = harness.platform.getDelegateList({
|
|
30
32
|
* accountId: "your_account_id",
|
|
33
|
+
* filterType: "Delegate",
|
|
31
34
|
* delegateName: "prod-delegate",
|
|
32
35
|
* delegateGroupIdentifier: "production-group",
|
|
33
36
|
* versionStatus: "ACTIVE",
|
|
@@ -64,7 +67,7 @@ export interface GetDelegateListArgs {
|
|
|
64
67
|
*/
|
|
65
68
|
delegateTags?: string[];
|
|
66
69
|
/**
|
|
67
|
-
* Whether to fetch all delegates.
|
|
70
|
+
* Whether to fetch all delegates. Defaults to `false`.
|
|
68
71
|
*/
|
|
69
72
|
fetchAll?: boolean;
|
|
70
73
|
/**
|
|
@@ -121,7 +124,7 @@ export interface GetDelegateListResult {
|
|
|
121
124
|
*/
|
|
122
125
|
readonly delegates: outputs.platform.GetDelegateListDelegate[];
|
|
123
126
|
/**
|
|
124
|
-
* Whether to fetch all delegates.
|
|
127
|
+
* Whether to fetch all delegates. Defaults to `false`.
|
|
125
128
|
*/
|
|
126
129
|
readonly fetchAll?: boolean;
|
|
127
130
|
/**
|
|
@@ -161,6 +164,7 @@ export interface GetDelegateListResult {
|
|
|
161
164
|
* // Get all delegates in an account
|
|
162
165
|
* const all = harness.platform.getDelegateList({
|
|
163
166
|
* accountId: "your_account_id",
|
|
167
|
+
* filterType: "Delegate",
|
|
164
168
|
* fetchAll: true,
|
|
165
169
|
* });
|
|
166
170
|
* // Get only connected delegates with specific tags
|
|
@@ -168,6 +172,7 @@ export interface GetDelegateListResult {
|
|
|
168
172
|
* accountId: "your_account_id",
|
|
169
173
|
* orgId: "your_org_id",
|
|
170
174
|
* projectId: "your_project_id",
|
|
175
|
+
* filterType: "Delegate",
|
|
171
176
|
* status: "CONNECTED",
|
|
172
177
|
* delegateTags: [
|
|
173
178
|
* "production",
|
|
@@ -177,6 +182,7 @@ export interface GetDelegateListResult {
|
|
|
177
182
|
* // Get delegates by name pattern and group
|
|
178
183
|
* const specificGroup = harness.platform.getDelegateList({
|
|
179
184
|
* accountId: "your_account_id",
|
|
185
|
+
* filterType: "Delegate",
|
|
180
186
|
* delegateName: "prod-delegate",
|
|
181
187
|
* delegateGroupIdentifier: "production-group",
|
|
182
188
|
* versionStatus: "ACTIVE",
|
|
@@ -213,7 +219,7 @@ export interface GetDelegateListOutputArgs {
|
|
|
213
219
|
*/
|
|
214
220
|
delegateTags?: pulumi.Input<pulumi.Input<string>[]>;
|
|
215
221
|
/**
|
|
216
|
-
* Whether to fetch all delegates.
|
|
222
|
+
* Whether to fetch all delegates. Defaults to `false`.
|
|
217
223
|
*/
|
|
218
224
|
fetchAll?: pulumi.Input<boolean>;
|
|
219
225
|
/**
|
|
@@ -17,6 +17,7 @@ const utilities = require("../utilities");
|
|
|
17
17
|
* // Get all delegates in an account
|
|
18
18
|
* const all = harness.platform.getDelegateList({
|
|
19
19
|
* accountId: "your_account_id",
|
|
20
|
+
* filterType: "Delegate",
|
|
20
21
|
* fetchAll: true,
|
|
21
22
|
* });
|
|
22
23
|
* // Get only connected delegates with specific tags
|
|
@@ -24,6 +25,7 @@ const utilities = require("../utilities");
|
|
|
24
25
|
* accountId: "your_account_id",
|
|
25
26
|
* orgId: "your_org_id",
|
|
26
27
|
* projectId: "your_project_id",
|
|
28
|
+
* filterType: "Delegate",
|
|
27
29
|
* status: "CONNECTED",
|
|
28
30
|
* delegateTags: [
|
|
29
31
|
* "production",
|
|
@@ -33,6 +35,7 @@ const utilities = require("../utilities");
|
|
|
33
35
|
* // Get delegates by name pattern and group
|
|
34
36
|
* const specificGroup = harness.platform.getDelegateList({
|
|
35
37
|
* accountId: "your_account_id",
|
|
38
|
+
* filterType: "Delegate",
|
|
36
39
|
* delegateName: "prod-delegate",
|
|
37
40
|
* delegateGroupIdentifier: "production-group",
|
|
38
41
|
* versionStatus: "ACTIVE",
|
|
@@ -69,6 +72,7 @@ exports.getDelegateList = getDelegateList;
|
|
|
69
72
|
* // Get all delegates in an account
|
|
70
73
|
* const all = harness.platform.getDelegateList({
|
|
71
74
|
* accountId: "your_account_id",
|
|
75
|
+
* filterType: "Delegate",
|
|
72
76
|
* fetchAll: true,
|
|
73
77
|
* });
|
|
74
78
|
* // Get only connected delegates with specific tags
|
|
@@ -76,6 +80,7 @@ exports.getDelegateList = getDelegateList;
|
|
|
76
80
|
* accountId: "your_account_id",
|
|
77
81
|
* orgId: "your_org_id",
|
|
78
82
|
* projectId: "your_project_id",
|
|
83
|
+
* filterType: "Delegate",
|
|
79
84
|
* status: "CONNECTED",
|
|
80
85
|
* delegateTags: [
|
|
81
86
|
* "production",
|
|
@@ -85,6 +90,7 @@ exports.getDelegateList = getDelegateList;
|
|
|
85
90
|
* // Get delegates by name pattern and group
|
|
86
91
|
* const specificGroup = harness.platform.getDelegateList({
|
|
87
92
|
* accountId: "your_account_id",
|
|
93
|
+
* filterType: "Delegate",
|
|
88
94
|
* delegateName: "prod-delegate",
|
|
89
95
|
* delegateGroupIdentifier: "production-group",
|
|
90
96
|
* versionStatus: "ACTIVE",
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getDelegateList.js","sourceRoot":"","sources":["../../platform/getDelegateList.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"getDelegateList.js","sourceRoot":"","sources":["../../platform/getDelegateList.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoCG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAClF,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,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,yBAAyB,EAAE,IAAI,CAAC,uBAAuB;QACvD,wBAAwB,EAAE,IAAI,CAAC,sBAAsB;QACrD,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,eAAe,EAAE,IAAI,CAAC,aAAa;KACtC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAhBD,0CAgBC;AAqHD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAoCG;AACH,SAAgB,qBAAqB,CAAC,IAA+B,EAAE,IAAiC;IACpG,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,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,yBAAyB,EAAE,IAAI,CAAC,uBAAuB;QACvD,wBAAwB,EAAE,IAAI,CAAC,sBAAsB;QACrD,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,eAAe,EAAE,IAAI,CAAC,aAAa;KACtC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAhBD,sDAgBC"}
|
|
@@ -40,12 +40,22 @@ export interface GetInfraModuleArgs {
|
|
|
40
40
|
*/
|
|
41
41
|
name: string;
|
|
42
42
|
/**
|
|
43
|
-
*
|
|
43
|
+
* Onboarding Pipeline identifier
|
|
44
44
|
*/
|
|
45
|
-
|
|
45
|
+
onboardingPipeline?: string;
|
|
46
|
+
/**
|
|
47
|
+
* Onboarding Pipeline organization
|
|
48
|
+
*/
|
|
49
|
+
onboardingPipelineOrg?: string;
|
|
46
50
|
/**
|
|
47
|
-
*
|
|
51
|
+
* Onboarding Pipeline project
|
|
48
52
|
*/
|
|
53
|
+
onboardingPipelineProject?: string;
|
|
54
|
+
/**
|
|
55
|
+
* Sync the project automatically
|
|
56
|
+
*/
|
|
57
|
+
onboardingPipelineSync?: boolean;
|
|
58
|
+
org?: string;
|
|
49
59
|
project?: string;
|
|
50
60
|
/**
|
|
51
61
|
* For account connectors, the repository where the module is stored
|
|
@@ -71,6 +81,10 @@ export interface GetInfraModuleArgs {
|
|
|
71
81
|
* URL where the module is stored
|
|
72
82
|
*/
|
|
73
83
|
repositoryUrl?: string;
|
|
84
|
+
/**
|
|
85
|
+
* How to store the artifact
|
|
86
|
+
*/
|
|
87
|
+
storageType?: string;
|
|
74
88
|
/**
|
|
75
89
|
* Timestamp when the module was last synced
|
|
76
90
|
*/
|
|
@@ -108,6 +122,14 @@ export interface GetInfraModuleResult {
|
|
|
108
122
|
* Account that owns the module
|
|
109
123
|
*/
|
|
110
124
|
readonly account: string;
|
|
125
|
+
/**
|
|
126
|
+
* Repository connector orgoanization
|
|
127
|
+
*/
|
|
128
|
+
readonly connectorOrg: string;
|
|
129
|
+
/**
|
|
130
|
+
* Repository connector project
|
|
131
|
+
*/
|
|
132
|
+
readonly connectorProject: string;
|
|
111
133
|
/**
|
|
112
134
|
* Timestamp when the module was created
|
|
113
135
|
*/
|
|
@@ -133,12 +155,22 @@ export interface GetInfraModuleResult {
|
|
|
133
155
|
*/
|
|
134
156
|
readonly name: string;
|
|
135
157
|
/**
|
|
136
|
-
*
|
|
158
|
+
* Onboarding Pipeline identifier
|
|
137
159
|
*/
|
|
138
|
-
readonly
|
|
160
|
+
readonly onboardingPipeline?: string;
|
|
161
|
+
/**
|
|
162
|
+
* Onboarding Pipeline organization
|
|
163
|
+
*/
|
|
164
|
+
readonly onboardingPipelineOrg?: string;
|
|
165
|
+
/**
|
|
166
|
+
* Onboarding Pipeline project
|
|
167
|
+
*/
|
|
168
|
+
readonly onboardingPipelineProject?: string;
|
|
139
169
|
/**
|
|
140
|
-
*
|
|
170
|
+
* Sync the project automatically
|
|
141
171
|
*/
|
|
172
|
+
readonly onboardingPipelineSync?: boolean;
|
|
173
|
+
readonly org: string;
|
|
142
174
|
readonly project: string;
|
|
143
175
|
/**
|
|
144
176
|
* For account connectors, the repository where the module is stored
|
|
@@ -164,6 +196,10 @@ export interface GetInfraModuleResult {
|
|
|
164
196
|
* URL where the module is stored
|
|
165
197
|
*/
|
|
166
198
|
readonly repositoryUrl: string;
|
|
199
|
+
/**
|
|
200
|
+
* How to store the artifact
|
|
201
|
+
*/
|
|
202
|
+
readonly storageType: string;
|
|
167
203
|
/**
|
|
168
204
|
* Timestamp when the module was last synced
|
|
169
205
|
*/
|
|
@@ -232,12 +268,22 @@ export interface GetInfraModuleOutputArgs {
|
|
|
232
268
|
*/
|
|
233
269
|
name: pulumi.Input<string>;
|
|
234
270
|
/**
|
|
235
|
-
*
|
|
271
|
+
* Onboarding Pipeline identifier
|
|
236
272
|
*/
|
|
237
|
-
|
|
273
|
+
onboardingPipeline?: pulumi.Input<string>;
|
|
238
274
|
/**
|
|
239
|
-
*
|
|
275
|
+
* Onboarding Pipeline organization
|
|
240
276
|
*/
|
|
277
|
+
onboardingPipelineOrg?: pulumi.Input<string>;
|
|
278
|
+
/**
|
|
279
|
+
* Onboarding Pipeline project
|
|
280
|
+
*/
|
|
281
|
+
onboardingPipelineProject?: pulumi.Input<string>;
|
|
282
|
+
/**
|
|
283
|
+
* Sync the project automatically
|
|
284
|
+
*/
|
|
285
|
+
onboardingPipelineSync?: pulumi.Input<boolean>;
|
|
286
|
+
org?: pulumi.Input<string>;
|
|
241
287
|
project?: pulumi.Input<string>;
|
|
242
288
|
/**
|
|
243
289
|
* For account connectors, the repository where the module is stored
|
|
@@ -263,6 +309,10 @@ export interface GetInfraModuleOutputArgs {
|
|
|
263
309
|
* URL where the module is stored
|
|
264
310
|
*/
|
|
265
311
|
repositoryUrl?: pulumi.Input<string>;
|
|
312
|
+
/**
|
|
313
|
+
* How to store the artifact
|
|
314
|
+
*/
|
|
315
|
+
storageType?: pulumi.Input<string>;
|
|
266
316
|
/**
|
|
267
317
|
* Timestamp when the module was last synced
|
|
268
318
|
*/
|
|
@@ -20,6 +20,10 @@ function getInfraModule(args, opts) {
|
|
|
20
20
|
"id": args.id,
|
|
21
21
|
"moduleError": args.moduleError,
|
|
22
22
|
"name": args.name,
|
|
23
|
+
"onboardingPipeline": args.onboardingPipeline,
|
|
24
|
+
"onboardingPipelineOrg": args.onboardingPipelineOrg,
|
|
25
|
+
"onboardingPipelineProject": args.onboardingPipelineProject,
|
|
26
|
+
"onboardingPipelineSync": args.onboardingPipelineSync,
|
|
23
27
|
"org": args.org,
|
|
24
28
|
"project": args.project,
|
|
25
29
|
"repository": args.repository,
|
|
@@ -28,6 +32,7 @@ function getInfraModule(args, opts) {
|
|
|
28
32
|
"repositoryConnector": args.repositoryConnector,
|
|
29
33
|
"repositoryPath": args.repositoryPath,
|
|
30
34
|
"repositoryUrl": args.repositoryUrl,
|
|
35
|
+
"storageType": args.storageType,
|
|
31
36
|
"synced": args.synced,
|
|
32
37
|
"system": args.system,
|
|
33
38
|
"tags": args.tags,
|
|
@@ -53,6 +58,10 @@ function getInfraModuleOutput(args, opts) {
|
|
|
53
58
|
"id": args.id,
|
|
54
59
|
"moduleError": args.moduleError,
|
|
55
60
|
"name": args.name,
|
|
61
|
+
"onboardingPipeline": args.onboardingPipeline,
|
|
62
|
+
"onboardingPipelineOrg": args.onboardingPipelineOrg,
|
|
63
|
+
"onboardingPipelineProject": args.onboardingPipelineProject,
|
|
64
|
+
"onboardingPipelineSync": args.onboardingPipelineSync,
|
|
56
65
|
"org": args.org,
|
|
57
66
|
"project": args.project,
|
|
58
67
|
"repository": args.repository,
|
|
@@ -61,6 +70,7 @@ function getInfraModuleOutput(args, opts) {
|
|
|
61
70
|
"repositoryConnector": args.repositoryConnector,
|
|
62
71
|
"repositoryPath": args.repositoryPath,
|
|
63
72
|
"repositoryUrl": args.repositoryUrl,
|
|
73
|
+
"storageType": args.storageType,
|
|
64
74
|
"synced": args.synced,
|
|
65
75
|
"system": args.system,
|
|
66
76
|
"tags": args.tags,
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getInfraModule.js","sourceRoot":"","sources":["../../platform/getInfraModule.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;GAIG;AACH,SAAgB,cAAc,CAAC,IAAwB,EAAE,IAA2B;IAChF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,gDAAgD,EAAE;QAC3E,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,qBAAqB,EAAE,IAAI,CAAC,mBAAmB;QAC/C,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,QAAQ,EAAE,IAAI,CAAC,MAAM;QACrB,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,iBAAiB,EAAE,IAAI,CAAC,eAAe;QACvC,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;
|
|
1
|
+
{"version":3,"file":"getInfraModule.js","sourceRoot":"","sources":["../../platform/getInfraModule.ts"],"names":[],"mappings":"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"}
|
|
@@ -29,6 +29,9 @@ export interface GetInfraModuleTestingArgs {
|
|
|
29
29
|
* Provider connector for testing purposes
|
|
30
30
|
*/
|
|
31
31
|
providerConnector: string;
|
|
32
|
+
/**
|
|
33
|
+
* Provisioner type for testing purposes (e.g., terraform, tofu)
|
|
34
|
+
*/
|
|
32
35
|
provisionerType: string;
|
|
33
36
|
/**
|
|
34
37
|
* Provisioner version for testing purposes
|
|
@@ -107,6 +110,9 @@ export interface GetInfraModuleTestingResult {
|
|
|
107
110
|
* Provider connector for testing purposes
|
|
108
111
|
*/
|
|
109
112
|
readonly providerConnector: string;
|
|
113
|
+
/**
|
|
114
|
+
* Provisioner type for testing purposes (e.g., terraform, tofu)
|
|
115
|
+
*/
|
|
110
116
|
readonly provisionerType: string;
|
|
111
117
|
/**
|
|
112
118
|
* Provisioner version for testing purposes
|
|
@@ -197,6 +203,9 @@ export interface GetInfraModuleTestingOutputArgs {
|
|
|
197
203
|
* Provider connector for testing purposes
|
|
198
204
|
*/
|
|
199
205
|
providerConnector: pulumi.Input<string>;
|
|
206
|
+
/**
|
|
207
|
+
* Provisioner type for testing purposes (e.g., terraform, tofu)
|
|
208
|
+
*/
|
|
200
209
|
provisionerType: pulumi.Input<string>;
|
|
201
210
|
/**
|
|
202
211
|
* Provisioner version for testing purposes
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getInfraModuleTesting.js","sourceRoot":"","sources":["../../platform/getInfraModuleTesting.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,qBAAqB,CAAC,IAA+B,EAAE,IAA2B;IAC9F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8DAA8D,EAAE;QACzF,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;QAC3C,iBAAiB,EAAE,IAAI,CAAC,eAAe;QACvC,oBAAoB,EAAE,IAAI,CAAC,kBAAkB;QAC7C,iBAAiB,EAAE,IAAI,CAAC,eAAe;QACvC,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,iBAAiB,EAAE,IAAI,CAAC,eAAe;QACvC,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAhBD,sDAgBC;
|
|
1
|
+
{"version":3,"file":"getInfraModuleTesting.js","sourceRoot":"","sources":["../../platform/getInfraModuleTesting.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,qBAAqB,CAAC,IAA+B,EAAE,IAA2B;IAC9F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,8DAA8D,EAAE;QACzF,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;QAC3C,iBAAiB,EAAE,IAAI,CAAC,eAAe;QACvC,oBAAoB,EAAE,IAAI,CAAC,kBAAkB;QAC7C,iBAAiB,EAAE,IAAI,CAAC,eAAe;QACvC,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,iBAAiB,EAAE,IAAI,CAAC,eAAe;QACvC,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAhBD,sDAgBC;AA6KD;;GAEG;AACH,SAAgB,2BAA2B,CAAC,IAAqC,EAAE,IAAiC;IAChH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,8DAA8D,EAAE;QAC/F,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,KAAK,EAAE,IAAI,CAAC,GAAG;QACf,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,mBAAmB,EAAE,IAAI,CAAC,iBAAiB;QAC3C,iBAAiB,EAAE,IAAI,CAAC,eAAe;QACvC,oBAAoB,EAAE,IAAI,CAAC,kBAAkB;QAC7C,iBAAiB,EAAE,IAAI,CAAC,eAAe;QACvC,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,iBAAiB,EAAE,IAAI,CAAC,eAAe;QACvC,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,UAAU,EAAE,IAAI,CAAC,QAAQ;KAC5B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAhBD,kEAgBC"}
|
|
@@ -53,7 +53,13 @@ export interface GetInfraVariableSetArgs {
|
|
|
53
53
|
* Unique identifier of the project.
|
|
54
54
|
*/
|
|
55
55
|
projectId?: string;
|
|
56
|
+
/**
|
|
57
|
+
* Terraform variables files configured on the Variable Set (see below for nested schema)
|
|
58
|
+
*/
|
|
56
59
|
terraformVariableFiles?: inputs.platform.GetInfraVariableSetTerraformVariableFile[];
|
|
60
|
+
/**
|
|
61
|
+
* Terraform variables configured on the Variable Set. Terraform variable keys must be unique within the Variable Set. (see below for nested schema)
|
|
62
|
+
*/
|
|
57
63
|
terraformVariables?: inputs.platform.GetInfraVariableSetTerraformVariable[];
|
|
58
64
|
}
|
|
59
65
|
/**
|
|
@@ -96,7 +102,13 @@ export interface GetInfraVariableSetResult {
|
|
|
96
102
|
* Tags to associate with the resource.
|
|
97
103
|
*/
|
|
98
104
|
readonly tags: string[];
|
|
105
|
+
/**
|
|
106
|
+
* Terraform variables files configured on the Variable Set (see below for nested schema)
|
|
107
|
+
*/
|
|
99
108
|
readonly terraformVariableFiles: outputs.platform.GetInfraVariableSetTerraformVariableFile[];
|
|
109
|
+
/**
|
|
110
|
+
* Terraform variables configured on the Variable Set. Terraform variable keys must be unique within the Variable Set. (see below for nested schema)
|
|
111
|
+
*/
|
|
100
112
|
readonly terraformVariables: outputs.platform.GetInfraVariableSetTerraformVariable[];
|
|
101
113
|
}
|
|
102
114
|
/**
|
|
@@ -151,6 +163,12 @@ export interface GetInfraVariableSetOutputArgs {
|
|
|
151
163
|
* Unique identifier of the project.
|
|
152
164
|
*/
|
|
153
165
|
projectId?: pulumi.Input<string>;
|
|
166
|
+
/**
|
|
167
|
+
* Terraform variables files configured on the Variable Set (see below for nested schema)
|
|
168
|
+
*/
|
|
154
169
|
terraformVariableFiles?: pulumi.Input<pulumi.Input<inputs.platform.GetInfraVariableSetTerraformVariableFileArgs>[]>;
|
|
170
|
+
/**
|
|
171
|
+
* Terraform variables configured on the Variable Set. Terraform variable keys must be unique within the Variable Set. (see below for nested schema)
|
|
172
|
+
*/
|
|
155
173
|
terraformVariables?: pulumi.Input<pulumi.Input<inputs.platform.GetInfraVariableSetTerraformVariableArgs>[]>;
|
|
156
174
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getInfraVariableSet.js","sourceRoot":"","sources":["../../platform/getInfraVariableSet.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;GAsBG;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,MAAM,CAAC,0DAA0D,EAAE;QACrF,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,sBAAsB,EAAE,IAAI,CAAC,oBAAoB;QACjD,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,wBAAwB,EAAE,IAAI,CAAC,sBAAsB;QACrD,oBAAoB,EAAE,IAAI,CAAC,kBAAkB;KAChD,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,kDAYC;
|
|
1
|
+
{"version":3,"file":"getInfraVariableSet.js","sourceRoot":"","sources":["../../platform/getInfraVariableSet.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;GAsBG;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,MAAM,CAAC,0DAA0D,EAAE;QACrF,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,sBAAsB,EAAE,IAAI,CAAC,oBAAoB;QACjD,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,wBAAwB,EAAE,IAAI,CAAC,sBAAsB;QACrD,oBAAoB,EAAE,IAAI,CAAC,kBAAkB;KAChD,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,kDAYC;AAyFD;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,SAAgB,yBAAyB,CAAC,IAAmC,EAAE,IAAiC;IAC5G,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,0DAA0D,EAAE;QAC3F,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,sBAAsB,EAAE,IAAI,CAAC,oBAAoB;QACjD,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,wBAAwB,EAAE,IAAI,CAAC,sBAAsB;QACrD,oBAAoB,EAAE,IAAI,CAAC,kBAAkB;KAChD,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,8DAYC"}
|
|
@@ -1,6 +1,8 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import * as outputs from "../types/output";
|
|
3
3
|
/**
|
|
4
|
+
* Resource for looking up a Terraform Cloud connector.
|
|
5
|
+
*
|
|
4
6
|
* ## Example Usage
|
|
5
7
|
*
|
|
6
8
|
* ```typescript
|
|
@@ -38,6 +40,9 @@ export interface GetTerraformCloudConnectorArgs {
|
|
|
38
40
|
* A collection of values returned by getTerraformCloudConnector.
|
|
39
41
|
*/
|
|
40
42
|
export interface GetTerraformCloudConnectorResult {
|
|
43
|
+
/**
|
|
44
|
+
* Credentials to connect to the Terraform Cloud platform.
|
|
45
|
+
*/
|
|
41
46
|
readonly credentials: outputs.platform.GetTerraformCloudConnectorCredential[];
|
|
42
47
|
/**
|
|
43
48
|
* Tags to filter delegates for connection.
|
|
@@ -71,9 +76,14 @@ export interface GetTerraformCloudConnectorResult {
|
|
|
71
76
|
* Tags to associate with the resource.
|
|
72
77
|
*/
|
|
73
78
|
readonly tags: string[];
|
|
79
|
+
/**
|
|
80
|
+
* URL of the Terraform Cloud platform.
|
|
81
|
+
*/
|
|
74
82
|
readonly url: string;
|
|
75
83
|
}
|
|
76
84
|
/**
|
|
85
|
+
* Resource for looking up a Terraform Cloud connector.
|
|
86
|
+
*
|
|
77
87
|
* ## Example Usage
|
|
78
88
|
*
|
|
79
89
|
* ```typescript
|
|
@@ -6,6 +6,8 @@ exports.getTerraformCloudConnectorOutput = exports.getTerraformCloudConnector =
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("../utilities");
|
|
8
8
|
/**
|
|
9
|
+
* Resource for looking up a Terraform Cloud connector.
|
|
10
|
+
*
|
|
9
11
|
* ## Example Usage
|
|
10
12
|
*
|
|
11
13
|
* ```typescript
|
|
@@ -28,6 +30,8 @@ function getTerraformCloudConnector(args, opts) {
|
|
|
28
30
|
}
|
|
29
31
|
exports.getTerraformCloudConnector = getTerraformCloudConnector;
|
|
30
32
|
/**
|
|
33
|
+
* Resource for looking up a Terraform Cloud connector.
|
|
34
|
+
*
|
|
31
35
|
* ## Example Usage
|
|
32
36
|
*
|
|
33
37
|
* ```typescript
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getTerraformCloudConnector.js","sourceRoot":"","sources":["../../platform/getTerraformCloudConnector.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"getTerraformCloudConnector.js","sourceRoot":"","sources":["../../platform/getTerraformCloudConnector.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;GAaG;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,MAAM,CAAC,wEAAwE,EAAE;QACnG,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,gEAQC;AAqED;;;;;;;;;;;;;GAaG;AACH,SAAgB,gCAAgC,CAAC,IAA0C,EAAE,IAAiC;IAC1H,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,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AARD,4EAQC"}
|
|
@@ -62,7 +62,13 @@ export interface GetWorkspaceArgs {
|
|
|
62
62
|
* Tags to associate with the resource.
|
|
63
63
|
*/
|
|
64
64
|
tags?: string[];
|
|
65
|
+
/**
|
|
66
|
+
* Terraform variables files configured on the workspace (see below for nested schema)
|
|
67
|
+
*/
|
|
65
68
|
terraformVariableFiles?: inputs.platform.GetWorkspaceTerraformVariableFile[];
|
|
69
|
+
/**
|
|
70
|
+
* Terraform variables configured on the workspace (see below for nested schema)
|
|
71
|
+
*/
|
|
66
72
|
terraformVariables?: inputs.platform.GetWorkspaceTerraformVariable[];
|
|
67
73
|
/**
|
|
68
74
|
* Variable sets to use.
|
|
@@ -155,7 +161,13 @@ export interface GetWorkspaceResult {
|
|
|
155
161
|
* Tags to associate with the resource.
|
|
156
162
|
*/
|
|
157
163
|
readonly tags?: string[];
|
|
164
|
+
/**
|
|
165
|
+
* Terraform variables files configured on the workspace (see below for nested schema)
|
|
166
|
+
*/
|
|
158
167
|
readonly terraformVariableFiles: outputs.platform.GetWorkspaceTerraformVariableFile[];
|
|
168
|
+
/**
|
|
169
|
+
* Terraform variables configured on the workspace (see below for nested schema)
|
|
170
|
+
*/
|
|
159
171
|
readonly terraformVariables: outputs.platform.GetWorkspaceTerraformVariable[];
|
|
160
172
|
/**
|
|
161
173
|
* Variable sets to use.
|
|
@@ -223,7 +235,13 @@ export interface GetWorkspaceOutputArgs {
|
|
|
223
235
|
* Tags to associate with the resource.
|
|
224
236
|
*/
|
|
225
237
|
tags?: pulumi.Input<pulumi.Input<string>[]>;
|
|
238
|
+
/**
|
|
239
|
+
* Terraform variables files configured on the workspace (see below for nested schema)
|
|
240
|
+
*/
|
|
226
241
|
terraformVariableFiles?: pulumi.Input<pulumi.Input<inputs.platform.GetWorkspaceTerraformVariableFileArgs>[]>;
|
|
242
|
+
/**
|
|
243
|
+
* Terraform variables configured on the workspace (see below for nested schema)
|
|
244
|
+
*/
|
|
227
245
|
terraformVariables?: pulumi.Input<pulumi.Input<inputs.platform.GetWorkspaceTerraformVariableArgs>[]>;
|
|
228
246
|
/**
|
|
229
247
|
* Variable sets to use.
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getWorkspace.js","sourceRoot":"","sources":["../../platform/getWorkspace.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,YAAY,CAAC,IAAsB,EAAE,IAA2B;IAC5E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4CAA4C,EAAE;QACvE,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,sBAAsB,EAAE,IAAI,CAAC,oBAAoB;QACjD,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,wBAAwB,EAAE,IAAI,CAAC,sBAAsB;QACrD,oBAAoB,EAAE,IAAI,CAAC,kBAAkB;QAC7C,cAAc,EAAE,IAAI,CAAC,YAAY;KACpC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAjBD,oCAiBC;
|
|
1
|
+
{"version":3,"file":"getWorkspace.js","sourceRoot":"","sources":["../../platform/getWorkspace.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,YAAY,CAAC,IAAsB,EAAE,IAA2B;IAC5E,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,4CAA4C,EAAE;QACvE,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,sBAAsB,EAAE,IAAI,CAAC,oBAAoB;QACjD,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,wBAAwB,EAAE,IAAI,CAAC,sBAAsB;QACrD,oBAAoB,EAAE,IAAI,CAAC,kBAAkB;QAC7C,cAAc,EAAE,IAAI,CAAC,YAAY;KACpC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAjBD,oCAiBC;AA6JD;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,kBAAkB,CAAC,IAA4B,EAAE,IAAiC;IAC9F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,4CAA4C,EAAE;QAC7E,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,sBAAsB,EAAE,IAAI,CAAC,oBAAoB;QACjD,YAAY,EAAE,IAAI,CAAC,UAAU;QAC7B,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,kBAAkB,EAAE,IAAI,CAAC,gBAAgB;QACzC,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,wBAAwB,EAAE,IAAI,CAAC,sBAAsB;QACrD,oBAAoB,EAAE,IAAI,CAAC,kBAAkB;QAC7C,cAAc,EAAE,IAAI,CAAC,YAAY;KACpC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAjBD,gDAiBC"}
|
|
@@ -50,13 +50,17 @@ import * as outputs from "../types/output";
|
|
|
50
50
|
*
|
|
51
51
|
* ## Import
|
|
52
52
|
*
|
|
53
|
-
* ###
|
|
53
|
+
* ### Import Format
|
|
54
|
+
*
|
|
55
|
+
* The import ID format is: `<space_ref>/<identifier>`
|
|
54
56
|
*
|
|
55
|
-
*
|
|
57
|
+
* Where:
|
|
58
|
+
* - `spaceRef` defines the scope: account, org, or project level
|
|
59
|
+
* - `identifier` is the unique registry identifier
|
|
56
60
|
*
|
|
57
|
-
*
|
|
61
|
+
* ### Import Examples
|
|
58
62
|
*
|
|
59
|
-
*
|
|
63
|
+
* ### After Import
|
|
60
64
|
*/
|
|
61
65
|
export declare class HarRegistry extends pulumi.CustomResource {
|
|
62
66
|
/**
|
package/platform/harRegistry.js
CHANGED
|
@@ -54,13 +54,17 @@ const utilities = require("../utilities");
|
|
|
54
54
|
*
|
|
55
55
|
* ## Import
|
|
56
56
|
*
|
|
57
|
-
* ###
|
|
57
|
+
* ### Import Format
|
|
58
|
+
*
|
|
59
|
+
* The import ID format is: `<space_ref>/<identifier>`
|
|
58
60
|
*
|
|
59
|
-
*
|
|
61
|
+
* Where:
|
|
62
|
+
* - `spaceRef` defines the scope: account, org, or project level
|
|
63
|
+
* - `identifier` is the unique registry identifier
|
|
60
64
|
*
|
|
61
|
-
*
|
|
65
|
+
* ### Import Examples
|
|
62
66
|
*
|
|
63
|
-
*
|
|
67
|
+
* ### After Import
|
|
64
68
|
*/
|
|
65
69
|
class HarRegistry extends pulumi.CustomResource {
|
|
66
70
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"harRegistry.js","sourceRoot":"","sources":["../../platform/harRegistry.ts"],"names":[],"mappings":";AAAA,sEAAsE;AACtE,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C
|
|
1
|
+
{"version":3,"file":"harRegistry.js","sourceRoot":"","sources":["../../platform/harRegistry.ts"],"names":[],"mappings":"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"}
|