@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
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/harness",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.1",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Harness resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -23,7 +23,7 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "harness",
|
|
26
|
-
"version": "0.1.
|
|
26
|
+
"version": "0.1.1",
|
|
27
27
|
"server": "github://api.github.com/pulumi"
|
|
28
28
|
}
|
|
29
29
|
}
|
|
@@ -77,7 +77,7 @@ export declare class AzureCloudCostConnector extends pulumi.CustomResource {
|
|
|
77
77
|
*/
|
|
78
78
|
readonly description: pulumi.Output<string | undefined>;
|
|
79
79
|
/**
|
|
80
|
-
* Indicates which feature to enable among Billing, Optimization, and
|
|
80
|
+
* Indicates which feature to enable among Billing, Optimization, Visibility and Governance.
|
|
81
81
|
*/
|
|
82
82
|
readonly featuresEnableds: pulumi.Output<string[]>;
|
|
83
83
|
/**
|
|
@@ -130,7 +130,7 @@ export interface AzureCloudCostConnectorState {
|
|
|
130
130
|
*/
|
|
131
131
|
description?: pulumi.Input<string>;
|
|
132
132
|
/**
|
|
133
|
-
* Indicates which feature to enable among Billing, Optimization, and
|
|
133
|
+
* Indicates which feature to enable among Billing, Optimization, Visibility and Governance.
|
|
134
134
|
*/
|
|
135
135
|
featuresEnableds?: pulumi.Input<pulumi.Input<string>[]>;
|
|
136
136
|
/**
|
|
@@ -175,7 +175,7 @@ export interface AzureCloudCostConnectorArgs {
|
|
|
175
175
|
*/
|
|
176
176
|
description?: pulumi.Input<string>;
|
|
177
177
|
/**
|
|
178
|
-
* Indicates which feature to enable among Billing, Optimization, and
|
|
178
|
+
* Indicates which feature to enable among Billing, Optimization, Visibility and Governance.
|
|
179
179
|
*/
|
|
180
180
|
featuresEnableds: pulumi.Input<pulumi.Input<string>[]>;
|
|
181
181
|
/**
|
|
@@ -0,0 +1,189 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
import * as inputs from "../types/input";
|
|
3
|
+
import * as outputs from "../types/output";
|
|
4
|
+
/**
|
|
5
|
+
* Resource for creating a JDBC connector.
|
|
6
|
+
*
|
|
7
|
+
* ## Example Usage
|
|
8
|
+
*
|
|
9
|
+
* ```typescript
|
|
10
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
11
|
+
* import * as harness from "@pulumi/harness";
|
|
12
|
+
*
|
|
13
|
+
* const test = new harness.platform.ConnectorJdbc("test", {
|
|
14
|
+
* identifier: "identifer",
|
|
15
|
+
* name: "name",
|
|
16
|
+
* description: "test",
|
|
17
|
+
* tags: ["foo:bar"],
|
|
18
|
+
* url: "jdbc:sqlserver://1.2.3;trustServerCertificate=true",
|
|
19
|
+
* delegateSelectors: ["harness-delegate"],
|
|
20
|
+
* credentials: {
|
|
21
|
+
* username: "admin",
|
|
22
|
+
* passwordRef: "account.secret_id",
|
|
23
|
+
* },
|
|
24
|
+
* });
|
|
25
|
+
* ```
|
|
26
|
+
*
|
|
27
|
+
* ## Import
|
|
28
|
+
*
|
|
29
|
+
* Import account level jdbc connector
|
|
30
|
+
*
|
|
31
|
+
* ```sh
|
|
32
|
+
* $ pulumi import harness:platform/connectorJdbc:ConnectorJdbc example <connector_id>
|
|
33
|
+
* ```
|
|
34
|
+
*
|
|
35
|
+
* Import org level jdbc connector
|
|
36
|
+
*
|
|
37
|
+
* ```sh
|
|
38
|
+
* $ pulumi import harness:platform/connectorJdbc:ConnectorJdbc example <ord_id>/<connector_id>
|
|
39
|
+
* ```
|
|
40
|
+
*
|
|
41
|
+
* Import project level jdbc connector
|
|
42
|
+
*
|
|
43
|
+
* ```sh
|
|
44
|
+
* $ pulumi import harness:platform/connectorJdbc:ConnectorJdbc example <org_id>/<project_id>/<connector_id>
|
|
45
|
+
* ```
|
|
46
|
+
*/
|
|
47
|
+
export declare class ConnectorJdbc extends pulumi.CustomResource {
|
|
48
|
+
/**
|
|
49
|
+
* Get an existing ConnectorJdbc resource's state with the given name, ID, and optional extra
|
|
50
|
+
* properties used to qualify the lookup.
|
|
51
|
+
*
|
|
52
|
+
* @param name The _unique_ name of the resulting resource.
|
|
53
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
54
|
+
* @param state Any extra arguments used during the lookup.
|
|
55
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
56
|
+
*/
|
|
57
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: ConnectorJdbcState, opts?: pulumi.CustomResourceOptions): ConnectorJdbc;
|
|
58
|
+
/**
|
|
59
|
+
* Returns true if the given object is an instance of ConnectorJdbc. This is designed to work even
|
|
60
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
61
|
+
*/
|
|
62
|
+
static isInstance(obj: any): obj is ConnectorJdbc;
|
|
63
|
+
/**
|
|
64
|
+
* The credentials to use for the database server.
|
|
65
|
+
*/
|
|
66
|
+
readonly credentials: pulumi.Output<outputs.platform.ConnectorJdbcCredentials>;
|
|
67
|
+
/**
|
|
68
|
+
* Tags to filter delegates for connection.
|
|
69
|
+
*/
|
|
70
|
+
readonly delegateSelectors: pulumi.Output<string[] | undefined>;
|
|
71
|
+
/**
|
|
72
|
+
* Description of the resource.
|
|
73
|
+
*/
|
|
74
|
+
readonly description: pulumi.Output<string | undefined>;
|
|
75
|
+
/**
|
|
76
|
+
* Unique identifier of the resource.
|
|
77
|
+
*/
|
|
78
|
+
readonly identifier: pulumi.Output<string>;
|
|
79
|
+
/**
|
|
80
|
+
* Name of the resource.
|
|
81
|
+
*/
|
|
82
|
+
readonly name: pulumi.Output<string>;
|
|
83
|
+
/**
|
|
84
|
+
* Unique identifier of the organization.
|
|
85
|
+
*/
|
|
86
|
+
readonly orgId: pulumi.Output<string | undefined>;
|
|
87
|
+
/**
|
|
88
|
+
* Unique identifier of the project.
|
|
89
|
+
*/
|
|
90
|
+
readonly projectId: pulumi.Output<string | undefined>;
|
|
91
|
+
/**
|
|
92
|
+
* Tags to associate with the resource.
|
|
93
|
+
*/
|
|
94
|
+
readonly tags: pulumi.Output<string[] | undefined>;
|
|
95
|
+
/**
|
|
96
|
+
* The URL of the database server.
|
|
97
|
+
*/
|
|
98
|
+
readonly url: pulumi.Output<string>;
|
|
99
|
+
/**
|
|
100
|
+
* Create a ConnectorJdbc resource with the given unique name, arguments, and options.
|
|
101
|
+
*
|
|
102
|
+
* @param name The _unique_ name of the resource.
|
|
103
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
104
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
105
|
+
*/
|
|
106
|
+
constructor(name: string, args: ConnectorJdbcArgs, opts?: pulumi.CustomResourceOptions);
|
|
107
|
+
}
|
|
108
|
+
/**
|
|
109
|
+
* Input properties used for looking up and filtering ConnectorJdbc resources.
|
|
110
|
+
*/
|
|
111
|
+
export interface ConnectorJdbcState {
|
|
112
|
+
/**
|
|
113
|
+
* The credentials to use for the database server.
|
|
114
|
+
*/
|
|
115
|
+
credentials?: pulumi.Input<inputs.platform.ConnectorJdbcCredentials>;
|
|
116
|
+
/**
|
|
117
|
+
* Tags to filter delegates for connection.
|
|
118
|
+
*/
|
|
119
|
+
delegateSelectors?: pulumi.Input<pulumi.Input<string>[]>;
|
|
120
|
+
/**
|
|
121
|
+
* Description of the resource.
|
|
122
|
+
*/
|
|
123
|
+
description?: pulumi.Input<string>;
|
|
124
|
+
/**
|
|
125
|
+
* Unique identifier of the resource.
|
|
126
|
+
*/
|
|
127
|
+
identifier?: pulumi.Input<string>;
|
|
128
|
+
/**
|
|
129
|
+
* Name of the resource.
|
|
130
|
+
*/
|
|
131
|
+
name?: pulumi.Input<string>;
|
|
132
|
+
/**
|
|
133
|
+
* Unique identifier of the organization.
|
|
134
|
+
*/
|
|
135
|
+
orgId?: pulumi.Input<string>;
|
|
136
|
+
/**
|
|
137
|
+
* Unique identifier of the project.
|
|
138
|
+
*/
|
|
139
|
+
projectId?: pulumi.Input<string>;
|
|
140
|
+
/**
|
|
141
|
+
* Tags to associate with the resource.
|
|
142
|
+
*/
|
|
143
|
+
tags?: pulumi.Input<pulumi.Input<string>[]>;
|
|
144
|
+
/**
|
|
145
|
+
* The URL of the database server.
|
|
146
|
+
*/
|
|
147
|
+
url?: pulumi.Input<string>;
|
|
148
|
+
}
|
|
149
|
+
/**
|
|
150
|
+
* The set of arguments for constructing a ConnectorJdbc resource.
|
|
151
|
+
*/
|
|
152
|
+
export interface ConnectorJdbcArgs {
|
|
153
|
+
/**
|
|
154
|
+
* The credentials to use for the database server.
|
|
155
|
+
*/
|
|
156
|
+
credentials: pulumi.Input<inputs.platform.ConnectorJdbcCredentials>;
|
|
157
|
+
/**
|
|
158
|
+
* Tags to filter delegates for connection.
|
|
159
|
+
*/
|
|
160
|
+
delegateSelectors?: pulumi.Input<pulumi.Input<string>[]>;
|
|
161
|
+
/**
|
|
162
|
+
* Description of the resource.
|
|
163
|
+
*/
|
|
164
|
+
description?: pulumi.Input<string>;
|
|
165
|
+
/**
|
|
166
|
+
* Unique identifier of the resource.
|
|
167
|
+
*/
|
|
168
|
+
identifier: pulumi.Input<string>;
|
|
169
|
+
/**
|
|
170
|
+
* Name of the resource.
|
|
171
|
+
*/
|
|
172
|
+
name?: pulumi.Input<string>;
|
|
173
|
+
/**
|
|
174
|
+
* Unique identifier of the organization.
|
|
175
|
+
*/
|
|
176
|
+
orgId?: pulumi.Input<string>;
|
|
177
|
+
/**
|
|
178
|
+
* Unique identifier of the project.
|
|
179
|
+
*/
|
|
180
|
+
projectId?: pulumi.Input<string>;
|
|
181
|
+
/**
|
|
182
|
+
* Tags to associate with the resource.
|
|
183
|
+
*/
|
|
184
|
+
tags?: pulumi.Input<pulumi.Input<string>[]>;
|
|
185
|
+
/**
|
|
186
|
+
* The URL of the database server.
|
|
187
|
+
*/
|
|
188
|
+
url: pulumi.Input<string>;
|
|
189
|
+
}
|
|
@@ -0,0 +1,117 @@
|
|
|
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.ConnectorJdbc = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Resource for creating a JDBC connector.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as harness from "@pulumi/harness";
|
|
16
|
+
*
|
|
17
|
+
* const test = new harness.platform.ConnectorJdbc("test", {
|
|
18
|
+
* identifier: "identifer",
|
|
19
|
+
* name: "name",
|
|
20
|
+
* description: "test",
|
|
21
|
+
* tags: ["foo:bar"],
|
|
22
|
+
* url: "jdbc:sqlserver://1.2.3;trustServerCertificate=true",
|
|
23
|
+
* delegateSelectors: ["harness-delegate"],
|
|
24
|
+
* credentials: {
|
|
25
|
+
* username: "admin",
|
|
26
|
+
* passwordRef: "account.secret_id",
|
|
27
|
+
* },
|
|
28
|
+
* });
|
|
29
|
+
* ```
|
|
30
|
+
*
|
|
31
|
+
* ## Import
|
|
32
|
+
*
|
|
33
|
+
* Import account level jdbc connector
|
|
34
|
+
*
|
|
35
|
+
* ```sh
|
|
36
|
+
* $ pulumi import harness:platform/connectorJdbc:ConnectorJdbc example <connector_id>
|
|
37
|
+
* ```
|
|
38
|
+
*
|
|
39
|
+
* Import org level jdbc connector
|
|
40
|
+
*
|
|
41
|
+
* ```sh
|
|
42
|
+
* $ pulumi import harness:platform/connectorJdbc:ConnectorJdbc example <ord_id>/<connector_id>
|
|
43
|
+
* ```
|
|
44
|
+
*
|
|
45
|
+
* Import project level jdbc connector
|
|
46
|
+
*
|
|
47
|
+
* ```sh
|
|
48
|
+
* $ pulumi import harness:platform/connectorJdbc:ConnectorJdbc example <org_id>/<project_id>/<connector_id>
|
|
49
|
+
* ```
|
|
50
|
+
*/
|
|
51
|
+
class ConnectorJdbc extends pulumi.CustomResource {
|
|
52
|
+
/**
|
|
53
|
+
* Get an existing ConnectorJdbc resource's state with the given name, ID, and optional extra
|
|
54
|
+
* properties used to qualify the lookup.
|
|
55
|
+
*
|
|
56
|
+
* @param name The _unique_ name of the resulting resource.
|
|
57
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
58
|
+
* @param state Any extra arguments used during the lookup.
|
|
59
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
60
|
+
*/
|
|
61
|
+
static get(name, id, state, opts) {
|
|
62
|
+
return new ConnectorJdbc(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
63
|
+
}
|
|
64
|
+
/**
|
|
65
|
+
* Returns true if the given object is an instance of ConnectorJdbc. This is designed to work even
|
|
66
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
67
|
+
*/
|
|
68
|
+
static isInstance(obj) {
|
|
69
|
+
if (obj === undefined || obj === null) {
|
|
70
|
+
return false;
|
|
71
|
+
}
|
|
72
|
+
return obj['__pulumiType'] === ConnectorJdbc.__pulumiType;
|
|
73
|
+
}
|
|
74
|
+
constructor(name, argsOrState, opts) {
|
|
75
|
+
let resourceInputs = {};
|
|
76
|
+
opts = opts || {};
|
|
77
|
+
if (opts.id) {
|
|
78
|
+
const state = argsOrState;
|
|
79
|
+
resourceInputs["credentials"] = state ? state.credentials : undefined;
|
|
80
|
+
resourceInputs["delegateSelectors"] = state ? state.delegateSelectors : undefined;
|
|
81
|
+
resourceInputs["description"] = state ? state.description : undefined;
|
|
82
|
+
resourceInputs["identifier"] = state ? state.identifier : undefined;
|
|
83
|
+
resourceInputs["name"] = state ? state.name : undefined;
|
|
84
|
+
resourceInputs["orgId"] = state ? state.orgId : undefined;
|
|
85
|
+
resourceInputs["projectId"] = state ? state.projectId : undefined;
|
|
86
|
+
resourceInputs["tags"] = state ? state.tags : undefined;
|
|
87
|
+
resourceInputs["url"] = state ? state.url : undefined;
|
|
88
|
+
}
|
|
89
|
+
else {
|
|
90
|
+
const args = argsOrState;
|
|
91
|
+
if ((!args || args.credentials === undefined) && !opts.urn) {
|
|
92
|
+
throw new Error("Missing required property 'credentials'");
|
|
93
|
+
}
|
|
94
|
+
if ((!args || args.identifier === undefined) && !opts.urn) {
|
|
95
|
+
throw new Error("Missing required property 'identifier'");
|
|
96
|
+
}
|
|
97
|
+
if ((!args || args.url === undefined) && !opts.urn) {
|
|
98
|
+
throw new Error("Missing required property 'url'");
|
|
99
|
+
}
|
|
100
|
+
resourceInputs["credentials"] = args ? args.credentials : undefined;
|
|
101
|
+
resourceInputs["delegateSelectors"] = args ? args.delegateSelectors : undefined;
|
|
102
|
+
resourceInputs["description"] = args ? args.description : undefined;
|
|
103
|
+
resourceInputs["identifier"] = args ? args.identifier : undefined;
|
|
104
|
+
resourceInputs["name"] = args ? args.name : undefined;
|
|
105
|
+
resourceInputs["orgId"] = args ? args.orgId : undefined;
|
|
106
|
+
resourceInputs["projectId"] = args ? args.projectId : undefined;
|
|
107
|
+
resourceInputs["tags"] = args ? args.tags : undefined;
|
|
108
|
+
resourceInputs["url"] = args ? args.url : undefined;
|
|
109
|
+
}
|
|
110
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
111
|
+
super(ConnectorJdbc.__pulumiType, name, resourceInputs, opts);
|
|
112
|
+
}
|
|
113
|
+
}
|
|
114
|
+
exports.ConnectorJdbc = ConnectorJdbc;
|
|
115
|
+
/** @internal */
|
|
116
|
+
ConnectorJdbc.__pulumiType = 'harness:platform/connectorJdbc:ConnectorJdbc';
|
|
117
|
+
//# sourceMappingURL=connectorJdbc.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"connectorJdbc.js","sourceRoot":"","sources":["../../platform/connectorJdbc.ts"],"names":[],"mappings":"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"}
|
|
@@ -0,0 +1,189 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* Resource for creating a Harness DBDevOps Instance.
|
|
4
|
+
*
|
|
5
|
+
* ## Example Usage
|
|
6
|
+
*
|
|
7
|
+
* ```typescript
|
|
8
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
9
|
+
* import * as harness from "@pulumi/harness";
|
|
10
|
+
*
|
|
11
|
+
* const test = new harness.platform.DbInstance("test", {
|
|
12
|
+
* identifier: "identifier",
|
|
13
|
+
* orgId: "org_id",
|
|
14
|
+
* projectId: "project_id",
|
|
15
|
+
* name: "name",
|
|
16
|
+
* tags: [
|
|
17
|
+
* "foo:bar",
|
|
18
|
+
* "bar:foo",
|
|
19
|
+
* ],
|
|
20
|
+
* schema: "schema1",
|
|
21
|
+
* branch: "main",
|
|
22
|
+
* connector: "jdbcConnector",
|
|
23
|
+
* context: "ctx",
|
|
24
|
+
* });
|
|
25
|
+
* ```
|
|
26
|
+
*
|
|
27
|
+
* ## Import
|
|
28
|
+
*
|
|
29
|
+
* Import project level db instance
|
|
30
|
+
*
|
|
31
|
+
* ```sh
|
|
32
|
+
* $ pulumi import harness:platform/dbInstance:DbInstance example <org_id>/<project_id>/<db_schema_id>/<db_instance_id>
|
|
33
|
+
* ```
|
|
34
|
+
*/
|
|
35
|
+
export declare class DbInstance extends pulumi.CustomResource {
|
|
36
|
+
/**
|
|
37
|
+
* Get an existing DbInstance resource's state with the given name, ID, and optional extra
|
|
38
|
+
* properties used to qualify the lookup.
|
|
39
|
+
*
|
|
40
|
+
* @param name The _unique_ name of the resulting resource.
|
|
41
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
42
|
+
* @param state Any extra arguments used during the lookup.
|
|
43
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
44
|
+
*/
|
|
45
|
+
static get(name: string, id: pulumi.Input<pulumi.ID>, state?: DbInstanceState, opts?: pulumi.CustomResourceOptions): DbInstance;
|
|
46
|
+
/**
|
|
47
|
+
* Returns true if the given object is an instance of DbInstance. This is designed to work even
|
|
48
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
49
|
+
*/
|
|
50
|
+
static isInstance(obj: any): obj is DbInstance;
|
|
51
|
+
/**
|
|
52
|
+
* The branch of changeSet repository
|
|
53
|
+
*/
|
|
54
|
+
readonly branch: pulumi.Output<string | undefined>;
|
|
55
|
+
/**
|
|
56
|
+
* The connector to database
|
|
57
|
+
*/
|
|
58
|
+
readonly connector: pulumi.Output<string>;
|
|
59
|
+
/**
|
|
60
|
+
* The liquibase context
|
|
61
|
+
*/
|
|
62
|
+
readonly context: pulumi.Output<string | undefined>;
|
|
63
|
+
/**
|
|
64
|
+
* Description of the resource.
|
|
65
|
+
*/
|
|
66
|
+
readonly description: pulumi.Output<string | undefined>;
|
|
67
|
+
/**
|
|
68
|
+
* Unique identifier of the resource.
|
|
69
|
+
*/
|
|
70
|
+
readonly identifier: pulumi.Output<string>;
|
|
71
|
+
/**
|
|
72
|
+
* Name of the resource.
|
|
73
|
+
*/
|
|
74
|
+
readonly name: pulumi.Output<string>;
|
|
75
|
+
/**
|
|
76
|
+
* Unique identifier of the organization.
|
|
77
|
+
*/
|
|
78
|
+
readonly orgId: pulumi.Output<string>;
|
|
79
|
+
/**
|
|
80
|
+
* Unique identifier of the project.
|
|
81
|
+
*/
|
|
82
|
+
readonly projectId: pulumi.Output<string>;
|
|
83
|
+
/**
|
|
84
|
+
* The identifier of the parent database schema
|
|
85
|
+
*/
|
|
86
|
+
readonly schema: pulumi.Output<string>;
|
|
87
|
+
/**
|
|
88
|
+
* Tags to associate with the resource.
|
|
89
|
+
*/
|
|
90
|
+
readonly tags: pulumi.Output<string[] | undefined>;
|
|
91
|
+
/**
|
|
92
|
+
* Create a DbInstance resource with the given unique name, arguments, and options.
|
|
93
|
+
*
|
|
94
|
+
* @param name The _unique_ name of the resource.
|
|
95
|
+
* @param args The arguments to use to populate this resource's properties.
|
|
96
|
+
* @param opts A bag of options that control this resource's behavior.
|
|
97
|
+
*/
|
|
98
|
+
constructor(name: string, args: DbInstanceArgs, opts?: pulumi.CustomResourceOptions);
|
|
99
|
+
}
|
|
100
|
+
/**
|
|
101
|
+
* Input properties used for looking up and filtering DbInstance resources.
|
|
102
|
+
*/
|
|
103
|
+
export interface DbInstanceState {
|
|
104
|
+
/**
|
|
105
|
+
* The branch of changeSet repository
|
|
106
|
+
*/
|
|
107
|
+
branch?: pulumi.Input<string>;
|
|
108
|
+
/**
|
|
109
|
+
* The connector to database
|
|
110
|
+
*/
|
|
111
|
+
connector?: pulumi.Input<string>;
|
|
112
|
+
/**
|
|
113
|
+
* The liquibase context
|
|
114
|
+
*/
|
|
115
|
+
context?: pulumi.Input<string>;
|
|
116
|
+
/**
|
|
117
|
+
* Description of the resource.
|
|
118
|
+
*/
|
|
119
|
+
description?: pulumi.Input<string>;
|
|
120
|
+
/**
|
|
121
|
+
* Unique identifier of the resource.
|
|
122
|
+
*/
|
|
123
|
+
identifier?: pulumi.Input<string>;
|
|
124
|
+
/**
|
|
125
|
+
* Name of the resource.
|
|
126
|
+
*/
|
|
127
|
+
name?: pulumi.Input<string>;
|
|
128
|
+
/**
|
|
129
|
+
* Unique identifier of the organization.
|
|
130
|
+
*/
|
|
131
|
+
orgId?: pulumi.Input<string>;
|
|
132
|
+
/**
|
|
133
|
+
* Unique identifier of the project.
|
|
134
|
+
*/
|
|
135
|
+
projectId?: pulumi.Input<string>;
|
|
136
|
+
/**
|
|
137
|
+
* The identifier of the parent database schema
|
|
138
|
+
*/
|
|
139
|
+
schema?: pulumi.Input<string>;
|
|
140
|
+
/**
|
|
141
|
+
* Tags to associate with the resource.
|
|
142
|
+
*/
|
|
143
|
+
tags?: pulumi.Input<pulumi.Input<string>[]>;
|
|
144
|
+
}
|
|
145
|
+
/**
|
|
146
|
+
* The set of arguments for constructing a DbInstance resource.
|
|
147
|
+
*/
|
|
148
|
+
export interface DbInstanceArgs {
|
|
149
|
+
/**
|
|
150
|
+
* The branch of changeSet repository
|
|
151
|
+
*/
|
|
152
|
+
branch?: pulumi.Input<string>;
|
|
153
|
+
/**
|
|
154
|
+
* The connector to database
|
|
155
|
+
*/
|
|
156
|
+
connector: pulumi.Input<string>;
|
|
157
|
+
/**
|
|
158
|
+
* The liquibase context
|
|
159
|
+
*/
|
|
160
|
+
context?: pulumi.Input<string>;
|
|
161
|
+
/**
|
|
162
|
+
* Description of the resource.
|
|
163
|
+
*/
|
|
164
|
+
description?: pulumi.Input<string>;
|
|
165
|
+
/**
|
|
166
|
+
* Unique identifier of the resource.
|
|
167
|
+
*/
|
|
168
|
+
identifier: pulumi.Input<string>;
|
|
169
|
+
/**
|
|
170
|
+
* Name of the resource.
|
|
171
|
+
*/
|
|
172
|
+
name?: pulumi.Input<string>;
|
|
173
|
+
/**
|
|
174
|
+
* Unique identifier of the organization.
|
|
175
|
+
*/
|
|
176
|
+
orgId: pulumi.Input<string>;
|
|
177
|
+
/**
|
|
178
|
+
* Unique identifier of the project.
|
|
179
|
+
*/
|
|
180
|
+
projectId: pulumi.Input<string>;
|
|
181
|
+
/**
|
|
182
|
+
* The identifier of the parent database schema
|
|
183
|
+
*/
|
|
184
|
+
schema: pulumi.Input<string>;
|
|
185
|
+
/**
|
|
186
|
+
* Tags to associate with the resource.
|
|
187
|
+
*/
|
|
188
|
+
tags?: pulumi.Input<pulumi.Input<string>[]>;
|
|
189
|
+
}
|
|
@@ -0,0 +1,115 @@
|
|
|
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.DbInstance = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("../utilities");
|
|
8
|
+
/**
|
|
9
|
+
* Resource for creating a Harness DBDevOps Instance.
|
|
10
|
+
*
|
|
11
|
+
* ## Example Usage
|
|
12
|
+
*
|
|
13
|
+
* ```typescript
|
|
14
|
+
* import * as pulumi from "@pulumi/pulumi";
|
|
15
|
+
* import * as harness from "@pulumi/harness";
|
|
16
|
+
*
|
|
17
|
+
* const test = new harness.platform.DbInstance("test", {
|
|
18
|
+
* identifier: "identifier",
|
|
19
|
+
* orgId: "org_id",
|
|
20
|
+
* projectId: "project_id",
|
|
21
|
+
* name: "name",
|
|
22
|
+
* tags: [
|
|
23
|
+
* "foo:bar",
|
|
24
|
+
* "bar:foo",
|
|
25
|
+
* ],
|
|
26
|
+
* schema: "schema1",
|
|
27
|
+
* branch: "main",
|
|
28
|
+
* connector: "jdbcConnector",
|
|
29
|
+
* context: "ctx",
|
|
30
|
+
* });
|
|
31
|
+
* ```
|
|
32
|
+
*
|
|
33
|
+
* ## Import
|
|
34
|
+
*
|
|
35
|
+
* Import project level db instance
|
|
36
|
+
*
|
|
37
|
+
* ```sh
|
|
38
|
+
* $ pulumi import harness:platform/dbInstance:DbInstance example <org_id>/<project_id>/<db_schema_id>/<db_instance_id>
|
|
39
|
+
* ```
|
|
40
|
+
*/
|
|
41
|
+
class DbInstance extends pulumi.CustomResource {
|
|
42
|
+
/**
|
|
43
|
+
* Get an existing DbInstance resource's state with the given name, ID, and optional extra
|
|
44
|
+
* properties used to qualify the lookup.
|
|
45
|
+
*
|
|
46
|
+
* @param name The _unique_ name of the resulting resource.
|
|
47
|
+
* @param id The _unique_ provider ID of the resource to lookup.
|
|
48
|
+
* @param state Any extra arguments used during the lookup.
|
|
49
|
+
* @param opts Optional settings to control the behavior of the CustomResource.
|
|
50
|
+
*/
|
|
51
|
+
static get(name, id, state, opts) {
|
|
52
|
+
return new DbInstance(name, state, Object.assign(Object.assign({}, opts), { id: id }));
|
|
53
|
+
}
|
|
54
|
+
/**
|
|
55
|
+
* Returns true if the given object is an instance of DbInstance. This is designed to work even
|
|
56
|
+
* when multiple copies of the Pulumi SDK have been loaded into the same process.
|
|
57
|
+
*/
|
|
58
|
+
static isInstance(obj) {
|
|
59
|
+
if (obj === undefined || obj === null) {
|
|
60
|
+
return false;
|
|
61
|
+
}
|
|
62
|
+
return obj['__pulumiType'] === DbInstance.__pulumiType;
|
|
63
|
+
}
|
|
64
|
+
constructor(name, argsOrState, opts) {
|
|
65
|
+
let resourceInputs = {};
|
|
66
|
+
opts = opts || {};
|
|
67
|
+
if (opts.id) {
|
|
68
|
+
const state = argsOrState;
|
|
69
|
+
resourceInputs["branch"] = state ? state.branch : undefined;
|
|
70
|
+
resourceInputs["connector"] = state ? state.connector : undefined;
|
|
71
|
+
resourceInputs["context"] = state ? state.context : undefined;
|
|
72
|
+
resourceInputs["description"] = state ? state.description : undefined;
|
|
73
|
+
resourceInputs["identifier"] = state ? state.identifier : undefined;
|
|
74
|
+
resourceInputs["name"] = state ? state.name : undefined;
|
|
75
|
+
resourceInputs["orgId"] = state ? state.orgId : undefined;
|
|
76
|
+
resourceInputs["projectId"] = state ? state.projectId : undefined;
|
|
77
|
+
resourceInputs["schema"] = state ? state.schema : undefined;
|
|
78
|
+
resourceInputs["tags"] = state ? state.tags : undefined;
|
|
79
|
+
}
|
|
80
|
+
else {
|
|
81
|
+
const args = argsOrState;
|
|
82
|
+
if ((!args || args.connector === undefined) && !opts.urn) {
|
|
83
|
+
throw new Error("Missing required property 'connector'");
|
|
84
|
+
}
|
|
85
|
+
if ((!args || args.identifier === undefined) && !opts.urn) {
|
|
86
|
+
throw new Error("Missing required property 'identifier'");
|
|
87
|
+
}
|
|
88
|
+
if ((!args || args.orgId === undefined) && !opts.urn) {
|
|
89
|
+
throw new Error("Missing required property 'orgId'");
|
|
90
|
+
}
|
|
91
|
+
if ((!args || args.projectId === undefined) && !opts.urn) {
|
|
92
|
+
throw new Error("Missing required property 'projectId'");
|
|
93
|
+
}
|
|
94
|
+
if ((!args || args.schema === undefined) && !opts.urn) {
|
|
95
|
+
throw new Error("Missing required property 'schema'");
|
|
96
|
+
}
|
|
97
|
+
resourceInputs["branch"] = args ? args.branch : undefined;
|
|
98
|
+
resourceInputs["connector"] = args ? args.connector : undefined;
|
|
99
|
+
resourceInputs["context"] = args ? args.context : undefined;
|
|
100
|
+
resourceInputs["description"] = args ? args.description : undefined;
|
|
101
|
+
resourceInputs["identifier"] = args ? args.identifier : undefined;
|
|
102
|
+
resourceInputs["name"] = args ? args.name : undefined;
|
|
103
|
+
resourceInputs["orgId"] = args ? args.orgId : undefined;
|
|
104
|
+
resourceInputs["projectId"] = args ? args.projectId : undefined;
|
|
105
|
+
resourceInputs["schema"] = args ? args.schema : undefined;
|
|
106
|
+
resourceInputs["tags"] = args ? args.tags : undefined;
|
|
107
|
+
}
|
|
108
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts);
|
|
109
|
+
super(DbInstance.__pulumiType, name, resourceInputs, opts);
|
|
110
|
+
}
|
|
111
|
+
}
|
|
112
|
+
exports.DbInstance = DbInstance;
|
|
113
|
+
/** @internal */
|
|
114
|
+
DbInstance.__pulumiType = 'harness:platform/dbInstance:DbInstance';
|
|
115
|
+
//# sourceMappingURL=dbInstance.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"dbInstance.js","sourceRoot":"","sources":["../../platform/dbInstance.ts"],"names":[],"mappings":"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"}
|