@pulumi/harness 0.1.0 → 0.1.1
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/azureCloudCostConnector.d.ts +3 -3
- package/platform/connectorJdbc.d.ts +189 -0
- package/platform/connectorJdbc.js +117 -0
- package/platform/connectorJdbc.js.map +1 -0
- package/platform/dbInstance.d.ts +189 -0
- package/platform/dbInstance.js +115 -0
- package/platform/dbInstance.js.map +1 -0
- package/platform/dbSchema.d.ts +169 -0
- package/platform/dbSchema.js +110 -0
- package/platform/dbSchema.js.map +1 -0
- package/platform/gcpCloudCostConnector.d.ts +3 -3
- package/platform/getConnectorJdbc.d.ts +119 -0
- package/platform/getConnectorJdbc.js +50 -0
- package/platform/getConnectorJdbc.js.map +1 -0
- package/platform/getDbInstance.d.ts +136 -0
- package/platform/getDbInstance.js +57 -0
- package/platform/getDbInstance.js.map +1 -0
- package/platform/getDbSchema.d.ts +119 -0
- package/platform/getDbSchema.js +54 -0
- package/platform/getDbSchema.js.map +1 -0
- package/platform/getGitopsApplications.d.ts +4 -0
- package/platform/getGitopsApplications.js.map +1 -1
- package/platform/getGitopsProject.d.ts +114 -0
- package/platform/getGitopsProject.js +31 -0
- package/platform/getGitopsProject.js.map +1 -0
- package/platform/gitOpsApplications.d.ts +14 -2
- package/platform/gitOpsApplications.js +2 -3
- package/platform/gitOpsApplications.js.map +1 -1
- package/platform/gitopsProject.d.ts +145 -0
- package/platform/gitopsProject.js +93 -0
- package/platform/gitopsProject.js.map +1 -0
- package/platform/index.d.ts +24 -0
- package/platform/index.js +39 -6
- package/platform/index.js.map +1 -1
- package/types/input.d.ts +202 -0
- package/types/output.d.ts +172 -0
|
@@ -0,0 +1,119 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as outputs from "../types/output";
|
|
3
|
+
/**
|
|
4
|
+
* Data source for retrieving a Harness DBDevOps Schema.
|
|
5
|
+
*
|
|
6
|
+
* ## Example Usage
|
|
7
|
+
*
|
|
8
|
+
* ```typescript
|
|
9
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
10
|
+
* import * as harness from "@pulumi/harness";
|
|
11
|
+
*
|
|
12
|
+
* const example = harness.platform.getDbSchema({
|
|
13
|
+
* identifier: "identifier",
|
|
14
|
+
* orgId: "org_id",
|
|
15
|
+
* projectId: "project_id",
|
|
16
|
+
* });
|
|
17
|
+
* ```
|
|
18
|
+
*/
|
|
19
|
+
export declare function getDbSchema(args: GetDbSchemaArgs, opts?: pulumi.InvokeOptions): Promise<GetDbSchemaResult>;
|
|
20
|
+
/**
|
|
21
|
+
* A collection of arguments for invoking getDbSchema.
|
|
22
|
+
*/
|
|
23
|
+
export interface GetDbSchemaArgs {
|
|
24
|
+
/**
|
|
25
|
+
* Unique identifier of the resource.
|
|
26
|
+
*/
|
|
27
|
+
identifier: string;
|
|
28
|
+
/**
|
|
29
|
+
* Name of the resource.
|
|
30
|
+
*/
|
|
31
|
+
name?: string;
|
|
32
|
+
/**
|
|
33
|
+
* Unique identifier of the organization.
|
|
34
|
+
*/
|
|
35
|
+
orgId: string;
|
|
36
|
+
/**
|
|
37
|
+
* Unique identifier of the project.
|
|
38
|
+
*/
|
|
39
|
+
projectId: string;
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* A collection of values returned by getDbSchema.
|
|
43
|
+
*/
|
|
44
|
+
export interface GetDbSchemaResult {
|
|
45
|
+
/**
|
|
46
|
+
* Description of the resource.
|
|
47
|
+
*/
|
|
48
|
+
readonly description: string;
|
|
49
|
+
/**
|
|
50
|
+
* The provider-assigned unique ID for this managed resource.
|
|
51
|
+
*/
|
|
52
|
+
readonly id: string;
|
|
53
|
+
/**
|
|
54
|
+
* Unique identifier of the resource.
|
|
55
|
+
*/
|
|
56
|
+
readonly identifier: string;
|
|
57
|
+
/**
|
|
58
|
+
* Name of the resource.
|
|
59
|
+
*/
|
|
60
|
+
readonly name?: string;
|
|
61
|
+
/**
|
|
62
|
+
* Unique identifier of the organization.
|
|
63
|
+
*/
|
|
64
|
+
readonly orgId: string;
|
|
65
|
+
/**
|
|
66
|
+
* Unique identifier of the project.
|
|
67
|
+
*/
|
|
68
|
+
readonly projectId: string;
|
|
69
|
+
/**
|
|
70
|
+
* Provides a connector and path at which to find the database schema representation
|
|
71
|
+
*/
|
|
72
|
+
readonly schemaSources: outputs.platform.GetDbSchemaSchemaSource[];
|
|
73
|
+
/**
|
|
74
|
+
* The service associated with schema
|
|
75
|
+
*/
|
|
76
|
+
readonly service: string;
|
|
77
|
+
/**
|
|
78
|
+
* Tags to associate with the resource.
|
|
79
|
+
*/
|
|
80
|
+
readonly tags: string[];
|
|
81
|
+
}
|
|
82
|
+
/**
|
|
83
|
+
* Data source for retrieving a Harness DBDevOps Schema.
|
|
84
|
+
*
|
|
85
|
+
* ## Example Usage
|
|
86
|
+
*
|
|
87
|
+
* ```typescript
|
|
88
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
89
|
+
* import * as harness from "@pulumi/harness";
|
|
90
|
+
*
|
|
91
|
+
* const example = harness.platform.getDbSchema({
|
|
92
|
+
* identifier: "identifier",
|
|
93
|
+
* orgId: "org_id",
|
|
94
|
+
* projectId: "project_id",
|
|
95
|
+
* });
|
|
96
|
+
* ```
|
|
97
|
+
*/
|
|
98
|
+
export declare function getDbSchemaOutput(args: GetDbSchemaOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetDbSchemaResult>;
|
|
99
|
+
/**
|
|
100
|
+
* A collection of arguments for invoking getDbSchema.
|
|
101
|
+
*/
|
|
102
|
+
export interface GetDbSchemaOutputArgs {
|
|
103
|
+
/**
|
|
104
|
+
* Unique identifier of the resource.
|
|
105
|
+
*/
|
|
106
|
+
identifier: pulumi.Input<string>;
|
|
107
|
+
/**
|
|
108
|
+
* Name of the resource.
|
|
109
|
+
*/
|
|
110
|
+
name?: pulumi.Input<string>;
|
|
111
|
+
/**
|
|
112
|
+
* Unique identifier of the organization.
|
|
113
|
+
*/
|
|
114
|
+
orgId: pulumi.Input<string>;
|
|
115
|
+
/**
|
|
116
|
+
* Unique identifier of the project.
|
|
117
|
+
*/
|
|
118
|
+
projectId: pulumi.Input<string>;
|
|
119
|
+
}
|
|
@@ -0,0 +1,54 @@
|
|
|
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.getDbSchemaOutput = exports.getDbSchema = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Data source for retrieving a Harness DBDevOps Schema.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as harness from "@pulumi/harness";
|
|
16
|
+
*
|
|
17
|
+
* const example = harness.platform.getDbSchema({
|
|
18
|
+
* identifier: "identifier",
|
|
19
|
+
* orgId: "org_id",
|
|
20
|
+
* projectId: "project_id",
|
|
21
|
+
* });
|
|
22
|
+
* ```
|
|
23
|
+
*/
|
|
24
|
+
function getDbSchema(args, opts) {
|
|
25
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
26
|
+
return pulumi.runtime.invoke("harness:platform/getDbSchema:getDbSchema", {
|
|
27
|
+
"identifier": args.identifier,
|
|
28
|
+
"name": args.name,
|
|
29
|
+
"orgId": args.orgId,
|
|
30
|
+
"projectId": args.projectId,
|
|
31
|
+
}, opts);
|
|
32
|
+
}
|
|
33
|
+
exports.getDbSchema = getDbSchema;
|
|
34
|
+
/**
|
|
35
|
+
* Data source for retrieving a Harness DBDevOps Schema.
|
|
36
|
+
*
|
|
37
|
+
* ## Example Usage
|
|
38
|
+
*
|
|
39
|
+
* ```typescript
|
|
40
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
41
|
+
* import * as harness from "@pulumi/harness";
|
|
42
|
+
*
|
|
43
|
+
* const example = harness.platform.getDbSchema({
|
|
44
|
+
* identifier: "identifier",
|
|
45
|
+
* orgId: "org_id",
|
|
46
|
+
* projectId: "project_id",
|
|
47
|
+
* });
|
|
48
|
+
* ```
|
|
49
|
+
*/
|
|
50
|
+
function getDbSchemaOutput(args, opts) {
|
|
51
|
+
return pulumi.output(args).apply((a) => getDbSchema(a, opts));
|
|
52
|
+
}
|
|
53
|
+
exports.getDbSchemaOutput = getDbSchemaOutput;
|
|
54
|
+
//# sourceMappingURL=getDbSchema.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getDbSchema.js","sourceRoot":"","sources":["../../platform/getDbSchema.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,WAAW,CAAC,IAAqB,EAAE,IAA2B;IAE1E,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,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;AATD,kCASC;AAiED;;;;;;;;;;;;;;;GAeG;AACH,SAAgB,iBAAiB,CAAC,IAA2B,EAAE,IAA2B;IACtF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,WAAW,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACtE,CAAC;AAFD,8CAEC"}
|
|
@@ -97,6 +97,10 @@ export interface GetGitopsApplicationsResult {
|
|
|
97
97
|
* Request propagation policy to delete the GitOps application.
|
|
98
98
|
*/
|
|
99
99
|
readonly requestPropagationPolicy: string;
|
|
100
|
+
/**
|
|
101
|
+
* Indicates if the GitOps application should skip validate repository definition exists.
|
|
102
|
+
*/
|
|
103
|
+
readonly skipRepoValidation: boolean;
|
|
100
104
|
/**
|
|
101
105
|
* Indicates if the GitOps application should be updated if existing and inserted if not.
|
|
102
106
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getGitopsApplications.js","sourceRoot":"","sources":["../../platform/getGitopsApplications.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,qBAAqB,CAAC,IAA+B,EAAE,IAA2B;IAE9F,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,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,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;AAXD,sDAWC;
|
|
1
|
+
{"version":3,"file":"getGitopsApplications.js","sourceRoot":"","sources":["../../platform/getGitopsApplications.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,qBAAqB,CAAC,IAA+B,EAAE,IAA2B;IAE9F,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,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,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;AAXD,sDAWC;AA6GD;;GAEG;AACH,SAAgB,2BAA2B,CAAC,IAAqC,EAAE,IAA2B;IAC1G,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,qBAAqB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAChF,CAAC;AAFD,kEAEC"}
|
|
@@ -0,0 +1,114 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "../types/input";
|
|
3
|
+
import * as outputs from "../types/output";
|
|
4
|
+
/**
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*/
|
|
7
|
+
export declare function getGitopsProject(args: GetGitopsProjectArgs, opts?: pulumi.InvokeOptions): Promise<GetGitopsProjectResult>;
|
|
8
|
+
/**
|
|
9
|
+
* A collection of arguments for invoking getGitopsProject.
|
|
10
|
+
*/
|
|
11
|
+
export interface GetGitopsProjectArgs {
|
|
12
|
+
/**
|
|
13
|
+
* Account identifier of the GitOps project.
|
|
14
|
+
*/
|
|
15
|
+
accountId: string;
|
|
16
|
+
/**
|
|
17
|
+
* Agent identifier of the GitOps project.
|
|
18
|
+
*/
|
|
19
|
+
agentId: string;
|
|
20
|
+
/**
|
|
21
|
+
* Org identifier of the GitOps project.
|
|
22
|
+
*/
|
|
23
|
+
orgId?: string;
|
|
24
|
+
/**
|
|
25
|
+
* Project identifier of the GitOps repository.
|
|
26
|
+
*/
|
|
27
|
+
projectId?: string;
|
|
28
|
+
/**
|
|
29
|
+
* App projects configuration details.
|
|
30
|
+
*/
|
|
31
|
+
projects: inputs.platform.GetGitopsProjectProject[];
|
|
32
|
+
/**
|
|
33
|
+
* Identifier for the GitOps project.
|
|
34
|
+
*/
|
|
35
|
+
queryName?: string;
|
|
36
|
+
/**
|
|
37
|
+
* Indicates if the GitOps repository should be updated if existing and inserted if not.
|
|
38
|
+
*/
|
|
39
|
+
upsert?: boolean;
|
|
40
|
+
}
|
|
41
|
+
/**
|
|
42
|
+
* A collection of values returned by getGitopsProject.
|
|
43
|
+
*/
|
|
44
|
+
export interface GetGitopsProjectResult {
|
|
45
|
+
/**
|
|
46
|
+
* Account identifier of the GitOps project.
|
|
47
|
+
*/
|
|
48
|
+
readonly accountId: string;
|
|
49
|
+
/**
|
|
50
|
+
* Agent identifier of the GitOps project.
|
|
51
|
+
*/
|
|
52
|
+
readonly agentId: string;
|
|
53
|
+
/**
|
|
54
|
+
* The provider-assigned unique ID for this managed resource.
|
|
55
|
+
*/
|
|
56
|
+
readonly id: string;
|
|
57
|
+
/**
|
|
58
|
+
* Org identifier of the GitOps project.
|
|
59
|
+
*/
|
|
60
|
+
readonly orgId?: string;
|
|
61
|
+
/**
|
|
62
|
+
* Project identifier of the GitOps repository.
|
|
63
|
+
*/
|
|
64
|
+
readonly projectId?: string;
|
|
65
|
+
/**
|
|
66
|
+
* App projects configuration details.
|
|
67
|
+
*/
|
|
68
|
+
readonly projects: outputs.platform.GetGitopsProjectProject[];
|
|
69
|
+
/**
|
|
70
|
+
* Identifier for the GitOps project.
|
|
71
|
+
*/
|
|
72
|
+
readonly queryName?: string;
|
|
73
|
+
/**
|
|
74
|
+
* Indicates if the GitOps repository should be updated if existing and inserted if not.
|
|
75
|
+
*/
|
|
76
|
+
readonly upsert?: boolean;
|
|
77
|
+
}
|
|
78
|
+
/**
|
|
79
|
+
* ## Example Usage
|
|
80
|
+
*/
|
|
81
|
+
export declare function getGitopsProjectOutput(args: GetGitopsProjectOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetGitopsProjectResult>;
|
|
82
|
+
/**
|
|
83
|
+
* A collection of arguments for invoking getGitopsProject.
|
|
84
|
+
*/
|
|
85
|
+
export interface GetGitopsProjectOutputArgs {
|
|
86
|
+
/**
|
|
87
|
+
* Account identifier of the GitOps project.
|
|
88
|
+
*/
|
|
89
|
+
accountId: pulumi.Input<string>;
|
|
90
|
+
/**
|
|
91
|
+
* Agent identifier of the GitOps project.
|
|
92
|
+
*/
|
|
93
|
+
agentId: pulumi.Input<string>;
|
|
94
|
+
/**
|
|
95
|
+
* Org identifier of the GitOps project.
|
|
96
|
+
*/
|
|
97
|
+
orgId?: pulumi.Input<string>;
|
|
98
|
+
/**
|
|
99
|
+
* Project identifier of the GitOps repository.
|
|
100
|
+
*/
|
|
101
|
+
projectId?: pulumi.Input<string>;
|
|
102
|
+
/**
|
|
103
|
+
* App projects configuration details.
|
|
104
|
+
*/
|
|
105
|
+
projects: pulumi.Input<pulumi.Input<inputs.platform.GetGitopsProjectProjectArgs>[]>;
|
|
106
|
+
/**
|
|
107
|
+
* Identifier for the GitOps project.
|
|
108
|
+
*/
|
|
109
|
+
queryName?: pulumi.Input<string>;
|
|
110
|
+
/**
|
|
111
|
+
* Indicates if the GitOps repository should be updated if existing and inserted if not.
|
|
112
|
+
*/
|
|
113
|
+
upsert?: pulumi.Input<boolean>;
|
|
114
|
+
}
|
|
@@ -0,0 +1,31 @@
|
|
|
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.getGitopsProjectOutput = exports.getGitopsProject = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* ## Example Usage
|
|
10
|
+
*/
|
|
11
|
+
function getGitopsProject(args, opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("harness:platform/getGitopsProject:getGitopsProject", {
|
|
14
|
+
"accountId": args.accountId,
|
|
15
|
+
"agentId": args.agentId,
|
|
16
|
+
"orgId": args.orgId,
|
|
17
|
+
"projectId": args.projectId,
|
|
18
|
+
"projects": args.projects,
|
|
19
|
+
"queryName": args.queryName,
|
|
20
|
+
"upsert": args.upsert,
|
|
21
|
+
}, opts);
|
|
22
|
+
}
|
|
23
|
+
exports.getGitopsProject = getGitopsProject;
|
|
24
|
+
/**
|
|
25
|
+
* ## Example Usage
|
|
26
|
+
*/
|
|
27
|
+
function getGitopsProjectOutput(args, opts) {
|
|
28
|
+
return pulumi.output(args).apply((a) => getGitopsProject(a, opts));
|
|
29
|
+
}
|
|
30
|
+
exports.getGitopsProjectOutput = getGitopsProjectOutput;
|
|
31
|
+
//# sourceMappingURL=getGitopsProject.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getGitopsProject.js","sourceRoot":"","sources":["../../platform/getGitopsProject.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,0CAA0C;AAE1C;;GAEG;AACH,SAAgB,gBAAgB,CAAC,IAA0B,EAAE,IAA2B;IAEpF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,oDAAoD,EAAE;QAC/E,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,OAAO,EAAE,IAAI,CAAC,KAAK;QACnB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,UAAU,EAAE,IAAI,CAAC,QAAQ;QACzB,WAAW,EAAE,IAAI,CAAC,SAAS;QAC3B,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAZD,4CAYC;AAyED;;GAEG;AACH,SAAgB,sBAAsB,CAAC,IAAgC,EAAE,IAA2B;IAChG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,gBAAgB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC3E,CAAC;AAFD,wDAEC"}
|
|
@@ -126,7 +126,7 @@ export declare class GitOpsApplications extends pulumi.CustomResource {
|
|
|
126
126
|
/**
|
|
127
127
|
* Repository identifier of the GitOps application.
|
|
128
128
|
*/
|
|
129
|
-
readonly repoId: pulumi.Output<string>;
|
|
129
|
+
readonly repoId: pulumi.Output<string | undefined>;
|
|
130
130
|
/**
|
|
131
131
|
* Request cascade to delete the GitOps application.
|
|
132
132
|
*/
|
|
@@ -135,6 +135,10 @@ export declare class GitOpsApplications extends pulumi.CustomResource {
|
|
|
135
135
|
* Request propagation policy to delete the GitOps application.
|
|
136
136
|
*/
|
|
137
137
|
readonly requestPropagationPolicy: pulumi.Output<string | undefined>;
|
|
138
|
+
/**
|
|
139
|
+
* Indicates if the GitOps application should skip validate repository definition exists.
|
|
140
|
+
*/
|
|
141
|
+
readonly skipRepoValidation: pulumi.Output<boolean | undefined>;
|
|
138
142
|
/**
|
|
139
143
|
* Indicates if the GitOps application should be updated if existing and inserted if not.
|
|
140
144
|
*/
|
|
@@ -212,6 +216,10 @@ export interface GitOpsApplicationsState {
|
|
|
212
216
|
* Request propagation policy to delete the GitOps application.
|
|
213
217
|
*/
|
|
214
218
|
requestPropagationPolicy?: pulumi.Input<string>;
|
|
219
|
+
/**
|
|
220
|
+
* Indicates if the GitOps application should skip validate repository definition exists.
|
|
221
|
+
*/
|
|
222
|
+
skipRepoValidation?: pulumi.Input<boolean>;
|
|
215
223
|
/**
|
|
216
224
|
* Indicates if the GitOps application should be updated if existing and inserted if not.
|
|
217
225
|
*/
|
|
@@ -272,7 +280,7 @@ export interface GitOpsApplicationsArgs {
|
|
|
272
280
|
/**
|
|
273
281
|
* Repository identifier of the GitOps application.
|
|
274
282
|
*/
|
|
275
|
-
repoId
|
|
283
|
+
repoId?: pulumi.Input<string>;
|
|
276
284
|
/**
|
|
277
285
|
* Request cascade to delete the GitOps application.
|
|
278
286
|
*/
|
|
@@ -281,6 +289,10 @@ export interface GitOpsApplicationsArgs {
|
|
|
281
289
|
* Request propagation policy to delete the GitOps application.
|
|
282
290
|
*/
|
|
283
291
|
requestPropagationPolicy?: pulumi.Input<string>;
|
|
292
|
+
/**
|
|
293
|
+
* Indicates if the GitOps application should skip validate repository definition exists.
|
|
294
|
+
*/
|
|
295
|
+
skipRepoValidation?: pulumi.Input<boolean>;
|
|
284
296
|
/**
|
|
285
297
|
* Indicates if the GitOps application should be updated if existing and inserted if not.
|
|
286
298
|
*/
|
|
@@ -109,6 +109,7 @@ class GitOpsApplications extends pulumi.CustomResource {
|
|
|
109
109
|
resourceInputs["repoId"] = state ? state.repoId : undefined;
|
|
110
110
|
resourceInputs["requestCascade"] = state ? state.requestCascade : undefined;
|
|
111
111
|
resourceInputs["requestPropagationPolicy"] = state ? state.requestPropagationPolicy : undefined;
|
|
112
|
+
resourceInputs["skipRepoValidation"] = state ? state.skipRepoValidation : undefined;
|
|
112
113
|
resourceInputs["upsert"] = state ? state.upsert : undefined;
|
|
113
114
|
resourceInputs["validate"] = state ? state.validate : undefined;
|
|
114
115
|
}
|
|
@@ -132,9 +133,6 @@ class GitOpsApplications extends pulumi.CustomResource {
|
|
|
132
133
|
if ((!args || args.projectId === undefined) && !opts.urn) {
|
|
133
134
|
throw new Error("Missing required property 'projectId'");
|
|
134
135
|
}
|
|
135
|
-
if ((!args || args.repoId === undefined) && !opts.urn) {
|
|
136
|
-
throw new Error("Missing required property 'repoId'");
|
|
137
|
-
}
|
|
138
136
|
resourceInputs["accountId"] = args ? args.accountId : undefined;
|
|
139
137
|
resourceInputs["agentId"] = args ? args.agentId : undefined;
|
|
140
138
|
resourceInputs["applications"] = args ? args.applications : undefined;
|
|
@@ -149,6 +147,7 @@ class GitOpsApplications extends pulumi.CustomResource {
|
|
|
149
147
|
resourceInputs["repoId"] = args ? args.repoId : undefined;
|
|
150
148
|
resourceInputs["requestCascade"] = args ? args.requestCascade : undefined;
|
|
151
149
|
resourceInputs["requestPropagationPolicy"] = args ? args.requestPropagationPolicy : undefined;
|
|
150
|
+
resourceInputs["skipRepoValidation"] = args ? args.skipRepoValidation : undefined;
|
|
152
151
|
resourceInputs["upsert"] = args ? args.upsert : undefined;
|
|
153
152
|
resourceInputs["validate"] = args ? args.validate : undefined;
|
|
154
153
|
}
|
|
@@ -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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"}
|
|
@@ -0,0 +1,145 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "../types/input";
|
|
3
|
+
import * as outputs from "../types/output";
|
|
4
|
+
/**
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ## Import
|
|
8
|
+
*
|
|
9
|
+
* Import an Account level Gitops Repository
|
|
10
|
+
*
|
|
11
|
+
* ```sh
|
|
12
|
+
* $ pulumi import harness:platform/gitopsProject:GitopsProject example <agent_id>/<query_name>
|
|
13
|
+
* ```
|
|
14
|
+
*
|
|
15
|
+
* Import an Org level Gitops Repository
|
|
16
|
+
*
|
|
17
|
+
* ```sh
|
|
18
|
+
* $ pulumi import harness:platform/gitopsProject:GitopsProject example <organization_id>/<agent_id>/<query_name
|
|
19
|
+
* ```
|
|
20
|
+
*
|
|
21
|
+
* Import a Project level Gitops Repository
|
|
22
|
+
*
|
|
23
|
+
* ```sh
|
|
24
|
+
* $ pulumi import harness:platform/gitopsProject:GitopsProject example <organization_id>/<project_id>/<agent_id>/<query_name>
|
|
25
|
+
* ```
|
|
26
|
+
*/
|
|
27
|
+
export declare class GitopsProject extends pulumi.CustomResource {
|
|
28
|
+
/**
|
|
29
|
+
* Get an existing GitopsProject resource's state with the given name, ID, and optional extra
|
|
30
|
+
* properties used to qualify the lookup.
|
|
31
|
+
*
|
|
32
|
+
* @param name The _unique_ name of the resulting resource.
|
|
33
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
34
|
+
* @param state Any extra arguments used during the lookup.
|
|
35
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
36
|
+
*/
|
|
37
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: GitopsProjectState, opts?: pulumi.CustomResourceOptions): GitopsProject;
|
|
38
|
+
/**
|
|
39
|
+
* Returns true if the given object is an instance of GitopsProject. This is designed to work even
|
|
40
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
41
|
+
*/
|
|
42
|
+
static isInstance(obj: any): obj is GitopsProject;
|
|
43
|
+
/**
|
|
44
|
+
* Account identifier of the GitOps project.
|
|
45
|
+
*/
|
|
46
|
+
readonly accountId: pulumi.Output<string>;
|
|
47
|
+
/**
|
|
48
|
+
* Agent identifier of the GitOps project.
|
|
49
|
+
*/
|
|
50
|
+
readonly agentId: pulumi.Output<string>;
|
|
51
|
+
/**
|
|
52
|
+
* Org identifier of the GitOps project.
|
|
53
|
+
*/
|
|
54
|
+
readonly orgId: pulumi.Output<string | undefined>;
|
|
55
|
+
/**
|
|
56
|
+
* Project identifier of the GitOps repository.
|
|
57
|
+
*/
|
|
58
|
+
readonly projectId: pulumi.Output<string | undefined>;
|
|
59
|
+
/**
|
|
60
|
+
* App projects configuration details.
|
|
61
|
+
*/
|
|
62
|
+
readonly projects: pulumi.Output<outputs.platform.GitopsProjectProject[]>;
|
|
63
|
+
/**
|
|
64
|
+
* Identifier for the GitOps project.
|
|
65
|
+
*/
|
|
66
|
+
readonly queryName: pulumi.Output<string | undefined>;
|
|
67
|
+
/**
|
|
68
|
+
* Indicates if the GitOps repository should be updated if existing and inserted if not.
|
|
69
|
+
*/
|
|
70
|
+
readonly upsert: pulumi.Output<boolean | undefined>;
|
|
71
|
+
/**
|
|
72
|
+
* Create a GitopsProject resource with the given unique name, arguments, and options.
|
|
73
|
+
*
|
|
74
|
+
* @param name The _unique_ name of the resource.
|
|
75
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
76
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
77
|
+
*/
|
|
78
|
+
constructor(name: string, args: GitopsProjectArgs, opts?: pulumi.CustomResourceOptions);
|
|
79
|
+
}
|
|
80
|
+
/**
|
|
81
|
+
* Input properties used for looking up and filtering GitopsProject resources.
|
|
82
|
+
*/
|
|
83
|
+
export interface GitopsProjectState {
|
|
84
|
+
/**
|
|
85
|
+
* Account identifier of the GitOps project.
|
|
86
|
+
*/
|
|
87
|
+
accountId?: pulumi.Input<string>;
|
|
88
|
+
/**
|
|
89
|
+
* Agent identifier of the GitOps project.
|
|
90
|
+
*/
|
|
91
|
+
agentId?: pulumi.Input<string>;
|
|
92
|
+
/**
|
|
93
|
+
* Org identifier of the GitOps project.
|
|
94
|
+
*/
|
|
95
|
+
orgId?: pulumi.Input<string>;
|
|
96
|
+
/**
|
|
97
|
+
* Project identifier of the GitOps repository.
|
|
98
|
+
*/
|
|
99
|
+
projectId?: pulumi.Input<string>;
|
|
100
|
+
/**
|
|
101
|
+
* App projects configuration details.
|
|
102
|
+
*/
|
|
103
|
+
projects?: pulumi.Input<pulumi.Input<inputs.platform.GitopsProjectProject>[]>;
|
|
104
|
+
/**
|
|
105
|
+
* Identifier for the GitOps project.
|
|
106
|
+
*/
|
|
107
|
+
queryName?: pulumi.Input<string>;
|
|
108
|
+
/**
|
|
109
|
+
* Indicates if the GitOps repository should be updated if existing and inserted if not.
|
|
110
|
+
*/
|
|
111
|
+
upsert?: pulumi.Input<boolean>;
|
|
112
|
+
}
|
|
113
|
+
/**
|
|
114
|
+
* The set of arguments for constructing a GitopsProject resource.
|
|
115
|
+
*/
|
|
116
|
+
export interface GitopsProjectArgs {
|
|
117
|
+
/**
|
|
118
|
+
* Account identifier of the GitOps project.
|
|
119
|
+
*/
|
|
120
|
+
accountId: pulumi.Input<string>;
|
|
121
|
+
/**
|
|
122
|
+
* Agent identifier of the GitOps project.
|
|
123
|
+
*/
|
|
124
|
+
agentId: pulumi.Input<string>;
|
|
125
|
+
/**
|
|
126
|
+
* Org identifier of the GitOps project.
|
|
127
|
+
*/
|
|
128
|
+
orgId?: pulumi.Input<string>;
|
|
129
|
+
/**
|
|
130
|
+
* Project identifier of the GitOps repository.
|
|
131
|
+
*/
|
|
132
|
+
projectId?: pulumi.Input<string>;
|
|
133
|
+
/**
|
|
134
|
+
* App projects configuration details.
|
|
135
|
+
*/
|
|
136
|
+
projects: pulumi.Input<pulumi.Input<inputs.platform.GitopsProjectProject>[]>;
|
|
137
|
+
/**
|
|
138
|
+
* Identifier for the GitOps project.
|
|
139
|
+
*/
|
|
140
|
+
queryName?: pulumi.Input<string>;
|
|
141
|
+
/**
|
|
142
|
+
* Indicates if the GitOps repository should be updated if existing and inserted if not.
|
|
143
|
+
*/
|
|
144
|
+
upsert?: pulumi.Input<boolean>;
|
|
145
|
+
}
|