pulumi-aiven 6.32.0a1737090387__py3-none-any.whl → 6.33.0a1737522470__py3-none-any.whl
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.
Potentially problematic release.
This version of pulumi-aiven might be problematic. Click here for more details.
- pulumi_aiven/_inputs.py +358 -0
- pulumi_aiven/get_service_integration_endpoint.py +15 -1
- pulumi_aiven/organization_user_group_member.py +6 -4
- pulumi_aiven/outputs.py +470 -0
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/service_integration_endpoint.py +47 -0
- {pulumi_aiven-6.32.0a1737090387.dist-info → pulumi_aiven-6.33.0a1737522470.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.32.0a1737090387.dist-info → pulumi_aiven-6.33.0a1737522470.dist-info}/RECORD +10 -10
- {pulumi_aiven-6.32.0a1737090387.dist-info → pulumi_aiven-6.33.0a1737522470.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.32.0a1737090387.dist-info → pulumi_aiven-6.33.0a1737522470.dist-info}/top_level.txt +0 -0
pulumi_aiven/_inputs.py
CHANGED
|
@@ -201,6 +201,8 @@ __all__ = [
|
|
|
201
201
|
'KafkaConnectKafkaConnectUserConfigIpFilterObjectArgsDict',
|
|
202
202
|
'KafkaConnectKafkaConnectUserConfigKafkaConnectArgs',
|
|
203
203
|
'KafkaConnectKafkaConnectUserConfigKafkaConnectArgsDict',
|
|
204
|
+
'KafkaConnectKafkaConnectUserConfigPluginVersionArgs',
|
|
205
|
+
'KafkaConnectKafkaConnectUserConfigPluginVersionArgsDict',
|
|
204
206
|
'KafkaConnectKafkaConnectUserConfigPrivateAccessArgs',
|
|
205
207
|
'KafkaConnectKafkaConnectUserConfigPrivateAccessArgsDict',
|
|
206
208
|
'KafkaConnectKafkaConnectUserConfigPrivatelinkAccessArgs',
|
|
@@ -389,6 +391,10 @@ __all__ = [
|
|
|
389
391
|
'OpenSearchOpensearchUserConfigOpensearchAuthFailureListenersInternalAuthenticationBackendLimitingArgsDict',
|
|
390
392
|
'OpenSearchOpensearchUserConfigOpensearchAuthFailureListenersIpRateLimitingArgs',
|
|
391
393
|
'OpenSearchOpensearchUserConfigOpensearchAuthFailureListenersIpRateLimitingArgsDict',
|
|
394
|
+
'OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogArgs',
|
|
395
|
+
'OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogArgsDict',
|
|
396
|
+
'OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogThresholdArgs',
|
|
397
|
+
'OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogThresholdArgsDict',
|
|
392
398
|
'OpenSearchOpensearchUserConfigOpensearchDashboardsArgs',
|
|
393
399
|
'OpenSearchOpensearchUserConfigOpensearchDashboardsArgsDict',
|
|
394
400
|
'OpenSearchOpensearchUserConfigOpensearchSearchBackpressureArgs',
|
|
@@ -537,6 +543,8 @@ __all__ = [
|
|
|
537
543
|
'ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgsDict',
|
|
538
544
|
'ServiceIntegrationEndpointExternalAwsS3UserConfigArgs',
|
|
539
545
|
'ServiceIntegrationEndpointExternalAwsS3UserConfigArgsDict',
|
|
546
|
+
'ServiceIntegrationEndpointExternalAzureBlobStorageUserConfigArgs',
|
|
547
|
+
'ServiceIntegrationEndpointExternalAzureBlobStorageUserConfigArgsDict',
|
|
540
548
|
'ServiceIntegrationEndpointExternalClickhouseUserConfigArgs',
|
|
541
549
|
'ServiceIntegrationEndpointExternalClickhouseUserConfigArgsDict',
|
|
542
550
|
'ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgs',
|
|
@@ -6978,6 +6986,10 @@ if not MYPY:
|
|
|
6978
6986
|
"""
|
|
6979
6987
|
Additional Cloud Regions for Backup Replication.
|
|
6980
6988
|
"""
|
|
6989
|
+
custom_code: NotRequired[pulumi.Input[bool]]
|
|
6990
|
+
"""
|
|
6991
|
+
Enable to upload Custom JARs for Flink applications.
|
|
6992
|
+
"""
|
|
6981
6993
|
flink_version: NotRequired[pulumi.Input[str]]
|
|
6982
6994
|
"""
|
|
6983
6995
|
Enum: `1.16`, `1.19`, `1.20`, and newer. Flink major version.
|
|
@@ -7029,6 +7041,7 @@ elif False:
|
|
|
7029
7041
|
class FlinkFlinkUserConfigArgs:
|
|
7030
7042
|
def __init__(__self__, *,
|
|
7031
7043
|
additional_backup_regions: Optional[pulumi.Input[str]] = None,
|
|
7044
|
+
custom_code: Optional[pulumi.Input[bool]] = None,
|
|
7032
7045
|
flink_version: Optional[pulumi.Input[str]] = None,
|
|
7033
7046
|
ip_filter_objects: Optional[pulumi.Input[Sequence[pulumi.Input['FlinkFlinkUserConfigIpFilterObjectArgs']]]] = None,
|
|
7034
7047
|
ip_filter_strings: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
@@ -7042,6 +7055,7 @@ class FlinkFlinkUserConfigArgs:
|
|
|
7042
7055
|
static_ips: Optional[pulumi.Input[bool]] = None):
|
|
7043
7056
|
"""
|
|
7044
7057
|
:param pulumi.Input[str] additional_backup_regions: Additional Cloud Regions for Backup Replication.
|
|
7058
|
+
:param pulumi.Input[bool] custom_code: Enable to upload Custom JARs for Flink applications.
|
|
7045
7059
|
:param pulumi.Input[str] flink_version: Enum: `1.16`, `1.19`, `1.20`, and newer. Flink major version.
|
|
7046
7060
|
:param pulumi.Input[Sequence[pulumi.Input['FlinkFlinkUserConfigIpFilterObjectArgs']]] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`
|
|
7047
7061
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
|
|
@@ -7059,6 +7073,8 @@ class FlinkFlinkUserConfigArgs:
|
|
|
7059
7073
|
pulumi.log.warn("""additional_backup_regions is deprecated: This property is deprecated.""")
|
|
7060
7074
|
if additional_backup_regions is not None:
|
|
7061
7075
|
pulumi.set(__self__, "additional_backup_regions", additional_backup_regions)
|
|
7076
|
+
if custom_code is not None:
|
|
7077
|
+
pulumi.set(__self__, "custom_code", custom_code)
|
|
7062
7078
|
if flink_version is not None:
|
|
7063
7079
|
pulumi.set(__self__, "flink_version", flink_version)
|
|
7064
7080
|
if ip_filter_objects is not None:
|
|
@@ -7098,6 +7114,18 @@ class FlinkFlinkUserConfigArgs:
|
|
|
7098
7114
|
def additional_backup_regions(self, value: Optional[pulumi.Input[str]]):
|
|
7099
7115
|
pulumi.set(self, "additional_backup_regions", value)
|
|
7100
7116
|
|
|
7117
|
+
@property
|
|
7118
|
+
@pulumi.getter(name="customCode")
|
|
7119
|
+
def custom_code(self) -> Optional[pulumi.Input[bool]]:
|
|
7120
|
+
"""
|
|
7121
|
+
Enable to upload Custom JARs for Flink applications.
|
|
7122
|
+
"""
|
|
7123
|
+
return pulumi.get(self, "custom_code")
|
|
7124
|
+
|
|
7125
|
+
@custom_code.setter
|
|
7126
|
+
def custom_code(self, value: Optional[pulumi.Input[bool]]):
|
|
7127
|
+
pulumi.set(self, "custom_code", value)
|
|
7128
|
+
|
|
7101
7129
|
@property
|
|
7102
7130
|
@pulumi.getter(name="flinkVersion")
|
|
7103
7131
|
def flink_version(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -7764,6 +7792,10 @@ if not MYPY:
|
|
|
7764
7792
|
"""
|
|
7765
7793
|
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.
|
|
7766
7794
|
"""
|
|
7795
|
+
dashboard_scenes_enabled: NotRequired[pulumi.Input[bool]]
|
|
7796
|
+
"""
|
|
7797
|
+
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/.
|
|
7798
|
+
"""
|
|
7767
7799
|
dashboards_min_refresh_interval: NotRequired[pulumi.Input[str]]
|
|
7768
7800
|
"""
|
|
7769
7801
|
Signed sequence of decimal numbers, followed by a unit suffix (ms, s, m, h, d), e.g. 30s, 1h. Example: `5s`.
|
|
@@ -7897,6 +7929,7 @@ class GrafanaGrafanaUserConfigArgs:
|
|
|
7897
7929
|
cookie_samesite: Optional[pulumi.Input[str]] = None,
|
|
7898
7930
|
custom_domain: Optional[pulumi.Input[str]] = None,
|
|
7899
7931
|
dashboard_previews_enabled: Optional[pulumi.Input[bool]] = None,
|
|
7932
|
+
dashboard_scenes_enabled: Optional[pulumi.Input[bool]] = None,
|
|
7900
7933
|
dashboards_min_refresh_interval: Optional[pulumi.Input[str]] = None,
|
|
7901
7934
|
dashboards_versions_to_keep: Optional[pulumi.Input[int]] = None,
|
|
7902
7935
|
dataproxy_send_user_header: Optional[pulumi.Input[bool]] = None,
|
|
@@ -7941,6 +7974,7 @@ class GrafanaGrafanaUserConfigArgs:
|
|
|
7941
7974
|
:param pulumi.Input[str] cookie_samesite: Enum: `lax`, `none`, `strict`. Cookie SameSite attribute: `strict` prevents sending cookie for cross-site requests, effectively disabling direct linking from other sites to Grafana. `lax` is the default value.
|
|
7942
7975
|
:param pulumi.Input[str] custom_domain: Serve the web frontend using a custom CNAME pointing to the Aiven DNS name. Example: `grafana.example.org`.
|
|
7943
7976
|
:param pulumi.Input[bool] dashboard_previews_enabled: 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.
|
|
7977
|
+
:param pulumi.Input[bool] dashboard_scenes_enabled: 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/.
|
|
7944
7978
|
:param pulumi.Input[str] dashboards_min_refresh_interval: Signed sequence of decimal numbers, followed by a unit suffix (ms, s, m, h, d), e.g. 30s, 1h. Example: `5s`.
|
|
7945
7979
|
:param pulumi.Input[int] dashboards_versions_to_keep: Dashboard versions to keep per dashboard. Example: `20`.
|
|
7946
7980
|
:param pulumi.Input[bool] dataproxy_send_user_header: Send `X-Grafana-User` header to data source.
|
|
@@ -8000,6 +8034,8 @@ class GrafanaGrafanaUserConfigArgs:
|
|
|
8000
8034
|
pulumi.set(__self__, "custom_domain", custom_domain)
|
|
8001
8035
|
if dashboard_previews_enabled is not None:
|
|
8002
8036
|
pulumi.set(__self__, "dashboard_previews_enabled", dashboard_previews_enabled)
|
|
8037
|
+
if dashboard_scenes_enabled is not None:
|
|
8038
|
+
pulumi.set(__self__, "dashboard_scenes_enabled", dashboard_scenes_enabled)
|
|
8003
8039
|
if dashboards_min_refresh_interval is not None:
|
|
8004
8040
|
pulumi.set(__self__, "dashboards_min_refresh_interval", dashboards_min_refresh_interval)
|
|
8005
8041
|
if dashboards_versions_to_keep is not None:
|
|
@@ -8240,6 +8276,18 @@ class GrafanaGrafanaUserConfigArgs:
|
|
|
8240
8276
|
def dashboard_previews_enabled(self, value: Optional[pulumi.Input[bool]]):
|
|
8241
8277
|
pulumi.set(self, "dashboard_previews_enabled", value)
|
|
8242
8278
|
|
|
8279
|
+
@property
|
|
8280
|
+
@pulumi.getter(name="dashboardScenesEnabled")
|
|
8281
|
+
def dashboard_scenes_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
8282
|
+
"""
|
|
8283
|
+
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/.
|
|
8284
|
+
"""
|
|
8285
|
+
return pulumi.get(self, "dashboard_scenes_enabled")
|
|
8286
|
+
|
|
8287
|
+
@dashboard_scenes_enabled.setter
|
|
8288
|
+
def dashboard_scenes_enabled(self, value: Optional[pulumi.Input[bool]]):
|
|
8289
|
+
pulumi.set(self, "dashboard_scenes_enabled", value)
|
|
8290
|
+
|
|
8243
8291
|
@property
|
|
8244
8292
|
@pulumi.getter(name="dashboardsMinRefreshInterval")
|
|
8245
8293
|
def dashboards_min_refresh_interval(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -11508,6 +11556,10 @@ if not MYPY:
|
|
|
11508
11556
|
"""
|
|
11509
11557
|
Kafka Connect configuration values
|
|
11510
11558
|
"""
|
|
11559
|
+
plugin_versions: NotRequired[pulumi.Input[Sequence[pulumi.Input['KafkaConnectKafkaConnectUserConfigPluginVersionArgsDict']]]]
|
|
11560
|
+
"""
|
|
11561
|
+
The plugin selected by the user
|
|
11562
|
+
"""
|
|
11511
11563
|
private_access: NotRequired[pulumi.Input['KafkaConnectKafkaConnectUserConfigPrivateAccessArgsDict']]
|
|
11512
11564
|
"""
|
|
11513
11565
|
Allow access to selected service ports from private networks
|
|
@@ -11540,6 +11592,7 @@ class KafkaConnectKafkaConnectUserConfigArgs:
|
|
|
11540
11592
|
ip_filter_strings: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
11541
11593
|
ip_filters: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
11542
11594
|
kafka_connect: Optional[pulumi.Input['KafkaConnectKafkaConnectUserConfigKafkaConnectArgs']] = None,
|
|
11595
|
+
plugin_versions: Optional[pulumi.Input[Sequence[pulumi.Input['KafkaConnectKafkaConnectUserConfigPluginVersionArgs']]]] = None,
|
|
11543
11596
|
private_access: Optional[pulumi.Input['KafkaConnectKafkaConnectUserConfigPrivateAccessArgs']] = None,
|
|
11544
11597
|
privatelink_access: Optional[pulumi.Input['KafkaConnectKafkaConnectUserConfigPrivatelinkAccessArgs']] = None,
|
|
11545
11598
|
public_access: Optional[pulumi.Input['KafkaConnectKafkaConnectUserConfigPublicAccessArgs']] = None,
|
|
@@ -11552,6 +11605,7 @@ class KafkaConnectKafkaConnectUserConfigArgs:
|
|
|
11552
11605
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
|
|
11553
11606
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filters: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
|
|
11554
11607
|
:param pulumi.Input['KafkaConnectKafkaConnectUserConfigKafkaConnectArgs'] kafka_connect: Kafka Connect configuration values
|
|
11608
|
+
:param pulumi.Input[Sequence[pulumi.Input['KafkaConnectKafkaConnectUserConfigPluginVersionArgs']]] plugin_versions: The plugin selected by the user
|
|
11555
11609
|
:param pulumi.Input['KafkaConnectKafkaConnectUserConfigPrivateAccessArgs'] private_access: Allow access to selected service ports from private networks
|
|
11556
11610
|
:param pulumi.Input['KafkaConnectKafkaConnectUserConfigPrivatelinkAccessArgs'] privatelink_access: Allow access to selected service components through Privatelink
|
|
11557
11611
|
:param pulumi.Input['KafkaConnectKafkaConnectUserConfigPublicAccessArgs'] public_access: Allow access to selected service ports from the public Internet
|
|
@@ -11574,6 +11628,8 @@ class KafkaConnectKafkaConnectUserConfigArgs:
|
|
|
11574
11628
|
pulumi.set(__self__, "ip_filters", ip_filters)
|
|
11575
11629
|
if kafka_connect is not None:
|
|
11576
11630
|
pulumi.set(__self__, "kafka_connect", kafka_connect)
|
|
11631
|
+
if plugin_versions is not None:
|
|
11632
|
+
pulumi.set(__self__, "plugin_versions", plugin_versions)
|
|
11577
11633
|
if private_access is not None:
|
|
11578
11634
|
pulumi.set(__self__, "private_access", private_access)
|
|
11579
11635
|
if privatelink_access is not None:
|
|
@@ -11649,6 +11705,18 @@ class KafkaConnectKafkaConnectUserConfigArgs:
|
|
|
11649
11705
|
def kafka_connect(self, value: Optional[pulumi.Input['KafkaConnectKafkaConnectUserConfigKafkaConnectArgs']]):
|
|
11650
11706
|
pulumi.set(self, "kafka_connect", value)
|
|
11651
11707
|
|
|
11708
|
+
@property
|
|
11709
|
+
@pulumi.getter(name="pluginVersions")
|
|
11710
|
+
def plugin_versions(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['KafkaConnectKafkaConnectUserConfigPluginVersionArgs']]]]:
|
|
11711
|
+
"""
|
|
11712
|
+
The plugin selected by the user
|
|
11713
|
+
"""
|
|
11714
|
+
return pulumi.get(self, "plugin_versions")
|
|
11715
|
+
|
|
11716
|
+
@plugin_versions.setter
|
|
11717
|
+
def plugin_versions(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['KafkaConnectKafkaConnectUserConfigPluginVersionArgs']]]]):
|
|
11718
|
+
pulumi.set(self, "plugin_versions", value)
|
|
11719
|
+
|
|
11652
11720
|
@property
|
|
11653
11721
|
@pulumi.getter(name="privateAccess")
|
|
11654
11722
|
def private_access(self) -> Optional[pulumi.Input['KafkaConnectKafkaConnectUserConfigPrivateAccessArgs']]:
|
|
@@ -12102,6 +12170,56 @@ class KafkaConnectKafkaConnectUserConfigKafkaConnectArgs:
|
|
|
12102
12170
|
pulumi.set(self, "session_timeout_ms", value)
|
|
12103
12171
|
|
|
12104
12172
|
|
|
12173
|
+
if not MYPY:
|
|
12174
|
+
class KafkaConnectKafkaConnectUserConfigPluginVersionArgsDict(TypedDict):
|
|
12175
|
+
plugin_name: pulumi.Input[str]
|
|
12176
|
+
"""
|
|
12177
|
+
The name of the plugin. Example: `debezium-connector`.
|
|
12178
|
+
"""
|
|
12179
|
+
version: pulumi.Input[str]
|
|
12180
|
+
"""
|
|
12181
|
+
The version of the plugin. Example: `2.5.0`.
|
|
12182
|
+
"""
|
|
12183
|
+
elif False:
|
|
12184
|
+
KafkaConnectKafkaConnectUserConfigPluginVersionArgsDict: TypeAlias = Mapping[str, Any]
|
|
12185
|
+
|
|
12186
|
+
@pulumi.input_type
|
|
12187
|
+
class KafkaConnectKafkaConnectUserConfigPluginVersionArgs:
|
|
12188
|
+
def __init__(__self__, *,
|
|
12189
|
+
plugin_name: pulumi.Input[str],
|
|
12190
|
+
version: pulumi.Input[str]):
|
|
12191
|
+
"""
|
|
12192
|
+
:param pulumi.Input[str] plugin_name: The name of the plugin. Example: `debezium-connector`.
|
|
12193
|
+
:param pulumi.Input[str] version: The version of the plugin. Example: `2.5.0`.
|
|
12194
|
+
"""
|
|
12195
|
+
pulumi.set(__self__, "plugin_name", plugin_name)
|
|
12196
|
+
pulumi.set(__self__, "version", version)
|
|
12197
|
+
|
|
12198
|
+
@property
|
|
12199
|
+
@pulumi.getter(name="pluginName")
|
|
12200
|
+
def plugin_name(self) -> pulumi.Input[str]:
|
|
12201
|
+
"""
|
|
12202
|
+
The name of the plugin. Example: `debezium-connector`.
|
|
12203
|
+
"""
|
|
12204
|
+
return pulumi.get(self, "plugin_name")
|
|
12205
|
+
|
|
12206
|
+
@plugin_name.setter
|
|
12207
|
+
def plugin_name(self, value: pulumi.Input[str]):
|
|
12208
|
+
pulumi.set(self, "plugin_name", value)
|
|
12209
|
+
|
|
12210
|
+
@property
|
|
12211
|
+
@pulumi.getter
|
|
12212
|
+
def version(self) -> pulumi.Input[str]:
|
|
12213
|
+
"""
|
|
12214
|
+
The version of the plugin. Example: `2.5.0`.
|
|
12215
|
+
"""
|
|
12216
|
+
return pulumi.get(self, "version")
|
|
12217
|
+
|
|
12218
|
+
@version.setter
|
|
12219
|
+
def version(self, value: pulumi.Input[str]):
|
|
12220
|
+
pulumi.set(self, "version", value)
|
|
12221
|
+
|
|
12222
|
+
|
|
12105
12223
|
if not MYPY:
|
|
12106
12224
|
class KafkaConnectKafkaConnectUserConfigPrivateAccessArgsDict(TypedDict):
|
|
12107
12225
|
kafka_connect: NotRequired[pulumi.Input[bool]]
|
|
@@ -23701,6 +23819,7 @@ if not MYPY:
|
|
|
23701
23819
|
"""
|
|
23702
23820
|
How many concurrent incoming/outgoing shard recoveries (normally replicas) are allowed to happen on a node. Defaults to node cpu count * 2.
|
|
23703
23821
|
"""
|
|
23822
|
+
cluster_search_request_slowlog: NotRequired[pulumi.Input['OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogArgsDict']]
|
|
23704
23823
|
email_sender_name: NotRequired[pulumi.Input[str]]
|
|
23705
23824
|
"""
|
|
23706
23825
|
Sender name placeholder to be used in Opensearch Dashboards and Opensearch keystore. Example: `alert-sender`.
|
|
@@ -23713,6 +23832,10 @@ if not MYPY:
|
|
|
23713
23832
|
"""
|
|
23714
23833
|
Sender username for Opensearch alerts. Example: `jane@example.com`.
|
|
23715
23834
|
"""
|
|
23835
|
+
enable_remote_backed_storage: NotRequired[pulumi.Input[bool]]
|
|
23836
|
+
"""
|
|
23837
|
+
Enable remote-backed storage.
|
|
23838
|
+
"""
|
|
23716
23839
|
enable_security_audit: NotRequired[pulumi.Input[bool]]
|
|
23717
23840
|
"""
|
|
23718
23841
|
Enable/Disable security audit.
|
|
@@ -23882,9 +24005,11 @@ class OpenSearchOpensearchUserConfigOpensearchArgs:
|
|
|
23882
24005
|
cluster_max_shards_per_node: Optional[pulumi.Input[int]] = None,
|
|
23883
24006
|
cluster_routing_allocation_balance_prefer_primary: Optional[pulumi.Input[bool]] = None,
|
|
23884
24007
|
cluster_routing_allocation_node_concurrent_recoveries: Optional[pulumi.Input[int]] = None,
|
|
24008
|
+
cluster_search_request_slowlog: Optional[pulumi.Input['OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogArgs']] = None,
|
|
23885
24009
|
email_sender_name: Optional[pulumi.Input[str]] = None,
|
|
23886
24010
|
email_sender_password: Optional[pulumi.Input[str]] = None,
|
|
23887
24011
|
email_sender_username: Optional[pulumi.Input[str]] = None,
|
|
24012
|
+
enable_remote_backed_storage: Optional[pulumi.Input[bool]] = None,
|
|
23888
24013
|
enable_security_audit: Optional[pulumi.Input[bool]] = None,
|
|
23889
24014
|
http_max_content_length: Optional[pulumi.Input[int]] = None,
|
|
23890
24015
|
http_max_header_size: Optional[pulumi.Input[int]] = None,
|
|
@@ -23935,6 +24060,7 @@ class OpenSearchOpensearchUserConfigOpensearchArgs:
|
|
|
23935
24060
|
:param pulumi.Input[str] email_sender_name: Sender name placeholder to be used in Opensearch Dashboards and Opensearch keystore. Example: `alert-sender`.
|
|
23936
24061
|
:param pulumi.Input[str] email_sender_password: Sender password for Opensearch alerts to authenticate with SMTP server. Example: `very-secure-mail-password`.
|
|
23937
24062
|
:param pulumi.Input[str] email_sender_username: Sender username for Opensearch alerts. Example: `jane@example.com`.
|
|
24063
|
+
:param pulumi.Input[bool] enable_remote_backed_storage: Enable remote-backed storage.
|
|
23938
24064
|
:param pulumi.Input[bool] enable_security_audit: Enable/Disable security audit.
|
|
23939
24065
|
:param pulumi.Input[int] http_max_content_length: Maximum content length for HTTP requests to the OpenSearch HTTP API, in bytes.
|
|
23940
24066
|
:param pulumi.Input[int] http_max_header_size: The max size of allowed headers, in bytes. Example: `8192`.
|
|
@@ -23987,12 +24113,16 @@ class OpenSearchOpensearchUserConfigOpensearchArgs:
|
|
|
23987
24113
|
pulumi.set(__self__, "cluster_routing_allocation_balance_prefer_primary", cluster_routing_allocation_balance_prefer_primary)
|
|
23988
24114
|
if cluster_routing_allocation_node_concurrent_recoveries is not None:
|
|
23989
24115
|
pulumi.set(__self__, "cluster_routing_allocation_node_concurrent_recoveries", cluster_routing_allocation_node_concurrent_recoveries)
|
|
24116
|
+
if cluster_search_request_slowlog is not None:
|
|
24117
|
+
pulumi.set(__self__, "cluster_search_request_slowlog", cluster_search_request_slowlog)
|
|
23990
24118
|
if email_sender_name is not None:
|
|
23991
24119
|
pulumi.set(__self__, "email_sender_name", email_sender_name)
|
|
23992
24120
|
if email_sender_password is not None:
|
|
23993
24121
|
pulumi.set(__self__, "email_sender_password", email_sender_password)
|
|
23994
24122
|
if email_sender_username is not None:
|
|
23995
24123
|
pulumi.set(__self__, "email_sender_username", email_sender_username)
|
|
24124
|
+
if enable_remote_backed_storage is not None:
|
|
24125
|
+
pulumi.set(__self__, "enable_remote_backed_storage", enable_remote_backed_storage)
|
|
23996
24126
|
if enable_security_audit is not None:
|
|
23997
24127
|
pulumi.set(__self__, "enable_security_audit", enable_security_audit)
|
|
23998
24128
|
if http_max_content_length is not None:
|
|
@@ -24146,6 +24276,15 @@ class OpenSearchOpensearchUserConfigOpensearchArgs:
|
|
|
24146
24276
|
def cluster_routing_allocation_node_concurrent_recoveries(self, value: Optional[pulumi.Input[int]]):
|
|
24147
24277
|
pulumi.set(self, "cluster_routing_allocation_node_concurrent_recoveries", value)
|
|
24148
24278
|
|
|
24279
|
+
@property
|
|
24280
|
+
@pulumi.getter(name="clusterSearchRequestSlowlog")
|
|
24281
|
+
def cluster_search_request_slowlog(self) -> Optional[pulumi.Input['OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogArgs']]:
|
|
24282
|
+
return pulumi.get(self, "cluster_search_request_slowlog")
|
|
24283
|
+
|
|
24284
|
+
@cluster_search_request_slowlog.setter
|
|
24285
|
+
def cluster_search_request_slowlog(self, value: Optional[pulumi.Input['OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogArgs']]):
|
|
24286
|
+
pulumi.set(self, "cluster_search_request_slowlog", value)
|
|
24287
|
+
|
|
24149
24288
|
@property
|
|
24150
24289
|
@pulumi.getter(name="emailSenderName")
|
|
24151
24290
|
def email_sender_name(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -24182,6 +24321,18 @@ class OpenSearchOpensearchUserConfigOpensearchArgs:
|
|
|
24182
24321
|
def email_sender_username(self, value: Optional[pulumi.Input[str]]):
|
|
24183
24322
|
pulumi.set(self, "email_sender_username", value)
|
|
24184
24323
|
|
|
24324
|
+
@property
|
|
24325
|
+
@pulumi.getter(name="enableRemoteBackedStorage")
|
|
24326
|
+
def enable_remote_backed_storage(self) -> Optional[pulumi.Input[bool]]:
|
|
24327
|
+
"""
|
|
24328
|
+
Enable remote-backed storage.
|
|
24329
|
+
"""
|
|
24330
|
+
return pulumi.get(self, "enable_remote_backed_storage")
|
|
24331
|
+
|
|
24332
|
+
@enable_remote_backed_storage.setter
|
|
24333
|
+
def enable_remote_backed_storage(self, value: Optional[pulumi.Input[bool]]):
|
|
24334
|
+
pulumi.set(self, "enable_remote_backed_storage", value)
|
|
24335
|
+
|
|
24185
24336
|
@property
|
|
24186
24337
|
@pulumi.getter(name="enableSecurityAudit")
|
|
24187
24338
|
def enable_security_audit(self) -> Optional[pulumi.Input[bool]]:
|
|
@@ -24989,6 +25140,143 @@ class OpenSearchOpensearchUserConfigOpensearchAuthFailureListenersIpRateLimiting
|
|
|
24989
25140
|
pulumi.set(self, "type", value)
|
|
24990
25141
|
|
|
24991
25142
|
|
|
25143
|
+
if not MYPY:
|
|
25144
|
+
class OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogArgsDict(TypedDict):
|
|
25145
|
+
level: NotRequired[pulumi.Input[str]]
|
|
25146
|
+
"""
|
|
25147
|
+
Enum: `debug`, `info`, `trace`, `warn`. Log level. Default: `trace`.
|
|
25148
|
+
"""
|
|
25149
|
+
threshold: NotRequired[pulumi.Input['OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogThresholdArgsDict']]
|
|
25150
|
+
elif False:
|
|
25151
|
+
OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogArgsDict: TypeAlias = Mapping[str, Any]
|
|
25152
|
+
|
|
25153
|
+
@pulumi.input_type
|
|
25154
|
+
class OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogArgs:
|
|
25155
|
+
def __init__(__self__, *,
|
|
25156
|
+
level: Optional[pulumi.Input[str]] = None,
|
|
25157
|
+
threshold: Optional[pulumi.Input['OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogThresholdArgs']] = None):
|
|
25158
|
+
"""
|
|
25159
|
+
:param pulumi.Input[str] level: Enum: `debug`, `info`, `trace`, `warn`. Log level. Default: `trace`.
|
|
25160
|
+
"""
|
|
25161
|
+
if level is not None:
|
|
25162
|
+
pulumi.set(__self__, "level", level)
|
|
25163
|
+
if threshold is not None:
|
|
25164
|
+
pulumi.set(__self__, "threshold", threshold)
|
|
25165
|
+
|
|
25166
|
+
@property
|
|
25167
|
+
@pulumi.getter
|
|
25168
|
+
def level(self) -> Optional[pulumi.Input[str]]:
|
|
25169
|
+
"""
|
|
25170
|
+
Enum: `debug`, `info`, `trace`, `warn`. Log level. Default: `trace`.
|
|
25171
|
+
"""
|
|
25172
|
+
return pulumi.get(self, "level")
|
|
25173
|
+
|
|
25174
|
+
@level.setter
|
|
25175
|
+
def level(self, value: Optional[pulumi.Input[str]]):
|
|
25176
|
+
pulumi.set(self, "level", value)
|
|
25177
|
+
|
|
25178
|
+
@property
|
|
25179
|
+
@pulumi.getter
|
|
25180
|
+
def threshold(self) -> Optional[pulumi.Input['OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogThresholdArgs']]:
|
|
25181
|
+
return pulumi.get(self, "threshold")
|
|
25182
|
+
|
|
25183
|
+
@threshold.setter
|
|
25184
|
+
def threshold(self, value: Optional[pulumi.Input['OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogThresholdArgs']]):
|
|
25185
|
+
pulumi.set(self, "threshold", value)
|
|
25186
|
+
|
|
25187
|
+
|
|
25188
|
+
if not MYPY:
|
|
25189
|
+
class OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogThresholdArgsDict(TypedDict):
|
|
25190
|
+
debug: NotRequired[pulumi.Input[str]]
|
|
25191
|
+
"""
|
|
25192
|
+
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.
|
|
25193
|
+
"""
|
|
25194
|
+
info: NotRequired[pulumi.Input[str]]
|
|
25195
|
+
"""
|
|
25196
|
+
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.
|
|
25197
|
+
"""
|
|
25198
|
+
trace: NotRequired[pulumi.Input[str]]
|
|
25199
|
+
"""
|
|
25200
|
+
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.
|
|
25201
|
+
"""
|
|
25202
|
+
warn: NotRequired[pulumi.Input[str]]
|
|
25203
|
+
"""
|
|
25204
|
+
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.
|
|
25205
|
+
"""
|
|
25206
|
+
elif False:
|
|
25207
|
+
OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogThresholdArgsDict: TypeAlias = Mapping[str, Any]
|
|
25208
|
+
|
|
25209
|
+
@pulumi.input_type
|
|
25210
|
+
class OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogThresholdArgs:
|
|
25211
|
+
def __init__(__self__, *,
|
|
25212
|
+
debug: Optional[pulumi.Input[str]] = None,
|
|
25213
|
+
info: Optional[pulumi.Input[str]] = None,
|
|
25214
|
+
trace: Optional[pulumi.Input[str]] = None,
|
|
25215
|
+
warn: Optional[pulumi.Input[str]] = None):
|
|
25216
|
+
"""
|
|
25217
|
+
:param pulumi.Input[str] debug: 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.
|
|
25218
|
+
:param pulumi.Input[str] info: 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.
|
|
25219
|
+
:param pulumi.Input[str] trace: 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.
|
|
25220
|
+
:param pulumi.Input[str] warn: 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.
|
|
25221
|
+
"""
|
|
25222
|
+
if debug is not None:
|
|
25223
|
+
pulumi.set(__self__, "debug", debug)
|
|
25224
|
+
if info is not None:
|
|
25225
|
+
pulumi.set(__self__, "info", info)
|
|
25226
|
+
if trace is not None:
|
|
25227
|
+
pulumi.set(__self__, "trace", trace)
|
|
25228
|
+
if warn is not None:
|
|
25229
|
+
pulumi.set(__self__, "warn", warn)
|
|
25230
|
+
|
|
25231
|
+
@property
|
|
25232
|
+
@pulumi.getter
|
|
25233
|
+
def debug(self) -> Optional[pulumi.Input[str]]:
|
|
25234
|
+
"""
|
|
25235
|
+
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.
|
|
25236
|
+
"""
|
|
25237
|
+
return pulumi.get(self, "debug")
|
|
25238
|
+
|
|
25239
|
+
@debug.setter
|
|
25240
|
+
def debug(self, value: Optional[pulumi.Input[str]]):
|
|
25241
|
+
pulumi.set(self, "debug", value)
|
|
25242
|
+
|
|
25243
|
+
@property
|
|
25244
|
+
@pulumi.getter
|
|
25245
|
+
def info(self) -> Optional[pulumi.Input[str]]:
|
|
25246
|
+
"""
|
|
25247
|
+
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.
|
|
25248
|
+
"""
|
|
25249
|
+
return pulumi.get(self, "info")
|
|
25250
|
+
|
|
25251
|
+
@info.setter
|
|
25252
|
+
def info(self, value: Optional[pulumi.Input[str]]):
|
|
25253
|
+
pulumi.set(self, "info", value)
|
|
25254
|
+
|
|
25255
|
+
@property
|
|
25256
|
+
@pulumi.getter
|
|
25257
|
+
def trace(self) -> Optional[pulumi.Input[str]]:
|
|
25258
|
+
"""
|
|
25259
|
+
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.
|
|
25260
|
+
"""
|
|
25261
|
+
return pulumi.get(self, "trace")
|
|
25262
|
+
|
|
25263
|
+
@trace.setter
|
|
25264
|
+
def trace(self, value: Optional[pulumi.Input[str]]):
|
|
25265
|
+
pulumi.set(self, "trace", value)
|
|
25266
|
+
|
|
25267
|
+
@property
|
|
25268
|
+
@pulumi.getter
|
|
25269
|
+
def warn(self) -> Optional[pulumi.Input[str]]:
|
|
25270
|
+
"""
|
|
25271
|
+
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.
|
|
25272
|
+
"""
|
|
25273
|
+
return pulumi.get(self, "warn")
|
|
25274
|
+
|
|
25275
|
+
@warn.setter
|
|
25276
|
+
def warn(self, value: Optional[pulumi.Input[str]]):
|
|
25277
|
+
pulumi.set(self, "warn", value)
|
|
25278
|
+
|
|
25279
|
+
|
|
24992
25280
|
if not MYPY:
|
|
24993
25281
|
class OpenSearchOpensearchUserConfigOpensearchDashboardsArgsDict(TypedDict):
|
|
24994
25282
|
enabled: NotRequired[pulumi.Input[bool]]
|
|
@@ -33979,6 +34267,76 @@ class ServiceIntegrationEndpointExternalAwsS3UserConfigArgs:
|
|
|
33979
34267
|
pulumi.set(self, "url", value)
|
|
33980
34268
|
|
|
33981
34269
|
|
|
34270
|
+
if not MYPY:
|
|
34271
|
+
class ServiceIntegrationEndpointExternalAzureBlobStorageUserConfigArgsDict(TypedDict):
|
|
34272
|
+
connection_string: pulumi.Input[str]
|
|
34273
|
+
"""
|
|
34274
|
+
Azure Blob Storage connection string. Example: `AccountName=IDENT;AccountKey=SECRET`.
|
|
34275
|
+
"""
|
|
34276
|
+
container: pulumi.Input[str]
|
|
34277
|
+
"""
|
|
34278
|
+
Container. Example: `container-dev`.
|
|
34279
|
+
"""
|
|
34280
|
+
blob_path: NotRequired[pulumi.Input[str]]
|
|
34281
|
+
"""
|
|
34282
|
+
Blob path. Example: `path/to/blob/file.csv`.
|
|
34283
|
+
"""
|
|
34284
|
+
elif False:
|
|
34285
|
+
ServiceIntegrationEndpointExternalAzureBlobStorageUserConfigArgsDict: TypeAlias = Mapping[str, Any]
|
|
34286
|
+
|
|
34287
|
+
@pulumi.input_type
|
|
34288
|
+
class ServiceIntegrationEndpointExternalAzureBlobStorageUserConfigArgs:
|
|
34289
|
+
def __init__(__self__, *,
|
|
34290
|
+
connection_string: pulumi.Input[str],
|
|
34291
|
+
container: pulumi.Input[str],
|
|
34292
|
+
blob_path: Optional[pulumi.Input[str]] = None):
|
|
34293
|
+
"""
|
|
34294
|
+
:param pulumi.Input[str] connection_string: Azure Blob Storage connection string. Example: `AccountName=IDENT;AccountKey=SECRET`.
|
|
34295
|
+
:param pulumi.Input[str] container: Container. Example: `container-dev`.
|
|
34296
|
+
:param pulumi.Input[str] blob_path: Blob path. Example: `path/to/blob/file.csv`.
|
|
34297
|
+
"""
|
|
34298
|
+
pulumi.set(__self__, "connection_string", connection_string)
|
|
34299
|
+
pulumi.set(__self__, "container", container)
|
|
34300
|
+
if blob_path is not None:
|
|
34301
|
+
pulumi.set(__self__, "blob_path", blob_path)
|
|
34302
|
+
|
|
34303
|
+
@property
|
|
34304
|
+
@pulumi.getter(name="connectionString")
|
|
34305
|
+
def connection_string(self) -> pulumi.Input[str]:
|
|
34306
|
+
"""
|
|
34307
|
+
Azure Blob Storage connection string. Example: `AccountName=IDENT;AccountKey=SECRET`.
|
|
34308
|
+
"""
|
|
34309
|
+
return pulumi.get(self, "connection_string")
|
|
34310
|
+
|
|
34311
|
+
@connection_string.setter
|
|
34312
|
+
def connection_string(self, value: pulumi.Input[str]):
|
|
34313
|
+
pulumi.set(self, "connection_string", value)
|
|
34314
|
+
|
|
34315
|
+
@property
|
|
34316
|
+
@pulumi.getter
|
|
34317
|
+
def container(self) -> pulumi.Input[str]:
|
|
34318
|
+
"""
|
|
34319
|
+
Container. Example: `container-dev`.
|
|
34320
|
+
"""
|
|
34321
|
+
return pulumi.get(self, "container")
|
|
34322
|
+
|
|
34323
|
+
@container.setter
|
|
34324
|
+
def container(self, value: pulumi.Input[str]):
|
|
34325
|
+
pulumi.set(self, "container", value)
|
|
34326
|
+
|
|
34327
|
+
@property
|
|
34328
|
+
@pulumi.getter(name="blobPath")
|
|
34329
|
+
def blob_path(self) -> Optional[pulumi.Input[str]]:
|
|
34330
|
+
"""
|
|
34331
|
+
Blob path. Example: `path/to/blob/file.csv`.
|
|
34332
|
+
"""
|
|
34333
|
+
return pulumi.get(self, "blob_path")
|
|
34334
|
+
|
|
34335
|
+
@blob_path.setter
|
|
34336
|
+
def blob_path(self, value: Optional[pulumi.Input[str]]):
|
|
34337
|
+
pulumi.set(self, "blob_path", value)
|
|
34338
|
+
|
|
34339
|
+
|
|
33982
34340
|
if not MYPY:
|
|
33983
34341
|
class ServiceIntegrationEndpointExternalClickhouseUserConfigArgsDict(TypedDict):
|
|
33984
34342
|
host: pulumi.Input[str]
|
|
@@ -27,7 +27,7 @@ class GetServiceIntegrationEndpointResult:
|
|
|
27
27
|
"""
|
|
28
28
|
A collection of values returned by getServiceIntegrationEndpoint.
|
|
29
29
|
"""
|
|
30
|
-
def __init__(__self__, autoscaler_user_configs=None, datadog_user_configs=None, endpoint_config=None, endpoint_name=None, endpoint_type=None, external_aws_cloudwatch_logs_user_configs=None, external_aws_cloudwatch_metrics_user_configs=None, external_aws_s3_user_configs=None, external_clickhouse_user_configs=None, external_elasticsearch_logs_user_configs=None, external_google_cloud_bigqueries=None, external_google_cloud_logging_user_configs=None, external_kafka_user_configs=None, external_mysql_user_configs=None, external_opensearch_logs_user_configs=None, external_postgresqls=None, external_prometheus_user_configs=None, external_schema_registry_user_configs=None, id=None, jolokia_user_configs=None, project=None, prometheus_user_configs=None, rsyslog_user_configs=None):
|
|
30
|
+
def __init__(__self__, autoscaler_user_configs=None, datadog_user_configs=None, endpoint_config=None, endpoint_name=None, endpoint_type=None, external_aws_cloudwatch_logs_user_configs=None, external_aws_cloudwatch_metrics_user_configs=None, external_aws_s3_user_configs=None, external_azure_blob_storage_user_configs=None, external_clickhouse_user_configs=None, external_elasticsearch_logs_user_configs=None, external_google_cloud_bigqueries=None, external_google_cloud_logging_user_configs=None, external_kafka_user_configs=None, external_mysql_user_configs=None, external_opensearch_logs_user_configs=None, external_postgresqls=None, external_prometheus_user_configs=None, external_schema_registry_user_configs=None, id=None, jolokia_user_configs=None, project=None, prometheus_user_configs=None, rsyslog_user_configs=None):
|
|
31
31
|
if autoscaler_user_configs and not isinstance(autoscaler_user_configs, list):
|
|
32
32
|
raise TypeError("Expected argument 'autoscaler_user_configs' to be a list")
|
|
33
33
|
pulumi.set(__self__, "autoscaler_user_configs", autoscaler_user_configs)
|
|
@@ -52,6 +52,9 @@ class GetServiceIntegrationEndpointResult:
|
|
|
52
52
|
if external_aws_s3_user_configs and not isinstance(external_aws_s3_user_configs, list):
|
|
53
53
|
raise TypeError("Expected argument 'external_aws_s3_user_configs' to be a list")
|
|
54
54
|
pulumi.set(__self__, "external_aws_s3_user_configs", external_aws_s3_user_configs)
|
|
55
|
+
if external_azure_blob_storage_user_configs and not isinstance(external_azure_blob_storage_user_configs, list):
|
|
56
|
+
raise TypeError("Expected argument 'external_azure_blob_storage_user_configs' to be a list")
|
|
57
|
+
pulumi.set(__self__, "external_azure_blob_storage_user_configs", external_azure_blob_storage_user_configs)
|
|
55
58
|
if external_clickhouse_user_configs and not isinstance(external_clickhouse_user_configs, list):
|
|
56
59
|
raise TypeError("Expected argument 'external_clickhouse_user_configs' to be a list")
|
|
57
60
|
pulumi.set(__self__, "external_clickhouse_user_configs", external_clickhouse_user_configs)
|
|
@@ -162,6 +165,14 @@ class GetServiceIntegrationEndpointResult:
|
|
|
162
165
|
"""
|
|
163
166
|
return pulumi.get(self, "external_aws_s3_user_configs")
|
|
164
167
|
|
|
168
|
+
@property
|
|
169
|
+
@pulumi.getter(name="externalAzureBlobStorageUserConfigs")
|
|
170
|
+
def external_azure_blob_storage_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalAzureBlobStorageUserConfigResult']:
|
|
171
|
+
"""
|
|
172
|
+
ExternalAzureBlobStorage user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
173
|
+
"""
|
|
174
|
+
return pulumi.get(self, "external_azure_blob_storage_user_configs")
|
|
175
|
+
|
|
165
176
|
@property
|
|
166
177
|
@pulumi.getter(name="externalClickhouseUserConfigs")
|
|
167
178
|
def external_clickhouse_user_configs(self) -> Sequence['outputs.GetServiceIntegrationEndpointExternalClickhouseUserConfigResult']:
|
|
@@ -297,6 +308,7 @@ class AwaitableGetServiceIntegrationEndpointResult(GetServiceIntegrationEndpoint
|
|
|
297
308
|
external_aws_cloudwatch_logs_user_configs=self.external_aws_cloudwatch_logs_user_configs,
|
|
298
309
|
external_aws_cloudwatch_metrics_user_configs=self.external_aws_cloudwatch_metrics_user_configs,
|
|
299
310
|
external_aws_s3_user_configs=self.external_aws_s3_user_configs,
|
|
311
|
+
external_azure_blob_storage_user_configs=self.external_azure_blob_storage_user_configs,
|
|
300
312
|
external_clickhouse_user_configs=self.external_clickhouse_user_configs,
|
|
301
313
|
external_elasticsearch_logs_user_configs=self.external_elasticsearch_logs_user_configs,
|
|
302
314
|
external_google_cloud_bigqueries=self.external_google_cloud_bigqueries,
|
|
@@ -349,6 +361,7 @@ def get_service_integration_endpoint(endpoint_name: Optional[str] = None,
|
|
|
349
361
|
external_aws_cloudwatch_logs_user_configs=pulumi.get(__ret__, 'external_aws_cloudwatch_logs_user_configs'),
|
|
350
362
|
external_aws_cloudwatch_metrics_user_configs=pulumi.get(__ret__, 'external_aws_cloudwatch_metrics_user_configs'),
|
|
351
363
|
external_aws_s3_user_configs=pulumi.get(__ret__, 'external_aws_s3_user_configs'),
|
|
364
|
+
external_azure_blob_storage_user_configs=pulumi.get(__ret__, 'external_azure_blob_storage_user_configs'),
|
|
352
365
|
external_clickhouse_user_configs=pulumi.get(__ret__, 'external_clickhouse_user_configs'),
|
|
353
366
|
external_elasticsearch_logs_user_configs=pulumi.get(__ret__, 'external_elasticsearch_logs_user_configs'),
|
|
354
367
|
external_google_cloud_bigqueries=pulumi.get(__ret__, 'external_google_cloud_bigqueries'),
|
|
@@ -398,6 +411,7 @@ def get_service_integration_endpoint_output(endpoint_name: Optional[pulumi.Input
|
|
|
398
411
|
external_aws_cloudwatch_logs_user_configs=pulumi.get(__response__, 'external_aws_cloudwatch_logs_user_configs'),
|
|
399
412
|
external_aws_cloudwatch_metrics_user_configs=pulumi.get(__response__, 'external_aws_cloudwatch_metrics_user_configs'),
|
|
400
413
|
external_aws_s3_user_configs=pulumi.get(__response__, 'external_aws_s3_user_configs'),
|
|
414
|
+
external_azure_blob_storage_user_configs=pulumi.get(__response__, 'external_azure_blob_storage_user_configs'),
|
|
401
415
|
external_clickhouse_user_configs=pulumi.get(__response__, 'external_clickhouse_user_configs'),
|
|
402
416
|
external_elasticsearch_logs_user_configs=pulumi.get(__response__, 'external_elasticsearch_logs_user_configs'),
|
|
403
417
|
external_google_cloud_bigqueries=pulumi.get(__response__, 'external_google_cloud_bigqueries'),
|
|
@@ -178,9 +178,10 @@ class OrganizationUserGroupMember(pulumi.CustomResource):
|
|
|
178
178
|
user_id: Optional[pulumi.Input[str]] = None,
|
|
179
179
|
__props__=None):
|
|
180
180
|
"""
|
|
181
|
-
Adds and manages users in a
|
|
181
|
+
Adds and manages users in a user group. You can add organization users and application users to groups.
|
|
182
|
+
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 `OrganizationApplicationUser` resource.
|
|
182
183
|
|
|
183
|
-
Groups are
|
|
184
|
+
Groups are granted roles and permissions using the `OrganizationPermission` resource.
|
|
184
185
|
|
|
185
186
|
## Example Usage
|
|
186
187
|
|
|
@@ -217,9 +218,10 @@ class OrganizationUserGroupMember(pulumi.CustomResource):
|
|
|
217
218
|
args: OrganizationUserGroupMemberArgs,
|
|
218
219
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
219
220
|
"""
|
|
220
|
-
Adds and manages users in a
|
|
221
|
+
Adds and manages users in a user group. You can add organization users and application users to groups.
|
|
222
|
+
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 `OrganizationApplicationUser` resource.
|
|
221
223
|
|
|
222
|
-
Groups are
|
|
224
|
+
Groups are granted roles and permissions using the `OrganizationPermission` resource.
|
|
223
225
|
|
|
224
226
|
## Example Usage
|
|
225
227
|
|