@pulumi/aiven 6.4.0 → 6.5.0-alpha.1689690146
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/billingGroup.d.ts +18 -0
- package/billingGroup.js +2 -0
- package/billingGroup.js.map +1 -1
- package/getBillingGroup.d.ts +4 -0
- package/getBillingGroup.js.map +1 -1
- package/getOpenSearch.d.ts +4 -4
- package/getOpenSearch.js +2 -2
- package/getOpenSearchAclConfig.d.ts +3 -3
- package/getOpenSearchAclConfig.js +2 -2
- package/getOpenSearchAclRule.d.ts +2 -2
- package/getOpenSearchAclRule.js +2 -2
- package/getOpensearchUser.d.ts +6 -6
- package/getOpensearchUser.js +2 -2
- package/getOrganizationUser.d.ts +64 -0
- package/getOrganizationUser.js +26 -0
- package/getOrganizationUser.js.map +1 -0
- package/getProject.d.ts +6 -2
- package/getProject.js.map +1 -1
- package/getServiceIntegrationEndpoint.d.ts +1 -1
- package/index.d.ts +6 -0
- package/index.js +10 -2
- package/index.js.map +1 -1
- package/openSearch.d.ts +6 -6
- package/openSearch.js +1 -1
- package/openSearchAclConfig.d.ts +4 -4
- package/openSearchAclConfig.js +1 -1
- package/openSearchAclRule.d.ts +1 -1
- package/openSearchAclRule.js +1 -1
- package/opensearchUser.d.ts +7 -7
- package/opensearchUser.js +1 -1
- package/organizationUser.d.ts +93 -0
- package/organizationUser.js +72 -0
- package/organizationUser.js.map +1 -0
- package/package.json +2 -2
- package/project.d.ts +24 -6
- package/project.js +2 -0
- package/project.js.map +1 -1
- package/serviceIntegrationEndpoint.d.ts +3 -3
- package/types/input.d.ts +53 -4
- package/types/output.d.ts +97 -8
package/billingGroup.d.ts
CHANGED
|
@@ -42,6 +42,8 @@ export declare class BillingGroup extends pulumi.CustomResource {
|
|
|
42
42
|
static isInstance(obj: any): obj is BillingGroup;
|
|
43
43
|
/**
|
|
44
44
|
* Account id
|
|
45
|
+
*
|
|
46
|
+
* @deprecated Use parent_id instead. This field will be removed in the next major release.
|
|
45
47
|
*/
|
|
46
48
|
readonly accountId: pulumi.Output<string | undefined>;
|
|
47
49
|
/**
|
|
@@ -84,6 +86,10 @@ export declare class BillingGroup extends pulumi.CustomResource {
|
|
|
84
86
|
* Billing Group name
|
|
85
87
|
*/
|
|
86
88
|
readonly name: pulumi.Output<string>;
|
|
89
|
+
/**
|
|
90
|
+
* An optional property to link a billing group to an already existing organization or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
|
|
91
|
+
*/
|
|
92
|
+
readonly parentId: pulumi.Output<string | undefined>;
|
|
87
93
|
/**
|
|
88
94
|
* State
|
|
89
95
|
*/
|
|
@@ -111,6 +117,8 @@ export declare class BillingGroup extends pulumi.CustomResource {
|
|
|
111
117
|
export interface BillingGroupState {
|
|
112
118
|
/**
|
|
113
119
|
* Account id
|
|
120
|
+
*
|
|
121
|
+
* @deprecated Use parent_id instead. This field will be removed in the next major release.
|
|
114
122
|
*/
|
|
115
123
|
accountId?: pulumi.Input<string>;
|
|
116
124
|
/**
|
|
@@ -153,6 +161,10 @@ export interface BillingGroupState {
|
|
|
153
161
|
* Billing Group name
|
|
154
162
|
*/
|
|
155
163
|
name?: pulumi.Input<string>;
|
|
164
|
+
/**
|
|
165
|
+
* An optional property to link a billing group to an already existing organization or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
|
|
166
|
+
*/
|
|
167
|
+
parentId?: pulumi.Input<string>;
|
|
156
168
|
/**
|
|
157
169
|
* State
|
|
158
170
|
*/
|
|
@@ -172,6 +184,8 @@ export interface BillingGroupState {
|
|
|
172
184
|
export interface BillingGroupArgs {
|
|
173
185
|
/**
|
|
174
186
|
* Account id
|
|
187
|
+
*
|
|
188
|
+
* @deprecated Use parent_id instead. This field will be removed in the next major release.
|
|
175
189
|
*/
|
|
176
190
|
accountId?: pulumi.Input<string>;
|
|
177
191
|
/**
|
|
@@ -214,6 +228,10 @@ export interface BillingGroupArgs {
|
|
|
214
228
|
* Billing Group name
|
|
215
229
|
*/
|
|
216
230
|
name?: pulumi.Input<string>;
|
|
231
|
+
/**
|
|
232
|
+
* An optional property to link a billing group to an already existing organization or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
|
|
233
|
+
*/
|
|
234
|
+
parentId?: pulumi.Input<string>;
|
|
217
235
|
/**
|
|
218
236
|
* State
|
|
219
237
|
*/
|
package/billingGroup.js
CHANGED
|
@@ -69,6 +69,7 @@ class BillingGroup extends pulumi.CustomResource {
|
|
|
69
69
|
resourceInputs["copyFromBillingGroup"] = state ? state.copyFromBillingGroup : undefined;
|
|
70
70
|
resourceInputs["countryCode"] = state ? state.countryCode : undefined;
|
|
71
71
|
resourceInputs["name"] = state ? state.name : undefined;
|
|
72
|
+
resourceInputs["parentId"] = state ? state.parentId : undefined;
|
|
72
73
|
resourceInputs["state"] = state ? state.state : undefined;
|
|
73
74
|
resourceInputs["vatId"] = state ? state.vatId : undefined;
|
|
74
75
|
resourceInputs["zipCode"] = state ? state.zipCode : undefined;
|
|
@@ -86,6 +87,7 @@ class BillingGroup extends pulumi.CustomResource {
|
|
|
86
87
|
resourceInputs["copyFromBillingGroup"] = args ? args.copyFromBillingGroup : undefined;
|
|
87
88
|
resourceInputs["countryCode"] = args ? args.countryCode : undefined;
|
|
88
89
|
resourceInputs["name"] = args ? args.name : undefined;
|
|
90
|
+
resourceInputs["parentId"] = args ? args.parentId : undefined;
|
|
89
91
|
resourceInputs["state"] = args ? args.state : undefined;
|
|
90
92
|
resourceInputs["vatId"] = args ? args.vatId : undefined;
|
|
91
93
|
resourceInputs["zipCode"] = args ? args.zipCode : undefined;
|
package/billingGroup.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"billingGroup.js","sourceRoot":"","sources":["../billingGroup.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;GAwBG;AACH,MAAa,YAAa,SAAQ,MAAM,CAAC,cAAc;IACnD;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAyB,EAAE,IAAmC;QACvH,OAAO,IAAI,YAAY,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACnE,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,YAAY,CAAC,YAAY,CAAC;IAC7D,CAAC;
|
|
1
|
+
{"version":3,"file":"billingGroup.js","sourceRoot":"","sources":["../billingGroup.ts"],"names":[],"mappings":"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"}
|
package/getBillingGroup.d.ts
CHANGED
|
@@ -68,6 +68,10 @@ export interface GetBillingGroupResult {
|
|
|
68
68
|
* Billing Group name
|
|
69
69
|
*/
|
|
70
70
|
readonly name: string;
|
|
71
|
+
/**
|
|
72
|
+
* An optional property to link a billing group to an already existing organization or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
|
|
73
|
+
*/
|
|
74
|
+
readonly parentId: string;
|
|
71
75
|
/**
|
|
72
76
|
* State
|
|
73
77
|
*/
|
package/getBillingGroup.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getBillingGroup.js","sourceRoot":"","sources":["../getBillingGroup.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;GAEG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAElF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,6CAA6C,EAAE;QACxE,gBAAgB,EAAE,IAAI,CAAC,cAAc;KACxC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,0CAMC;
|
|
1
|
+
{"version":3,"file":"getBillingGroup.js","sourceRoot":"","sources":["../getBillingGroup.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;GAEG;AACH,SAAgB,eAAe,CAAC,IAAyB,EAAE,IAA2B;IAElF,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,6CAA6C,EAAE;QACxE,gBAAgB,EAAE,IAAI,CAAC,cAAc;KACxC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,0CAMC;AAqFD;;GAEG;AACH,SAAgB,qBAAqB,CAAC,IAA+B,EAAE,IAA2B;IAC9F,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,eAAe,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC1E,CAAC;AAFD,sDAEC"}
|
package/getOpenSearch.d.ts
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
import * as outputs from "./types/output";
|
|
3
3
|
/**
|
|
4
|
-
* The
|
|
4
|
+
* The OpenSearch data source provides information about the existing Aiven OpenSearch service.
|
|
5
5
|
*
|
|
6
6
|
* ## Example Usage
|
|
7
7
|
*
|
|
@@ -78,11 +78,11 @@ export interface GetOpenSearchResult {
|
|
|
78
78
|
*/
|
|
79
79
|
readonly maintenanceWindowTime: string;
|
|
80
80
|
/**
|
|
81
|
-
*
|
|
81
|
+
* OpenSearch user configurable settings
|
|
82
82
|
*/
|
|
83
83
|
readonly opensearchUserConfigs: outputs.GetOpenSearchOpensearchUserConfig[];
|
|
84
84
|
/**
|
|
85
|
-
*
|
|
85
|
+
* OpenSearch server provided values
|
|
86
86
|
*/
|
|
87
87
|
readonly opensearches: outputs.GetOpenSearchOpensearch[];
|
|
88
88
|
/**
|
|
@@ -147,7 +147,7 @@ export interface GetOpenSearchResult {
|
|
|
147
147
|
readonly terminationProtection: boolean;
|
|
148
148
|
}
|
|
149
149
|
/**
|
|
150
|
-
* The
|
|
150
|
+
* The OpenSearch data source provides information about the existing Aiven OpenSearch service.
|
|
151
151
|
*
|
|
152
152
|
* ## Example Usage
|
|
153
153
|
*
|
package/getOpenSearch.js
CHANGED
|
@@ -6,7 +6,7 @@ exports.getOpenSearchOutput = exports.getOpenSearch = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
* The
|
|
9
|
+
* The OpenSearch data source provides information about the existing Aiven OpenSearch service.
|
|
10
10
|
*
|
|
11
11
|
* ## Example Usage
|
|
12
12
|
*
|
|
@@ -29,7 +29,7 @@ function getOpenSearch(args, opts) {
|
|
|
29
29
|
}
|
|
30
30
|
exports.getOpenSearch = getOpenSearch;
|
|
31
31
|
/**
|
|
32
|
-
* The
|
|
32
|
+
* The OpenSearch data source provides information about the existing Aiven OpenSearch service.
|
|
33
33
|
*
|
|
34
34
|
* ## Example Usage
|
|
35
35
|
*
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
-
* The
|
|
3
|
+
* The OpenSearch ACL Config data source provides information about an existing Aiven OpenSearch ACL Config.
|
|
4
4
|
*
|
|
5
5
|
* ## Example Usage
|
|
6
6
|
*
|
|
@@ -33,7 +33,7 @@ export interface GetOpenSearchAclConfigArgs {
|
|
|
33
33
|
*/
|
|
34
34
|
export interface GetOpenSearchAclConfigResult {
|
|
35
35
|
/**
|
|
36
|
-
* Enable
|
|
36
|
+
* Enable OpenSearch ACLs. When disabled authenticated service users have unrestricted access. The default value is `true`.
|
|
37
37
|
*/
|
|
38
38
|
readonly enabled: boolean;
|
|
39
39
|
/**
|
|
@@ -54,7 +54,7 @@ export interface GetOpenSearchAclConfigResult {
|
|
|
54
54
|
readonly serviceName: string;
|
|
55
55
|
}
|
|
56
56
|
/**
|
|
57
|
-
* The
|
|
57
|
+
* The OpenSearch ACL Config data source provides information about an existing Aiven OpenSearch ACL Config.
|
|
58
58
|
*
|
|
59
59
|
* ## Example Usage
|
|
60
60
|
*
|
|
@@ -6,7 +6,7 @@ exports.getOpenSearchAclConfigOutput = exports.getOpenSearchAclConfig = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
* The
|
|
9
|
+
* The OpenSearch ACL Config data source provides information about an existing Aiven OpenSearch ACL Config.
|
|
10
10
|
*
|
|
11
11
|
* ## Example Usage
|
|
12
12
|
*
|
|
@@ -29,7 +29,7 @@ function getOpenSearchAclConfig(args, opts) {
|
|
|
29
29
|
}
|
|
30
30
|
exports.getOpenSearchAclConfig = getOpenSearchAclConfig;
|
|
31
31
|
/**
|
|
32
|
-
* The
|
|
32
|
+
* The OpenSearch ACL Config data source provides information about an existing Aiven OpenSearch ACL Config.
|
|
33
33
|
*
|
|
34
34
|
* ## Example Usage
|
|
35
35
|
*
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
-
* The
|
|
3
|
+
* The OpenSearch ACL Rule data source provides information about an existing Aiven OpenSearch ACL Rule.
|
|
4
4
|
*
|
|
5
5
|
* ## Example Usage
|
|
6
6
|
*
|
|
@@ -72,7 +72,7 @@ export interface GetOpenSearchAclRuleResult {
|
|
|
72
72
|
readonly username: string;
|
|
73
73
|
}
|
|
74
74
|
/**
|
|
75
|
-
* The
|
|
75
|
+
* The OpenSearch ACL Rule data source provides information about an existing Aiven OpenSearch ACL Rule.
|
|
76
76
|
*
|
|
77
77
|
* ## Example Usage
|
|
78
78
|
*
|
package/getOpenSearchAclRule.js
CHANGED
|
@@ -6,7 +6,7 @@ exports.getOpenSearchAclRuleOutput = exports.getOpenSearchAclRule = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
* The
|
|
9
|
+
* The OpenSearch ACL Rule data source provides information about an existing Aiven OpenSearch ACL Rule.
|
|
10
10
|
*
|
|
11
11
|
* ## Example Usage
|
|
12
12
|
*
|
|
@@ -34,7 +34,7 @@ function getOpenSearchAclRule(args, opts) {
|
|
|
34
34
|
}
|
|
35
35
|
exports.getOpenSearchAclRule = getOpenSearchAclRule;
|
|
36
36
|
/**
|
|
37
|
-
* The
|
|
37
|
+
* The OpenSearch ACL Rule data source provides information about an existing Aiven OpenSearch ACL Rule.
|
|
38
38
|
*
|
|
39
39
|
* ## Example Usage
|
|
40
40
|
*
|
package/getOpensearchUser.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
2
|
/**
|
|
3
|
-
* The
|
|
3
|
+
* The OpenSearch User data source provides information about the existing Aiven OpenSearch User.
|
|
4
4
|
*
|
|
5
5
|
* ## Example Usage
|
|
6
6
|
*
|
|
@@ -29,7 +29,7 @@ export interface GetOpensearchUserArgs {
|
|
|
29
29
|
*/
|
|
30
30
|
serviceName: string;
|
|
31
31
|
/**
|
|
32
|
-
* The actual name of the
|
|
32
|
+
* The actual name of the OpenSearch User. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
|
|
33
33
|
*/
|
|
34
34
|
username: string;
|
|
35
35
|
}
|
|
@@ -42,7 +42,7 @@ export interface GetOpensearchUserResult {
|
|
|
42
42
|
*/
|
|
43
43
|
readonly id: string;
|
|
44
44
|
/**
|
|
45
|
-
* The password of the
|
|
45
|
+
* The password of the OpenSearch User.
|
|
46
46
|
*/
|
|
47
47
|
readonly password: string;
|
|
48
48
|
/**
|
|
@@ -58,12 +58,12 @@ export interface GetOpensearchUserResult {
|
|
|
58
58
|
*/
|
|
59
59
|
readonly type: string;
|
|
60
60
|
/**
|
|
61
|
-
* The actual name of the
|
|
61
|
+
* The actual name of the OpenSearch User. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
|
|
62
62
|
*/
|
|
63
63
|
readonly username: string;
|
|
64
64
|
}
|
|
65
65
|
/**
|
|
66
|
-
* The
|
|
66
|
+
* The OpenSearch User data source provides information about the existing Aiven OpenSearch User.
|
|
67
67
|
*
|
|
68
68
|
* ## Example Usage
|
|
69
69
|
*
|
|
@@ -92,7 +92,7 @@ export interface GetOpensearchUserOutputArgs {
|
|
|
92
92
|
*/
|
|
93
93
|
serviceName: pulumi.Input<string>;
|
|
94
94
|
/**
|
|
95
|
-
* The actual name of the
|
|
95
|
+
* The actual name of the OpenSearch User. To set up proper dependencies please refer to this variable as a reference. This property cannot be changed, doing so forces recreation of the resource.
|
|
96
96
|
*/
|
|
97
97
|
username: pulumi.Input<string>;
|
|
98
98
|
}
|
package/getOpensearchUser.js
CHANGED
|
@@ -6,7 +6,7 @@ exports.getOpensearchUserOutput = exports.getOpensearchUser = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
* The
|
|
9
|
+
* The OpenSearch User data source provides information about the existing Aiven OpenSearch User.
|
|
10
10
|
*
|
|
11
11
|
* ## Example Usage
|
|
12
12
|
*
|
|
@@ -31,7 +31,7 @@ function getOpensearchUser(args, opts) {
|
|
|
31
31
|
}
|
|
32
32
|
exports.getOpensearchUser = getOpensearchUser;
|
|
33
33
|
/**
|
|
34
|
-
* The
|
|
34
|
+
* The OpenSearch User data source provides information about the existing Aiven OpenSearch User.
|
|
35
35
|
*
|
|
36
36
|
* ## Example Usage
|
|
37
37
|
*
|
|
@@ -0,0 +1,64 @@
|
|
|
1
|
+
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
+
/**
|
|
3
|
+
* The Organization User data source provides information about the existing Aiven Organization User.
|
|
4
|
+
*/
|
|
5
|
+
export declare function getOrganizationUser(args: GetOrganizationUserArgs, opts?: pulumi.InvokeOptions): Promise<GetOrganizationUserResult>;
|
|
6
|
+
/**
|
|
7
|
+
* A collection of arguments for invoking getOrganizationUser.
|
|
8
|
+
*/
|
|
9
|
+
export interface GetOrganizationUserArgs {
|
|
10
|
+
/**
|
|
11
|
+
* The unique organization ID. This property cannot be changed, doing so forces recreation of the resource.
|
|
12
|
+
*/
|
|
13
|
+
organizationId: string;
|
|
14
|
+
/**
|
|
15
|
+
* This is a user email address that first will be invited, and after accepting an invitation, they become a member of the organization. This property cannot be changed, doing so forces recreation of the resource.
|
|
16
|
+
*/
|
|
17
|
+
userEmail: string;
|
|
18
|
+
}
|
|
19
|
+
/**
|
|
20
|
+
* A collection of values returned by getOrganizationUser.
|
|
21
|
+
*/
|
|
22
|
+
export interface GetOrganizationUserResult {
|
|
23
|
+
/**
|
|
24
|
+
* This is a boolean flag that determines whether an invitation was accepted or not by the user. `false` value means that the invitation was sent to the user but not yet accepted. `true` means that the user accepted the invitation and now a member of an organization.
|
|
25
|
+
*/
|
|
26
|
+
readonly accepted: boolean;
|
|
27
|
+
/**
|
|
28
|
+
* Time of creation
|
|
29
|
+
*/
|
|
30
|
+
readonly createTime: string;
|
|
31
|
+
/**
|
|
32
|
+
* The provider-assigned unique ID for this managed resource.
|
|
33
|
+
*/
|
|
34
|
+
readonly id: string;
|
|
35
|
+
/**
|
|
36
|
+
* The email address of the user who sent an invitation to the user.
|
|
37
|
+
*/
|
|
38
|
+
readonly invitedBy: string;
|
|
39
|
+
/**
|
|
40
|
+
* The unique organization ID. This property cannot be changed, doing so forces recreation of the resource.
|
|
41
|
+
*/
|
|
42
|
+
readonly organizationId: string;
|
|
43
|
+
/**
|
|
44
|
+
* This is a user email address that first will be invited, and after accepting an invitation, they become a member of the organization. This property cannot be changed, doing so forces recreation of the resource.
|
|
45
|
+
*/
|
|
46
|
+
readonly userEmail: string;
|
|
47
|
+
}
|
|
48
|
+
/**
|
|
49
|
+
* The Organization User data source provides information about the existing Aiven Organization User.
|
|
50
|
+
*/
|
|
51
|
+
export declare function getOrganizationUserOutput(args: GetOrganizationUserOutputArgs, opts?: pulumi.InvokeOptions): pulumi.Output<GetOrganizationUserResult>;
|
|
52
|
+
/**
|
|
53
|
+
* A collection of arguments for invoking getOrganizationUser.
|
|
54
|
+
*/
|
|
55
|
+
export interface GetOrganizationUserOutputArgs {
|
|
56
|
+
/**
|
|
57
|
+
* The unique organization ID. This property cannot be changed, doing so forces recreation of the resource.
|
|
58
|
+
*/
|
|
59
|
+
organizationId: pulumi.Input<string>;
|
|
60
|
+
/**
|
|
61
|
+
* This is a user email address that first will be invited, and after accepting an invitation, they become a member of the organization. This property cannot be changed, doing so forces recreation of the resource.
|
|
62
|
+
*/
|
|
63
|
+
userEmail: pulumi.Input<string>;
|
|
64
|
+
}
|
|
@@ -0,0 +1,26 @@
|
|
|
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.getOrganizationUserOutput = exports.getOrganizationUser = void 0;
|
|
6
|
+
const pulumi = require("@pulumi/pulumi");
|
|
7
|
+
const utilities = require("./utilities");
|
|
8
|
+
/**
|
|
9
|
+
* The Organization User data source provides information about the existing Aiven Organization User.
|
|
10
|
+
*/
|
|
11
|
+
function getOrganizationUser(args, opts) {
|
|
12
|
+
opts = pulumi.mergeOptions(utilities.resourceOptsDefaults(), opts || {});
|
|
13
|
+
return pulumi.runtime.invoke("aiven:index/getOrganizationUser:getOrganizationUser", {
|
|
14
|
+
"organizationId": args.organizationId,
|
|
15
|
+
"userEmail": args.userEmail,
|
|
16
|
+
}, opts);
|
|
17
|
+
}
|
|
18
|
+
exports.getOrganizationUser = getOrganizationUser;
|
|
19
|
+
/**
|
|
20
|
+
* The Organization User data source provides information about the existing Aiven Organization User.
|
|
21
|
+
*/
|
|
22
|
+
function getOrganizationUserOutput(args, opts) {
|
|
23
|
+
return pulumi.output(args).apply((a) => getOrganizationUser(a, opts));
|
|
24
|
+
}
|
|
25
|
+
exports.getOrganizationUserOutput = getOrganizationUserOutput;
|
|
26
|
+
//# sourceMappingURL=getOrganizationUser.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"getOrganizationUser.js","sourceRoot":"","sources":["../getOrganizationUser.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;GAEG;AACH,SAAgB,mBAAmB,CAAC,IAA6B,EAAE,IAA2B;IAE1F,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,qDAAqD,EAAE;QAChF,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,WAAW,EAAE,IAAI,CAAC,SAAS;KAC9B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,kDAOC;AA6CD;;GAEG;AACH,SAAgB,yBAAyB,CAAC,IAAmC,EAAE,IAA2B;IACtG,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,mBAAmB,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AAC9E,CAAC;AAFD,8DAEC"}
|
package/getProject.d.ts
CHANGED
|
@@ -29,11 +29,11 @@ export interface GetProjectArgs {
|
|
|
29
29
|
*/
|
|
30
30
|
export interface GetProjectResult {
|
|
31
31
|
/**
|
|
32
|
-
* An optional property to link a project to already
|
|
32
|
+
* An optional property to link a project to an already existing account by using account ID. To set up proper dependencies please refer to this variable as a reference.
|
|
33
33
|
*/
|
|
34
34
|
readonly accountId: string;
|
|
35
35
|
/**
|
|
36
|
-
* If
|
|
36
|
+
* If parentId is set, grant account owner team admin access to the new project. The default value is `true`.
|
|
37
37
|
*/
|
|
38
38
|
readonly addAccountOwnersAdminAccess: boolean;
|
|
39
39
|
/**
|
|
@@ -64,6 +64,10 @@ export interface GetProjectResult {
|
|
|
64
64
|
* The provider-assigned unique ID for this managed resource.
|
|
65
65
|
*/
|
|
66
66
|
readonly id: string;
|
|
67
|
+
/**
|
|
68
|
+
* An optional property to link a project to an already existing organization or account by using its ID. To set up proper dependencies please refer to this variable as a reference.
|
|
69
|
+
*/
|
|
70
|
+
readonly parentId: string;
|
|
67
71
|
/**
|
|
68
72
|
* The method of invoicing used for payments for this project, e.g. `card`.
|
|
69
73
|
*/
|
package/getProject.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getProject.js","sourceRoot":"","sources":["../getProject.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAA2B;IAExE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,mCAAmC,EAAE;QAC9D,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,gCAMC;
|
|
1
|
+
{"version":3,"file":"getProject.js","sourceRoot":"","sources":["../getProject.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;GAaG;AACH,SAAgB,UAAU,CAAC,IAAoB,EAAE,IAA2B;IAExE,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,mCAAmC,EAAE;QAC9D,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,gCAMC;AA6ED;;;;;;;;;;;;;GAaG;AACH,SAAgB,gBAAgB,CAAC,IAA0B,EAAE,IAA2B;IACpF,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,UAAU,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACrE,CAAC;AAFD,4CAEC"}
|
|
@@ -72,7 +72,7 @@ export interface GetServiceIntegrationEndpointResult {
|
|
|
72
72
|
*/
|
|
73
73
|
readonly externalKafkaUserConfigs: outputs.GetServiceIntegrationEndpointExternalKafkaUserConfig[];
|
|
74
74
|
/**
|
|
75
|
-
*
|
|
75
|
+
* ExternalOpenSearchLogs user configurable settings
|
|
76
76
|
*/
|
|
77
77
|
readonly externalOpensearchLogsUserConfigs: outputs.GetServiceIntegrationEndpointExternalOpensearchLogsUserConfig[];
|
|
78
78
|
/**
|
package/index.d.ts
CHANGED
|
@@ -211,6 +211,9 @@ export declare const getOpensearchUserOutput: typeof import("./getOpensearchUser
|
|
|
211
211
|
export { GetOrganizationArgs, GetOrganizationResult, GetOrganizationOutputArgs } from "./getOrganization";
|
|
212
212
|
export declare const getOrganization: typeof import("./getOrganization").getOrganization;
|
|
213
213
|
export declare const getOrganizationOutput: typeof import("./getOrganization").getOrganizationOutput;
|
|
214
|
+
export { GetOrganizationUserArgs, GetOrganizationUserResult, GetOrganizationUserOutputArgs } from "./getOrganizationUser";
|
|
215
|
+
export declare const getOrganizationUser: typeof import("./getOrganizationUser").getOrganizationUser;
|
|
216
|
+
export declare const getOrganizationUserOutput: typeof import("./getOrganizationUser").getOrganizationUserOutput;
|
|
214
217
|
export { GetOrganizationalUnitArgs, GetOrganizationalUnitResult, GetOrganizationalUnitOutputArgs } from "./getOrganizationalUnit";
|
|
215
218
|
export declare const getOrganizationalUnit: typeof import("./getOrganizationalUnit").getOrganizationalUnit;
|
|
216
219
|
export declare const getOrganizationalUnitOutput: typeof import("./getOrganizationalUnit").getOrganizationalUnitOutput;
|
|
@@ -328,6 +331,9 @@ export declare const OpensearchUser: typeof import("./opensearchUser").Opensearc
|
|
|
328
331
|
export { OrganizationArgs, OrganizationState } from "./organization";
|
|
329
332
|
export type Organization = import("./organization").Organization;
|
|
330
333
|
export declare const Organization: typeof import("./organization").Organization;
|
|
334
|
+
export { OrganizationUserArgs, OrganizationUserState } from "./organizationUser";
|
|
335
|
+
export type OrganizationUser = import("./organizationUser").OrganizationUser;
|
|
336
|
+
export declare const OrganizationUser: typeof import("./organizationUser").OrganizationUser;
|
|
331
337
|
export { OrganizationalUnitArgs, OrganizationalUnitState } from "./organizationalUnit";
|
|
332
338
|
export type OrganizationalUnit = import("./organizationalUnit").OrganizationalUnit;
|
|
333
339
|
export declare const OrganizationalUnit: typeof import("./organizationalUnit").OrganizationalUnit;
|
package/index.js
CHANGED
|
@@ -4,8 +4,8 @@
|
|
|
4
4
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
5
5
|
exports.getCassandraUserOutput = exports.getCassandraUser = exports.getCassandraOutput = exports.getCassandra = exports.getCassandaOutput = exports.getCassanda = exports.getBillingGroupOutput = exports.getBillingGroup = exports.getAzureVpcPeeringConnectionOutput = exports.getAzureVpcPeeringConnection = exports.getAzurePrivatelinkOutput = exports.getAzurePrivatelink = exports.getAwsVpcPeeringConnectionOutput = exports.getAwsVpcPeeringConnection = exports.getAwsPrivatelinkOutput = exports.getAwsPrivatelink = exports.getAccountTeamProjectOutput = exports.getAccountTeamProject = exports.getAccountTeamMemberOutput = exports.getAccountTeamMember = exports.getAccountTeamOutput = exports.getAccountTeam = exports.getAccountAuthenticationOutput = exports.getAccountAuthentication = exports.getAccountOutput = exports.getAccount = exports.GcpVpcPeeringConnection = exports.FlinkApplicationVersion = exports.FlinkApplicationDeployment = exports.FlinkApplication = exports.Flink = exports.ConnectionPool = exports.ClickhouseUser = exports.ClickhouseRole = exports.ClickhouseGrant = exports.ClickhouseDatabase = exports.Clickhouse = exports.CassandraUser = exports.Cassandra = exports.BillingGroup = exports.AzureVpcPeeringConnection = exports.AzurePrivatelinkConnectionApproval = exports.AzurePrivatelink = exports.AwsVpcPeeringConnection = exports.AwsPrivatelink = exports.AccountTeamProject = exports.AccountTeamMember = exports.AccountTeam = exports.AccountAuthentication = exports.Account = void 0;
|
|
6
6
|
exports.getM3dbUserOutput = exports.getM3dbUser = exports.getM3DbOutput = exports.getM3Db = exports.getM3AggregatorOutput = exports.getM3Aggregator = exports.getKafkaUserOutput = exports.getKafkaUser = exports.getKafkaTopicOutput = exports.getKafkaTopic = exports.getKafkaSchemaRegistryAclOutput = exports.getKafkaSchemaRegistryAcl = exports.getKafkaSchemaConfigurationOutput = exports.getKafkaSchemaConfiguration = exports.getKafkaSchemaOutput = exports.getKafkaSchema = exports.getKafkaMirrorMakerOutput = exports.getKafkaMirrorMaker = exports.getKafkaConnectorOutput = exports.getKafkaConnector = exports.getKafkaConnectOutput = exports.getKafkaConnect = exports.getKafkaAclOutput = exports.getKafkaAcl = exports.getKafkaOutput = exports.getKafka = exports.getInfluxdbUserOutput = exports.getInfluxdbUser = exports.getInfluxdbDatabaseOutput = exports.getInfluxdbDatabase = exports.getInfluxDbOutput = exports.getInfluxDb = exports.getGrafanaOutput = exports.getGrafana = exports.getGcpVpcPeeringConnectionOutput = exports.getGcpVpcPeeringConnection = exports.getFlinkApplicationVersionOutput = exports.getFlinkApplicationVersion = exports.getFlinkApplicationOutput = exports.getFlinkApplication = exports.getFlinkOutput = exports.getFlink = exports.getConnectionPoolOutput = exports.getConnectionPool = exports.getClickhouseUserOutput = exports.getClickhouseUser = exports.getClickhouseDatabaseOutput = exports.getClickhouseDatabase = exports.getClickhouseOutput = exports.getClickhouse = void 0;
|
|
7
|
-
exports.
|
|
8
|
-
exports.types = exports.config = exports.TransitGatewayVpcAttachment = exports.StaticIp = exports.ServiceIntegrationEndpoint = exports.ServiceIntegration = exports.RedisUser = exports.Redis = exports.Provider = exports.ProjectVpc = exports.ProjectUser = exports.Project = exports.PgUser = exports.PgDatabase = exports.Pg = exports.OrganizationalUnit = exports.Organization = exports.OpensearchUser = exports.OpenSearchAclRule = exports.OpenSearchAclConfig = exports.OpenSearch = exports.MysqlUser = exports.MysqlDatabase = exports.MySql = exports.MirrorMakerReplicationFlow = exports.M3dbUser = exports.M3Db = exports.M3Aggregator = exports.KafkaUser = exports.KafkaTopic = exports.KafkaSchemaRegistryAcl = exports.KafkaSchemaConfiguration = exports.KafkaSchema = exports.KafkaMirrorMaker = exports.KafkaConnector = exports.KafkaConnect = void 0;
|
|
7
|
+
exports.InfluxdbUser = exports.InfluxdbDatabase = exports.InfluxDb = exports.Grafana = exports.getTransitGatewayVpcAttachmentOutput = exports.getTransitGatewayVpcAttachment = exports.getServiceIntegrationEndpointOutput = exports.getServiceIntegrationEndpoint = exports.getServiceIntegrationOutput = exports.getServiceIntegration = exports.getServiceComponentOutput = exports.getServiceComponent = exports.getRedisUserOutput = exports.getRedisUser = exports.getRedisOutput = exports.getRedis = exports.getProjectVpcOutput = exports.getProjectVpc = exports.getProjectUserOutput = exports.getProjectUser = exports.getProjectOutput = exports.getProject = exports.getPgUserOutput = exports.getPgUser = exports.getPgDatabaseOutput = exports.getPgDatabase = exports.getPgOutput = exports.getPg = exports.getOrganizationalUnitOutput = exports.getOrganizationalUnit = exports.getOrganizationUserOutput = exports.getOrganizationUser = exports.getOrganizationOutput = exports.getOrganization = exports.getOpensearchUserOutput = exports.getOpensearchUser = exports.getOpenSearchAclRuleOutput = exports.getOpenSearchAclRule = exports.getOpenSearchAclConfigOutput = exports.getOpenSearchAclConfig = exports.getOpenSearchOutput = exports.getOpenSearch = exports.getMysqlUserOutput = exports.getMysqlUser = exports.getMysqlDatabaseOutput = exports.getMysqlDatabase = exports.getMySqlOutput = exports.getMySql = exports.getMirrorMakerReplicationFlowOutput = exports.getMirrorMakerReplicationFlow = void 0;
|
|
8
|
+
exports.types = exports.config = exports.TransitGatewayVpcAttachment = exports.StaticIp = exports.ServiceIntegrationEndpoint = exports.ServiceIntegration = exports.RedisUser = exports.Redis = exports.Provider = exports.ProjectVpc = exports.ProjectUser = exports.Project = exports.PgUser = exports.PgDatabase = exports.Pg = exports.OrganizationalUnit = exports.OrganizationUser = exports.Organization = exports.OpensearchUser = exports.OpenSearchAclRule = exports.OpenSearchAclConfig = exports.OpenSearch = exports.MysqlUser = exports.MysqlDatabase = exports.MySql = exports.MirrorMakerReplicationFlow = exports.M3dbUser = exports.M3Db = exports.M3Aggregator = exports.KafkaUser = exports.KafkaTopic = exports.KafkaSchemaRegistryAcl = exports.KafkaSchemaConfiguration = exports.KafkaSchema = exports.KafkaMirrorMaker = exports.KafkaConnector = exports.KafkaConnect = exports.KafkaAcl = exports.Kafka = void 0;
|
|
9
9
|
const pulumi = require("@pulumi/pulumi");
|
|
10
10
|
const utilities = require("./utilities");
|
|
11
11
|
exports.Account = null;
|
|
@@ -197,6 +197,9 @@ utilities.lazyLoad(exports, ["getOpensearchUser", "getOpensearchUserOutput"], ()
|
|
|
197
197
|
exports.getOrganization = null;
|
|
198
198
|
exports.getOrganizationOutput = null;
|
|
199
199
|
utilities.lazyLoad(exports, ["getOrganization", "getOrganizationOutput"], () => require("./getOrganization"));
|
|
200
|
+
exports.getOrganizationUser = null;
|
|
201
|
+
exports.getOrganizationUserOutput = null;
|
|
202
|
+
utilities.lazyLoad(exports, ["getOrganizationUser", "getOrganizationUserOutput"], () => require("./getOrganizationUser"));
|
|
200
203
|
exports.getOrganizationalUnit = null;
|
|
201
204
|
exports.getOrganizationalUnitOutput = null;
|
|
202
205
|
utilities.lazyLoad(exports, ["getOrganizationalUnit", "getOrganizationalUnitOutput"], () => require("./getOrganizationalUnit"));
|
|
@@ -288,6 +291,8 @@ exports.OpensearchUser = null;
|
|
|
288
291
|
utilities.lazyLoad(exports, ["OpensearchUser"], () => require("./opensearchUser"));
|
|
289
292
|
exports.Organization = null;
|
|
290
293
|
utilities.lazyLoad(exports, ["Organization"], () => require("./organization"));
|
|
294
|
+
exports.OrganizationUser = null;
|
|
295
|
+
utilities.lazyLoad(exports, ["OrganizationUser"], () => require("./organizationUser"));
|
|
291
296
|
exports.OrganizationalUnit = null;
|
|
292
297
|
utilities.lazyLoad(exports, ["OrganizationalUnit"], () => require("./organizationalUnit"));
|
|
293
298
|
exports.Pg = null;
|
|
@@ -425,6 +430,8 @@ const _module = {
|
|
|
425
430
|
return new exports.OpensearchUser(name, undefined, { urn });
|
|
426
431
|
case "aiven:index/organization:Organization":
|
|
427
432
|
return new exports.Organization(name, undefined, { urn });
|
|
433
|
+
case "aiven:index/organizationUser:OrganizationUser":
|
|
434
|
+
return new exports.OrganizationUser(name, undefined, { urn });
|
|
428
435
|
case "aiven:index/organizationalUnit:OrganizationalUnit":
|
|
429
436
|
return new exports.OrganizationalUnit(name, undefined, { urn });
|
|
430
437
|
case "aiven:index/pg:Pg":
|
|
@@ -506,6 +513,7 @@ pulumi.runtime.registerResourceModule("aiven", "index/openSearchAclConfig", _mod
|
|
|
506
513
|
pulumi.runtime.registerResourceModule("aiven", "index/openSearchAclRule", _module);
|
|
507
514
|
pulumi.runtime.registerResourceModule("aiven", "index/opensearchUser", _module);
|
|
508
515
|
pulumi.runtime.registerResourceModule("aiven", "index/organization", _module);
|
|
516
|
+
pulumi.runtime.registerResourceModule("aiven", "index/organizationUser", _module);
|
|
509
517
|
pulumi.runtime.registerResourceModule("aiven", "index/organizationalUnit", _module);
|
|
510
518
|
pulumi.runtime.registerResourceModule("aiven", "index/pg", _module);
|
|
511
519
|
pulumi.runtime.registerResourceModule("aiven", "index/pgDatabase", _module);
|