@pulumi/aiven 6.31.0 → 6.32.0-alpha.1737117101
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/getServiceIntegrationEndpoint.d.ts +4 -0
- package/getServiceIntegrationEndpoint.js.map +1 -1
- package/organizationUserGroupMember.d.ts +3 -2
- package/organizationUserGroupMember.js +3 -2
- package/organizationUserGroupMember.js.map +1 -1
- package/package.json +2 -2
- package/serviceIntegrationEndpoint.d.ts +12 -0
- package/serviceIntegrationEndpoint.js +2 -0
- package/serviceIntegrationEndpoint.js.map +1 -1
- package/types/input.d.ts +66 -0
- package/types/output.d.ts +132 -0
|
@@ -67,6 +67,10 @@ export interface GetServiceIntegrationEndpointResult {
|
|
|
67
67
|
* ExternalAwsS3 user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
68
68
|
*/
|
|
69
69
|
readonly externalAwsS3UserConfigs: outputs.GetServiceIntegrationEndpointExternalAwsS3UserConfig[];
|
|
70
|
+
/**
|
|
71
|
+
* ExternalAzureBlobStorage user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
72
|
+
*/
|
|
73
|
+
readonly externalAzureBlobStorageUserConfigs: outputs.GetServiceIntegrationEndpointExternalAzureBlobStorageUserConfig[];
|
|
70
74
|
/**
|
|
71
75
|
* ExternalClickhouse user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
72
76
|
*/
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"getServiceIntegrationEndpoint.js","sourceRoot":"","sources":["../getServiceIntegrationEndpoint.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;GAcG;AACH,SAAgB,6BAA6B,CAAC,IAAuC,EAAE,IAA2B;IAC9G,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,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,sEAMC;
|
|
1
|
+
{"version":3,"file":"getServiceIntegrationEndpoint.js","sourceRoot":"","sources":["../getServiceIntegrationEndpoint.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;GAcG;AACH,SAAgB,6BAA6B,CAAC,IAAuC,EAAE,IAA2B;IAC9G,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,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,sEAMC;AAqHD;;;;;;;;;;;;;;GAcG;AACH,SAAgB,mCAAmC,CAAC,IAA6C,EAAE,IAAiC;IAChI,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,IAAI,EAAE,CAAC,CAAC;IACzE,OAAO,MAAM,CAAC,OAAO,CAAC,YAAY,CAAC,yEAAyE,EAAE;QAC1G,cAAc,EAAE,IAAI,CAAC,YAAY;QACjC,SAAS,EAAE,IAAI,CAAC,OAAO;KAC1B,EAAE,IAAI,CAAC,CAAC;AACb,CAAC;AAND,kFAMC"}
|
|
@@ -2,9 +2,10 @@ import * as pulumi from "@pulumi/pulumi";
|
|
|
2
2
|
import * as inputs from "./types/input";
|
|
3
3
|
import * as outputs from "./types/output";
|
|
4
4
|
/**
|
|
5
|
-
* Adds and manages users in a
|
|
5
|
+
* Adds and manages users in a user group. You can add organization users and application users to groups.
|
|
6
|
+
* Organization users must be [managed in the Aiven Console](https://aiven.io/docs/platform/howto/manage-org-users). Application users can be created and managed using the `aiven.OrganizationApplicationUser` resource.
|
|
6
7
|
*
|
|
7
|
-
* Groups are
|
|
8
|
+
* Groups are granted roles and permissions using the `aiven.OrganizationPermission` resource.
|
|
8
9
|
*
|
|
9
10
|
* ## Example Usage
|
|
10
11
|
*
|
|
@@ -6,9 +6,10 @@ exports.OrganizationUserGroupMember = void 0;
|
|
|
6
6
|
const pulumi = require("@pulumi/pulumi");
|
|
7
7
|
const utilities = require("./utilities");
|
|
8
8
|
/**
|
|
9
|
-
* Adds and manages users in a
|
|
9
|
+
* Adds and manages users in a user group. You can add organization users and application users to groups.
|
|
10
|
+
* Organization users must be [managed in the Aiven Console](https://aiven.io/docs/platform/howto/manage-org-users). Application users can be created and managed using the `aiven.OrganizationApplicationUser` resource.
|
|
10
11
|
*
|
|
11
|
-
* Groups are
|
|
12
|
+
* Groups are granted roles and permissions using the `aiven.OrganizationPermission` resource.
|
|
12
13
|
*
|
|
13
14
|
* ## Example Usage
|
|
14
15
|
*
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"organizationUserGroupMember.js","sourceRoot":"","sources":["../organizationUserGroupMember.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC
|
|
1
|
+
{"version":3,"file":"organizationUserGroupMember.js","sourceRoot":"","sources":["../organizationUserGroupMember.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.32.0-alpha.1737117101",
|
|
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.32.0-alpha.1737117101"
|
|
27
27
|
}
|
|
28
28
|
}
|
|
@@ -90,6 +90,10 @@ export declare class ServiceIntegrationEndpoint extends pulumi.CustomResource {
|
|
|
90
90
|
* ExternalAwsS3 user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
91
91
|
*/
|
|
92
92
|
readonly externalAwsS3UserConfig: pulumi.Output<outputs.ServiceIntegrationEndpointExternalAwsS3UserConfig | undefined>;
|
|
93
|
+
/**
|
|
94
|
+
* ExternalAzureBlobStorage user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
95
|
+
*/
|
|
96
|
+
readonly externalAzureBlobStorageUserConfig: pulumi.Output<outputs.ServiceIntegrationEndpointExternalAzureBlobStorageUserConfig | undefined>;
|
|
93
97
|
/**
|
|
94
98
|
* ExternalClickhouse user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
95
99
|
*/
|
|
@@ -193,6 +197,10 @@ export interface ServiceIntegrationEndpointState {
|
|
|
193
197
|
* ExternalAwsS3 user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
194
198
|
*/
|
|
195
199
|
externalAwsS3UserConfig?: pulumi.Input<inputs.ServiceIntegrationEndpointExternalAwsS3UserConfig>;
|
|
200
|
+
/**
|
|
201
|
+
* ExternalAzureBlobStorage user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
202
|
+
*/
|
|
203
|
+
externalAzureBlobStorageUserConfig?: pulumi.Input<inputs.ServiceIntegrationEndpointExternalAzureBlobStorageUserConfig>;
|
|
196
204
|
/**
|
|
197
205
|
* ExternalClickhouse user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
198
206
|
*/
|
|
@@ -282,6 +290,10 @@ export interface ServiceIntegrationEndpointArgs {
|
|
|
282
290
|
* ExternalAwsS3 user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
283
291
|
*/
|
|
284
292
|
externalAwsS3UserConfig?: pulumi.Input<inputs.ServiceIntegrationEndpointExternalAwsS3UserConfig>;
|
|
293
|
+
/**
|
|
294
|
+
* ExternalAzureBlobStorage user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
295
|
+
*/
|
|
296
|
+
externalAzureBlobStorageUserConfig?: pulumi.Input<inputs.ServiceIntegrationEndpointExternalAzureBlobStorageUserConfig>;
|
|
285
297
|
/**
|
|
286
298
|
* ExternalClickhouse user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
287
299
|
*/
|
|
@@ -80,6 +80,7 @@ class ServiceIntegrationEndpoint extends pulumi.CustomResource {
|
|
|
80
80
|
resourceInputs["externalAwsCloudwatchLogsUserConfig"] = state ? state.externalAwsCloudwatchLogsUserConfig : undefined;
|
|
81
81
|
resourceInputs["externalAwsCloudwatchMetricsUserConfig"] = state ? state.externalAwsCloudwatchMetricsUserConfig : undefined;
|
|
82
82
|
resourceInputs["externalAwsS3UserConfig"] = state ? state.externalAwsS3UserConfig : undefined;
|
|
83
|
+
resourceInputs["externalAzureBlobStorageUserConfig"] = state ? state.externalAzureBlobStorageUserConfig : undefined;
|
|
83
84
|
resourceInputs["externalClickhouseUserConfig"] = state ? state.externalClickhouseUserConfig : undefined;
|
|
84
85
|
resourceInputs["externalElasticsearchLogsUserConfig"] = state ? state.externalElasticsearchLogsUserConfig : undefined;
|
|
85
86
|
resourceInputs["externalGoogleCloudBigquery"] = state ? state.externalGoogleCloudBigquery : undefined;
|
|
@@ -113,6 +114,7 @@ class ServiceIntegrationEndpoint extends pulumi.CustomResource {
|
|
|
113
114
|
resourceInputs["externalAwsCloudwatchLogsUserConfig"] = args ? args.externalAwsCloudwatchLogsUserConfig : undefined;
|
|
114
115
|
resourceInputs["externalAwsCloudwatchMetricsUserConfig"] = args ? args.externalAwsCloudwatchMetricsUserConfig : undefined;
|
|
115
116
|
resourceInputs["externalAwsS3UserConfig"] = args ? args.externalAwsS3UserConfig : undefined;
|
|
117
|
+
resourceInputs["externalAzureBlobStorageUserConfig"] = args ? args.externalAzureBlobStorageUserConfig : undefined;
|
|
116
118
|
resourceInputs["externalClickhouseUserConfig"] = args ? args.externalClickhouseUserConfig : undefined;
|
|
117
119
|
resourceInputs["externalElasticsearchLogsUserConfig"] = args ? args.externalElasticsearchLogsUserConfig : undefined;
|
|
118
120
|
resourceInputs["externalGoogleCloudBigquery"] = args ? args.externalGoogleCloudBigquery : undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"serviceIntegrationEndpoint.js","sourceRoot":"","sources":["../serviceIntegrationEndpoint.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsCG;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":"serviceIntegrationEndpoint.js","sourceRoot":"","sources":["../serviceIntegrationEndpoint.ts"],"names":[],"mappings":";AAAA,wFAAwF;AACxF,iFAAiF;;;AAEjF,yCAAyC;AAGzC,yCAAyC;AAEzC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GAsCG;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;IAuGD,YAAY,IAAY,EAAE,WAA8E,EAAE,IAAmC;QACzI,IAAI,cAAc,GAAkB,EAAE,CAAC;QACvC,IAAI,GAAG,IAAI,IAAI,EAAE,CAAC;QAClB,IAAI,IAAI,CAAC,EAAE,EAAE;YACT,MAAM,KAAK,GAAG,WAA0D,CAAC;YACzE,cAAc,CAAC,sBAAsB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,oBAAoB,CAAC,CAAC,CAAC,SAAS,CAAC;YACxF,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,gBAAgB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,cAAc,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5E,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,cAAc,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACxE,cAAc,CAAC,qCAAqC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,mCAAmC,CAAC,CAAC,CAAC,SAAS,CAAC;YACtH,cAAc,CAAC,wCAAwC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,sCAAsC,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5H,cAAc,CAAC,yBAAyB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,uBAAuB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9F,cAAc,CAAC,oCAAoC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,kCAAkC,CAAC,CAAC,CAAC,SAAS,CAAC;YACpH,cAAc,CAAC,8BAA8B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,4BAA4B,CAAC,CAAC,CAAC,SAAS,CAAC;YACxG,cAAc,CAAC,qCAAqC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,mCAAmC,CAAC,CAAC,CAAC,SAAS,CAAC;YACtH,cAAc,CAAC,6BAA6B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,2BAA2B,CAAC,CAAC,CAAC,SAAS,CAAC;YACtG,cAAc,CAAC,sCAAsC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,oCAAoC,CAAC,CAAC,CAAC,SAAS,CAAC;YACxH,cAAc,CAAC,yBAAyB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,uBAAuB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9F,cAAc,CAAC,yBAAyB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,uBAAuB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9F,cAAc,CAAC,kCAAkC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,gCAAgC,CAAC,CAAC,CAAC,SAAS,CAAC;YAChH,cAAc,CAAC,oBAAoB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YACpF,cAAc,CAAC,8BAA8B,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,4BAA4B,CAAC,CAAC,CAAC,SAAS,CAAC;YACxG,cAAc,CAAC,kCAAkC,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,gCAAgC,CAAC,CAAC,CAAC,SAAS,CAAC;YAChH,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,SAAS,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9D,cAAc,CAAC,sBAAsB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,oBAAoB,CAAC,CAAC,CAAC,SAAS,CAAC;YACxF,cAAc,CAAC,mBAAmB,CAAC,GAAG,KAAK,CAAC,CAAC,CAAC,KAAK,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;SACrF;aAAM;YACH,MAAM,IAAI,GAAG,WAAyD,CAAC;YACvE,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,YAAY,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACzD,MAAM,IAAI,KAAK,CAAC,0CAA0C,CAAC,CAAC;aAC/D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,YAAY,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACzD,MAAM,IAAI,KAAK,CAAC,0CAA0C,CAAC,CAAC;aAC/D;YACD,IAAI,CAAC,CAAC,IAAI,IAAI,IAAI,CAAC,OAAO,KAAK,SAAS,CAAC,IAAI,CAAC,IAAI,CAAC,GAAG,EAAE;gBACpD,MAAM,IAAI,KAAK,CAAC,qCAAqC,CAAC,CAAC;aAC1D;YACD,cAAc,CAAC,sBAAsB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,oBAAoB,CAAC,CAAC,CAAC,SAAS,CAAC;YACtF,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,cAAc,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,YAAY,CAAC,CAAC,CAAC,SAAS,CAAC;YACtE,cAAc,CAAC,qCAAqC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,mCAAmC,CAAC,CAAC,CAAC,SAAS,CAAC;YACpH,cAAc,CAAC,wCAAwC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,sCAAsC,CAAC,CAAC,CAAC,SAAS,CAAC;YAC1H,cAAc,CAAC,yBAAyB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,uBAAuB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5F,cAAc,CAAC,oCAAoC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,kCAAkC,CAAC,CAAC,CAAC,SAAS,CAAC;YAClH,cAAc,CAAC,8BAA8B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,4BAA4B,CAAC,CAAC,CAAC,SAAS,CAAC;YACtG,cAAc,CAAC,qCAAqC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,mCAAmC,CAAC,CAAC,CAAC,SAAS,CAAC;YACpH,cAAc,CAAC,6BAA6B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,2BAA2B,CAAC,CAAC,CAAC,SAAS,CAAC;YACpG,cAAc,CAAC,sCAAsC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,oCAAoC,CAAC,CAAC,CAAC,SAAS,CAAC;YACtH,cAAc,CAAC,yBAAyB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,uBAAuB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5F,cAAc,CAAC,yBAAyB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,uBAAuB,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5F,cAAc,CAAC,kCAAkC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,gCAAgC,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9G,cAAc,CAAC,oBAAoB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,kBAAkB,CAAC,CAAC,CAAC,SAAS,CAAC;YAClF,cAAc,CAAC,8BAA8B,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,4BAA4B,CAAC,CAAC,CAAC,SAAS,CAAC;YACtG,cAAc,CAAC,kCAAkC,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,gCAAgC,CAAC,CAAC,CAAC,SAAS,CAAC;YAC9G,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,SAAS,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,OAAO,CAAC,CAAC,CAAC,SAAS,CAAC;YAC5D,cAAc,CAAC,sBAAsB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,oBAAoB,CAAC,CAAC,CAAC,SAAS,CAAC;YACtF,cAAc,CAAC,mBAAmB,CAAC,GAAG,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,iBAAiB,CAAC,CAAC,CAAC,SAAS,CAAC;YAChF,cAAc,CAAC,gBAAgB,CAAC,GAAG,SAAS,CAAC,OAAO,CAAC;SACxD;QACD,IAAI,GAAG,MAAM,CAAC,YAAY,CAAC,SAAS,CAAC,oBAAoB,EAAE,EAAE,IAAI,CAAC,CAAC;QACnE,KAAK,CAAC,0BAA0B,CAAC,YAAY,EAAE,IAAI,EAAE,cAAc,EAAE,IAAI,CAAC,CAAC;IAC/E,CAAC;;AAlML,gEAmMC;AArLG,gBAAgB;AACO,uCAAY,GAAG,mEAAmE,CAAC"}
|
package/types/input.d.ts
CHANGED
|
@@ -1263,6 +1263,10 @@ export interface FlinkFlinkUserConfig {
|
|
|
1263
1263
|
* @deprecated This property is deprecated.
|
|
1264
1264
|
*/
|
|
1265
1265
|
additionalBackupRegions?: pulumi.Input<string>;
|
|
1266
|
+
/**
|
|
1267
|
+
* Enable to upload Custom JARs for Flink applications.
|
|
1268
|
+
*/
|
|
1269
|
+
customCode?: pulumi.Input<boolean>;
|
|
1266
1270
|
/**
|
|
1267
1271
|
* Enum: `1.16`, `1.19`, `1.20`, and newer. Flink major version.
|
|
1268
1272
|
*/
|
|
@@ -1463,6 +1467,10 @@ export interface GrafanaGrafanaUserConfig {
|
|
|
1463
1467
|
* Enable browsing of dashboards in grid (pictures) mode. This feature is new in Grafana 9 and is quite resource intensive. It may cause low-end plans to work more slowly while the dashboard previews are rendering.
|
|
1464
1468
|
*/
|
|
1465
1469
|
dashboardPreviewsEnabled?: pulumi.Input<boolean>;
|
|
1470
|
+
/**
|
|
1471
|
+
* Enable use of the Grafana Scenes Library as the dashboard engine. i.e. the `dashboardScene` feature flag. Upstream blog post at https://grafana.com/blog/2024/10/31/grafana-dashboards-are-now-powered-by-scenes-big-changes-same-ui/.
|
|
1472
|
+
*/
|
|
1473
|
+
dashboardScenesEnabled?: pulumi.Input<boolean>;
|
|
1466
1474
|
/**
|
|
1467
1475
|
* Signed sequence of decimal numbers, followed by a unit suffix (ms, s, m, h, d), e.g. 30s, 1h. Example: `5s`.
|
|
1468
1476
|
*/
|
|
@@ -2183,6 +2191,10 @@ export interface KafkaConnectKafkaConnectUserConfig {
|
|
|
2183
2191
|
* Kafka Connect configuration values
|
|
2184
2192
|
*/
|
|
2185
2193
|
kafkaConnect?: pulumi.Input<inputs.KafkaConnectKafkaConnectUserConfigKafkaConnect>;
|
|
2194
|
+
/**
|
|
2195
|
+
* The plugin selected by the user
|
|
2196
|
+
*/
|
|
2197
|
+
pluginVersions?: pulumi.Input<pulumi.Input<inputs.KafkaConnectKafkaConnectUserConfigPluginVersion>[]>;
|
|
2186
2198
|
/**
|
|
2187
2199
|
* Allow access to selected service ports from private networks
|
|
2188
2200
|
*/
|
|
@@ -2281,6 +2293,16 @@ export interface KafkaConnectKafkaConnectUserConfigKafkaConnect {
|
|
|
2281
2293
|
*/
|
|
2282
2294
|
sessionTimeoutMs?: pulumi.Input<number>;
|
|
2283
2295
|
}
|
|
2296
|
+
export interface KafkaConnectKafkaConnectUserConfigPluginVersion {
|
|
2297
|
+
/**
|
|
2298
|
+
* The name of the plugin. Example: `debezium-connector`.
|
|
2299
|
+
*/
|
|
2300
|
+
pluginName: pulumi.Input<string>;
|
|
2301
|
+
/**
|
|
2302
|
+
* The version of the plugin. Example: `2.5.0`.
|
|
2303
|
+
*/
|
|
2304
|
+
version: pulumi.Input<string>;
|
|
2305
|
+
}
|
|
2284
2306
|
export interface KafkaConnectKafkaConnectUserConfigPrivateAccess {
|
|
2285
2307
|
/**
|
|
2286
2308
|
* Allow clients to connect to kafkaConnect with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
|
|
@@ -4613,6 +4635,7 @@ export interface OpenSearchOpensearchUserConfigOpensearch {
|
|
|
4613
4635
|
* How many concurrent incoming/outgoing shard recoveries (normally replicas) are allowed to happen on a node. Defaults to node cpu count * 2.
|
|
4614
4636
|
*/
|
|
4615
4637
|
clusterRoutingAllocationNodeConcurrentRecoveries?: pulumi.Input<number>;
|
|
4638
|
+
clusterSearchRequestSlowlog?: pulumi.Input<inputs.OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlog>;
|
|
4616
4639
|
/**
|
|
4617
4640
|
* Sender name placeholder to be used in Opensearch Dashboards and Opensearch keystore. Example: `alert-sender`.
|
|
4618
4641
|
*/
|
|
@@ -4625,6 +4648,10 @@ export interface OpenSearchOpensearchUserConfigOpensearch {
|
|
|
4625
4648
|
* Sender username for Opensearch alerts. Example: `jane@example.com`.
|
|
4626
4649
|
*/
|
|
4627
4650
|
emailSenderUsername?: pulumi.Input<string>;
|
|
4651
|
+
/**
|
|
4652
|
+
* Enable remote-backed storage.
|
|
4653
|
+
*/
|
|
4654
|
+
enableRemoteBackedStorage?: pulumi.Input<boolean>;
|
|
4628
4655
|
/**
|
|
4629
4656
|
* Enable/Disable security audit.
|
|
4630
4657
|
*/
|
|
@@ -4846,6 +4873,31 @@ export interface OpenSearchOpensearchUserConfigOpensearchAuthFailureListenersIpR
|
|
|
4846
4873
|
*/
|
|
4847
4874
|
type?: pulumi.Input<string>;
|
|
4848
4875
|
}
|
|
4876
|
+
export interface OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlog {
|
|
4877
|
+
/**
|
|
4878
|
+
* Enum: `debug`, `info`, `trace`, `warn`. Log level. Default: `trace`.
|
|
4879
|
+
*/
|
|
4880
|
+
level?: pulumi.Input<string>;
|
|
4881
|
+
threshold?: pulumi.Input<inputs.OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogThreshold>;
|
|
4882
|
+
}
|
|
4883
|
+
export interface OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogThreshold {
|
|
4884
|
+
/**
|
|
4885
|
+
* Debug threshold for total request took time. The value should be in the form count and unit, where unit one of (s,m,h,d,nanos,ms,micros) or -1. Default is -1.
|
|
4886
|
+
*/
|
|
4887
|
+
debug?: pulumi.Input<string>;
|
|
4888
|
+
/**
|
|
4889
|
+
* Info threshold for total request took time. The value should be in the form count and unit, where unit one of (s,m,h,d,nanos,ms,micros) or -1. Default is -1.
|
|
4890
|
+
*/
|
|
4891
|
+
info?: pulumi.Input<string>;
|
|
4892
|
+
/**
|
|
4893
|
+
* Trace threshold for total request took time. The value should be in the form count and unit, where unit one of (s,m,h,d,nanos,ms,micros) or -1. Default is -1.
|
|
4894
|
+
*/
|
|
4895
|
+
trace?: pulumi.Input<string>;
|
|
4896
|
+
/**
|
|
4897
|
+
* Warning threshold for total request took time. The value should be in the form count and unit, where unit one of (s,m,h,d,nanos,ms,micros) or -1. Default is -1.
|
|
4898
|
+
*/
|
|
4899
|
+
warn?: pulumi.Input<string>;
|
|
4900
|
+
}
|
|
4849
4901
|
export interface OpenSearchOpensearchUserConfigOpensearchDashboards {
|
|
4850
4902
|
/**
|
|
4851
4903
|
* Enable or disable OpenSearch Dashboards. Default: `true`.
|
|
@@ -6661,6 +6713,20 @@ export interface ServiceIntegrationEndpointExternalAwsS3UserConfig {
|
|
|
6661
6713
|
*/
|
|
6662
6714
|
url: pulumi.Input<string>;
|
|
6663
6715
|
}
|
|
6716
|
+
export interface ServiceIntegrationEndpointExternalAzureBlobStorageUserConfig {
|
|
6717
|
+
/**
|
|
6718
|
+
* Blob path. Example: `path/to/blob/file.csv`.
|
|
6719
|
+
*/
|
|
6720
|
+
blobPath?: pulumi.Input<string>;
|
|
6721
|
+
/**
|
|
6722
|
+
* Azure Blob Storage connection string. Example: `AccountName=IDENT;AccountKey=SECRET`.
|
|
6723
|
+
*/
|
|
6724
|
+
connectionString: pulumi.Input<string>;
|
|
6725
|
+
/**
|
|
6726
|
+
* Container. Example: `container-dev`.
|
|
6727
|
+
*/
|
|
6728
|
+
container: pulumi.Input<string>;
|
|
6729
|
+
}
|
|
6664
6730
|
export interface ServiceIntegrationEndpointExternalClickhouseUserConfig {
|
|
6665
6731
|
/**
|
|
6666
6732
|
* Hostname or IP address of the server. Example: `my.server.com`.
|
package/types/output.d.ts
CHANGED
|
@@ -1262,6 +1262,10 @@ export interface FlinkFlinkUserConfig {
|
|
|
1262
1262
|
* @deprecated This property is deprecated.
|
|
1263
1263
|
*/
|
|
1264
1264
|
additionalBackupRegions?: string;
|
|
1265
|
+
/**
|
|
1266
|
+
* Enable to upload Custom JARs for Flink applications.
|
|
1267
|
+
*/
|
|
1268
|
+
customCode?: boolean;
|
|
1265
1269
|
/**
|
|
1266
1270
|
* Enum: `1.16`, `1.19`, `1.20`, and newer. Flink major version.
|
|
1267
1271
|
*/
|
|
@@ -2774,6 +2778,10 @@ export interface GetFlinkFlinkUserConfig {
|
|
|
2774
2778
|
* @deprecated This property is deprecated.
|
|
2775
2779
|
*/
|
|
2776
2780
|
additionalBackupRegions?: string;
|
|
2781
|
+
/**
|
|
2782
|
+
* Enable to upload Custom JARs for Flink applications.
|
|
2783
|
+
*/
|
|
2784
|
+
customCode?: boolean;
|
|
2777
2785
|
/**
|
|
2778
2786
|
* Enum: `1.16`, `1.19`, `1.20`, and newer. Flink major version.
|
|
2779
2787
|
*/
|
|
@@ -2974,6 +2982,10 @@ export interface GetGrafanaGrafanaUserConfig {
|
|
|
2974
2982
|
* Enable browsing of dashboards in grid (pictures) mode. This feature is new in Grafana 9 and is quite resource intensive. It may cause low-end plans to work more slowly while the dashboard previews are rendering.
|
|
2975
2983
|
*/
|
|
2976
2984
|
dashboardPreviewsEnabled?: boolean;
|
|
2985
|
+
/**
|
|
2986
|
+
* Enable use of the Grafana Scenes Library as the dashboard engine. i.e. the `dashboardScene` feature flag. Upstream blog post at https://grafana.com/blog/2024/10/31/grafana-dashboards-are-now-powered-by-scenes-big-changes-same-ui/.
|
|
2987
|
+
*/
|
|
2988
|
+
dashboardScenesEnabled?: boolean;
|
|
2977
2989
|
/**
|
|
2978
2990
|
* Signed sequence of decimal numbers, followed by a unit suffix (ms, s, m, h, d), e.g. 30s, 1h. Example: `5s`.
|
|
2979
2991
|
*/
|
|
@@ -3694,6 +3706,10 @@ export interface GetKafkaConnectKafkaConnectUserConfig {
|
|
|
3694
3706
|
* Kafka Connect configuration values
|
|
3695
3707
|
*/
|
|
3696
3708
|
kafkaConnect?: outputs.GetKafkaConnectKafkaConnectUserConfigKafkaConnect;
|
|
3709
|
+
/**
|
|
3710
|
+
* The plugin selected by the user
|
|
3711
|
+
*/
|
|
3712
|
+
pluginVersions?: outputs.GetKafkaConnectKafkaConnectUserConfigPluginVersion[];
|
|
3697
3713
|
/**
|
|
3698
3714
|
* Allow access to selected service ports from private networks
|
|
3699
3715
|
*/
|
|
@@ -3792,6 +3808,16 @@ export interface GetKafkaConnectKafkaConnectUserConfigKafkaConnect {
|
|
|
3792
3808
|
*/
|
|
3793
3809
|
sessionTimeoutMs?: number;
|
|
3794
3810
|
}
|
|
3811
|
+
export interface GetKafkaConnectKafkaConnectUserConfigPluginVersion {
|
|
3812
|
+
/**
|
|
3813
|
+
* The name of the plugin. Example: `debezium-connector`.
|
|
3814
|
+
*/
|
|
3815
|
+
pluginName: string;
|
|
3816
|
+
/**
|
|
3817
|
+
* The version of the plugin. Example: `2.5.0`.
|
|
3818
|
+
*/
|
|
3819
|
+
version: string;
|
|
3820
|
+
}
|
|
3795
3821
|
export interface GetKafkaConnectKafkaConnectUserConfigPrivateAccess {
|
|
3796
3822
|
/**
|
|
3797
3823
|
* Allow clients to connect to kafkaConnect with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
|
|
@@ -6124,6 +6150,7 @@ export interface GetOpenSearchOpensearchUserConfigOpensearch {
|
|
|
6124
6150
|
* How many concurrent incoming/outgoing shard recoveries (normally replicas) are allowed to happen on a node. Defaults to node cpu count * 2.
|
|
6125
6151
|
*/
|
|
6126
6152
|
clusterRoutingAllocationNodeConcurrentRecoveries?: number;
|
|
6153
|
+
clusterSearchRequestSlowlog?: outputs.GetOpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlog;
|
|
6127
6154
|
/**
|
|
6128
6155
|
* Sender name placeholder to be used in Opensearch Dashboards and Opensearch keystore. Example: `alert-sender`.
|
|
6129
6156
|
*/
|
|
@@ -6136,6 +6163,10 @@ export interface GetOpenSearchOpensearchUserConfigOpensearch {
|
|
|
6136
6163
|
* Sender username for Opensearch alerts. Example: `jane@example.com`.
|
|
6137
6164
|
*/
|
|
6138
6165
|
emailSenderUsername?: string;
|
|
6166
|
+
/**
|
|
6167
|
+
* Enable remote-backed storage.
|
|
6168
|
+
*/
|
|
6169
|
+
enableRemoteBackedStorage?: boolean;
|
|
6139
6170
|
/**
|
|
6140
6171
|
* Enable/Disable security audit.
|
|
6141
6172
|
*/
|
|
@@ -6357,6 +6388,31 @@ export interface GetOpenSearchOpensearchUserConfigOpensearchAuthFailureListeners
|
|
|
6357
6388
|
*/
|
|
6358
6389
|
type?: string;
|
|
6359
6390
|
}
|
|
6391
|
+
export interface GetOpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlog {
|
|
6392
|
+
/**
|
|
6393
|
+
* Enum: `debug`, `info`, `trace`, `warn`. Log level. Default: `trace`.
|
|
6394
|
+
*/
|
|
6395
|
+
level?: string;
|
|
6396
|
+
threshold?: outputs.GetOpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogThreshold;
|
|
6397
|
+
}
|
|
6398
|
+
export interface GetOpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogThreshold {
|
|
6399
|
+
/**
|
|
6400
|
+
* Debug threshold for total request took time. The value should be in the form count and unit, where unit one of (s,m,h,d,nanos,ms,micros) or -1. Default is -1.
|
|
6401
|
+
*/
|
|
6402
|
+
debug?: string;
|
|
6403
|
+
/**
|
|
6404
|
+
* Info threshold for total request took time. The value should be in the form count and unit, where unit one of (s,m,h,d,nanos,ms,micros) or -1. Default is -1.
|
|
6405
|
+
*/
|
|
6406
|
+
info?: string;
|
|
6407
|
+
/**
|
|
6408
|
+
* Trace threshold for total request took time. The value should be in the form count and unit, where unit one of (s,m,h,d,nanos,ms,micros) or -1. Default is -1.
|
|
6409
|
+
*/
|
|
6410
|
+
trace?: string;
|
|
6411
|
+
/**
|
|
6412
|
+
* Warning threshold for total request took time. The value should be in the form count and unit, where unit one of (s,m,h,d,nanos,ms,micros) or -1. Default is -1.
|
|
6413
|
+
*/
|
|
6414
|
+
warn?: string;
|
|
6415
|
+
}
|
|
6360
6416
|
export interface GetOpenSearchOpensearchUserConfigOpensearchDashboards {
|
|
6361
6417
|
/**
|
|
6362
6418
|
* Enable or disable OpenSearch Dashboards. Default: `true`.
|
|
@@ -8161,6 +8217,20 @@ export interface GetServiceIntegrationEndpointExternalAwsS3UserConfig {
|
|
|
8161
8217
|
*/
|
|
8162
8218
|
url: string;
|
|
8163
8219
|
}
|
|
8220
|
+
export interface GetServiceIntegrationEndpointExternalAzureBlobStorageUserConfig {
|
|
8221
|
+
/**
|
|
8222
|
+
* Blob path. Example: `path/to/blob/file.csv`.
|
|
8223
|
+
*/
|
|
8224
|
+
blobPath?: string;
|
|
8225
|
+
/**
|
|
8226
|
+
* Azure Blob Storage connection string. Example: `AccountName=IDENT;AccountKey=SECRET`.
|
|
8227
|
+
*/
|
|
8228
|
+
connectionString: string;
|
|
8229
|
+
/**
|
|
8230
|
+
* Container. Example: `container-dev`.
|
|
8231
|
+
*/
|
|
8232
|
+
container: string;
|
|
8233
|
+
}
|
|
8164
8234
|
export interface GetServiceIntegrationEndpointExternalClickhouseUserConfig {
|
|
8165
8235
|
/**
|
|
8166
8236
|
* Hostname or IP address of the server. Example: `my.server.com`.
|
|
@@ -9405,6 +9475,10 @@ export interface GrafanaGrafanaUserConfig {
|
|
|
9405
9475
|
* Enable browsing of dashboards in grid (pictures) mode. This feature is new in Grafana 9 and is quite resource intensive. It may cause low-end plans to work more slowly while the dashboard previews are rendering.
|
|
9406
9476
|
*/
|
|
9407
9477
|
dashboardPreviewsEnabled?: boolean;
|
|
9478
|
+
/**
|
|
9479
|
+
* Enable use of the Grafana Scenes Library as the dashboard engine. i.e. the `dashboardScene` feature flag. Upstream blog post at https://grafana.com/blog/2024/10/31/grafana-dashboards-are-now-powered-by-scenes-big-changes-same-ui/.
|
|
9480
|
+
*/
|
|
9481
|
+
dashboardScenesEnabled?: boolean;
|
|
9408
9482
|
/**
|
|
9409
9483
|
* Signed sequence of decimal numbers, followed by a unit suffix (ms, s, m, h, d), e.g. 30s, 1h. Example: `5s`.
|
|
9410
9484
|
*/
|
|
@@ -10125,6 +10199,10 @@ export interface KafkaConnectKafkaConnectUserConfig {
|
|
|
10125
10199
|
* Kafka Connect configuration values
|
|
10126
10200
|
*/
|
|
10127
10201
|
kafkaConnect?: outputs.KafkaConnectKafkaConnectUserConfigKafkaConnect;
|
|
10202
|
+
/**
|
|
10203
|
+
* The plugin selected by the user
|
|
10204
|
+
*/
|
|
10205
|
+
pluginVersions?: outputs.KafkaConnectKafkaConnectUserConfigPluginVersion[];
|
|
10128
10206
|
/**
|
|
10129
10207
|
* Allow access to selected service ports from private networks
|
|
10130
10208
|
*/
|
|
@@ -10223,6 +10301,16 @@ export interface KafkaConnectKafkaConnectUserConfigKafkaConnect {
|
|
|
10223
10301
|
*/
|
|
10224
10302
|
sessionTimeoutMs?: number;
|
|
10225
10303
|
}
|
|
10304
|
+
export interface KafkaConnectKafkaConnectUserConfigPluginVersion {
|
|
10305
|
+
/**
|
|
10306
|
+
* The name of the plugin. Example: `debezium-connector`.
|
|
10307
|
+
*/
|
|
10308
|
+
pluginName: string;
|
|
10309
|
+
/**
|
|
10310
|
+
* The version of the plugin. Example: `2.5.0`.
|
|
10311
|
+
*/
|
|
10312
|
+
version: string;
|
|
10313
|
+
}
|
|
10226
10314
|
export interface KafkaConnectKafkaConnectUserConfigPrivateAccess {
|
|
10227
10315
|
/**
|
|
10228
10316
|
* Allow clients to connect to kafkaConnect with a DNS name that always resolves to the service's private IP addresses. Only available in certain network locations.
|
|
@@ -12555,6 +12643,7 @@ export interface OpenSearchOpensearchUserConfigOpensearch {
|
|
|
12555
12643
|
* How many concurrent incoming/outgoing shard recoveries (normally replicas) are allowed to happen on a node. Defaults to node cpu count * 2.
|
|
12556
12644
|
*/
|
|
12557
12645
|
clusterRoutingAllocationNodeConcurrentRecoveries?: number;
|
|
12646
|
+
clusterSearchRequestSlowlog?: outputs.OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlog;
|
|
12558
12647
|
/**
|
|
12559
12648
|
* Sender name placeholder to be used in Opensearch Dashboards and Opensearch keystore. Example: `alert-sender`.
|
|
12560
12649
|
*/
|
|
@@ -12567,6 +12656,10 @@ export interface OpenSearchOpensearchUserConfigOpensearch {
|
|
|
12567
12656
|
* Sender username for Opensearch alerts. Example: `jane@example.com`.
|
|
12568
12657
|
*/
|
|
12569
12658
|
emailSenderUsername?: string;
|
|
12659
|
+
/**
|
|
12660
|
+
* Enable remote-backed storage.
|
|
12661
|
+
*/
|
|
12662
|
+
enableRemoteBackedStorage?: boolean;
|
|
12570
12663
|
/**
|
|
12571
12664
|
* Enable/Disable security audit.
|
|
12572
12665
|
*/
|
|
@@ -12788,6 +12881,31 @@ export interface OpenSearchOpensearchUserConfigOpensearchAuthFailureListenersIpR
|
|
|
12788
12881
|
*/
|
|
12789
12882
|
type?: string;
|
|
12790
12883
|
}
|
|
12884
|
+
export interface OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlog {
|
|
12885
|
+
/**
|
|
12886
|
+
* Enum: `debug`, `info`, `trace`, `warn`. Log level. Default: `trace`.
|
|
12887
|
+
*/
|
|
12888
|
+
level?: string;
|
|
12889
|
+
threshold?: outputs.OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogThreshold;
|
|
12890
|
+
}
|
|
12891
|
+
export interface OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogThreshold {
|
|
12892
|
+
/**
|
|
12893
|
+
* Debug threshold for total request took time. The value should be in the form count and unit, where unit one of (s,m,h,d,nanos,ms,micros) or -1. Default is -1.
|
|
12894
|
+
*/
|
|
12895
|
+
debug?: string;
|
|
12896
|
+
/**
|
|
12897
|
+
* Info threshold for total request took time. The value should be in the form count and unit, where unit one of (s,m,h,d,nanos,ms,micros) or -1. Default is -1.
|
|
12898
|
+
*/
|
|
12899
|
+
info?: string;
|
|
12900
|
+
/**
|
|
12901
|
+
* Trace threshold for total request took time. The value should be in the form count and unit, where unit one of (s,m,h,d,nanos,ms,micros) or -1. Default is -1.
|
|
12902
|
+
*/
|
|
12903
|
+
trace?: string;
|
|
12904
|
+
/**
|
|
12905
|
+
* Warning threshold for total request took time. The value should be in the form count and unit, where unit one of (s,m,h,d,nanos,ms,micros) or -1. Default is -1.
|
|
12906
|
+
*/
|
|
12907
|
+
warn?: string;
|
|
12908
|
+
}
|
|
12791
12909
|
export interface OpenSearchOpensearchUserConfigOpensearchDashboards {
|
|
12792
12910
|
/**
|
|
12793
12911
|
* Enable or disable OpenSearch Dashboards. Default: `true`.
|
|
@@ -14603,6 +14721,20 @@ export interface ServiceIntegrationEndpointExternalAwsS3UserConfig {
|
|
|
14603
14721
|
*/
|
|
14604
14722
|
url: string;
|
|
14605
14723
|
}
|
|
14724
|
+
export interface ServiceIntegrationEndpointExternalAzureBlobStorageUserConfig {
|
|
14725
|
+
/**
|
|
14726
|
+
* Blob path. Example: `path/to/blob/file.csv`.
|
|
14727
|
+
*/
|
|
14728
|
+
blobPath?: string;
|
|
14729
|
+
/**
|
|
14730
|
+
* Azure Blob Storage connection string. Example: `AccountName=IDENT;AccountKey=SECRET`.
|
|
14731
|
+
*/
|
|
14732
|
+
connectionString: string;
|
|
14733
|
+
/**
|
|
14734
|
+
* Container. Example: `container-dev`.
|
|
14735
|
+
*/
|
|
14736
|
+
container: string;
|
|
14737
|
+
}
|
|
14606
14738
|
export interface ServiceIntegrationEndpointExternalClickhouseUserConfig {
|
|
14607
14739
|
/**
|
|
14608
14740
|
* Hostname or IP address of the server. Example: `my.server.com`.
|