@pulumi/harness 0.4.4 → 0.4.5-alpha.1733740336
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/package.json +2 -2
- package/platform/getGitopsAgent.d.ts +28 -30
- package/platform/getGitopsAgent.js +2 -28
- package/platform/getGitopsAgent.js.map +1 -1
- package/platform/getGitopsAgentDeployYaml.d.ts +8 -2
- package/platform/getGitopsAgentDeployYaml.js.map +1 -1
- package/platform/getGitopsAppProject.d.ts +8 -2
- package/platform/getGitopsAppProject.js.map +1 -1
- package/platform/getGitopsAppProjectMapping.d.ts +8 -2
- package/platform/getGitopsAppProjectMapping.js.map +1 -1
- package/platform/getGitopsApplications.d.ts +8 -2
- package/platform/getGitopsApplications.js.map +1 -1
- package/platform/getGitopsCluster.d.ts +8 -2
- package/platform/getGitopsCluster.js.map +1 -1
- package/platform/getGitopsGnupg.d.ts +8 -2
- package/platform/getGitopsGnupg.js.map +1 -1
- package/platform/getGitopsRepoCert.d.ts +11 -5
- package/platform/getGitopsRepoCert.js.map +1 -1
- package/platform/getGitopsRepoCred.d.ts +8 -2
- package/platform/getGitopsRepoCred.js.map +1 -1
- package/platform/getGitopsRepository.d.ts +8 -2
- package/platform/getGitopsRepository.js.map +1 -1
- package/platform/getInfraModule.d.ts +180 -0
- package/platform/getInfraModule.js +52 -0
- package/platform/getInfraModule.js.map +1 -0
- package/platform/gitOpsAgent.d.ts +15 -1
- package/platform/gitOpsAgent.js +2 -3
- package/platform/gitOpsAgent.js.map +1 -1
- package/platform/gitOpsApplications.d.ts +7 -1
- package/platform/gitOpsApplications.js +0 -3
- package/platform/gitOpsApplications.js.map +1 -1
- package/platform/gitOpsCluster.d.ts +7 -1
- package/platform/gitOpsCluster.js +0 -3
- package/platform/gitOpsCluster.js.map +1 -1
- package/platform/gitOpsGnupg.d.ts +7 -1
- package/platform/gitOpsGnupg.js +0 -3
- package/platform/gitOpsGnupg.js.map +1 -1
- package/platform/gitOpsRepoCert.d.ts +7 -1
- package/platform/gitOpsRepoCert.js +0 -3
- package/platform/gitOpsRepoCert.js.map +1 -1
- package/platform/gitOpsRepoCred.d.ts +7 -1
- package/platform/gitOpsRepoCred.js +0 -3
- package/platform/gitOpsRepoCred.js.map +1 -1
- package/platform/gitOpsRepository.d.ts +7 -1
- package/platform/gitOpsRepository.js +0 -3
- package/platform/gitOpsRepository.js.map +1 -1
- package/platform/gitopsAppProject.d.ts +25 -19
- package/platform/gitopsAppProject.js +0 -3
- package/platform/gitopsAppProject.js.map +1 -1
- package/platform/gitopsAppProjectMapping.d.ts +7 -1
- package/platform/gitopsAppProjectMapping.js +0 -3
- package/platform/gitopsAppProjectMapping.js.map +1 -1
- package/platform/index.d.ts +6 -0
- package/platform/index.js +13 -5
- package/platform/index.js.map +1 -1
- package/platform/infraModule.d.ts +216 -0
- package/platform/infraModule.js +100 -0
- package/platform/infraModule.js.map +1 -0
- package/types/input.d.ts +15 -3
- package/types/output.d.ts +20 -0
|
@@ -0,0 +1,180 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Data source for retrieving modules from the module registry.
|
|
4
|
+
*/
|
|
5
|
+
export declare function getInfraModule(args: GetInfraModuleArgs, opts?: pulumi.InvokeOptions): Promise<GetInfraModuleResult>;
|
|
6
|
+
/**
|
|
7
|
+
* A collection of arguments for invoking getInfraModule.
|
|
8
|
+
*/
|
|
9
|
+
export interface GetInfraModuleArgs {
|
|
10
|
+
/**
|
|
11
|
+
* Timestamp when the module was created
|
|
12
|
+
*/
|
|
13
|
+
created?: number;
|
|
14
|
+
/**
|
|
15
|
+
* Description of the module
|
|
16
|
+
*/
|
|
17
|
+
description?: string;
|
|
18
|
+
/**
|
|
19
|
+
* Identifier of the module
|
|
20
|
+
*/
|
|
21
|
+
id: string;
|
|
22
|
+
/**
|
|
23
|
+
* Name of the module
|
|
24
|
+
*/
|
|
25
|
+
name: string;
|
|
26
|
+
/**
|
|
27
|
+
* For account connectors, the repository where the module is stored
|
|
28
|
+
*/
|
|
29
|
+
repository?: string;
|
|
30
|
+
/**
|
|
31
|
+
* Repository Branch in which the module should be accessed
|
|
32
|
+
*/
|
|
33
|
+
repositoryBranch?: string;
|
|
34
|
+
/**
|
|
35
|
+
* Repository Commit in which the module should be accessed
|
|
36
|
+
*/
|
|
37
|
+
repositoryCommit?: string;
|
|
38
|
+
/**
|
|
39
|
+
* Repository Connector is the reference to the connector for the repository
|
|
40
|
+
*/
|
|
41
|
+
repositoryConnector?: string;
|
|
42
|
+
/**
|
|
43
|
+
* Repository Path is the path in which the module resides
|
|
44
|
+
*/
|
|
45
|
+
repositoryPath?: string;
|
|
46
|
+
/**
|
|
47
|
+
* URL where the module is stored
|
|
48
|
+
*/
|
|
49
|
+
repositoryUrl?: string;
|
|
50
|
+
/**
|
|
51
|
+
* Timestamp when the module was last synced
|
|
52
|
+
*/
|
|
53
|
+
synced?: number;
|
|
54
|
+
/**
|
|
55
|
+
* Provider of the module
|
|
56
|
+
*/
|
|
57
|
+
system: string;
|
|
58
|
+
/**
|
|
59
|
+
* Tags associated with the module
|
|
60
|
+
*/
|
|
61
|
+
tags?: string;
|
|
62
|
+
}
|
|
63
|
+
/**
|
|
64
|
+
* A collection of values returned by getInfraModule.
|
|
65
|
+
*/
|
|
66
|
+
export interface GetInfraModuleResult {
|
|
67
|
+
/**
|
|
68
|
+
* Timestamp when the module was created
|
|
69
|
+
*/
|
|
70
|
+
readonly created: number;
|
|
71
|
+
/**
|
|
72
|
+
* Description of the module
|
|
73
|
+
*/
|
|
74
|
+
readonly description: string;
|
|
75
|
+
/**
|
|
76
|
+
* Identifier of the module
|
|
77
|
+
*/
|
|
78
|
+
readonly id: string;
|
|
79
|
+
/**
|
|
80
|
+
* Name of the module
|
|
81
|
+
*/
|
|
82
|
+
readonly name: string;
|
|
83
|
+
/**
|
|
84
|
+
* For account connectors, the repository where the module is stored
|
|
85
|
+
*/
|
|
86
|
+
readonly repository: string;
|
|
87
|
+
/**
|
|
88
|
+
* Repository Branch in which the module should be accessed
|
|
89
|
+
*/
|
|
90
|
+
readonly repositoryBranch: string;
|
|
91
|
+
/**
|
|
92
|
+
* Repository Commit in which the module should be accessed
|
|
93
|
+
*/
|
|
94
|
+
readonly repositoryCommit: string;
|
|
95
|
+
/**
|
|
96
|
+
* Repository Connector is the reference to the connector for the repository
|
|
97
|
+
*/
|
|
98
|
+
readonly repositoryConnector: string;
|
|
99
|
+
/**
|
|
100
|
+
* Repository Path is the path in which the module resides
|
|
101
|
+
*/
|
|
102
|
+
readonly repositoryPath: string;
|
|
103
|
+
/**
|
|
104
|
+
* URL where the module is stored
|
|
105
|
+
*/
|
|
106
|
+
readonly repositoryUrl: string;
|
|
107
|
+
/**
|
|
108
|
+
* Timestamp when the module was last synced
|
|
109
|
+
*/
|
|
110
|
+
readonly synced: number;
|
|
111
|
+
/**
|
|
112
|
+
* Provider of the module
|
|
113
|
+
*/
|
|
114
|
+
readonly system: string;
|
|
115
|
+
/**
|
|
116
|
+
* Tags associated with the module
|
|
117
|
+
*/
|
|
118
|
+
readonly tags: string;
|
|
119
|
+
}
|
|
120
|
+
/**
|
|
121
|
+
* Data source for retrieving modules from the module registry.
|
|
122
|
+
*/
|
|
123
|
+
export declare function getInfraModuleOutput(args: GetInfraModuleOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetInfraModuleResult>;
|
|
124
|
+
/**
|
|
125
|
+
* A collection of arguments for invoking getInfraModule.
|
|
126
|
+
*/
|
|
127
|
+
export interface GetInfraModuleOutputArgs {
|
|
128
|
+
/**
|
|
129
|
+
* Timestamp when the module was created
|
|
130
|
+
*/
|
|
131
|
+
created?: pulumi.Input<number>;
|
|
132
|
+
/**
|
|
133
|
+
* Description of the module
|
|
134
|
+
*/
|
|
135
|
+
description?: pulumi.Input<string>;
|
|
136
|
+
/**
|
|
137
|
+
* Identifier of the module
|
|
138
|
+
*/
|
|
139
|
+
id: pulumi.Input<string>;
|
|
140
|
+
/**
|
|
141
|
+
* Name of the module
|
|
142
|
+
*/
|
|
143
|
+
name: pulumi.Input<string>;
|
|
144
|
+
/**
|
|
145
|
+
* For account connectors, the repository where the module is stored
|
|
146
|
+
*/
|
|
147
|
+
repository?: pulumi.Input<string>;
|
|
148
|
+
/**
|
|
149
|
+
* Repository Branch in which the module should be accessed
|
|
150
|
+
*/
|
|
151
|
+
repositoryBranch?: pulumi.Input<string>;
|
|
152
|
+
/**
|
|
153
|
+
* Repository Commit in which the module should be accessed
|
|
154
|
+
*/
|
|
155
|
+
repositoryCommit?: pulumi.Input<string>;
|
|
156
|
+
/**
|
|
157
|
+
* Repository Connector is the reference to the connector for the repository
|
|
158
|
+
*/
|
|
159
|
+
repositoryConnector?: pulumi.Input<string>;
|
|
160
|
+
/**
|
|
161
|
+
* Repository Path is the path in which the module resides
|
|
162
|
+
*/
|
|
163
|
+
repositoryPath?: pulumi.Input<string>;
|
|
164
|
+
/**
|
|
165
|
+
* URL where the module is stored
|
|
166
|
+
*/
|
|
167
|
+
repositoryUrl?: pulumi.Input<string>;
|
|
168
|
+
/**
|
|
169
|
+
* Timestamp when the module was last synced
|
|
170
|
+
*/
|
|
171
|
+
synced?: pulumi.Input<number>;
|
|
172
|
+
/**
|
|
173
|
+
* Provider of the module
|
|
174
|
+
*/
|
|
175
|
+
system: pulumi.Input<string>;
|
|
176
|
+
/**
|
|
177
|
+
* Tags associated with the module
|
|
178
|
+
*/
|
|
179
|
+
tags?: pulumi.Input<string>;
|
|
180
|
+
}
|
|
@@ -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.getInfraModuleOutput = exports.getInfraModule = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Data source for retrieving modules from the module registry.
|
|
10
|
+
*/
|
|
11
|
+
function getInfraModule(args, opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("harness:platform/getInfraModule:getInfraModule", {
|
|
14
|
+
"created": args.created,
|
|
15
|
+
"description": args.description,
|
|
16
|
+
"id": args.id,
|
|
17
|
+
"name": args.name,
|
|
18
|
+
"repository": args.repository,
|
|
19
|
+
"repositoryBranch": args.repositoryBranch,
|
|
20
|
+
"repositoryCommit": args.repositoryCommit,
|
|
21
|
+
"repositoryConnector": args.repositoryConnector,
|
|
22
|
+
"repositoryPath": args.repositoryPath,
|
|
23
|
+
"repositoryUrl": args.repositoryUrl,
|
|
24
|
+
"synced": args.synced,
|
|
25
|
+
"system": args.system,
|
|
26
|
+
"tags": args.tags,
|
|
27
|
+
}, opts);
|
|
28
|
+
}
|
|
29
|
+
exports.getInfraModule = getInfraModule;
|
|
30
|
+
/**
|
|
31
|
+
* Data source for retrieving modules from the module registry.
|
|
32
|
+
*/
|
|
33
|
+
function getInfraModuleOutput(args, opts) {
|
|
34
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
35
|
+
return pulumi.runtime.invokeOutput("harness:platform/getInfraModule:getInfraModule", {
|
|
36
|
+
"created": args.created,
|
|
37
|
+
"description": args.description,
|
|
38
|
+
"id": args.id,
|
|
39
|
+
"name": args.name,
|
|
40
|
+
"repository": args.repository,
|
|
41
|
+
"repositoryBranch": args.repositoryBranch,
|
|
42
|
+
"repositoryCommit": args.repositoryCommit,
|
|
43
|
+
"repositoryConnector": args.repositoryConnector,
|
|
44
|
+
"repositoryPath": args.repositoryPath,
|
|
45
|
+
"repositoryUrl": args.repositoryUrl,
|
|
46
|
+
"synced": args.synced,
|
|
47
|
+
"system": args.system,
|
|
48
|
+
"tags": args.tags,
|
|
49
|
+
}, opts);
|
|
50
|
+
}
|
|
51
|
+
exports.getInfraModuleOutput = getInfraModuleOutput;
|
|
52
|
+
//# sourceMappingURL=getInfraModule.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getInfraModule.js","sourceRoot":"","sources":["../../platform/getInfraModule.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,0CAA0C;AAE1C;;GAEG;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,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,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;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAjBD,wCAiBC;AAqHD;;GAEG;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,YAAY,CAAC,gDAAgD,EAAE;QACjF,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,IAAI,EAAE,IAAI,CAAC,EAAE;QACb,MAAM,EAAE,IAAI,CAAC,IAAI;QACjB,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;KACpB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAjBD,oDAiBC"}
|
|
@@ -62,6 +62,8 @@ export declare class GitOpsAgent extends pulumi.CustomResource {
|
|
|
62
62
|
static isInstance(obj: any): obj is GitOpsAgent;
|
|
63
63
|
/**
|
|
64
64
|
* Account identifier of the GitOps agent.
|
|
65
|
+
*
|
|
66
|
+
* @deprecated This field is deprecated and will be removed in a future release.
|
|
65
67
|
*/
|
|
66
68
|
readonly accountId: pulumi.Output<string>;
|
|
67
69
|
/**
|
|
@@ -92,6 +94,10 @@ export declare class GitOpsAgent extends pulumi.CustomResource {
|
|
|
92
94
|
* Organization identifier of the GitOps agent.
|
|
93
95
|
*/
|
|
94
96
|
readonly orgId: pulumi.Output<string | undefined>;
|
|
97
|
+
/**
|
|
98
|
+
* Prefixed identifier of the GitOps agent. Agent identifier prefixed with scope of the agent
|
|
99
|
+
*/
|
|
100
|
+
readonly prefixedIdentifier: pulumi.Output<string>;
|
|
95
101
|
/**
|
|
96
102
|
* Project identifier of the GitOps agent.
|
|
97
103
|
*/
|
|
@@ -122,6 +128,8 @@ export declare class GitOpsAgent extends pulumi.CustomResource {
|
|
|
122
128
|
export interface GitOpsAgentState {
|
|
123
129
|
/**
|
|
124
130
|
* Account identifier of the GitOps agent.
|
|
131
|
+
*
|
|
132
|
+
* @deprecated This field is deprecated and will be removed in a future release.
|
|
125
133
|
*/
|
|
126
134
|
accountId?: pulumi.Input<string>;
|
|
127
135
|
/**
|
|
@@ -152,6 +160,10 @@ export interface GitOpsAgentState {
|
|
|
152
160
|
* Organization identifier of the GitOps agent.
|
|
153
161
|
*/
|
|
154
162
|
orgId?: pulumi.Input<string>;
|
|
163
|
+
/**
|
|
164
|
+
* Prefixed identifier of the GitOps agent. Agent identifier prefixed with scope of the agent
|
|
165
|
+
*/
|
|
166
|
+
prefixedIdentifier?: pulumi.Input<string>;
|
|
155
167
|
/**
|
|
156
168
|
* Project identifier of the GitOps agent.
|
|
157
169
|
*/
|
|
@@ -174,8 +186,10 @@ export interface GitOpsAgentState {
|
|
|
174
186
|
export interface GitOpsAgentArgs {
|
|
175
187
|
/**
|
|
176
188
|
* Account identifier of the GitOps agent.
|
|
189
|
+
*
|
|
190
|
+
* @deprecated This field is deprecated and will be removed in a future release.
|
|
177
191
|
*/
|
|
178
|
-
accountId
|
|
192
|
+
accountId?: pulumi.Input<string>;
|
|
179
193
|
/**
|
|
180
194
|
* Description of the GitOps agent.
|
|
181
195
|
*/
|
package/platform/gitOpsAgent.js
CHANGED
|
@@ -84,15 +84,13 @@ class GitOpsAgent extends pulumi.CustomResource {
|
|
|
84
84
|
resourceInputs["name"] = state ? state.name : undefined;
|
|
85
85
|
resourceInputs["operator"] = state ? state.operator : undefined;
|
|
86
86
|
resourceInputs["orgId"] = state ? state.orgId : undefined;
|
|
87
|
+
resourceInputs["prefixedIdentifier"] = state ? state.prefixedIdentifier : undefined;
|
|
87
88
|
resourceInputs["projectId"] = state ? state.projectId : undefined;
|
|
88
89
|
resourceInputs["tags"] = state ? state.tags : undefined;
|
|
89
90
|
resourceInputs["type"] = state ? state.type : undefined;
|
|
90
91
|
}
|
|
91
92
|
else {
|
|
92
93
|
const args = argsOrState;
|
|
93
|
-
if ((!args || args.accountId === undefined) && !opts.urn) {
|
|
94
|
-
throw new Error("Missing required property 'accountId'");
|
|
95
|
-
}
|
|
96
94
|
if ((!args || args.identifier === undefined) && !opts.urn) {
|
|
97
95
|
throw new Error("Missing required property 'identifier'");
|
|
98
96
|
}
|
|
@@ -110,6 +108,7 @@ class GitOpsAgent extends pulumi.CustomResource {
|
|
|
110
108
|
resourceInputs["tags"] = args ? args.tags : undefined;
|
|
111
109
|
resourceInputs["type"] = args ? args.type : undefined;
|
|
112
110
|
resourceInputs["agentToken"] = undefined /*out*/;
|
|
111
|
+
resourceInputs["prefixedIdentifier"] = undefined /*out*/;
|
|
113
112
|
}
|
|
114
113
|
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
115
114
|
super(GitOpsAgent.__pulumiType, name, resourceInputs, opts);
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"gitOpsAgent.js","sourceRoot":"","sources":["../../platform/gitOpsAgent.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA0CG;AACH,MAAa,WAAY,SAAQ,MAAM,CAAC,cAAc;IAClD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAwB,EAAE,IAAmC;QACtH,OAAO,IAAI,WAAW,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAClE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,WAAW,CAAC,YAAY,CAAC;IAC5D,CAAC;
|
|
1
|
+
{"version":3,"file":"gitOpsAgent.js","sourceRoot":"","sources":["../../platform/gitOpsAgent.ts"],"names":[],"mappings":"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"}
|
|
@@ -81,6 +81,8 @@ export declare class GitOpsApplications extends pulumi.CustomResource {
|
|
|
81
81
|
static isInstance(obj: any): obj is GitOpsApplications;
|
|
82
82
|
/**
|
|
83
83
|
* Account identifier of the GitOps application.
|
|
84
|
+
*
|
|
85
|
+
* @deprecated This field is deprecated and will be removed in a future release.
|
|
84
86
|
*/
|
|
85
87
|
readonly accountId: pulumi.Output<string>;
|
|
86
88
|
/**
|
|
@@ -168,6 +170,8 @@ export declare class GitOpsApplications extends pulumi.CustomResource {
|
|
|
168
170
|
export interface GitOpsApplicationsState {
|
|
169
171
|
/**
|
|
170
172
|
* Account identifier of the GitOps application.
|
|
173
|
+
*
|
|
174
|
+
* @deprecated This field is deprecated and will be removed in a future release.
|
|
171
175
|
*/
|
|
172
176
|
accountId?: pulumi.Input<string>;
|
|
173
177
|
/**
|
|
@@ -247,8 +251,10 @@ export interface GitOpsApplicationsState {
|
|
|
247
251
|
export interface GitOpsApplicationsArgs {
|
|
248
252
|
/**
|
|
249
253
|
* Account identifier of the GitOps application.
|
|
254
|
+
*
|
|
255
|
+
* @deprecated This field is deprecated and will be removed in a future release.
|
|
250
256
|
*/
|
|
251
|
-
accountId
|
|
257
|
+
accountId?: pulumi.Input<string>;
|
|
252
258
|
/**
|
|
253
259
|
* Agent identifier of the GitOps application.
|
|
254
260
|
*/
|
|
@@ -116,9 +116,6 @@ class GitOpsApplications extends pulumi.CustomResource {
|
|
|
116
116
|
}
|
|
117
117
|
else {
|
|
118
118
|
const args = argsOrState;
|
|
119
|
-
if ((!args || args.accountId === undefined) && !opts.urn) {
|
|
120
|
-
throw new Error("Missing required property 'accountId'");
|
|
121
|
-
}
|
|
122
119
|
if ((!args || args.agentId === undefined) && !opts.urn) {
|
|
123
120
|
throw new Error("Missing required property 'agentId'");
|
|
124
121
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"gitOpsApplications.js","sourceRoot":"","sources":["../../platform/gitOpsApplications.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6DG;AACH,MAAa,kBAAmB,SAAQ,MAAM,CAAC,cAAc;IACzD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA+B,EAAE,IAAmC;QAC7H,OAAO,IAAI,kBAAkB,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACzE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,kBAAkB,CAAC,YAAY,CAAC;IACnE,CAAC;
|
|
1
|
+
{"version":3,"file":"gitOpsApplications.js","sourceRoot":"","sources":["../../platform/gitOpsApplications.ts"],"names":[],"mappings":"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"}
|
|
@@ -42,6 +42,8 @@ export declare class GitOpsCluster extends pulumi.CustomResource {
|
|
|
42
42
|
static isInstance(obj: any): obj is GitOpsCluster;
|
|
43
43
|
/**
|
|
44
44
|
* Account identifier of the GitOps cluster.
|
|
45
|
+
*
|
|
46
|
+
* @deprecated This field is deprecated and will be removed in a future release.
|
|
45
47
|
*/
|
|
46
48
|
readonly accountId: pulumi.Output<string>;
|
|
47
49
|
/**
|
|
@@ -79,6 +81,8 @@ export declare class GitOpsCluster extends pulumi.CustomResource {
|
|
|
79
81
|
export interface GitOpsClusterState {
|
|
80
82
|
/**
|
|
81
83
|
* Account identifier of the GitOps cluster.
|
|
84
|
+
*
|
|
85
|
+
* @deprecated This field is deprecated and will be removed in a future release.
|
|
82
86
|
*/
|
|
83
87
|
accountId?: pulumi.Input<string>;
|
|
84
88
|
/**
|
|
@@ -108,8 +112,10 @@ export interface GitOpsClusterState {
|
|
|
108
112
|
export interface GitOpsClusterArgs {
|
|
109
113
|
/**
|
|
110
114
|
* Account identifier of the GitOps cluster.
|
|
115
|
+
*
|
|
116
|
+
* @deprecated This field is deprecated and will be removed in a future release.
|
|
111
117
|
*/
|
|
112
|
-
accountId
|
|
118
|
+
accountId?: pulumi.Input<string>;
|
|
113
119
|
/**
|
|
114
120
|
* Agent identifier of the GitOps cluster. (include scope prefix)
|
|
115
121
|
*/
|
|
@@ -65,9 +65,6 @@ class GitOpsCluster extends pulumi.CustomResource {
|
|
|
65
65
|
}
|
|
66
66
|
else {
|
|
67
67
|
const args = argsOrState;
|
|
68
|
-
if ((!args || args.accountId === undefined) && !opts.urn) {
|
|
69
|
-
throw new Error("Missing required property 'accountId'");
|
|
70
|
-
}
|
|
71
68
|
if ((!args || args.agentId === undefined) && !opts.urn) {
|
|
72
69
|
throw new Error("Missing required property 'agentId'");
|
|
73
70
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"gitOpsCluster.js","sourceRoot":"","sources":["../../platform/gitOpsCluster.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;GAsBG;AACH,MAAa,aAAc,SAAQ,MAAM,CAAC,cAAc;IACpD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA0B,EAAE,IAAmC;QACxH,OAAO,IAAI,aAAa,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACpE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,aAAa,CAAC,YAAY,CAAC;IAC9D,CAAC;
|
|
1
|
+
{"version":3,"file":"gitOpsCluster.js","sourceRoot":"","sources":["../../platform/gitOpsCluster.ts"],"names":[],"mappings":"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"}
|
|
@@ -60,6 +60,8 @@ export declare class GitOpsGnupg extends pulumi.CustomResource {
|
|
|
60
60
|
static isInstance(obj: any): obj is GitOpsGnupg;
|
|
61
61
|
/**
|
|
62
62
|
* Account Identifier for the GnuPG Key.
|
|
63
|
+
*
|
|
64
|
+
* @deprecated This field is deprecated and will be removed in a future release.
|
|
63
65
|
*/
|
|
64
66
|
readonly accountId: pulumi.Output<string>;
|
|
65
67
|
/**
|
|
@@ -97,6 +99,8 @@ export declare class GitOpsGnupg extends pulumi.CustomResource {
|
|
|
97
99
|
export interface GitOpsGnupgState {
|
|
98
100
|
/**
|
|
99
101
|
* Account Identifier for the GnuPG Key.
|
|
102
|
+
*
|
|
103
|
+
* @deprecated This field is deprecated and will be removed in a future release.
|
|
100
104
|
*/
|
|
101
105
|
accountId?: pulumi.Input<string>;
|
|
102
106
|
/**
|
|
@@ -126,8 +130,10 @@ export interface GitOpsGnupgState {
|
|
|
126
130
|
export interface GitOpsGnupgArgs {
|
|
127
131
|
/**
|
|
128
132
|
* Account Identifier for the GnuPG Key.
|
|
133
|
+
*
|
|
134
|
+
* @deprecated This field is deprecated and will be removed in a future release.
|
|
129
135
|
*/
|
|
130
|
-
accountId
|
|
136
|
+
accountId?: pulumi.Input<string>;
|
|
131
137
|
/**
|
|
132
138
|
* Agent identifier for the GnuPG Key.
|
|
133
139
|
*/
|
package/platform/gitOpsGnupg.js
CHANGED
|
@@ -83,9 +83,6 @@ class GitOpsGnupg extends pulumi.CustomResource {
|
|
|
83
83
|
}
|
|
84
84
|
else {
|
|
85
85
|
const args = argsOrState;
|
|
86
|
-
if ((!args || args.accountId === undefined) && !opts.urn) {
|
|
87
|
-
throw new Error("Missing required property 'accountId'");
|
|
88
|
-
}
|
|
89
86
|
if ((!args || args.agentId === undefined) && !opts.urn) {
|
|
90
87
|
throw new Error("Missing required property 'agentId'");
|
|
91
88
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"gitOpsGnupg.js","sourceRoot":"","sources":["../../platform/gitOpsGnupg.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAwCG;AACH,MAAa,WAAY,SAAQ,MAAM,CAAC,cAAc;IAClD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAwB,EAAE,IAAmC;QACtH,OAAO,IAAI,WAAW,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAClE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,WAAW,CAAC,YAAY,CAAC;IAC5D,CAAC;
|
|
1
|
+
{"version":3,"file":"gitOpsGnupg.js","sourceRoot":"","sources":["../../platform/gitOpsGnupg.ts"],"names":[],"mappings":"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"}
|
|
@@ -66,6 +66,8 @@ export declare class GitOpsRepoCert extends pulumi.CustomResource {
|
|
|
66
66
|
static isInstance(obj: any): obj is GitOpsRepoCert;
|
|
67
67
|
/**
|
|
68
68
|
* Account identifier of the GitOps repository certificate.
|
|
69
|
+
*
|
|
70
|
+
* @deprecated This field is deprecated and will be removed in a future release.
|
|
69
71
|
*/
|
|
70
72
|
readonly accountId: pulumi.Output<string>;
|
|
71
73
|
/**
|
|
@@ -99,6 +101,8 @@ export declare class GitOpsRepoCert extends pulumi.CustomResource {
|
|
|
99
101
|
export interface GitOpsRepoCertState {
|
|
100
102
|
/**
|
|
101
103
|
* Account identifier of the GitOps repository certificate.
|
|
104
|
+
*
|
|
105
|
+
* @deprecated This field is deprecated and will be removed in a future release.
|
|
102
106
|
*/
|
|
103
107
|
accountId?: pulumi.Input<string>;
|
|
104
108
|
/**
|
|
@@ -124,8 +128,10 @@ export interface GitOpsRepoCertState {
|
|
|
124
128
|
export interface GitOpsRepoCertArgs {
|
|
125
129
|
/**
|
|
126
130
|
* Account identifier of the GitOps repository certificate.
|
|
131
|
+
*
|
|
132
|
+
* @deprecated This field is deprecated and will be removed in a future release.
|
|
127
133
|
*/
|
|
128
|
-
accountId
|
|
134
|
+
accountId?: pulumi.Input<string>;
|
|
129
135
|
/**
|
|
130
136
|
* Agent identifier of the GitOps repository certificate.
|
|
131
137
|
*/
|
|
@@ -88,9 +88,6 @@ class GitOpsRepoCert extends pulumi.CustomResource {
|
|
|
88
88
|
}
|
|
89
89
|
else {
|
|
90
90
|
const args = argsOrState;
|
|
91
|
-
if ((!args || args.accountId === undefined) && !opts.urn) {
|
|
92
|
-
throw new Error("Missing required property 'accountId'");
|
|
93
|
-
}
|
|
94
91
|
if ((!args || args.agentId === undefined) && !opts.urn) {
|
|
95
92
|
throw new Error("Missing required property 'agentId'");
|
|
96
93
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"gitOpsRepoCert.js","sourceRoot":"","sources":["../../platform/gitOpsRepoCert.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8CG;AACH,MAAa,cAAe,SAAQ,MAAM,CAAC,cAAc;IACrD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA2B,EAAE,IAAmC;QACzH,OAAO,IAAI,cAAc,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACrE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,cAAc,CAAC,YAAY,CAAC;IAC/D,CAAC;
|
|
1
|
+
{"version":3,"file":"gitOpsRepoCert.js","sourceRoot":"","sources":["../../platform/gitOpsRepoCert.ts"],"names":[],"mappings":"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"}
|
|
@@ -67,6 +67,8 @@ export declare class GitOpsRepoCred extends pulumi.CustomResource {
|
|
|
67
67
|
static isInstance(obj: any): obj is GitOpsRepoCred;
|
|
68
68
|
/**
|
|
69
69
|
* Account identifier of the Repository Credentials.
|
|
70
|
+
*
|
|
71
|
+
* @deprecated This field is deprecated and will be removed in a future release.
|
|
70
72
|
*/
|
|
71
73
|
readonly accountId: pulumi.Output<string>;
|
|
72
74
|
/**
|
|
@@ -108,6 +110,8 @@ export declare class GitOpsRepoCred extends pulumi.CustomResource {
|
|
|
108
110
|
export interface GitOpsRepoCredState {
|
|
109
111
|
/**
|
|
110
112
|
* Account identifier of the Repository Credentials.
|
|
113
|
+
*
|
|
114
|
+
* @deprecated This field is deprecated and will be removed in a future release.
|
|
111
115
|
*/
|
|
112
116
|
accountId?: pulumi.Input<string>;
|
|
113
117
|
/**
|
|
@@ -141,8 +145,10 @@ export interface GitOpsRepoCredState {
|
|
|
141
145
|
export interface GitOpsRepoCredArgs {
|
|
142
146
|
/**
|
|
143
147
|
* Account identifier of the Repository Credentials.
|
|
148
|
+
*
|
|
149
|
+
* @deprecated This field is deprecated and will be removed in a future release.
|
|
144
150
|
*/
|
|
145
|
-
accountId
|
|
151
|
+
accountId?: pulumi.Input<string>;
|
|
146
152
|
/**
|
|
147
153
|
* Agent identifier of the Repository Credentials.
|
|
148
154
|
*/
|
|
@@ -91,9 +91,6 @@ class GitOpsRepoCred extends pulumi.CustomResource {
|
|
|
91
91
|
}
|
|
92
92
|
else {
|
|
93
93
|
const args = argsOrState;
|
|
94
|
-
if ((!args || args.accountId === undefined) && !opts.urn) {
|
|
95
|
-
throw new Error("Missing required property 'accountId'");
|
|
96
|
-
}
|
|
97
94
|
if ((!args || args.agentId === undefined) && !opts.urn) {
|
|
98
95
|
throw new Error("Missing required property 'agentId'");
|
|
99
96
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"gitOpsRepoCred.js","sourceRoot":"","sources":["../../platform/gitOpsRepoCred.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA+CG;AACH,MAAa,cAAe,SAAQ,MAAM,CAAC,cAAc;IACrD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAA2B,EAAE,IAAmC;QACzH,OAAO,IAAI,cAAc,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACrE,CAAC;IAKD;;;OAGG;IACI,MAAM,CAAC,UAAU,CAAC,GAAQ;QAC7B,IAAI,GAAG,KAAK,SAAS,IAAI,GAAG,KAAK,IAAI,EAAE;YACnC,OAAO,KAAK,CAAC;SAChB;QACD,OAAO,GAAG,CAAC,cAAc,CAAC,KAAK,cAAc,CAAC,YAAY,CAAC;IAC/D,CAAC;
|
|
1
|
+
{"version":3,"file":"gitOpsRepoCred.js","sourceRoot":"","sources":["../../platform/gitOpsRepoCred.ts"],"names":[],"mappings":"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"}
|