@pulumi/aiven 6.16.0 → 6.17.0-alpha.1717002507
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/getMirrorMakerReplicationFlow.d.ts +4 -0
- package/getMirrorMakerReplicationFlow.js.map +1 -1
- package/getOrganizationApplicationUser.d.ts +5 -7
- package/getOrganizationApplicationUser.js +0 -6
- package/getOrganizationApplicationUser.js.map +1 -1
- package/mirrorMakerReplicationFlow.d.ts +12 -0
- package/mirrorMakerReplicationFlow.js +2 -0
- package/mirrorMakerReplicationFlow.js.map +1 -1
- package/organizationApplicationUser.d.ts +14 -9
- package/organizationApplicationUser.js +2 -2
- package/organizationApplicationUser.js.map +1 -1
- package/organizationApplicationUserToken.d.ts +0 -5
- package/organizationApplicationUserToken.js +0 -2
- package/organizationApplicationUserToken.js.map +1 -1
- package/package.json +2 -2
- package/types/input.d.ts +15 -51
- package/types/output.d.ts +31 -67
|
@@ -66,6 +66,10 @@ export interface GetMirrorMakerReplicationFlowResult {
|
|
|
66
66
|
* The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
67
67
|
*/
|
|
68
68
|
readonly project: string;
|
|
69
|
+
/**
|
|
70
|
+
* Replication factor, `>= 1`.
|
|
71
|
+
*/
|
|
72
|
+
readonly replicationFactor: number;
|
|
69
73
|
/**
|
|
70
74
|
* Replication policy class. The possible values are `org.apache.kafka.connect.mirror.DefaultReplicationPolicy` and `org.apache.kafka.connect.mirror.IdentityReplicationPolicy`. The default value is `org.apache.kafka.connect.mirror.DefaultReplicationPolicy`.
|
|
71
75
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getMirrorMakerReplicationFlow.js","sourceRoot":"","sources":["../getMirrorMakerReplicationFlow.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,6BAA6B,CAAC,IAAuC,EAAE,IAA2B;IAE9G,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,yEAAyE,EAAE;QACpG,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,eAAe,EAAE,IAAI,CAAC,aAAa;KACtC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,sEASC;
|
|
1
|
+
{"version":3,"file":"getMirrorMakerReplicationFlow.js","sourceRoot":"","sources":["../getMirrorMakerReplicationFlow.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,6BAA6B,CAAC,IAAuC,EAAE,IAA2B;IAE9G,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,yEAAyE,EAAE;QACpG,SAAS,EAAE,IAAI,CAAC,OAAO;QACvB,aAAa,EAAE,IAAI,CAAC,WAAW;QAC/B,eAAe,EAAE,IAAI,CAAC,aAAa;QACnC,eAAe,EAAE,IAAI,CAAC,aAAa;KACtC,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AATD,sEASC;AAyFD;;;;;;;;;;;;;;;;GAgBG;AACH,SAAgB,mCAAmC,CAAC,IAA6C,EAAE,IAA2B;IAC1H,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,6BAA6B,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACxF,CAAC;AAFD,kFAEC"}
|
|
@@ -2,9 +2,6 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
/**
|
|
3
3
|
* Gets information about an application user.
|
|
4
4
|
*
|
|
5
|
-
* **This data source is in the limited availability stage and may change without notice.** To enable this feature, contact the sales team. After it's enabled, set
|
|
6
|
-
* the `PROVIDER_AIVEN_ENABLE_BETA` environment variable to use the data source.
|
|
7
|
-
*
|
|
8
5
|
* ## Example Usage
|
|
9
6
|
*
|
|
10
7
|
* ```typescript
|
|
@@ -36,13 +33,17 @@ export interface GetOrganizationApplicationUserArgs {
|
|
|
36
33
|
*/
|
|
37
34
|
export interface GetOrganizationApplicationUserResult {
|
|
38
35
|
/**
|
|
39
|
-
*
|
|
36
|
+
* An email address automatically generated by Aiven to help identify the application user. No notifications are sent to this email.
|
|
40
37
|
*/
|
|
41
38
|
readonly email: string;
|
|
42
39
|
/**
|
|
43
40
|
* The provider-assigned unique ID for this managed resource.
|
|
44
41
|
*/
|
|
45
42
|
readonly id: string;
|
|
43
|
+
/**
|
|
44
|
+
* Makes the application user a super admin. The super admin role has full access to an organization, its billing and settings, and all its organizational units, projects, and services.
|
|
45
|
+
*/
|
|
46
|
+
readonly isSuperAdmin: boolean;
|
|
46
47
|
/**
|
|
47
48
|
* Name of the application user.
|
|
48
49
|
*/
|
|
@@ -59,9 +60,6 @@ export interface GetOrganizationApplicationUserResult {
|
|
|
59
60
|
/**
|
|
60
61
|
* Gets information about an application user.
|
|
61
62
|
*
|
|
62
|
-
* **This data source is in the limited availability stage and may change without notice.** To enable this feature, contact the sales team. After it's enabled, set
|
|
63
|
-
* the `PROVIDER_AIVEN_ENABLE_BETA` environment variable to use the data source.
|
|
64
|
-
*
|
|
65
63
|
* ## Example Usage
|
|
66
64
|
*
|
|
67
65
|
* ```typescript
|
|
@@ -8,9 +8,6 @@ const utilities = require("./utilities");
|
|
|
8
8
|
/**
|
|
9
9
|
* Gets information about an application user.
|
|
10
10
|
*
|
|
11
|
-
* **This data source is in the limited availability stage and may change without notice.** To enable this feature, contact the sales team. After it's enabled, set
|
|
12
|
-
* the `PROVIDER_AIVEN_ENABLE_BETA` environment variable to use the data source.
|
|
13
|
-
*
|
|
14
11
|
* ## Example Usage
|
|
15
12
|
*
|
|
16
13
|
* ```typescript
|
|
@@ -34,9 +31,6 @@ exports.getOrganizationApplicationUser = getOrganizationApplicationUser;
|
|
|
34
31
|
/**
|
|
35
32
|
* Gets information about an application user.
|
|
36
33
|
*
|
|
37
|
-
* **This data source is in the limited availability stage and may change without notice.** To enable this feature, contact the sales team. After it's enabled, set
|
|
38
|
-
* the `PROVIDER_AIVEN_ENABLE_BETA` environment variable to use the data source.
|
|
39
|
-
*
|
|
40
34
|
* ## Example Usage
|
|
41
35
|
*
|
|
42
36
|
* ```typescript
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getOrganizationApplicationUser.js","sourceRoot":"","sources":["../getOrganizationApplicationUser.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"getOrganizationApplicationUser.js","sourceRoot":"","sources":["../getOrganizationApplicationUser.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;GAcG;AACH,SAAgB,8BAA8B,CAAC,IAAwC,EAAE,IAA2B;IAEhH,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,2EAA2E,EAAE;QACtG,gBAAgB,EAAE,IAAI,CAAC,cAAc;QACrC,QAAQ,EAAE,IAAI,CAAC,MAAM;KACxB,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAPD,wEAOC;AA6CD;;;;;;;;;;;;;;GAcG;AACH,SAAgB,oCAAoC,CAAC,IAA8C,EAAE,IAA2B;IAC5H,OAAO,MAAM,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC,KAAK,CAAC,CAAC,CAAM,EAAE,EAAE,CAAC,8BAA8B,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC,CAAA;AACzF,CAAC;AAFD,oFAEC"}
|
|
@@ -65,6 +65,10 @@ export declare class MirrorMakerReplicationFlow extends pulumi.CustomResource {
|
|
|
65
65
|
* The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
66
66
|
*/
|
|
67
67
|
readonly project: pulumi.Output<string>;
|
|
68
|
+
/**
|
|
69
|
+
* Replication factor, `>= 1`.
|
|
70
|
+
*/
|
|
71
|
+
readonly replicationFactor: pulumi.Output<number | undefined>;
|
|
68
72
|
/**
|
|
69
73
|
* Replication policy class. The possible values are `org.apache.kafka.connect.mirror.DefaultReplicationPolicy` and `org.apache.kafka.connect.mirror.IdentityReplicationPolicy`. The default value is `org.apache.kafka.connect.mirror.DefaultReplicationPolicy`.
|
|
70
74
|
*/
|
|
@@ -130,6 +134,10 @@ export interface MirrorMakerReplicationFlowState {
|
|
|
130
134
|
* The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
131
135
|
*/
|
|
132
136
|
project?: pulumi.Input<string>;
|
|
137
|
+
/**
|
|
138
|
+
* Replication factor, `>= 1`.
|
|
139
|
+
*/
|
|
140
|
+
replicationFactor?: pulumi.Input<number>;
|
|
133
141
|
/**
|
|
134
142
|
* Replication policy class. The possible values are `org.apache.kafka.connect.mirror.DefaultReplicationPolicy` and `org.apache.kafka.connect.mirror.IdentityReplicationPolicy`. The default value is `org.apache.kafka.connect.mirror.DefaultReplicationPolicy`.
|
|
135
143
|
*/
|
|
@@ -187,6 +195,10 @@ export interface MirrorMakerReplicationFlowArgs {
|
|
|
187
195
|
* The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
188
196
|
*/
|
|
189
197
|
project: pulumi.Input<string>;
|
|
198
|
+
/**
|
|
199
|
+
* Replication factor, `>= 1`.
|
|
200
|
+
*/
|
|
201
|
+
replicationFactor?: pulumi.Input<number>;
|
|
190
202
|
/**
|
|
191
203
|
* Replication policy class. The possible values are `org.apache.kafka.connect.mirror.DefaultReplicationPolicy` and `org.apache.kafka.connect.mirror.IdentityReplicationPolicy`. The default value is `org.apache.kafka.connect.mirror.DefaultReplicationPolicy`.
|
|
192
204
|
*/
|
|
@@ -68,6 +68,7 @@ class MirrorMakerReplicationFlow extends pulumi.CustomResource {
|
|
|
68
68
|
resourceInputs["enable"] = state ? state.enable : undefined;
|
|
69
69
|
resourceInputs["offsetSyncsTopicLocation"] = state ? state.offsetSyncsTopicLocation : undefined;
|
|
70
70
|
resourceInputs["project"] = state ? state.project : undefined;
|
|
71
|
+
resourceInputs["replicationFactor"] = state ? state.replicationFactor : undefined;
|
|
71
72
|
resourceInputs["replicationPolicyClass"] = state ? state.replicationPolicyClass : undefined;
|
|
72
73
|
resourceInputs["serviceName"] = state ? state.serviceName : undefined;
|
|
73
74
|
resourceInputs["sourceCluster"] = state ? state.sourceCluster : undefined;
|
|
@@ -105,6 +106,7 @@ class MirrorMakerReplicationFlow extends pulumi.CustomResource {
|
|
|
105
106
|
resourceInputs["enable"] = args ? args.enable : undefined;
|
|
106
107
|
resourceInputs["offsetSyncsTopicLocation"] = args ? args.offsetSyncsTopicLocation : undefined;
|
|
107
108
|
resourceInputs["project"] = args ? args.project : undefined;
|
|
109
|
+
resourceInputs["replicationFactor"] = args ? args.replicationFactor : undefined;
|
|
108
110
|
resourceInputs["replicationPolicyClass"] = args ? args.replicationPolicyClass : undefined;
|
|
109
111
|
resourceInputs["serviceName"] = args ? args.serviceName : undefined;
|
|
110
112
|
resourceInputs["sourceCluster"] = args ? args.sourceCluster : undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"mirrorMakerReplicationFlow.js","sourceRoot":"","sources":["../mirrorMakerReplicationFlow.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA6BG;AACH,MAAa,0BAA2B,SAAQ,MAAM,CAAC,cAAc;IACjE;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAuC,EAAE,IAAmC;QACrI,OAAO,IAAI,0BAA0B,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IACjF,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,0BAA0B,CAAC,YAAY,CAAC;IAC3E,CAAC;
|
|
1
|
+
{"version":3,"file":"mirrorMakerReplicationFlow.js","sourceRoot":"","sources":["../mirrorMakerReplicationFlow.ts"],"names":[],"mappings":"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"}
|
|
@@ -1,6 +1,4 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
-
import * as inputs from "./types/input";
|
|
3
|
-
import * as outputs from "./types/output";
|
|
4
2
|
/**
|
|
5
3
|
* Creates and manages an organization application user. [Application users](https://aiven.io/docs/platform/howto/manage-application-users) can be used for programmatic access to the platform.
|
|
6
4
|
*
|
|
@@ -39,10 +37,13 @@ export declare class OrganizationApplicationUser extends pulumi.CustomResource {
|
|
|
39
37
|
*/
|
|
40
38
|
static isInstance(obj: any): obj is OrganizationApplicationUser;
|
|
41
39
|
/**
|
|
42
|
-
* An email address automatically generated by Aiven to help identify the application user.
|
|
43
|
-
* No notifications are sent to this email.
|
|
40
|
+
* An email address automatically generated by Aiven to help identify the application user. No notifications are sent to this email.
|
|
44
41
|
*/
|
|
45
42
|
readonly email: pulumi.Output<string>;
|
|
43
|
+
/**
|
|
44
|
+
* Makes the application user a super admin. The super admin role has full access to an organization, its billing and settings, and all its organizational units, projects, and services.
|
|
45
|
+
*/
|
|
46
|
+
readonly isSuperAdmin: pulumi.Output<boolean | undefined>;
|
|
46
47
|
/**
|
|
47
48
|
* Name of the application user.
|
|
48
49
|
*/
|
|
@@ -51,7 +52,6 @@ export declare class OrganizationApplicationUser extends pulumi.CustomResource {
|
|
|
51
52
|
* The ID of the organization the application user belongs to.
|
|
52
53
|
*/
|
|
53
54
|
readonly organizationId: pulumi.Output<string>;
|
|
54
|
-
readonly timeouts: pulumi.Output<outputs.OrganizationApplicationUserTimeouts | undefined>;
|
|
55
55
|
/**
|
|
56
56
|
* The ID of the application user.
|
|
57
57
|
*/
|
|
@@ -70,10 +70,13 @@ export declare class OrganizationApplicationUser extends pulumi.CustomResource {
|
|
|
70
70
|
*/
|
|
71
71
|
export interface OrganizationApplicationUserState {
|
|
72
72
|
/**
|
|
73
|
-
* An email address automatically generated by Aiven to help identify the application user.
|
|
74
|
-
* No notifications are sent to this email.
|
|
73
|
+
* An email address automatically generated by Aiven to help identify the application user. No notifications are sent to this email.
|
|
75
74
|
*/
|
|
76
75
|
email?: pulumi.Input<string>;
|
|
76
|
+
/**
|
|
77
|
+
* Makes the application user a super admin. The super admin role has full access to an organization, its billing and settings, and all its organizational units, projects, and services.
|
|
78
|
+
*/
|
|
79
|
+
isSuperAdmin?: pulumi.Input<boolean>;
|
|
77
80
|
/**
|
|
78
81
|
* Name of the application user.
|
|
79
82
|
*/
|
|
@@ -82,7 +85,6 @@ export interface OrganizationApplicationUserState {
|
|
|
82
85
|
* The ID of the organization the application user belongs to.
|
|
83
86
|
*/
|
|
84
87
|
organizationId?: pulumi.Input<string>;
|
|
85
|
-
timeouts?: pulumi.Input<inputs.OrganizationApplicationUserTimeouts>;
|
|
86
88
|
/**
|
|
87
89
|
* The ID of the application user.
|
|
88
90
|
*/
|
|
@@ -92,6 +94,10 @@ export interface OrganizationApplicationUserState {
|
|
|
92
94
|
* The set of arguments for constructing a OrganizationApplicationUser resource.
|
|
93
95
|
*/
|
|
94
96
|
export interface OrganizationApplicationUserArgs {
|
|
97
|
+
/**
|
|
98
|
+
* Makes the application user a super admin. The super admin role has full access to an organization, its billing and settings, and all its organizational units, projects, and services.
|
|
99
|
+
*/
|
|
100
|
+
isSuperAdmin?: pulumi.Input<boolean>;
|
|
95
101
|
/**
|
|
96
102
|
* Name of the application user.
|
|
97
103
|
*/
|
|
@@ -100,5 +106,4 @@ export interface OrganizationApplicationUserArgs {
|
|
|
100
106
|
* The ID of the organization the application user belongs to.
|
|
101
107
|
*/
|
|
102
108
|
organizationId: pulumi.Input<string>;
|
|
103
|
-
timeouts?: pulumi.Input<inputs.OrganizationApplicationUserTimeouts>;
|
|
104
109
|
}
|
|
@@ -55,9 +55,9 @@ class OrganizationApplicationUser extends pulumi.CustomResource {
|
|
|
55
55
|
if (opts.id) {
|
|
56
56
|
const state = argsOrState;
|
|
57
57
|
resourceInputs["email"] = state ? state.email : undefined;
|
|
58
|
+
resourceInputs["isSuperAdmin"] = state ? state.isSuperAdmin : undefined;
|
|
58
59
|
resourceInputs["name"] = state ? state.name : undefined;
|
|
59
60
|
resourceInputs["organizationId"] = state ? state.organizationId : undefined;
|
|
60
|
-
resourceInputs["timeouts"] = state ? state.timeouts : undefined;
|
|
61
61
|
resourceInputs["userId"] = state ? state.userId : undefined;
|
|
62
62
|
}
|
|
63
63
|
else {
|
|
@@ -65,9 +65,9 @@ class OrganizationApplicationUser extends pulumi.CustomResource {
|
|
|
65
65
|
if ((!args || args.organizationId === undefined) && !opts.urn) {
|
|
66
66
|
throw new Error("Missing required property 'organizationId'");
|
|
67
67
|
}
|
|
68
|
+
resourceInputs["isSuperAdmin"] = args ? args.isSuperAdmin : undefined;
|
|
68
69
|
resourceInputs["name"] = args ? args.name : undefined;
|
|
69
70
|
resourceInputs["organizationId"] = args ? args.organizationId : undefined;
|
|
70
|
-
resourceInputs["timeouts"] = args ? args.timeouts : undefined;
|
|
71
71
|
resourceInputs["email"] = undefined /*out*/;
|
|
72
72
|
resourceInputs["userId"] = undefined /*out*/;
|
|
73
73
|
}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"organizationApplicationUser.js","sourceRoot":"","sources":["../organizationApplicationUser.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;
|
|
1
|
+
{"version":3,"file":"organizationApplicationUser.js","sourceRoot":"","sources":["../organizationApplicationUser.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AACzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;GAoBG;AACH,MAAa,2BAA4B,SAAQ,MAAM,CAAC,cAAc;IAClE;;;;;;;;OAQG;IACI,MAAM,CAAC,GAAG,CAAC,IAAY,EAAE,EAA2B,EAAE,KAAwC,EAAE,IAAmC;QACtI,OAAO,IAAI,2BAA2B,CAAC,IAAI,EAAO,KAAK,kCAAO,IAAI,KAAE,EAAE,EAAE,EAAE,IAAG,CAAC;IAClF,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,2BAA2B,CAAC,YAAY,CAAC;IAC5E,CAAC;IA+BD,YAAY,IAAY,EAAE,WAAgF,EAAE,IAAmC;QAC3I,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA2D,CAAC;YAC1E,cAAc,CAAC,OAAO,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1D,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,MAAM,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACxD,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,QAAQ,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAC,SAAS,CAAC;SAC/D;aAAM;YACH,MAAM,IAAI,GAAG,WAA0D,CAAC;YACxE,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,cAAc,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBAC3D,MAAM,IAAI,KAAK,CAAC,4CAA4C,CAAC,CAAC;aACjE;YACD,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,MAAM,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,SAAS,CAAC;YACtD,cAAc,CAAC,gBAAgB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1E,cAAc,CAAC,OAAO,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;YAC5C,cAAc,CAAC,QAAQ,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SAChD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,2BAA2B,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAChF,CAAC;;AAhFL,kEAiFC;AAnEG,gBAAgB;AACO,wCAAY,GAAG,qEAAqE,CAAC"}
|
|
@@ -1,6 +1,4 @@
|
|
|
1
1
|
import * as pulumi from "@pulumi/pulumi";
|
|
2
|
-
import * as inputs from "./types/input";
|
|
3
|
-
import * as outputs from "./types/output";
|
|
4
2
|
/**
|
|
5
3
|
* Creates and manages an application user token. Review the [best practices](https://aiven.io/docs/platform/concepts/application-users#security-best-practices) for securing application users and their tokens.
|
|
6
4
|
*
|
|
@@ -99,7 +97,6 @@ export declare class OrganizationApplicationUserToken extends pulumi.CustomResou
|
|
|
99
97
|
* Restricts the scopes for this token.
|
|
100
98
|
*/
|
|
101
99
|
readonly scopes: pulumi.Output<string[] | undefined>;
|
|
102
|
-
readonly timeouts: pulumi.Output<outputs.OrganizationApplicationUserTokenTimeouts | undefined>;
|
|
103
100
|
/**
|
|
104
101
|
* Prefix of the token.
|
|
105
102
|
*/
|
|
@@ -177,7 +174,6 @@ export interface OrganizationApplicationUserTokenState {
|
|
|
177
174
|
* Restricts the scopes for this token.
|
|
178
175
|
*/
|
|
179
176
|
scopes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
180
|
-
timeouts?: pulumi.Input<inputs.OrganizationApplicationUserTokenTimeouts>;
|
|
181
177
|
/**
|
|
182
178
|
* Prefix of the token.
|
|
183
179
|
*/
|
|
@@ -211,7 +207,6 @@ export interface OrganizationApplicationUserTokenArgs {
|
|
|
211
207
|
* Restricts the scopes for this token.
|
|
212
208
|
*/
|
|
213
209
|
scopes?: pulumi.Input<pulumi.Input<string>[]>;
|
|
214
|
-
timeouts?: pulumi.Input<inputs.OrganizationApplicationUserTokenTimeouts>;
|
|
215
210
|
/**
|
|
216
211
|
* The ID of the application user the token is created for.
|
|
217
212
|
*/
|
|
@@ -73,7 +73,6 @@ class OrganizationApplicationUserToken extends pulumi.CustomResource {
|
|
|
73
73
|
resourceInputs["maxAgeSeconds"] = state ? state.maxAgeSeconds : undefined;
|
|
74
74
|
resourceInputs["organizationId"] = state ? state.organizationId : undefined;
|
|
75
75
|
resourceInputs["scopes"] = state ? state.scopes : undefined;
|
|
76
|
-
resourceInputs["timeouts"] = state ? state.timeouts : undefined;
|
|
77
76
|
resourceInputs["tokenPrefix"] = state ? state.tokenPrefix : undefined;
|
|
78
77
|
resourceInputs["userId"] = state ? state.userId : undefined;
|
|
79
78
|
}
|
|
@@ -90,7 +89,6 @@ class OrganizationApplicationUserToken extends pulumi.CustomResource {
|
|
|
90
89
|
resourceInputs["maxAgeSeconds"] = args ? args.maxAgeSeconds : undefined;
|
|
91
90
|
resourceInputs["organizationId"] = args ? args.organizationId : undefined;
|
|
92
91
|
resourceInputs["scopes"] = args ? args.scopes : undefined;
|
|
93
|
-
resourceInputs["timeouts"] = args ? args.timeouts : undefined;
|
|
94
92
|
resourceInputs["userId"] = args ? args.userId : undefined;
|
|
95
93
|
resourceInputs["createTime"] = undefined /*out*/;
|
|
96
94
|
resourceInputs["createdManually"] = undefined /*out*/;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"organizationApplicationUserToken.js","sourceRoot":"","sources":["../organizationApplicationUserToken.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;
|
|
1
|
+
{"version":3,"file":"organizationApplicationUserToken.js","sourceRoot":"","sources":["../organizationApplicationUserToken.ts"],"names":[],"mappings":"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"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pulumi/aiven",
|
|
3
|
-
"version": "6.
|
|
3
|
+
"version": "6.17.0-alpha.1717002507",
|
|
4
4
|
"description": "A Pulumi package for creating and managing Aiven cloud resources.",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"pulumi",
|
|
@@ -23,6 +23,6 @@
|
|
|
23
23
|
"pulumi": {
|
|
24
24
|
"resource": true,
|
|
25
25
|
"name": "aiven",
|
|
26
|
-
"version": "6.
|
|
26
|
+
"version": "6.17.0-alpha.1717002507"
|
|
27
27
|
}
|
|
28
28
|
}
|
package/types/input.d.ts
CHANGED
|
@@ -48,7 +48,7 @@ export interface CassandraCassandraUserConfig {
|
|
|
48
48
|
*/
|
|
49
49
|
cassandra?: pulumi.Input<inputs.CassandraCassandraUserConfigCassandra>;
|
|
50
50
|
/**
|
|
51
|
-
* Enum: `3`, `4`, `4.1
|
|
51
|
+
* Enum: `3`, `4`, `4.1`, and newer. Cassandra version.
|
|
52
52
|
*/
|
|
53
53
|
cassandraVersion?: pulumi.Input<string>;
|
|
54
54
|
/**
|
|
@@ -460,7 +460,7 @@ export interface DragonflyDragonflyUserConfig {
|
|
|
460
460
|
*/
|
|
461
461
|
cacheMode?: pulumi.Input<boolean>;
|
|
462
462
|
/**
|
|
463
|
-
* Enum: `off`, `rdb`. When persistence is 'rdb', Dragonfly does RDB dumps
|
|
463
|
+
* Enum: `off`, `rdb`, `dfs`. When persistence is 'rdb' or 'dfs', Dragonfly does RDB or DFS dumps every 10 minutes. Dumps are done according to the backup schedule for backup purposes. When persistence is 'off', no RDB/DFS dumps or backups are done, so data can be lost at any moment if the service is restarted for any reason, or if the service is powered off. Also, the service can't be forked.
|
|
464
464
|
*/
|
|
465
465
|
dragonflyPersistence?: pulumi.Input<string>;
|
|
466
466
|
/**
|
|
@@ -686,7 +686,7 @@ export interface FlinkFlinkUserConfig {
|
|
|
686
686
|
*/
|
|
687
687
|
additionalBackupRegions?: pulumi.Input<string>;
|
|
688
688
|
/**
|
|
689
|
-
* Enum: `1.16
|
|
689
|
+
* Enum: `1.16`, `1.19`, and newer. Flink major version.
|
|
690
690
|
*/
|
|
691
691
|
flinkVersion?: pulumi.Input<string>;
|
|
692
692
|
/**
|
|
@@ -1814,7 +1814,7 @@ export interface KafkaKafkaUserConfig {
|
|
|
1814
1814
|
*/
|
|
1815
1815
|
kafkaRestConfig?: pulumi.Input<inputs.KafkaKafkaUserConfigKafkaRestConfig>;
|
|
1816
1816
|
/**
|
|
1817
|
-
* Enum: `3.1`, `3.2`, `3.3`, `3.4`, `3.5`, `3.6`, `3.7
|
|
1817
|
+
* Enum: `3.1`, `3.2`, `3.3`, `3.4`, `3.5`, `3.6`, `3.7`, and newer. Kafka major version.
|
|
1818
1818
|
*/
|
|
1819
1819
|
kafkaVersion?: pulumi.Input<string>;
|
|
1820
1820
|
/**
|
|
@@ -2634,11 +2634,11 @@ export interface M3AggregatorM3aggregatorUserConfig {
|
|
|
2634
2634
|
*/
|
|
2635
2635
|
ipFilters?: pulumi.Input<pulumi.Input<string>[]>;
|
|
2636
2636
|
/**
|
|
2637
|
-
* Enum: `1.1`, `1.2`, `1.5
|
|
2637
|
+
* Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (deprecated, use m3aggregator_version).
|
|
2638
2638
|
*/
|
|
2639
2639
|
m3Version?: pulumi.Input<string>;
|
|
2640
2640
|
/**
|
|
2641
|
-
* Enum: `1.1`, `1.2`, `1.5
|
|
2641
|
+
* Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (the minimum compatible version).
|
|
2642
2642
|
*/
|
|
2643
2643
|
m3aggregatorVersion?: pulumi.Input<string>;
|
|
2644
2644
|
/**
|
|
@@ -2778,7 +2778,7 @@ export interface M3DbM3dbUserConfig {
|
|
|
2778
2778
|
*/
|
|
2779
2779
|
m3?: pulumi.Input<inputs.M3DbM3dbUserConfigM3>;
|
|
2780
2780
|
/**
|
|
2781
|
-
* Enum: `1.1`, `1.2`, `1.5
|
|
2781
|
+
* Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (deprecated, use m3db_version).
|
|
2782
2782
|
*/
|
|
2783
2783
|
m3Version?: pulumi.Input<string>;
|
|
2784
2784
|
/**
|
|
@@ -2786,7 +2786,7 @@ export interface M3DbM3dbUserConfig {
|
|
|
2786
2786
|
*/
|
|
2787
2787
|
m3coordinatorEnableGraphiteCarbonIngest?: pulumi.Input<boolean>;
|
|
2788
2788
|
/**
|
|
2789
|
-
* Enum: `1.1`, `1.2`, `1.5
|
|
2789
|
+
* Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (the minimum compatible version).
|
|
2790
2790
|
*/
|
|
2791
2791
|
m3dbVersion?: pulumi.Input<string>;
|
|
2792
2792
|
/**
|
|
@@ -3158,7 +3158,7 @@ export interface MySqlMysqlUserConfig {
|
|
|
3158
3158
|
*/
|
|
3159
3159
|
mysql?: pulumi.Input<inputs.MySqlMysqlUserConfigMysql>;
|
|
3160
3160
|
/**
|
|
3161
|
-
* Enum: `8
|
|
3161
|
+
* Enum: `8`, and newer. MySQL major version.
|
|
3162
3162
|
*/
|
|
3163
3163
|
mysqlVersion?: pulumi.Input<string>;
|
|
3164
3164
|
/**
|
|
@@ -3540,7 +3540,7 @@ export interface OpenSearchOpensearchUserConfig {
|
|
|
3540
3540
|
*/
|
|
3541
3541
|
opensearchDashboards?: pulumi.Input<inputs.OpenSearchOpensearchUserConfigOpensearchDashboards>;
|
|
3542
3542
|
/**
|
|
3543
|
-
* Enum: `1`, `2
|
|
3543
|
+
* Enum: `1`, `2`, and newer. OpenSearch major version.
|
|
3544
3544
|
*/
|
|
3545
3545
|
opensearchVersion?: pulumi.Input<string>;
|
|
3546
3546
|
/**
|
|
@@ -4013,42 +4013,6 @@ export interface OpenSearchTechEmail {
|
|
|
4013
4013
|
*/
|
|
4014
4014
|
email: pulumi.Input<string>;
|
|
4015
4015
|
}
|
|
4016
|
-
export interface OrganizationApplicationUserTimeouts {
|
|
4017
|
-
/**
|
|
4018
|
-
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
4019
|
-
*/
|
|
4020
|
-
create?: pulumi.Input<string>;
|
|
4021
|
-
/**
|
|
4022
|
-
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
4023
|
-
*/
|
|
4024
|
-
delete?: pulumi.Input<string>;
|
|
4025
|
-
/**
|
|
4026
|
-
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
|
|
4027
|
-
*/
|
|
4028
|
-
read?: pulumi.Input<string>;
|
|
4029
|
-
/**
|
|
4030
|
-
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
4031
|
-
*/
|
|
4032
|
-
update?: pulumi.Input<string>;
|
|
4033
|
-
}
|
|
4034
|
-
export interface OrganizationApplicationUserTokenTimeouts {
|
|
4035
|
-
/**
|
|
4036
|
-
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
4037
|
-
*/
|
|
4038
|
-
create?: pulumi.Input<string>;
|
|
4039
|
-
/**
|
|
4040
|
-
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
4041
|
-
*/
|
|
4042
|
-
delete?: pulumi.Input<string>;
|
|
4043
|
-
/**
|
|
4044
|
-
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
|
|
4045
|
-
*/
|
|
4046
|
-
read?: pulumi.Input<string>;
|
|
4047
|
-
/**
|
|
4048
|
-
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
4049
|
-
*/
|
|
4050
|
-
update?: pulumi.Input<string>;
|
|
4051
|
-
}
|
|
4052
4016
|
export interface OrganizationGroupProjectTimeouts {
|
|
4053
4017
|
/**
|
|
4054
4018
|
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
@@ -4287,7 +4251,7 @@ export interface PgPgUserConfig {
|
|
|
4287
4251
|
*/
|
|
4288
4252
|
pgStatMonitorEnable?: pulumi.Input<boolean>;
|
|
4289
4253
|
/**
|
|
4290
|
-
* Enum: `10`, `11`, `12`, `13`, `14`, `15`, `16
|
|
4254
|
+
* Enum: `10`, `11`, `12`, `13`, `14`, `15`, `16`, and newer. PostgreSQL major version.
|
|
4291
4255
|
*/
|
|
4292
4256
|
pgVersion?: pulumi.Input<string>;
|
|
4293
4257
|
/**
|
|
@@ -4477,7 +4441,7 @@ export interface PgPgUserConfigPg {
|
|
|
4477
4441
|
*/
|
|
4478
4442
|
logErrorVerbosity?: pulumi.Input<string>;
|
|
4479
4443
|
/**
|
|
4480
|
-
* Enum: `'pid=%p,user=%u,db=%d,app=%a,client=%h '`, `'%t [%p]: [%l-1] user=%u,db=%d,app=%a,client=%h '`, `'%m [%p] %q[user=%u,db=%d,app=%a] '`. Choose from one of the available log
|
|
4444
|
+
* Enum: `'pid=%p,user=%u,db=%d,app=%a,client=%h '`, `'%t [%p]: [%l-1] user=%u,db=%d,app=%a,client=%h '`, `'%m [%p] %q[user=%u,db=%d,app=%a] '`. Choose from one of the available log formats.
|
|
4481
4445
|
*/
|
|
4482
4446
|
logLinePrefix?: pulumi.Input<string>;
|
|
4483
4447
|
/**
|
|
@@ -4939,7 +4903,7 @@ export interface RedisRedisUserConfig {
|
|
|
4939
4903
|
*/
|
|
4940
4904
|
redisNumberOfDatabases?: pulumi.Input<number>;
|
|
4941
4905
|
/**
|
|
4942
|
-
* Enum: `off`, `rdb`. When persistence is 'rdb', Redis does RDB dumps each 10 minutes if any key is changed. Also RDB dumps are done according to backup schedule for backup purposes. When persistence is 'off', no RDB dumps
|
|
4906
|
+
* Enum: `off`, `rdb`. When persistence is 'rdb', Redis does RDB dumps each 10 minutes if any key is changed. Also RDB dumps are done according to the backup schedule for backup purposes. When persistence is 'off', no RDB dumps or backups are done, so data can be lost at any moment if the service is restarted for any reason, or if the service is powered off. Also, the service can't be forked.
|
|
4943
4907
|
*/
|
|
4944
4908
|
redisPersistence?: pulumi.Input<string>;
|
|
4945
4909
|
/**
|
|
@@ -4955,7 +4919,7 @@ export interface RedisRedisUserConfig {
|
|
|
4955
4919
|
*/
|
|
4956
4920
|
redisTimeout?: pulumi.Input<number>;
|
|
4957
4921
|
/**
|
|
4958
|
-
* Enum: `7.0
|
|
4922
|
+
* Enum: `7.0`, and newer. Redis major version.
|
|
4959
4923
|
*/
|
|
4960
4924
|
redisVersion?: pulumi.Input<string>;
|
|
4961
4925
|
/**
|
|
@@ -5399,7 +5363,7 @@ export interface ServiceIntegrationEndpointExternalKafkaUserConfig {
|
|
|
5399
5363
|
*/
|
|
5400
5364
|
sslClientKey?: pulumi.Input<string>;
|
|
5401
5365
|
/**
|
|
5402
|
-
* Enum: `https
|
|
5366
|
+
* Enum: `https`. The endpoint identification algorithm to validate server hostname using server certificate.
|
|
5403
5367
|
*/
|
|
5404
5368
|
sslEndpointIdentificationAlgorithm?: pulumi.Input<string>;
|
|
5405
5369
|
}
|
package/types/output.d.ts
CHANGED
|
@@ -47,7 +47,7 @@ export interface CassandraCassandraUserConfig {
|
|
|
47
47
|
*/
|
|
48
48
|
cassandra?: outputs.CassandraCassandraUserConfigCassandra;
|
|
49
49
|
/**
|
|
50
|
-
* Enum: `3`, `4`, `4.1
|
|
50
|
+
* Enum: `3`, `4`, `4.1`, and newer. Cassandra version.
|
|
51
51
|
*/
|
|
52
52
|
cassandraVersion?: string;
|
|
53
53
|
/**
|
|
@@ -459,7 +459,7 @@ export interface DragonflyDragonflyUserConfig {
|
|
|
459
459
|
*/
|
|
460
460
|
cacheMode?: boolean;
|
|
461
461
|
/**
|
|
462
|
-
* Enum: `off`, `rdb`. When persistence is 'rdb', Dragonfly does RDB dumps
|
|
462
|
+
* Enum: `off`, `rdb`, `dfs`. When persistence is 'rdb' or 'dfs', Dragonfly does RDB or DFS dumps every 10 minutes. Dumps are done according to the backup schedule for backup purposes. When persistence is 'off', no RDB/DFS dumps or backups are done, so data can be lost at any moment if the service is restarted for any reason, or if the service is powered off. Also, the service can't be forked.
|
|
463
463
|
*/
|
|
464
464
|
dragonflyPersistence?: string;
|
|
465
465
|
/**
|
|
@@ -685,7 +685,7 @@ export interface FlinkFlinkUserConfig {
|
|
|
685
685
|
*/
|
|
686
686
|
additionalBackupRegions?: string;
|
|
687
687
|
/**
|
|
688
|
-
* Enum: `1.16
|
|
688
|
+
* Enum: `1.16`, `1.19`, and newer. Flink major version.
|
|
689
689
|
*/
|
|
690
690
|
flinkVersion?: string;
|
|
691
691
|
/**
|
|
@@ -813,7 +813,7 @@ export interface GetCassandaCassandraUserConfig {
|
|
|
813
813
|
*/
|
|
814
814
|
cassandra?: outputs.GetCassandaCassandraUserConfigCassandra;
|
|
815
815
|
/**
|
|
816
|
-
* Enum: `3`, `4`, `4.1
|
|
816
|
+
* Enum: `3`, `4`, `4.1`, and newer. Cassandra version.
|
|
817
817
|
*/
|
|
818
818
|
cassandraVersion?: string;
|
|
819
819
|
/**
|
|
@@ -985,7 +985,7 @@ export interface GetCassandraCassandraUserConfig {
|
|
|
985
985
|
*/
|
|
986
986
|
cassandra?: outputs.GetCassandraCassandraUserConfigCassandra;
|
|
987
987
|
/**
|
|
988
|
-
* Enum: `3`, `4`, `4.1
|
|
988
|
+
* Enum: `3`, `4`, `4.1`, and newer. Cassandra version.
|
|
989
989
|
*/
|
|
990
990
|
cassandraVersion?: string;
|
|
991
991
|
/**
|
|
@@ -1369,7 +1369,7 @@ export interface GetDragonflyDragonflyUserConfig {
|
|
|
1369
1369
|
*/
|
|
1370
1370
|
cacheMode?: boolean;
|
|
1371
1371
|
/**
|
|
1372
|
-
* Enum: `off`, `rdb`. When persistence is 'rdb', Dragonfly does RDB dumps
|
|
1372
|
+
* Enum: `off`, `rdb`, `dfs`. When persistence is 'rdb' or 'dfs', Dragonfly does RDB or DFS dumps every 10 minutes. Dumps are done according to the backup schedule for backup purposes. When persistence is 'off', no RDB/DFS dumps or backups are done, so data can be lost at any moment if the service is restarted for any reason, or if the service is powered off. Also, the service can't be forked.
|
|
1373
1373
|
*/
|
|
1374
1374
|
dragonflyPersistence?: string;
|
|
1375
1375
|
/**
|
|
@@ -1595,7 +1595,7 @@ export interface GetFlinkFlinkUserConfig {
|
|
|
1595
1595
|
*/
|
|
1596
1596
|
additionalBackupRegions?: string;
|
|
1597
1597
|
/**
|
|
1598
|
-
* Enum: `1.16
|
|
1598
|
+
* Enum: `1.16`, `1.19`, and newer. Flink major version.
|
|
1599
1599
|
*/
|
|
1600
1600
|
flinkVersion?: string;
|
|
1601
1601
|
/**
|
|
@@ -2723,7 +2723,7 @@ export interface GetKafkaKafkaUserConfig {
|
|
|
2723
2723
|
*/
|
|
2724
2724
|
kafkaRestConfig?: outputs.GetKafkaKafkaUserConfigKafkaRestConfig;
|
|
2725
2725
|
/**
|
|
2726
|
-
* Enum: `3.1`, `3.2`, `3.3`, `3.4`, `3.5`, `3.6`, `3.7
|
|
2726
|
+
* Enum: `3.1`, `3.2`, `3.3`, `3.4`, `3.5`, `3.6`, `3.7`, and newer. Kafka major version.
|
|
2727
2727
|
*/
|
|
2728
2728
|
kafkaVersion?: string;
|
|
2729
2729
|
/**
|
|
@@ -3543,11 +3543,11 @@ export interface GetM3AggregatorM3aggregatorUserConfig {
|
|
|
3543
3543
|
*/
|
|
3544
3544
|
ipFilters?: string[];
|
|
3545
3545
|
/**
|
|
3546
|
-
* Enum: `1.1`, `1.2`, `1.5
|
|
3546
|
+
* Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (deprecated, use m3aggregator_version).
|
|
3547
3547
|
*/
|
|
3548
3548
|
m3Version?: string;
|
|
3549
3549
|
/**
|
|
3550
|
-
* Enum: `1.1`, `1.2`, `1.5
|
|
3550
|
+
* Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (the minimum compatible version).
|
|
3551
3551
|
*/
|
|
3552
3552
|
m3aggregatorVersion?: string;
|
|
3553
3553
|
/**
|
|
@@ -3687,7 +3687,7 @@ export interface GetM3DbM3dbUserConfig {
|
|
|
3687
3687
|
*/
|
|
3688
3688
|
m3?: outputs.GetM3DbM3dbUserConfigM3;
|
|
3689
3689
|
/**
|
|
3690
|
-
* Enum: `1.1`, `1.2`, `1.5
|
|
3690
|
+
* Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (deprecated, use m3db_version).
|
|
3691
3691
|
*/
|
|
3692
3692
|
m3Version?: string;
|
|
3693
3693
|
/**
|
|
@@ -3695,7 +3695,7 @@ export interface GetM3DbM3dbUserConfig {
|
|
|
3695
3695
|
*/
|
|
3696
3696
|
m3coordinatorEnableGraphiteCarbonIngest?: boolean;
|
|
3697
3697
|
/**
|
|
3698
|
-
* Enum: `1.1`, `1.2`, `1.5
|
|
3698
|
+
* Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (the minimum compatible version).
|
|
3699
3699
|
*/
|
|
3700
3700
|
m3dbVersion?: string;
|
|
3701
3701
|
/**
|
|
@@ -4067,7 +4067,7 @@ export interface GetMySqlMysqlUserConfig {
|
|
|
4067
4067
|
*/
|
|
4068
4068
|
mysql?: outputs.GetMySqlMysqlUserConfigMysql;
|
|
4069
4069
|
/**
|
|
4070
|
-
* Enum: `8
|
|
4070
|
+
* Enum: `8`, and newer. MySQL major version.
|
|
4071
4071
|
*/
|
|
4072
4072
|
mysqlVersion?: string;
|
|
4073
4073
|
/**
|
|
@@ -4449,7 +4449,7 @@ export interface GetOpenSearchOpensearchUserConfig {
|
|
|
4449
4449
|
*/
|
|
4450
4450
|
opensearchDashboards?: outputs.GetOpenSearchOpensearchUserConfigOpensearchDashboards;
|
|
4451
4451
|
/**
|
|
4452
|
-
* Enum: `1`, `2
|
|
4452
|
+
* Enum: `1`, `2`, and newer. OpenSearch major version.
|
|
4453
4453
|
*/
|
|
4454
4454
|
opensearchVersion?: string;
|
|
4455
4455
|
/**
|
|
@@ -5106,7 +5106,7 @@ export interface GetPgPgUserConfig {
|
|
|
5106
5106
|
*/
|
|
5107
5107
|
pgStatMonitorEnable?: boolean;
|
|
5108
5108
|
/**
|
|
5109
|
-
* Enum: `10`, `11`, `12`, `13`, `14`, `15`, `16
|
|
5109
|
+
* Enum: `10`, `11`, `12`, `13`, `14`, `15`, `16`, and newer. PostgreSQL major version.
|
|
5110
5110
|
*/
|
|
5111
5111
|
pgVersion?: string;
|
|
5112
5112
|
/**
|
|
@@ -5296,7 +5296,7 @@ export interface GetPgPgUserConfigPg {
|
|
|
5296
5296
|
*/
|
|
5297
5297
|
logErrorVerbosity?: string;
|
|
5298
5298
|
/**
|
|
5299
|
-
* Enum: `'pid=%p,user=%u,db=%d,app=%a,client=%h '`, `'%t [%p]: [%l-1] user=%u,db=%d,app=%a,client=%h '`, `'%m [%p] %q[user=%u,db=%d,app=%a] '`. Choose from one of the available log
|
|
5299
|
+
* Enum: `'pid=%p,user=%u,db=%d,app=%a,client=%h '`, `'%t [%p]: [%l-1] user=%u,db=%d,app=%a,client=%h '`, `'%m [%p] %q[user=%u,db=%d,app=%a] '`. Choose from one of the available log formats.
|
|
5300
5300
|
*/
|
|
5301
5301
|
logLinePrefix?: string;
|
|
5302
5302
|
/**
|
|
@@ -5758,7 +5758,7 @@ export interface GetRedisRedisUserConfig {
|
|
|
5758
5758
|
*/
|
|
5759
5759
|
redisNumberOfDatabases?: number;
|
|
5760
5760
|
/**
|
|
5761
|
-
* Enum: `off`, `rdb`. When persistence is 'rdb', Redis does RDB dumps each 10 minutes if any key is changed. Also RDB dumps are done according to backup schedule for backup purposes. When persistence is 'off', no RDB dumps
|
|
5761
|
+
* Enum: `off`, `rdb`. When persistence is 'rdb', Redis does RDB dumps each 10 minutes if any key is changed. Also RDB dumps are done according to the backup schedule for backup purposes. When persistence is 'off', no RDB dumps or backups are done, so data can be lost at any moment if the service is restarted for any reason, or if the service is powered off. Also, the service can't be forked.
|
|
5762
5762
|
*/
|
|
5763
5763
|
redisPersistence?: string;
|
|
5764
5764
|
/**
|
|
@@ -5774,7 +5774,7 @@ export interface GetRedisRedisUserConfig {
|
|
|
5774
5774
|
*/
|
|
5775
5775
|
redisTimeout?: number;
|
|
5776
5776
|
/**
|
|
5777
|
-
* Enum: `7.0
|
|
5777
|
+
* Enum: `7.0`, and newer. Redis major version.
|
|
5778
5778
|
*/
|
|
5779
5779
|
redisVersion?: string;
|
|
5780
5780
|
/**
|
|
@@ -6218,7 +6218,7 @@ export interface GetServiceIntegrationEndpointExternalKafkaUserConfig {
|
|
|
6218
6218
|
*/
|
|
6219
6219
|
sslClientKey?: string;
|
|
6220
6220
|
/**
|
|
6221
|
-
* Enum: `https
|
|
6221
|
+
* Enum: `https`. The endpoint identification algorithm to validate server hostname using server certificate.
|
|
6222
6222
|
*/
|
|
6223
6223
|
sslEndpointIdentificationAlgorithm?: string;
|
|
6224
6224
|
}
|
|
@@ -7698,7 +7698,7 @@ export interface KafkaKafkaUserConfig {
|
|
|
7698
7698
|
*/
|
|
7699
7699
|
kafkaRestConfig?: outputs.KafkaKafkaUserConfigKafkaRestConfig;
|
|
7700
7700
|
/**
|
|
7701
|
-
* Enum: `3.1`, `3.2`, `3.3`, `3.4`, `3.5`, `3.6`, `3.7
|
|
7701
|
+
* Enum: `3.1`, `3.2`, `3.3`, `3.4`, `3.5`, `3.6`, `3.7`, and newer. Kafka major version.
|
|
7702
7702
|
*/
|
|
7703
7703
|
kafkaVersion?: string;
|
|
7704
7704
|
/**
|
|
@@ -8518,11 +8518,11 @@ export interface M3AggregatorM3aggregatorUserConfig {
|
|
|
8518
8518
|
*/
|
|
8519
8519
|
ipFilters?: string[];
|
|
8520
8520
|
/**
|
|
8521
|
-
* Enum: `1.1`, `1.2`, `1.5
|
|
8521
|
+
* Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (deprecated, use m3aggregator_version).
|
|
8522
8522
|
*/
|
|
8523
8523
|
m3Version?: string;
|
|
8524
8524
|
/**
|
|
8525
|
-
* Enum: `1.1`, `1.2`, `1.5
|
|
8525
|
+
* Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (the minimum compatible version).
|
|
8526
8526
|
*/
|
|
8527
8527
|
m3aggregatorVersion?: string;
|
|
8528
8528
|
/**
|
|
@@ -8662,7 +8662,7 @@ export interface M3DbM3dbUserConfig {
|
|
|
8662
8662
|
*/
|
|
8663
8663
|
m3?: outputs.M3DbM3dbUserConfigM3;
|
|
8664
8664
|
/**
|
|
8665
|
-
* Enum: `1.1`, `1.2`, `1.5
|
|
8665
|
+
* Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (deprecated, use m3db_version).
|
|
8666
8666
|
*/
|
|
8667
8667
|
m3Version?: string;
|
|
8668
8668
|
/**
|
|
@@ -8670,7 +8670,7 @@ export interface M3DbM3dbUserConfig {
|
|
|
8670
8670
|
*/
|
|
8671
8671
|
m3coordinatorEnableGraphiteCarbonIngest?: boolean;
|
|
8672
8672
|
/**
|
|
8673
|
-
* Enum: `1.1`, `1.2`, `1.5
|
|
8673
|
+
* Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (the minimum compatible version).
|
|
8674
8674
|
*/
|
|
8675
8675
|
m3dbVersion?: string;
|
|
8676
8676
|
/**
|
|
@@ -9042,7 +9042,7 @@ export interface MySqlMysqlUserConfig {
|
|
|
9042
9042
|
*/
|
|
9043
9043
|
mysql?: outputs.MySqlMysqlUserConfigMysql;
|
|
9044
9044
|
/**
|
|
9045
|
-
* Enum: `8
|
|
9045
|
+
* Enum: `8`, and newer. MySQL major version.
|
|
9046
9046
|
*/
|
|
9047
9047
|
mysqlVersion?: string;
|
|
9048
9048
|
/**
|
|
@@ -9424,7 +9424,7 @@ export interface OpenSearchOpensearchUserConfig {
|
|
|
9424
9424
|
*/
|
|
9425
9425
|
opensearchDashboards?: outputs.OpenSearchOpensearchUserConfigOpensearchDashboards;
|
|
9426
9426
|
/**
|
|
9427
|
-
* Enum: `1`, `2
|
|
9427
|
+
* Enum: `1`, `2`, and newer. OpenSearch major version.
|
|
9428
9428
|
*/
|
|
9429
9429
|
opensearchVersion?: string;
|
|
9430
9430
|
/**
|
|
@@ -9897,42 +9897,6 @@ export interface OpenSearchTechEmail {
|
|
|
9897
9897
|
*/
|
|
9898
9898
|
email: string;
|
|
9899
9899
|
}
|
|
9900
|
-
export interface OrganizationApplicationUserTimeouts {
|
|
9901
|
-
/**
|
|
9902
|
-
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
9903
|
-
*/
|
|
9904
|
-
create?: string;
|
|
9905
|
-
/**
|
|
9906
|
-
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
9907
|
-
*/
|
|
9908
|
-
delete?: string;
|
|
9909
|
-
/**
|
|
9910
|
-
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
|
|
9911
|
-
*/
|
|
9912
|
-
read?: string;
|
|
9913
|
-
/**
|
|
9914
|
-
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
9915
|
-
*/
|
|
9916
|
-
update?: string;
|
|
9917
|
-
}
|
|
9918
|
-
export interface OrganizationApplicationUserTokenTimeouts {
|
|
9919
|
-
/**
|
|
9920
|
-
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
9921
|
-
*/
|
|
9922
|
-
create?: string;
|
|
9923
|
-
/**
|
|
9924
|
-
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
9925
|
-
*/
|
|
9926
|
-
delete?: string;
|
|
9927
|
-
/**
|
|
9928
|
-
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
|
|
9929
|
-
*/
|
|
9930
|
-
read?: string;
|
|
9931
|
-
/**
|
|
9932
|
-
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
9933
|
-
*/
|
|
9934
|
-
update?: string;
|
|
9935
|
-
}
|
|
9936
9900
|
export interface OrganizationGroupProjectTimeouts {
|
|
9937
9901
|
/**
|
|
9938
9902
|
* A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
@@ -10171,7 +10135,7 @@ export interface PgPgUserConfig {
|
|
|
10171
10135
|
*/
|
|
10172
10136
|
pgStatMonitorEnable?: boolean;
|
|
10173
10137
|
/**
|
|
10174
|
-
* Enum: `10`, `11`, `12`, `13`, `14`, `15`, `16
|
|
10138
|
+
* Enum: `10`, `11`, `12`, `13`, `14`, `15`, `16`, and newer. PostgreSQL major version.
|
|
10175
10139
|
*/
|
|
10176
10140
|
pgVersion?: string;
|
|
10177
10141
|
/**
|
|
@@ -10361,7 +10325,7 @@ export interface PgPgUserConfigPg {
|
|
|
10361
10325
|
*/
|
|
10362
10326
|
logErrorVerbosity?: string;
|
|
10363
10327
|
/**
|
|
10364
|
-
* Enum: `'pid=%p,user=%u,db=%d,app=%a,client=%h '`, `'%t [%p]: [%l-1] user=%u,db=%d,app=%a,client=%h '`, `'%m [%p] %q[user=%u,db=%d,app=%a] '`. Choose from one of the available log
|
|
10328
|
+
* Enum: `'pid=%p,user=%u,db=%d,app=%a,client=%h '`, `'%t [%p]: [%l-1] user=%u,db=%d,app=%a,client=%h '`, `'%m [%p] %q[user=%u,db=%d,app=%a] '`. Choose from one of the available log formats.
|
|
10365
10329
|
*/
|
|
10366
10330
|
logLinePrefix?: string;
|
|
10367
10331
|
/**
|
|
@@ -10823,7 +10787,7 @@ export interface RedisRedisUserConfig {
|
|
|
10823
10787
|
*/
|
|
10824
10788
|
redisNumberOfDatabases?: number;
|
|
10825
10789
|
/**
|
|
10826
|
-
* Enum: `off`, `rdb`. When persistence is 'rdb', Redis does RDB dumps each 10 minutes if any key is changed. Also RDB dumps are done according to backup schedule for backup purposes. When persistence is 'off', no RDB dumps
|
|
10790
|
+
* Enum: `off`, `rdb`. When persistence is 'rdb', Redis does RDB dumps each 10 minutes if any key is changed. Also RDB dumps are done according to the backup schedule for backup purposes. When persistence is 'off', no RDB dumps or backups are done, so data can be lost at any moment if the service is restarted for any reason, or if the service is powered off. Also, the service can't be forked.
|
|
10827
10791
|
*/
|
|
10828
10792
|
redisPersistence?: string;
|
|
10829
10793
|
/**
|
|
@@ -10839,7 +10803,7 @@ export interface RedisRedisUserConfig {
|
|
|
10839
10803
|
*/
|
|
10840
10804
|
redisTimeout?: number;
|
|
10841
10805
|
/**
|
|
10842
|
-
* Enum: `7.0
|
|
10806
|
+
* Enum: `7.0`, and newer. Redis major version.
|
|
10843
10807
|
*/
|
|
10844
10808
|
redisVersion?: string;
|
|
10845
10809
|
/**
|
|
@@ -11283,7 +11247,7 @@ export interface ServiceIntegrationEndpointExternalKafkaUserConfig {
|
|
|
11283
11247
|
*/
|
|
11284
11248
|
sslClientKey?: string;
|
|
11285
11249
|
/**
|
|
11286
|
-
* Enum: `https
|
|
11250
|
+
* Enum: `https`. The endpoint identification algorithm to validate server hostname using server certificate.
|
|
11287
11251
|
*/
|
|
11288
11252
|
sslEndpointIdentificationAlgorithm?: string;
|
|
11289
11253
|
}
|