@pulumi/harness 0.4.4 → 0.4.5

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.
Files changed (60) hide show
  1. package/package.json +2 -2
  2. package/platform/getGitopsAgent.d.ts +28 -30
  3. package/platform/getGitopsAgent.js +2 -28
  4. package/platform/getGitopsAgent.js.map +1 -1
  5. package/platform/getGitopsAgentDeployYaml.d.ts +8 -2
  6. package/platform/getGitopsAgentDeployYaml.js.map +1 -1
  7. package/platform/getGitopsAppProject.d.ts +8 -2
  8. package/platform/getGitopsAppProject.js.map +1 -1
  9. package/platform/getGitopsAppProjectMapping.d.ts +8 -2
  10. package/platform/getGitopsAppProjectMapping.js.map +1 -1
  11. package/platform/getGitopsApplications.d.ts +8 -2
  12. package/platform/getGitopsApplications.js.map +1 -1
  13. package/platform/getGitopsCluster.d.ts +8 -2
  14. package/platform/getGitopsCluster.js.map +1 -1
  15. package/platform/getGitopsGnupg.d.ts +8 -2
  16. package/platform/getGitopsGnupg.js.map +1 -1
  17. package/platform/getGitopsRepoCert.d.ts +11 -5
  18. package/platform/getGitopsRepoCert.js.map +1 -1
  19. package/platform/getGitopsRepoCred.d.ts +8 -2
  20. package/platform/getGitopsRepoCred.js.map +1 -1
  21. package/platform/getGitopsRepository.d.ts +8 -2
  22. package/platform/getGitopsRepository.js.map +1 -1
  23. package/platform/getInfraModule.d.ts +180 -0
  24. package/platform/getInfraModule.js +52 -0
  25. package/platform/getInfraModule.js.map +1 -0
  26. package/platform/gitOpsAgent.d.ts +15 -1
  27. package/platform/gitOpsAgent.js +2 -3
  28. package/platform/gitOpsAgent.js.map +1 -1
  29. package/platform/gitOpsApplications.d.ts +7 -1
  30. package/platform/gitOpsApplications.js +0 -3
  31. package/platform/gitOpsApplications.js.map +1 -1
  32. package/platform/gitOpsCluster.d.ts +7 -1
  33. package/platform/gitOpsCluster.js +0 -3
  34. package/platform/gitOpsCluster.js.map +1 -1
  35. package/platform/gitOpsGnupg.d.ts +7 -1
  36. package/platform/gitOpsGnupg.js +0 -3
  37. package/platform/gitOpsGnupg.js.map +1 -1
  38. package/platform/gitOpsRepoCert.d.ts +7 -1
  39. package/platform/gitOpsRepoCert.js +0 -3
  40. package/platform/gitOpsRepoCert.js.map +1 -1
  41. package/platform/gitOpsRepoCred.d.ts +7 -1
  42. package/platform/gitOpsRepoCred.js +0 -3
  43. package/platform/gitOpsRepoCred.js.map +1 -1
  44. package/platform/gitOpsRepository.d.ts +7 -1
  45. package/platform/gitOpsRepository.js +0 -3
  46. package/platform/gitOpsRepository.js.map +1 -1
  47. package/platform/gitopsAppProject.d.ts +25 -19
  48. package/platform/gitopsAppProject.js +0 -3
  49. package/platform/gitopsAppProject.js.map +1 -1
  50. package/platform/gitopsAppProjectMapping.d.ts +7 -1
  51. package/platform/gitopsAppProjectMapping.js +0 -3
  52. package/platform/gitopsAppProjectMapping.js.map +1 -1
  53. package/platform/index.d.ts +6 -0
  54. package/platform/index.js +13 -5
  55. package/platform/index.js.map +1 -1
  56. package/platform/infraModule.d.ts +216 -0
  57. package/platform/infraModule.js +100 -0
  58. package/platform/infraModule.js.map +1 -0
  59. package/types/input.d.ts +15 -3
  60. package/types/output.d.ts +20 -0
@@ -0,0 +1,216 @@
1
+ import * as pulumi from "@pulumi/pulumi";
2
+ /**
3
+ * ## Example Usage
4
+ *
5
+ * ```typescript
6
+ * import * as pulumi from "@pulumi/pulumi";
7
+ * import * as harness from "@pulumi/harness";
8
+ *
9
+ * const example = new harness.platform.InfraModule("example", {
10
+ * description: "example",
11
+ * name: "name",
12
+ * system: "provider",
13
+ * repository: "https://github.com/org/repo",
14
+ * repositoryBranch: "main",
15
+ * repositoryPath: "tf/aws/basic",
16
+ * repositoryConnector: test.id,
17
+ * });
18
+ * ```
19
+ *
20
+ * ## Import
21
+ *
22
+ * ```sh
23
+ * $ pulumi import harness:platform/infraModule:InfraModule example <org_id>/<module_id>
24
+ * ```
25
+ */
26
+ export declare class InfraModule extends pulumi.CustomResource {
27
+ /**
28
+ * Get an existing InfraModule resource's state with the given name, ID, and optional extra
29
+ * properties used to qualify the lookup.
30
+ *
31
+ * @param name The _unique_ name of the resulting resource.
32
+ * @param id The _unique_ provider ID of the resource to lookup.
33
+ * @param state Any extra arguments used during the lookup.
34
+ * @param opts Optional settings to control the behavior of the CustomResource.
35
+ */
36
+ static get(name: string, id: pulumi.Input<pulumi.ID>, state?: InfraModuleState, opts?: pulumi.CustomResourceOptions): InfraModule;
37
+ /**
38
+ * Returns true if the given object is an instance of InfraModule. This is designed to work even
39
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
40
+ */
41
+ static isInstance(obj: any): obj is InfraModule;
42
+ /**
43
+ * Timestamp when the module was created.
44
+ */
45
+ readonly created: pulumi.Output<number>;
46
+ /**
47
+ * Description of the module.
48
+ */
49
+ readonly description: pulumi.Output<string | undefined>;
50
+ /**
51
+ * Name of the module.
52
+ */
53
+ readonly name: pulumi.Output<string>;
54
+ /**
55
+ * For account connectors, the repository where the module can be found
56
+ */
57
+ readonly repository: pulumi.Output<string | undefined>;
58
+ /**
59
+ * Name of the branch to fetch the code from. This cannot be set if repository commit is set.
60
+ */
61
+ readonly repositoryBranch: pulumi.Output<string | undefined>;
62
+ /**
63
+ * Tag to fetch the code from. This cannot be set if repository branch is set.
64
+ */
65
+ readonly repositoryCommit: pulumi.Output<string | undefined>;
66
+ /**
67
+ * Reference to the connector to be used to fetch the code.
68
+ */
69
+ readonly repositoryConnector: pulumi.Output<string | undefined>;
70
+ /**
71
+ * Path to the module within the repository.
72
+ */
73
+ readonly repositoryPath: pulumi.Output<string | undefined>;
74
+ /**
75
+ * URL of the repository where the module is stored.
76
+ */
77
+ readonly repositoryUrl: pulumi.Output<string>;
78
+ /**
79
+ * Timestamp when the module was last synced.
80
+ */
81
+ readonly synced: pulumi.Output<number>;
82
+ /**
83
+ * Provider of the module.
84
+ */
85
+ readonly system: pulumi.Output<string>;
86
+ /**
87
+ * Git tags associated with the module.
88
+ */
89
+ readonly tags: pulumi.Output<string>;
90
+ /**
91
+ * List of versions of the module.
92
+ */
93
+ readonly versions: pulumi.Output<string[]>;
94
+ /**
95
+ * Create a InfraModule resource with the given unique name, arguments, and options.
96
+ *
97
+ * @param name The _unique_ name of the resource.
98
+ * @param args The arguments to use to populate this resource's properties.
99
+ * @param opts A bag of options that control this resource's behavior.
100
+ */
101
+ constructor(name: string, args: InfraModuleArgs, opts?: pulumi.CustomResourceOptions);
102
+ }
103
+ /**
104
+ * Input properties used for looking up and filtering InfraModule resources.
105
+ */
106
+ export interface InfraModuleState {
107
+ /**
108
+ * Timestamp when the module was created.
109
+ */
110
+ created?: pulumi.Input<number>;
111
+ /**
112
+ * Description of the module.
113
+ */
114
+ description?: pulumi.Input<string>;
115
+ /**
116
+ * Name of the module.
117
+ */
118
+ name?: pulumi.Input<string>;
119
+ /**
120
+ * For account connectors, the repository where the module can be found
121
+ */
122
+ repository?: pulumi.Input<string>;
123
+ /**
124
+ * Name of the branch to fetch the code from. This cannot be set if repository commit is set.
125
+ */
126
+ repositoryBranch?: pulumi.Input<string>;
127
+ /**
128
+ * Tag to fetch the code from. This cannot be set if repository branch is set.
129
+ */
130
+ repositoryCommit?: pulumi.Input<string>;
131
+ /**
132
+ * Reference to the connector to be used to fetch the code.
133
+ */
134
+ repositoryConnector?: pulumi.Input<string>;
135
+ /**
136
+ * Path to the module within the repository.
137
+ */
138
+ repositoryPath?: pulumi.Input<string>;
139
+ /**
140
+ * URL of the repository where the module is stored.
141
+ */
142
+ repositoryUrl?: pulumi.Input<string>;
143
+ /**
144
+ * Timestamp when the module was last synced.
145
+ */
146
+ synced?: pulumi.Input<number>;
147
+ /**
148
+ * Provider of the module.
149
+ */
150
+ system?: pulumi.Input<string>;
151
+ /**
152
+ * Git tags associated with the module.
153
+ */
154
+ tags?: pulumi.Input<string>;
155
+ /**
156
+ * List of versions of the module.
157
+ */
158
+ versions?: pulumi.Input<pulumi.Input<string>[]>;
159
+ }
160
+ /**
161
+ * The set of arguments for constructing a InfraModule resource.
162
+ */
163
+ export interface InfraModuleArgs {
164
+ /**
165
+ * Timestamp when the module was created.
166
+ */
167
+ created?: pulumi.Input<number>;
168
+ /**
169
+ * Description of the module.
170
+ */
171
+ description?: pulumi.Input<string>;
172
+ /**
173
+ * Name of the module.
174
+ */
175
+ name?: pulumi.Input<string>;
176
+ /**
177
+ * For account connectors, the repository where the module can be found
178
+ */
179
+ repository?: pulumi.Input<string>;
180
+ /**
181
+ * Name of the branch to fetch the code from. This cannot be set if repository commit is set.
182
+ */
183
+ repositoryBranch?: pulumi.Input<string>;
184
+ /**
185
+ * Tag to fetch the code from. This cannot be set if repository branch is set.
186
+ */
187
+ repositoryCommit?: pulumi.Input<string>;
188
+ /**
189
+ * Reference to the connector to be used to fetch the code.
190
+ */
191
+ repositoryConnector?: pulumi.Input<string>;
192
+ /**
193
+ * Path to the module within the repository.
194
+ */
195
+ repositoryPath?: pulumi.Input<string>;
196
+ /**
197
+ * URL of the repository where the module is stored.
198
+ */
199
+ repositoryUrl?: pulumi.Input<string>;
200
+ /**
201
+ * Timestamp when the module was last synced.
202
+ */
203
+ synced?: pulumi.Input<number>;
204
+ /**
205
+ * Provider of the module.
206
+ */
207
+ system: pulumi.Input<string>;
208
+ /**
209
+ * Git tags associated with the module.
210
+ */
211
+ tags?: pulumi.Input<string>;
212
+ /**
213
+ * List of versions of the module.
214
+ */
215
+ versions?: pulumi.Input<pulumi.Input<string>[]>;
216
+ }
@@ -0,0 +1,100 @@
1
+ "use strict";
2
+ // *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ // *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+ Object.defineProperty(exports, "__esModule", { value: true });
5
+ exports.InfraModule = void 0;
6
+ const pulumi = require("@pulumi/pulumi");
7
+ const utilities = require("../utilities");
8
+ /**
9
+ * ## Example Usage
10
+ *
11
+ * ```typescript
12
+ * import * as pulumi from "@pulumi/pulumi";
13
+ * import * as harness from "@pulumi/harness";
14
+ *
15
+ * const example = new harness.platform.InfraModule("example", {
16
+ * description: "example",
17
+ * name: "name",
18
+ * system: "provider",
19
+ * repository: "https://github.com/org/repo",
20
+ * repositoryBranch: "main",
21
+ * repositoryPath: "tf/aws/basic",
22
+ * repositoryConnector: test.id,
23
+ * });
24
+ * ```
25
+ *
26
+ * ## Import
27
+ *
28
+ * ```sh
29
+ * $ pulumi import harness:platform/infraModule:InfraModule example <org_id>/<module_id>
30
+ * ```
31
+ */
32
+ class InfraModule extends pulumi.CustomResource {
33
+ /**
34
+ * Get an existing InfraModule resource's state with the given name, ID, and optional extra
35
+ * properties used to qualify the lookup.
36
+ *
37
+ * @param name The _unique_ name of the resulting resource.
38
+ * @param id The _unique_ provider ID of the resource to lookup.
39
+ * @param state Any extra arguments used during the lookup.
40
+ * @param opts Optional settings to control the behavior of the CustomResource.
41
+ */
42
+ static get(name, id, state, opts) {
43
+ return new InfraModule(name, state, Object.assign(Object.assign({}, opts), { id: id }));
44
+ }
45
+ /**
46
+ * Returns true if the given object is an instance of InfraModule. This is designed to work even
47
+ * when multiple copies of the Pulumi SDK have been loaded into the same process.
48
+ */
49
+ static isInstance(obj) {
50
+ if (obj === undefined || obj === null) {
51
+ return false;
52
+ }
53
+ return obj['__pulumiType'] === InfraModule.__pulumiType;
54
+ }
55
+ constructor(name, argsOrState, opts) {
56
+ let resourceInputs = {};
57
+ opts = opts || {};
58
+ if (opts.id) {
59
+ const state = argsOrState;
60
+ resourceInputs["created"] = state ? state.created : undefined;
61
+ resourceInputs["description"] = state ? state.description : undefined;
62
+ resourceInputs["name"] = state ? state.name : undefined;
63
+ resourceInputs["repository"] = state ? state.repository : undefined;
64
+ resourceInputs["repositoryBranch"] = state ? state.repositoryBranch : undefined;
65
+ resourceInputs["repositoryCommit"] = state ? state.repositoryCommit : undefined;
66
+ resourceInputs["repositoryConnector"] = state ? state.repositoryConnector : undefined;
67
+ resourceInputs["repositoryPath"] = state ? state.repositoryPath : undefined;
68
+ resourceInputs["repositoryUrl"] = state ? state.repositoryUrl : undefined;
69
+ resourceInputs["synced"] = state ? state.synced : undefined;
70
+ resourceInputs["system"] = state ? state.system : undefined;
71
+ resourceInputs["tags"] = state ? state.tags : undefined;
72
+ resourceInputs["versions"] = state ? state.versions : undefined;
73
+ }
74
+ else {
75
+ const args = argsOrState;
76
+ if ((!args || args.system === undefined) && !opts.urn) {
77
+ throw new Error("Missing required property 'system'");
78
+ }
79
+ resourceInputs["created"] = args ? args.created : undefined;
80
+ resourceInputs["description"] = args ? args.description : undefined;
81
+ resourceInputs["name"] = args ? args.name : undefined;
82
+ resourceInputs["repository"] = args ? args.repository : undefined;
83
+ resourceInputs["repositoryBranch"] = args ? args.repositoryBranch : undefined;
84
+ resourceInputs["repositoryCommit"] = args ? args.repositoryCommit : undefined;
85
+ resourceInputs["repositoryConnector"] = args ? args.repositoryConnector : undefined;
86
+ resourceInputs["repositoryPath"] = args ? args.repositoryPath : undefined;
87
+ resourceInputs["repositoryUrl"] = args ? args.repositoryUrl : undefined;
88
+ resourceInputs["synced"] = args ? args.synced : undefined;
89
+ resourceInputs["system"] = args ? args.system : undefined;
90
+ resourceInputs["tags"] = args ? args.tags : undefined;
91
+ resourceInputs["versions"] = args ? args.versions : undefined;
92
+ }
93
+ opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
94
+ super(InfraModule.__pulumiType, name, resourceInputs, opts);
95
+ }
96
+ }
97
+ exports.InfraModule = InfraModule;
98
+ /** @internal */
99
+ InfraModule.__pulumiType = 'harness:platform/infraModule:InfraModule';
100
+ //# sourceMappingURL=infraModule.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"infraModule.js","sourceRoot":"","sources":["../../platform/infraModule.ts"],"names":[],"mappings":"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"}
package/types/input.d.ts CHANGED
@@ -1876,6 +1876,10 @@ export declare namespace platform {
1876
1876
  * Reference to the Harness secret containing the aws secret key. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
1877
1877
  */
1878
1878
  secretKeyRef: pulumi.Input<string>;
1879
+ /**
1880
+ * Reference to the Harness secret containing the aws session token.
1881
+ */
1882
+ sessionTokenRef?: pulumi.Input<string>;
1879
1883
  }
1880
1884
  interface AwsConnectorOidcAuthentication {
1881
1885
  /**
@@ -2197,6 +2201,10 @@ export declare namespace platform {
2197
2201
  bearerTokenRef: pulumi.Input<string>;
2198
2202
  }
2199
2203
  interface DbSchemaSchemaSource {
2204
+ /**
2205
+ * If connector type is artifactory, path to the archive file which contains the changeLog
2206
+ */
2207
+ archivePath?: pulumi.Input<string>;
2200
2208
  /**
2201
2209
  * Connector to repository at which to find details about the database schema
2202
2210
  */
@@ -2376,7 +2384,11 @@ export declare namespace platform {
2376
2384
  /**
2377
2385
  * The attribute to use in the clause. This can be any target attribute
2378
2386
  */
2379
- attribute?: pulumi.Input<string>;
2387
+ attribute: pulumi.Input<string>;
2388
+ /**
2389
+ * The ID of this resource.
2390
+ */
2391
+ id?: pulumi.Input<string>;
2380
2392
  /**
2381
2393
  * Is the operation negated?
2382
2394
  */
@@ -2384,11 +2396,11 @@ export declare namespace platform {
2384
2396
  /**
2385
2397
  * The type of operation such as equals, starts_with, contains
2386
2398
  */
2387
- op?: pulumi.Input<string>;
2399
+ op: pulumi.Input<string>;
2388
2400
  /**
2389
2401
  * The values that are compared against the operator
2390
2402
  */
2391
- values?: pulumi.Input<pulumi.Input<string>[]>;
2403
+ values: pulumi.Input<pulumi.Input<string>[]>;
2392
2404
  }
2393
2405
  interface FeatureFlagVariation {
2394
2406
  /**
package/types/output.d.ts CHANGED
@@ -1635,6 +1635,10 @@ export declare namespace platform {
1635
1635
  * Reference to the Harness secret containing the aws secret key. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
1636
1636
  */
1637
1637
  secretKeyRef: string;
1638
+ /**
1639
+ * Reference to the Harness secret containing the aws session token.
1640
+ */
1641
+ sessionTokenRef?: string;
1638
1642
  }
1639
1643
  interface AwsConnectorOidcAuthentication {
1640
1644
  /**
@@ -1956,6 +1960,10 @@ export declare namespace platform {
1956
1960
  bearerTokenRef: string;
1957
1961
  }
1958
1962
  interface DbSchemaSchemaSource {
1963
+ /**
1964
+ * If connector type is artifactory, path to the archive file which contains the changeLog
1965
+ */
1966
+ archivePath?: string;
1959
1967
  /**
1960
1968
  * Connector to repository at which to find details about the database schema
1961
1969
  */
@@ -2136,6 +2144,10 @@ export declare namespace platform {
2136
2144
  * The attribute to use in the clause. This can be any target attribute
2137
2145
  */
2138
2146
  attribute: string;
2147
+ /**
2148
+ * The ID of this resource.
2149
+ */
2150
+ id: string;
2139
2151
  /**
2140
2152
  * Is the operation negated?
2141
2153
  */
@@ -2402,6 +2414,10 @@ export declare namespace platform {
2402
2414
  * Reference to the Harness secret containing the aws secret key. To reference a secret at the organization scope, prefix 'org' to the expression: org.{identifier}. To reference a secret at the account scope, prefix 'account` to the expression: account.{identifier}.
2403
2415
  */
2404
2416
  secretKeyRef: string;
2417
+ /**
2418
+ * Reference to the Harness secret containing the aws session token.
2419
+ */
2420
+ sessionTokenRef?: string;
2405
2421
  }
2406
2422
  interface GetAwsConnectorOidcAuthentication {
2407
2423
  /**
@@ -2733,6 +2749,10 @@ export declare namespace platform {
2733
2749
  rancherUrl: string;
2734
2750
  }
2735
2751
  interface GetDbSchemaSchemaSource {
2752
+ /**
2753
+ * If connector type is artifactory, path to the archive file which contains the changeLog
2754
+ */
2755
+ archivePath: string;
2736
2756
  /**
2737
2757
  * Connector to repository at which to find details about the database schema
2738
2758
  */