pulumi-aiven 6.31.0a1736849214__py3-none-any.whl → 6.32.0__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/__init__.py +9 -0
- pulumi_aiven/_inputs.py +495 -3
- pulumi_aiven/account_team_project.py +7 -7
- pulumi_aiven/get_account_team_project.py +1 -1
- pulumi_aiven/get_project_user.py +1 -1
- pulumi_aiven/get_service_integration_endpoint.py +15 -1
- pulumi_aiven/kafka_quota.py +604 -0
- pulumi_aiven/organization_group_project.py +7 -7
- pulumi_aiven/organization_user_group_member.py +6 -4
- pulumi_aiven/outputs.py +657 -2
- pulumi_aiven/project_user.py +7 -7
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/service_integration_endpoint.py +47 -0
- {pulumi_aiven-6.31.0a1736849214.dist-info → pulumi_aiven-6.32.0.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.31.0a1736849214.dist-info → pulumi_aiven-6.32.0.dist-info}/RECORD +17 -16
- {pulumi_aiven-6.31.0a1736849214.dist-info → pulumi_aiven-6.32.0.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.31.0a1736849214.dist-info → pulumi_aiven-6.32.0.dist-info}/top_level.txt +0 -0
pulumi_aiven/outputs.py
CHANGED
|
@@ -109,6 +109,7 @@ __all__ = [
|
|
|
109
109
|
'KafkaConnectKafkaConnectUserConfig',
|
|
110
110
|
'KafkaConnectKafkaConnectUserConfigIpFilterObject',
|
|
111
111
|
'KafkaConnectKafkaConnectUserConfigKafkaConnect',
|
|
112
|
+
'KafkaConnectKafkaConnectUserConfigPluginVersion',
|
|
112
113
|
'KafkaConnectKafkaConnectUserConfigPrivateAccess',
|
|
113
114
|
'KafkaConnectKafkaConnectUserConfigPrivatelinkAccess',
|
|
114
115
|
'KafkaConnectKafkaConnectUserConfigPublicAccess',
|
|
@@ -203,6 +204,8 @@ __all__ = [
|
|
|
203
204
|
'OpenSearchOpensearchUserConfigOpensearchAuthFailureListeners',
|
|
204
205
|
'OpenSearchOpensearchUserConfigOpensearchAuthFailureListenersInternalAuthenticationBackendLimiting',
|
|
205
206
|
'OpenSearchOpensearchUserConfigOpensearchAuthFailureListenersIpRateLimiting',
|
|
207
|
+
'OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlog',
|
|
208
|
+
'OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogThreshold',
|
|
206
209
|
'OpenSearchOpensearchUserConfigOpensearchDashboards',
|
|
207
210
|
'OpenSearchOpensearchUserConfigOpensearchSearchBackpressure',
|
|
208
211
|
'OpenSearchOpensearchUserConfigOpensearchSearchBackpressureNodeDuress',
|
|
@@ -212,6 +215,7 @@ __all__ = [
|
|
|
212
215
|
'OpenSearchOpensearchUserConfigOpensearchSearchInsightsTopQueriesCpu',
|
|
213
216
|
'OpenSearchOpensearchUserConfigOpensearchSearchInsightsTopQueriesLatency',
|
|
214
217
|
'OpenSearchOpensearchUserConfigOpensearchSearchInsightsTopQueriesMemory',
|
|
218
|
+
'OpenSearchOpensearchUserConfigOpensearchSegrep',
|
|
215
219
|
'OpenSearchOpensearchUserConfigOpensearchShardIndexingPressure',
|
|
216
220
|
'OpenSearchOpensearchUserConfigOpensearchShardIndexingPressureOperatingFactor',
|
|
217
221
|
'OpenSearchOpensearchUserConfigOpensearchShardIndexingPressurePrimaryParameter',
|
|
@@ -276,6 +280,7 @@ __all__ = [
|
|
|
276
280
|
'ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfig',
|
|
277
281
|
'ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfig',
|
|
278
282
|
'ServiceIntegrationEndpointExternalAwsS3UserConfig',
|
|
283
|
+
'ServiceIntegrationEndpointExternalAzureBlobStorageUserConfig',
|
|
279
284
|
'ServiceIntegrationEndpointExternalClickhouseUserConfig',
|
|
280
285
|
'ServiceIntegrationEndpointExternalElasticsearchLogsUserConfig',
|
|
281
286
|
'ServiceIntegrationEndpointExternalGoogleCloudBigquery',
|
|
@@ -433,6 +438,7 @@ __all__ = [
|
|
|
433
438
|
'GetKafkaConnectKafkaConnectUserConfigResult',
|
|
434
439
|
'GetKafkaConnectKafkaConnectUserConfigIpFilterObjectResult',
|
|
435
440
|
'GetKafkaConnectKafkaConnectUserConfigKafkaConnectResult',
|
|
441
|
+
'GetKafkaConnectKafkaConnectUserConfigPluginVersionResult',
|
|
436
442
|
'GetKafkaConnectKafkaConnectUserConfigPrivateAccessResult',
|
|
437
443
|
'GetKafkaConnectKafkaConnectUserConfigPrivatelinkAccessResult',
|
|
438
444
|
'GetKafkaConnectKafkaConnectUserConfigPublicAccessResult',
|
|
@@ -527,6 +533,8 @@ __all__ = [
|
|
|
527
533
|
'GetOpenSearchOpensearchUserConfigOpensearchAuthFailureListenersResult',
|
|
528
534
|
'GetOpenSearchOpensearchUserConfigOpensearchAuthFailureListenersInternalAuthenticationBackendLimitingResult',
|
|
529
535
|
'GetOpenSearchOpensearchUserConfigOpensearchAuthFailureListenersIpRateLimitingResult',
|
|
536
|
+
'GetOpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogResult',
|
|
537
|
+
'GetOpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogThresholdResult',
|
|
530
538
|
'GetOpenSearchOpensearchUserConfigOpensearchDashboardsResult',
|
|
531
539
|
'GetOpenSearchOpensearchUserConfigOpensearchSearchBackpressureResult',
|
|
532
540
|
'GetOpenSearchOpensearchUserConfigOpensearchSearchBackpressureNodeDuressResult',
|
|
@@ -536,6 +544,7 @@ __all__ = [
|
|
|
536
544
|
'GetOpenSearchOpensearchUserConfigOpensearchSearchInsightsTopQueriesCpuResult',
|
|
537
545
|
'GetOpenSearchOpensearchUserConfigOpensearchSearchInsightsTopQueriesLatencyResult',
|
|
538
546
|
'GetOpenSearchOpensearchUserConfigOpensearchSearchInsightsTopQueriesMemoryResult',
|
|
547
|
+
'GetOpenSearchOpensearchUserConfigOpensearchSegrepResult',
|
|
539
548
|
'GetOpenSearchOpensearchUserConfigOpensearchShardIndexingPressureResult',
|
|
540
549
|
'GetOpenSearchOpensearchUserConfigOpensearchShardIndexingPressureOperatingFactorResult',
|
|
541
550
|
'GetOpenSearchOpensearchUserConfigOpensearchShardIndexingPressurePrimaryParameterResult',
|
|
@@ -598,6 +607,7 @@ __all__ = [
|
|
|
598
607
|
'GetServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigResult',
|
|
599
608
|
'GetServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigResult',
|
|
600
609
|
'GetServiceIntegrationEndpointExternalAwsS3UserConfigResult',
|
|
610
|
+
'GetServiceIntegrationEndpointExternalAzureBlobStorageUserConfigResult',
|
|
601
611
|
'GetServiceIntegrationEndpointExternalClickhouseUserConfigResult',
|
|
602
612
|
'GetServiceIntegrationEndpointExternalElasticsearchLogsUserConfigResult',
|
|
603
613
|
'GetServiceIntegrationEndpointExternalGoogleCloudBigqueryResult',
|
|
@@ -5199,6 +5209,8 @@ class FlinkFlinkUserConfig(dict):
|
|
|
5199
5209
|
suggest = None
|
|
5200
5210
|
if key == "additionalBackupRegions":
|
|
5201
5211
|
suggest = "additional_backup_regions"
|
|
5212
|
+
elif key == "customCode":
|
|
5213
|
+
suggest = "custom_code"
|
|
5202
5214
|
elif key == "flinkVersion":
|
|
5203
5215
|
suggest = "flink_version"
|
|
5204
5216
|
elif key == "ipFilterObjects":
|
|
@@ -5235,6 +5247,7 @@ class FlinkFlinkUserConfig(dict):
|
|
|
5235
5247
|
|
|
5236
5248
|
def __init__(__self__, *,
|
|
5237
5249
|
additional_backup_regions: Optional[str] = None,
|
|
5250
|
+
custom_code: Optional[bool] = None,
|
|
5238
5251
|
flink_version: Optional[str] = None,
|
|
5239
5252
|
ip_filter_objects: Optional[Sequence['outputs.FlinkFlinkUserConfigIpFilterObject']] = None,
|
|
5240
5253
|
ip_filter_strings: Optional[Sequence[str]] = None,
|
|
@@ -5248,6 +5261,7 @@ class FlinkFlinkUserConfig(dict):
|
|
|
5248
5261
|
static_ips: Optional[bool] = None):
|
|
5249
5262
|
"""
|
|
5250
5263
|
:param str additional_backup_regions: Additional Cloud Regions for Backup Replication.
|
|
5264
|
+
:param bool custom_code: Enable to upload Custom JARs for Flink applications.
|
|
5251
5265
|
:param str flink_version: Enum: `1.16`, `1.19`, `1.20`, and newer. Flink major version.
|
|
5252
5266
|
:param Sequence['FlinkFlinkUserConfigIpFilterObjectArgs'] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`
|
|
5253
5267
|
:param Sequence[str] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
|
|
@@ -5262,6 +5276,8 @@ class FlinkFlinkUserConfig(dict):
|
|
|
5262
5276
|
"""
|
|
5263
5277
|
if additional_backup_regions is not None:
|
|
5264
5278
|
pulumi.set(__self__, "additional_backup_regions", additional_backup_regions)
|
|
5279
|
+
if custom_code is not None:
|
|
5280
|
+
pulumi.set(__self__, "custom_code", custom_code)
|
|
5265
5281
|
if flink_version is not None:
|
|
5266
5282
|
pulumi.set(__self__, "flink_version", flink_version)
|
|
5267
5283
|
if ip_filter_objects is not None:
|
|
@@ -5294,6 +5310,14 @@ class FlinkFlinkUserConfig(dict):
|
|
|
5294
5310
|
"""
|
|
5295
5311
|
return pulumi.get(self, "additional_backup_regions")
|
|
5296
5312
|
|
|
5313
|
+
@property
|
|
5314
|
+
@pulumi.getter(name="customCode")
|
|
5315
|
+
def custom_code(self) -> Optional[bool]:
|
|
5316
|
+
"""
|
|
5317
|
+
Enable to upload Custom JARs for Flink applications.
|
|
5318
|
+
"""
|
|
5319
|
+
return pulumi.get(self, "custom_code")
|
|
5320
|
+
|
|
5297
5321
|
@property
|
|
5298
5322
|
@pulumi.getter(name="flinkVersion")
|
|
5299
5323
|
def flink_version(self) -> Optional[str]:
|
|
@@ -5735,6 +5759,8 @@ class GrafanaGrafanaUserConfig(dict):
|
|
|
5735
5759
|
suggest = "custom_domain"
|
|
5736
5760
|
elif key == "dashboardPreviewsEnabled":
|
|
5737
5761
|
suggest = "dashboard_previews_enabled"
|
|
5762
|
+
elif key == "dashboardScenesEnabled":
|
|
5763
|
+
suggest = "dashboard_scenes_enabled"
|
|
5738
5764
|
elif key == "dashboardsMinRefreshInterval":
|
|
5739
5765
|
suggest = "dashboards_min_refresh_interval"
|
|
5740
5766
|
elif key == "dashboardsVersionsToKeep":
|
|
@@ -5817,6 +5843,7 @@ class GrafanaGrafanaUserConfig(dict):
|
|
|
5817
5843
|
cookie_samesite: Optional[str] = None,
|
|
5818
5844
|
custom_domain: Optional[str] = None,
|
|
5819
5845
|
dashboard_previews_enabled: Optional[bool] = None,
|
|
5846
|
+
dashboard_scenes_enabled: Optional[bool] = None,
|
|
5820
5847
|
dashboards_min_refresh_interval: Optional[str] = None,
|
|
5821
5848
|
dashboards_versions_to_keep: Optional[int] = None,
|
|
5822
5849
|
dataproxy_send_user_header: Optional[bool] = None,
|
|
@@ -5861,6 +5888,7 @@ class GrafanaGrafanaUserConfig(dict):
|
|
|
5861
5888
|
:param 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.
|
|
5862
5889
|
:param str custom_domain: Serve the web frontend using a custom CNAME pointing to the Aiven DNS name. Example: `grafana.example.org`.
|
|
5863
5890
|
:param 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.
|
|
5891
|
+
:param 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/.
|
|
5864
5892
|
:param 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`.
|
|
5865
5893
|
:param int dashboards_versions_to_keep: Dashboard versions to keep per dashboard. Example: `20`.
|
|
5866
5894
|
:param bool dataproxy_send_user_header: Send `X-Grafana-User` header to data source.
|
|
@@ -5920,6 +5948,8 @@ class GrafanaGrafanaUserConfig(dict):
|
|
|
5920
5948
|
pulumi.set(__self__, "custom_domain", custom_domain)
|
|
5921
5949
|
if dashboard_previews_enabled is not None:
|
|
5922
5950
|
pulumi.set(__self__, "dashboard_previews_enabled", dashboard_previews_enabled)
|
|
5951
|
+
if dashboard_scenes_enabled is not None:
|
|
5952
|
+
pulumi.set(__self__, "dashboard_scenes_enabled", dashboard_scenes_enabled)
|
|
5923
5953
|
if dashboards_min_refresh_interval is not None:
|
|
5924
5954
|
pulumi.set(__self__, "dashboards_min_refresh_interval", dashboards_min_refresh_interval)
|
|
5925
5955
|
if dashboards_versions_to_keep is not None:
|
|
@@ -6097,6 +6127,14 @@ class GrafanaGrafanaUserConfig(dict):
|
|
|
6097
6127
|
"""
|
|
6098
6128
|
return pulumi.get(self, "dashboard_previews_enabled")
|
|
6099
6129
|
|
|
6130
|
+
@property
|
|
6131
|
+
@pulumi.getter(name="dashboardScenesEnabled")
|
|
6132
|
+
def dashboard_scenes_enabled(self) -> Optional[bool]:
|
|
6133
|
+
"""
|
|
6134
|
+
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/.
|
|
6135
|
+
"""
|
|
6136
|
+
return pulumi.get(self, "dashboard_scenes_enabled")
|
|
6137
|
+
|
|
6100
6138
|
@property
|
|
6101
6139
|
@pulumi.getter(name="dashboardsMinRefreshInterval")
|
|
6102
6140
|
def dashboards_min_refresh_interval(self) -> Optional[str]:
|
|
@@ -8515,6 +8553,8 @@ class KafkaConnectKafkaConnectUserConfig(dict):
|
|
|
8515
8553
|
suggest = "ip_filters"
|
|
8516
8554
|
elif key == "kafkaConnect":
|
|
8517
8555
|
suggest = "kafka_connect"
|
|
8556
|
+
elif key == "pluginVersions":
|
|
8557
|
+
suggest = "plugin_versions"
|
|
8518
8558
|
elif key == "privateAccess":
|
|
8519
8559
|
suggest = "private_access"
|
|
8520
8560
|
elif key == "privatelinkAccess":
|
|
@@ -8545,6 +8585,7 @@ class KafkaConnectKafkaConnectUserConfig(dict):
|
|
|
8545
8585
|
ip_filter_strings: Optional[Sequence[str]] = None,
|
|
8546
8586
|
ip_filters: Optional[Sequence[str]] = None,
|
|
8547
8587
|
kafka_connect: Optional['outputs.KafkaConnectKafkaConnectUserConfigKafkaConnect'] = None,
|
|
8588
|
+
plugin_versions: Optional[Sequence['outputs.KafkaConnectKafkaConnectUserConfigPluginVersion']] = None,
|
|
8548
8589
|
private_access: Optional['outputs.KafkaConnectKafkaConnectUserConfigPrivateAccess'] = None,
|
|
8549
8590
|
privatelink_access: Optional['outputs.KafkaConnectKafkaConnectUserConfigPrivatelinkAccess'] = None,
|
|
8550
8591
|
public_access: Optional['outputs.KafkaConnectKafkaConnectUserConfigPublicAccess'] = None,
|
|
@@ -8557,6 +8598,7 @@ class KafkaConnectKafkaConnectUserConfig(dict):
|
|
|
8557
8598
|
:param Sequence[str] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
|
|
8558
8599
|
:param Sequence[str] ip_filters: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
|
|
8559
8600
|
:param 'KafkaConnectKafkaConnectUserConfigKafkaConnectArgs' kafka_connect: Kafka Connect configuration values
|
|
8601
|
+
:param Sequence['KafkaConnectKafkaConnectUserConfigPluginVersionArgs'] plugin_versions: The plugin selected by the user
|
|
8560
8602
|
:param 'KafkaConnectKafkaConnectUserConfigPrivateAccessArgs' private_access: Allow access to selected service ports from private networks
|
|
8561
8603
|
:param 'KafkaConnectKafkaConnectUserConfigPrivatelinkAccessArgs' privatelink_access: Allow access to selected service components through Privatelink
|
|
8562
8604
|
:param 'KafkaConnectKafkaConnectUserConfigPublicAccessArgs' public_access: Allow access to selected service ports from the public Internet
|
|
@@ -8573,6 +8615,8 @@ class KafkaConnectKafkaConnectUserConfig(dict):
|
|
|
8573
8615
|
pulumi.set(__self__, "ip_filters", ip_filters)
|
|
8574
8616
|
if kafka_connect is not None:
|
|
8575
8617
|
pulumi.set(__self__, "kafka_connect", kafka_connect)
|
|
8618
|
+
if plugin_versions is not None:
|
|
8619
|
+
pulumi.set(__self__, "plugin_versions", plugin_versions)
|
|
8576
8620
|
if private_access is not None:
|
|
8577
8621
|
pulumi.set(__self__, "private_access", private_access)
|
|
8578
8622
|
if privatelink_access is not None:
|
|
@@ -8628,6 +8672,14 @@ class KafkaConnectKafkaConnectUserConfig(dict):
|
|
|
8628
8672
|
"""
|
|
8629
8673
|
return pulumi.get(self, "kafka_connect")
|
|
8630
8674
|
|
|
8675
|
+
@property
|
|
8676
|
+
@pulumi.getter(name="pluginVersions")
|
|
8677
|
+
def plugin_versions(self) -> Optional[Sequence['outputs.KafkaConnectKafkaConnectUserConfigPluginVersion']]:
|
|
8678
|
+
"""
|
|
8679
|
+
The plugin selected by the user
|
|
8680
|
+
"""
|
|
8681
|
+
return pulumi.get(self, "plugin_versions")
|
|
8682
|
+
|
|
8631
8683
|
@property
|
|
8632
8684
|
@pulumi.getter(name="privateAccess")
|
|
8633
8685
|
def private_access(self) -> Optional['outputs.KafkaConnectKafkaConnectUserConfigPrivateAccess']:
|
|
@@ -8950,6 +9002,52 @@ class KafkaConnectKafkaConnectUserConfigKafkaConnect(dict):
|
|
|
8950
9002
|
return pulumi.get(self, "session_timeout_ms")
|
|
8951
9003
|
|
|
8952
9004
|
|
|
9005
|
+
@pulumi.output_type
|
|
9006
|
+
class KafkaConnectKafkaConnectUserConfigPluginVersion(dict):
|
|
9007
|
+
@staticmethod
|
|
9008
|
+
def __key_warning(key: str):
|
|
9009
|
+
suggest = None
|
|
9010
|
+
if key == "pluginName":
|
|
9011
|
+
suggest = "plugin_name"
|
|
9012
|
+
|
|
9013
|
+
if suggest:
|
|
9014
|
+
pulumi.log.warn(f"Key '{key}' not found in KafkaConnectKafkaConnectUserConfigPluginVersion. Access the value via the '{suggest}' property getter instead.")
|
|
9015
|
+
|
|
9016
|
+
def __getitem__(self, key: str) -> Any:
|
|
9017
|
+
KafkaConnectKafkaConnectUserConfigPluginVersion.__key_warning(key)
|
|
9018
|
+
return super().__getitem__(key)
|
|
9019
|
+
|
|
9020
|
+
def get(self, key: str, default = None) -> Any:
|
|
9021
|
+
KafkaConnectKafkaConnectUserConfigPluginVersion.__key_warning(key)
|
|
9022
|
+
return super().get(key, default)
|
|
9023
|
+
|
|
9024
|
+
def __init__(__self__, *,
|
|
9025
|
+
plugin_name: str,
|
|
9026
|
+
version: str):
|
|
9027
|
+
"""
|
|
9028
|
+
:param str plugin_name: The name of the plugin. Example: `debezium-connector`.
|
|
9029
|
+
:param str version: The version of the plugin. Example: `2.5.0`.
|
|
9030
|
+
"""
|
|
9031
|
+
pulumi.set(__self__, "plugin_name", plugin_name)
|
|
9032
|
+
pulumi.set(__self__, "version", version)
|
|
9033
|
+
|
|
9034
|
+
@property
|
|
9035
|
+
@pulumi.getter(name="pluginName")
|
|
9036
|
+
def plugin_name(self) -> str:
|
|
9037
|
+
"""
|
|
9038
|
+
The name of the plugin. Example: `debezium-connector`.
|
|
9039
|
+
"""
|
|
9040
|
+
return pulumi.get(self, "plugin_name")
|
|
9041
|
+
|
|
9042
|
+
@property
|
|
9043
|
+
@pulumi.getter
|
|
9044
|
+
def version(self) -> str:
|
|
9045
|
+
"""
|
|
9046
|
+
The version of the plugin. Example: `2.5.0`.
|
|
9047
|
+
"""
|
|
9048
|
+
return pulumi.get(self, "version")
|
|
9049
|
+
|
|
9050
|
+
|
|
8953
9051
|
@pulumi.output_type
|
|
8954
9052
|
class KafkaConnectKafkaConnectUserConfigPrivateAccess(dict):
|
|
8955
9053
|
@staticmethod
|
|
@@ -17389,14 +17487,20 @@ class OpenSearchOpensearchUserConfigOpensearch(dict):
|
|
|
17389
17487
|
suggest = "auth_failure_listeners"
|
|
17390
17488
|
elif key == "clusterMaxShardsPerNode":
|
|
17391
17489
|
suggest = "cluster_max_shards_per_node"
|
|
17490
|
+
elif key == "clusterRoutingAllocationBalancePreferPrimary":
|
|
17491
|
+
suggest = "cluster_routing_allocation_balance_prefer_primary"
|
|
17392
17492
|
elif key == "clusterRoutingAllocationNodeConcurrentRecoveries":
|
|
17393
17493
|
suggest = "cluster_routing_allocation_node_concurrent_recoveries"
|
|
17494
|
+
elif key == "clusterSearchRequestSlowlog":
|
|
17495
|
+
suggest = "cluster_search_request_slowlog"
|
|
17394
17496
|
elif key == "emailSenderName":
|
|
17395
17497
|
suggest = "email_sender_name"
|
|
17396
17498
|
elif key == "emailSenderPassword":
|
|
17397
17499
|
suggest = "email_sender_password"
|
|
17398
17500
|
elif key == "emailSenderUsername":
|
|
17399
17501
|
suggest = "email_sender_username"
|
|
17502
|
+
elif key == "enableRemoteBackedStorage":
|
|
17503
|
+
suggest = "enable_remote_backed_storage"
|
|
17400
17504
|
elif key == "enableSecurityAudit":
|
|
17401
17505
|
suggest = "enable_security_audit"
|
|
17402
17506
|
elif key == "httpMaxContentLength":
|
|
@@ -17492,10 +17596,13 @@ class OpenSearchOpensearchUserConfigOpensearch(dict):
|
|
|
17492
17596
|
action_destructive_requires_name: Optional[bool] = None,
|
|
17493
17597
|
auth_failure_listeners: Optional['outputs.OpenSearchOpensearchUserConfigOpensearchAuthFailureListeners'] = None,
|
|
17494
17598
|
cluster_max_shards_per_node: Optional[int] = None,
|
|
17599
|
+
cluster_routing_allocation_balance_prefer_primary: Optional[bool] = None,
|
|
17495
17600
|
cluster_routing_allocation_node_concurrent_recoveries: Optional[int] = None,
|
|
17601
|
+
cluster_search_request_slowlog: Optional['outputs.OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlog'] = None,
|
|
17496
17602
|
email_sender_name: Optional[str] = None,
|
|
17497
17603
|
email_sender_password: Optional[str] = None,
|
|
17498
17604
|
email_sender_username: Optional[str] = None,
|
|
17605
|
+
enable_remote_backed_storage: Optional[bool] = None,
|
|
17499
17606
|
enable_security_audit: Optional[bool] = None,
|
|
17500
17607
|
http_max_content_length: Optional[int] = None,
|
|
17501
17608
|
http_max_header_size: Optional[int] = None,
|
|
@@ -17523,6 +17630,7 @@ class OpenSearchOpensearchUserConfigOpensearch(dict):
|
|
|
17523
17630
|
search_backpressure: Optional['outputs.OpenSearchOpensearchUserConfigOpensearchSearchBackpressure'] = None,
|
|
17524
17631
|
search_insights_top_queries: Optional['outputs.OpenSearchOpensearchUserConfigOpensearchSearchInsightsTopQueries'] = None,
|
|
17525
17632
|
search_max_buckets: Optional[int] = None,
|
|
17633
|
+
segrep: Optional['outputs.OpenSearchOpensearchUserConfigOpensearchSegrep'] = None,
|
|
17526
17634
|
shard_indexing_pressure: Optional['outputs.OpenSearchOpensearchUserConfigOpensearchShardIndexingPressure'] = None,
|
|
17527
17635
|
thread_pool_analyze_queue_size: Optional[int] = None,
|
|
17528
17636
|
thread_pool_analyze_size: Optional[int] = None,
|
|
@@ -17540,10 +17648,12 @@ class OpenSearchOpensearchUserConfigOpensearch(dict):
|
|
|
17540
17648
|
:param bool action_destructive_requires_name: Require explicit index names when deleting.
|
|
17541
17649
|
:param 'OpenSearchOpensearchUserConfigOpensearchAuthFailureListenersArgs' auth_failure_listeners: Opensearch Security Plugin Settings
|
|
17542
17650
|
:param int cluster_max_shards_per_node: Controls the number of shards allowed in the cluster per data node. Example: `1000`.
|
|
17651
|
+
:param bool cluster_routing_allocation_balance_prefer_primary: When set to true, OpenSearch attempts to evenly distribute the primary shards between the cluster nodes. Enabling this setting does not always guarantee an equal number of primary shards on each node, especially in the event of a failover. Changing this setting to false after it was set to true does not invoke redistribution of primary shards. Default is false. Default: `false`.
|
|
17543
17652
|
:param int cluster_routing_allocation_node_concurrent_recoveries: How many concurrent incoming/outgoing shard recoveries (normally replicas) are allowed to happen on a node. Defaults to node cpu count * 2.
|
|
17544
17653
|
:param str email_sender_name: Sender name placeholder to be used in Opensearch Dashboards and Opensearch keystore. Example: `alert-sender`.
|
|
17545
17654
|
:param str email_sender_password: Sender password for Opensearch alerts to authenticate with SMTP server. Example: `very-secure-mail-password`.
|
|
17546
17655
|
:param str email_sender_username: Sender username for Opensearch alerts. Example: `jane@example.com`.
|
|
17656
|
+
:param bool enable_remote_backed_storage: Enable remote-backed storage.
|
|
17547
17657
|
:param bool enable_security_audit: Enable/Disable security audit.
|
|
17548
17658
|
:param int http_max_content_length: Maximum content length for HTTP requests to the OpenSearch HTTP API, in bytes.
|
|
17549
17659
|
:param int http_max_header_size: The max size of allowed headers, in bytes. Example: `8192`.
|
|
@@ -17570,6 +17680,7 @@ class OpenSearchOpensearchUserConfigOpensearch(dict):
|
|
|
17570
17680
|
:param str script_max_compilations_rate: Script compilation circuit breaker limits the number of inline script compilations within a period of time. Default is use-context. Example: `75/5m`.
|
|
17571
17681
|
:param 'OpenSearchOpensearchUserConfigOpensearchSearchBackpressureArgs' search_backpressure: Search Backpressure Settings
|
|
17572
17682
|
:param int search_max_buckets: Maximum number of aggregation buckets allowed in a single response. OpenSearch default value is used when this is not defined. Example: `10000`.
|
|
17683
|
+
:param 'OpenSearchOpensearchUserConfigOpensearchSegrepArgs' segrep: Segment Replication Backpressure Settings
|
|
17573
17684
|
:param 'OpenSearchOpensearchUserConfigOpensearchShardIndexingPressureArgs' shard_indexing_pressure: Shard indexing back pressure settings
|
|
17574
17685
|
:param int thread_pool_analyze_queue_size: Size for the thread pool queue. See documentation for exact details.
|
|
17575
17686
|
:param int thread_pool_analyze_size: Size for the thread pool. See documentation for exact details. Do note this may have maximum value depending on CPU count - value is automatically lowered if set to higher than maximum value.
|
|
@@ -17591,14 +17702,20 @@ class OpenSearchOpensearchUserConfigOpensearch(dict):
|
|
|
17591
17702
|
pulumi.set(__self__, "auth_failure_listeners", auth_failure_listeners)
|
|
17592
17703
|
if cluster_max_shards_per_node is not None:
|
|
17593
17704
|
pulumi.set(__self__, "cluster_max_shards_per_node", cluster_max_shards_per_node)
|
|
17705
|
+
if cluster_routing_allocation_balance_prefer_primary is not None:
|
|
17706
|
+
pulumi.set(__self__, "cluster_routing_allocation_balance_prefer_primary", cluster_routing_allocation_balance_prefer_primary)
|
|
17594
17707
|
if cluster_routing_allocation_node_concurrent_recoveries is not None:
|
|
17595
17708
|
pulumi.set(__self__, "cluster_routing_allocation_node_concurrent_recoveries", cluster_routing_allocation_node_concurrent_recoveries)
|
|
17709
|
+
if cluster_search_request_slowlog is not None:
|
|
17710
|
+
pulumi.set(__self__, "cluster_search_request_slowlog", cluster_search_request_slowlog)
|
|
17596
17711
|
if email_sender_name is not None:
|
|
17597
17712
|
pulumi.set(__self__, "email_sender_name", email_sender_name)
|
|
17598
17713
|
if email_sender_password is not None:
|
|
17599
17714
|
pulumi.set(__self__, "email_sender_password", email_sender_password)
|
|
17600
17715
|
if email_sender_username is not None:
|
|
17601
17716
|
pulumi.set(__self__, "email_sender_username", email_sender_username)
|
|
17717
|
+
if enable_remote_backed_storage is not None:
|
|
17718
|
+
pulumi.set(__self__, "enable_remote_backed_storage", enable_remote_backed_storage)
|
|
17602
17719
|
if enable_security_audit is not None:
|
|
17603
17720
|
pulumi.set(__self__, "enable_security_audit", enable_security_audit)
|
|
17604
17721
|
if http_max_content_length is not None:
|
|
@@ -17653,6 +17770,8 @@ class OpenSearchOpensearchUserConfigOpensearch(dict):
|
|
|
17653
17770
|
pulumi.set(__self__, "search_insights_top_queries", search_insights_top_queries)
|
|
17654
17771
|
if search_max_buckets is not None:
|
|
17655
17772
|
pulumi.set(__self__, "search_max_buckets", search_max_buckets)
|
|
17773
|
+
if segrep is not None:
|
|
17774
|
+
pulumi.set(__self__, "segrep", segrep)
|
|
17656
17775
|
if shard_indexing_pressure is not None:
|
|
17657
17776
|
pulumi.set(__self__, "shard_indexing_pressure", shard_indexing_pressure)
|
|
17658
17777
|
if thread_pool_analyze_queue_size is not None:
|
|
@@ -17710,6 +17829,14 @@ class OpenSearchOpensearchUserConfigOpensearch(dict):
|
|
|
17710
17829
|
"""
|
|
17711
17830
|
return pulumi.get(self, "cluster_max_shards_per_node")
|
|
17712
17831
|
|
|
17832
|
+
@property
|
|
17833
|
+
@pulumi.getter(name="clusterRoutingAllocationBalancePreferPrimary")
|
|
17834
|
+
def cluster_routing_allocation_balance_prefer_primary(self) -> Optional[bool]:
|
|
17835
|
+
"""
|
|
17836
|
+
When set to true, OpenSearch attempts to evenly distribute the primary shards between the cluster nodes. Enabling this setting does not always guarantee an equal number of primary shards on each node, especially in the event of a failover. Changing this setting to false after it was set to true does not invoke redistribution of primary shards. Default is false. Default: `false`.
|
|
17837
|
+
"""
|
|
17838
|
+
return pulumi.get(self, "cluster_routing_allocation_balance_prefer_primary")
|
|
17839
|
+
|
|
17713
17840
|
@property
|
|
17714
17841
|
@pulumi.getter(name="clusterRoutingAllocationNodeConcurrentRecoveries")
|
|
17715
17842
|
def cluster_routing_allocation_node_concurrent_recoveries(self) -> Optional[int]:
|
|
@@ -17718,6 +17845,11 @@ class OpenSearchOpensearchUserConfigOpensearch(dict):
|
|
|
17718
17845
|
"""
|
|
17719
17846
|
return pulumi.get(self, "cluster_routing_allocation_node_concurrent_recoveries")
|
|
17720
17847
|
|
|
17848
|
+
@property
|
|
17849
|
+
@pulumi.getter(name="clusterSearchRequestSlowlog")
|
|
17850
|
+
def cluster_search_request_slowlog(self) -> Optional['outputs.OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlog']:
|
|
17851
|
+
return pulumi.get(self, "cluster_search_request_slowlog")
|
|
17852
|
+
|
|
17721
17853
|
@property
|
|
17722
17854
|
@pulumi.getter(name="emailSenderName")
|
|
17723
17855
|
def email_sender_name(self) -> Optional[str]:
|
|
@@ -17742,6 +17874,14 @@ class OpenSearchOpensearchUserConfigOpensearch(dict):
|
|
|
17742
17874
|
"""
|
|
17743
17875
|
return pulumi.get(self, "email_sender_username")
|
|
17744
17876
|
|
|
17877
|
+
@property
|
|
17878
|
+
@pulumi.getter(name="enableRemoteBackedStorage")
|
|
17879
|
+
def enable_remote_backed_storage(self) -> Optional[bool]:
|
|
17880
|
+
"""
|
|
17881
|
+
Enable remote-backed storage.
|
|
17882
|
+
"""
|
|
17883
|
+
return pulumi.get(self, "enable_remote_backed_storage")
|
|
17884
|
+
|
|
17745
17885
|
@property
|
|
17746
17886
|
@pulumi.getter(name="enableSecurityAudit")
|
|
17747
17887
|
def enable_security_audit(self) -> Optional[bool]:
|
|
@@ -17955,6 +18095,14 @@ class OpenSearchOpensearchUserConfigOpensearch(dict):
|
|
|
17955
18095
|
"""
|
|
17956
18096
|
return pulumi.get(self, "search_max_buckets")
|
|
17957
18097
|
|
|
18098
|
+
@property
|
|
18099
|
+
@pulumi.getter
|
|
18100
|
+
def segrep(self) -> Optional['outputs.OpenSearchOpensearchUserConfigOpensearchSegrep']:
|
|
18101
|
+
"""
|
|
18102
|
+
Segment Replication Backpressure Settings
|
|
18103
|
+
"""
|
|
18104
|
+
return pulumi.get(self, "segrep")
|
|
18105
|
+
|
|
17958
18106
|
@property
|
|
17959
18107
|
@pulumi.getter(name="shardIndexingPressure")
|
|
17960
18108
|
def shard_indexing_pressure(self) -> Optional['outputs.OpenSearchOpensearchUserConfigOpensearchShardIndexingPressure']:
|
|
@@ -18320,6 +18468,88 @@ class OpenSearchOpensearchUserConfigOpensearchAuthFailureListenersIpRateLimiting
|
|
|
18320
18468
|
return pulumi.get(self, "type")
|
|
18321
18469
|
|
|
18322
18470
|
|
|
18471
|
+
@pulumi.output_type
|
|
18472
|
+
class OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlog(dict):
|
|
18473
|
+
def __init__(__self__, *,
|
|
18474
|
+
level: Optional[str] = None,
|
|
18475
|
+
threshold: Optional['outputs.OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogThreshold'] = None):
|
|
18476
|
+
"""
|
|
18477
|
+
:param str level: Enum: `debug`, `info`, `trace`, `warn`. Log level. Default: `trace`.
|
|
18478
|
+
"""
|
|
18479
|
+
if level is not None:
|
|
18480
|
+
pulumi.set(__self__, "level", level)
|
|
18481
|
+
if threshold is not None:
|
|
18482
|
+
pulumi.set(__self__, "threshold", threshold)
|
|
18483
|
+
|
|
18484
|
+
@property
|
|
18485
|
+
@pulumi.getter
|
|
18486
|
+
def level(self) -> Optional[str]:
|
|
18487
|
+
"""
|
|
18488
|
+
Enum: `debug`, `info`, `trace`, `warn`. Log level. Default: `trace`.
|
|
18489
|
+
"""
|
|
18490
|
+
return pulumi.get(self, "level")
|
|
18491
|
+
|
|
18492
|
+
@property
|
|
18493
|
+
@pulumi.getter
|
|
18494
|
+
def threshold(self) -> Optional['outputs.OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogThreshold']:
|
|
18495
|
+
return pulumi.get(self, "threshold")
|
|
18496
|
+
|
|
18497
|
+
|
|
18498
|
+
@pulumi.output_type
|
|
18499
|
+
class OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogThreshold(dict):
|
|
18500
|
+
def __init__(__self__, *,
|
|
18501
|
+
debug: Optional[str] = None,
|
|
18502
|
+
info: Optional[str] = None,
|
|
18503
|
+
trace: Optional[str] = None,
|
|
18504
|
+
warn: Optional[str] = None):
|
|
18505
|
+
"""
|
|
18506
|
+
:param 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.
|
|
18507
|
+
:param 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.
|
|
18508
|
+
:param 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.
|
|
18509
|
+
:param 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.
|
|
18510
|
+
"""
|
|
18511
|
+
if debug is not None:
|
|
18512
|
+
pulumi.set(__self__, "debug", debug)
|
|
18513
|
+
if info is not None:
|
|
18514
|
+
pulumi.set(__self__, "info", info)
|
|
18515
|
+
if trace is not None:
|
|
18516
|
+
pulumi.set(__self__, "trace", trace)
|
|
18517
|
+
if warn is not None:
|
|
18518
|
+
pulumi.set(__self__, "warn", warn)
|
|
18519
|
+
|
|
18520
|
+
@property
|
|
18521
|
+
@pulumi.getter
|
|
18522
|
+
def debug(self) -> Optional[str]:
|
|
18523
|
+
"""
|
|
18524
|
+
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.
|
|
18525
|
+
"""
|
|
18526
|
+
return pulumi.get(self, "debug")
|
|
18527
|
+
|
|
18528
|
+
@property
|
|
18529
|
+
@pulumi.getter
|
|
18530
|
+
def info(self) -> Optional[str]:
|
|
18531
|
+
"""
|
|
18532
|
+
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.
|
|
18533
|
+
"""
|
|
18534
|
+
return pulumi.get(self, "info")
|
|
18535
|
+
|
|
18536
|
+
@property
|
|
18537
|
+
@pulumi.getter
|
|
18538
|
+
def trace(self) -> Optional[str]:
|
|
18539
|
+
"""
|
|
18540
|
+
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.
|
|
18541
|
+
"""
|
|
18542
|
+
return pulumi.get(self, "trace")
|
|
18543
|
+
|
|
18544
|
+
@property
|
|
18545
|
+
@pulumi.getter
|
|
18546
|
+
def warn(self) -> Optional[str]:
|
|
18547
|
+
"""
|
|
18548
|
+
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.
|
|
18549
|
+
"""
|
|
18550
|
+
return pulumi.get(self, "warn")
|
|
18551
|
+
|
|
18552
|
+
|
|
18323
18553
|
@pulumi.output_type
|
|
18324
18554
|
class OpenSearchOpensearchUserConfigOpensearchDashboards(dict):
|
|
18325
18555
|
@staticmethod
|
|
@@ -19061,6 +19291,84 @@ class OpenSearchOpensearchUserConfigOpensearchSearchInsightsTopQueriesMemory(dic
|
|
|
19061
19291
|
return pulumi.get(self, "window_size")
|
|
19062
19292
|
|
|
19063
19293
|
|
|
19294
|
+
@pulumi.output_type
|
|
19295
|
+
class OpenSearchOpensearchUserConfigOpensearchSegrep(dict):
|
|
19296
|
+
@staticmethod
|
|
19297
|
+
def __key_warning(key: str):
|
|
19298
|
+
suggest = None
|
|
19299
|
+
if key == "pressureCheckpointLimit":
|
|
19300
|
+
suggest = "pressure_checkpoint_limit"
|
|
19301
|
+
elif key == "pressureEnabled":
|
|
19302
|
+
suggest = "pressure_enabled"
|
|
19303
|
+
elif key == "pressureReplicaStaleLimit":
|
|
19304
|
+
suggest = "pressure_replica_stale_limit"
|
|
19305
|
+
elif key == "pressureTimeLimit":
|
|
19306
|
+
suggest = "pressure_time_limit"
|
|
19307
|
+
|
|
19308
|
+
if suggest:
|
|
19309
|
+
pulumi.log.warn(f"Key '{key}' not found in OpenSearchOpensearchUserConfigOpensearchSegrep. Access the value via the '{suggest}' property getter instead.")
|
|
19310
|
+
|
|
19311
|
+
def __getitem__(self, key: str) -> Any:
|
|
19312
|
+
OpenSearchOpensearchUserConfigOpensearchSegrep.__key_warning(key)
|
|
19313
|
+
return super().__getitem__(key)
|
|
19314
|
+
|
|
19315
|
+
def get(self, key: str, default = None) -> Any:
|
|
19316
|
+
OpenSearchOpensearchUserConfigOpensearchSegrep.__key_warning(key)
|
|
19317
|
+
return super().get(key, default)
|
|
19318
|
+
|
|
19319
|
+
def __init__(__self__, *,
|
|
19320
|
+
pressure_checkpoint_limit: Optional[int] = None,
|
|
19321
|
+
pressure_enabled: Optional[bool] = None,
|
|
19322
|
+
pressure_replica_stale_limit: Optional[float] = None,
|
|
19323
|
+
pressure_time_limit: Optional[str] = None):
|
|
19324
|
+
"""
|
|
19325
|
+
:param int pressure_checkpoint_limit: The maximum number of indexing checkpoints that a replica shard can fall behind when copying from primary. Once `segrep.pressure.checkpoint.limit` is breached along with `segrep.pressure.time.limit`, the segment replication backpressure mechanism is initiated. Default is 4 checkpoints. Default: `4`.
|
|
19326
|
+
:param bool pressure_enabled: Enables the segment replication backpressure mechanism. Default is false. Default: `false`.
|
|
19327
|
+
:param float pressure_replica_stale_limit: The maximum number of stale replica shards that can exist in a replication group. Once `segrep.pressure.replica.stale.limit` is breached, the segment replication backpressure mechanism is initiated. Default is .5, which is 50% of a replication group. Default: `0.5`.
|
|
19328
|
+
:param str pressure_time_limit: The maximum amount of time that a replica shard can take to copy from the primary shard. Once segrep.pressure.time.limit is breached along with segrep.pressure.checkpoint.limit, the segment replication backpressure mechanism is initiated. Default is 5 minutes. Default: `5m`.
|
|
19329
|
+
"""
|
|
19330
|
+
if pressure_checkpoint_limit is not None:
|
|
19331
|
+
pulumi.set(__self__, "pressure_checkpoint_limit", pressure_checkpoint_limit)
|
|
19332
|
+
if pressure_enabled is not None:
|
|
19333
|
+
pulumi.set(__self__, "pressure_enabled", pressure_enabled)
|
|
19334
|
+
if pressure_replica_stale_limit is not None:
|
|
19335
|
+
pulumi.set(__self__, "pressure_replica_stale_limit", pressure_replica_stale_limit)
|
|
19336
|
+
if pressure_time_limit is not None:
|
|
19337
|
+
pulumi.set(__self__, "pressure_time_limit", pressure_time_limit)
|
|
19338
|
+
|
|
19339
|
+
@property
|
|
19340
|
+
@pulumi.getter(name="pressureCheckpointLimit")
|
|
19341
|
+
def pressure_checkpoint_limit(self) -> Optional[int]:
|
|
19342
|
+
"""
|
|
19343
|
+
The maximum number of indexing checkpoints that a replica shard can fall behind when copying from primary. Once `segrep.pressure.checkpoint.limit` is breached along with `segrep.pressure.time.limit`, the segment replication backpressure mechanism is initiated. Default is 4 checkpoints. Default: `4`.
|
|
19344
|
+
"""
|
|
19345
|
+
return pulumi.get(self, "pressure_checkpoint_limit")
|
|
19346
|
+
|
|
19347
|
+
@property
|
|
19348
|
+
@pulumi.getter(name="pressureEnabled")
|
|
19349
|
+
def pressure_enabled(self) -> Optional[bool]:
|
|
19350
|
+
"""
|
|
19351
|
+
Enables the segment replication backpressure mechanism. Default is false. Default: `false`.
|
|
19352
|
+
"""
|
|
19353
|
+
return pulumi.get(self, "pressure_enabled")
|
|
19354
|
+
|
|
19355
|
+
@property
|
|
19356
|
+
@pulumi.getter(name="pressureReplicaStaleLimit")
|
|
19357
|
+
def pressure_replica_stale_limit(self) -> Optional[float]:
|
|
19358
|
+
"""
|
|
19359
|
+
The maximum number of stale replica shards that can exist in a replication group. Once `segrep.pressure.replica.stale.limit` is breached, the segment replication backpressure mechanism is initiated. Default is .5, which is 50% of a replication group. Default: `0.5`.
|
|
19360
|
+
"""
|
|
19361
|
+
return pulumi.get(self, "pressure_replica_stale_limit")
|
|
19362
|
+
|
|
19363
|
+
@property
|
|
19364
|
+
@pulumi.getter(name="pressureTimeLimit")
|
|
19365
|
+
def pressure_time_limit(self) -> Optional[str]:
|
|
19366
|
+
"""
|
|
19367
|
+
The maximum amount of time that a replica shard can take to copy from the primary shard. Once segrep.pressure.time.limit is breached along with segrep.pressure.checkpoint.limit, the segment replication backpressure mechanism is initiated. Default is 5 minutes. Default: `5m`.
|
|
19368
|
+
"""
|
|
19369
|
+
return pulumi.get(self, "pressure_time_limit")
|
|
19370
|
+
|
|
19371
|
+
|
|
19064
19372
|
@pulumi.output_type
|
|
19065
19373
|
class OpenSearchOpensearchUserConfigOpensearchShardIndexingPressure(dict):
|
|
19066
19374
|
@staticmethod
|
|
@@ -19976,7 +20284,7 @@ class OrganizationPermissionPermission(dict):
|
|
|
19976
20284
|
create_time: Optional[str] = None,
|
|
19977
20285
|
update_time: Optional[str] = None):
|
|
19978
20286
|
"""
|
|
19979
|
-
:param Sequence[str] permissions: List of [roles and permissions](https://aiven.io/docs/platform/concepts/permissions) to grant. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
|
|
20287
|
+
:param Sequence[str] permissions: List of [roles and permissions](https://aiven.io/docs/platform/concepts/permissions) to grant. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
|
|
19980
20288
|
:param str principal_id: ID of the user or group to grant permissions to. Only active users who have accepted an [invite](https://aiven.io/docs/platform/howto/manage-org-users) to join the organization can be granted permissions.
|
|
19981
20289
|
:param str principal_type: The type of principal. The possible values are `user` and `user_group`.
|
|
19982
20290
|
:param str create_time: Time created.
|
|
@@ -19994,7 +20302,7 @@ class OrganizationPermissionPermission(dict):
|
|
|
19994
20302
|
@pulumi.getter
|
|
19995
20303
|
def permissions(self) -> Sequence[str]:
|
|
19996
20304
|
"""
|
|
19997
|
-
List of [roles and permissions](https://aiven.io/docs/platform/concepts/permissions) to grant. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
|
|
20305
|
+
List of [roles and permissions](https://aiven.io/docs/platform/concepts/permissions) to grant. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
|
|
19998
20306
|
"""
|
|
19999
20307
|
return pulumi.get(self, "permissions")
|
|
20000
20308
|
|
|
@@ -24746,6 +25054,66 @@ class ServiceIntegrationEndpointExternalAwsS3UserConfig(dict):
|
|
|
24746
25054
|
return pulumi.get(self, "url")
|
|
24747
25055
|
|
|
24748
25056
|
|
|
25057
|
+
@pulumi.output_type
|
|
25058
|
+
class ServiceIntegrationEndpointExternalAzureBlobStorageUserConfig(dict):
|
|
25059
|
+
@staticmethod
|
|
25060
|
+
def __key_warning(key: str):
|
|
25061
|
+
suggest = None
|
|
25062
|
+
if key == "connectionString":
|
|
25063
|
+
suggest = "connection_string"
|
|
25064
|
+
elif key == "blobPath":
|
|
25065
|
+
suggest = "blob_path"
|
|
25066
|
+
|
|
25067
|
+
if suggest:
|
|
25068
|
+
pulumi.log.warn(f"Key '{key}' not found in ServiceIntegrationEndpointExternalAzureBlobStorageUserConfig. Access the value via the '{suggest}' property getter instead.")
|
|
25069
|
+
|
|
25070
|
+
def __getitem__(self, key: str) -> Any:
|
|
25071
|
+
ServiceIntegrationEndpointExternalAzureBlobStorageUserConfig.__key_warning(key)
|
|
25072
|
+
return super().__getitem__(key)
|
|
25073
|
+
|
|
25074
|
+
def get(self, key: str, default = None) -> Any:
|
|
25075
|
+
ServiceIntegrationEndpointExternalAzureBlobStorageUserConfig.__key_warning(key)
|
|
25076
|
+
return super().get(key, default)
|
|
25077
|
+
|
|
25078
|
+
def __init__(__self__, *,
|
|
25079
|
+
connection_string: str,
|
|
25080
|
+
container: str,
|
|
25081
|
+
blob_path: Optional[str] = None):
|
|
25082
|
+
"""
|
|
25083
|
+
:param str connection_string: Azure Blob Storage connection string. Example: `AccountName=IDENT;AccountKey=SECRET`.
|
|
25084
|
+
:param str container: Container. Example: `container-dev`.
|
|
25085
|
+
:param str blob_path: Blob path. Example: `path/to/blob/file.csv`.
|
|
25086
|
+
"""
|
|
25087
|
+
pulumi.set(__self__, "connection_string", connection_string)
|
|
25088
|
+
pulumi.set(__self__, "container", container)
|
|
25089
|
+
if blob_path is not None:
|
|
25090
|
+
pulumi.set(__self__, "blob_path", blob_path)
|
|
25091
|
+
|
|
25092
|
+
@property
|
|
25093
|
+
@pulumi.getter(name="connectionString")
|
|
25094
|
+
def connection_string(self) -> str:
|
|
25095
|
+
"""
|
|
25096
|
+
Azure Blob Storage connection string. Example: `AccountName=IDENT;AccountKey=SECRET`.
|
|
25097
|
+
"""
|
|
25098
|
+
return pulumi.get(self, "connection_string")
|
|
25099
|
+
|
|
25100
|
+
@property
|
|
25101
|
+
@pulumi.getter
|
|
25102
|
+
def container(self) -> str:
|
|
25103
|
+
"""
|
|
25104
|
+
Container. Example: `container-dev`.
|
|
25105
|
+
"""
|
|
25106
|
+
return pulumi.get(self, "container")
|
|
25107
|
+
|
|
25108
|
+
@property
|
|
25109
|
+
@pulumi.getter(name="blobPath")
|
|
25110
|
+
def blob_path(self) -> Optional[str]:
|
|
25111
|
+
"""
|
|
25112
|
+
Blob path. Example: `path/to/blob/file.csv`.
|
|
25113
|
+
"""
|
|
25114
|
+
return pulumi.get(self, "blob_path")
|
|
25115
|
+
|
|
25116
|
+
|
|
24749
25117
|
@pulumi.output_type
|
|
24750
25118
|
class ServiceIntegrationEndpointExternalClickhouseUserConfig(dict):
|
|
24751
25119
|
def __init__(__self__, *,
|
|
@@ -33174,6 +33542,7 @@ class GetFlinkFlinkResult(dict):
|
|
|
33174
33542
|
class GetFlinkFlinkUserConfigResult(dict):
|
|
33175
33543
|
def __init__(__self__, *,
|
|
33176
33544
|
additional_backup_regions: Optional[str] = None,
|
|
33545
|
+
custom_code: Optional[bool] = None,
|
|
33177
33546
|
flink_version: Optional[str] = None,
|
|
33178
33547
|
ip_filter_objects: Optional[Sequence['outputs.GetFlinkFlinkUserConfigIpFilterObjectResult']] = None,
|
|
33179
33548
|
ip_filter_strings: Optional[Sequence[str]] = None,
|
|
@@ -33187,6 +33556,7 @@ class GetFlinkFlinkUserConfigResult(dict):
|
|
|
33187
33556
|
static_ips: Optional[bool] = None):
|
|
33188
33557
|
"""
|
|
33189
33558
|
:param str additional_backup_regions: Additional Cloud Regions for Backup Replication.
|
|
33559
|
+
:param bool custom_code: Enable to upload Custom JARs for Flink applications.
|
|
33190
33560
|
:param str flink_version: Enum: `1.16`, `1.19`, `1.20`, and newer. Flink major version.
|
|
33191
33561
|
:param Sequence['GetFlinkFlinkUserConfigIpFilterObjectArgs'] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`
|
|
33192
33562
|
:param Sequence[str] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
|
|
@@ -33201,6 +33571,8 @@ class GetFlinkFlinkUserConfigResult(dict):
|
|
|
33201
33571
|
"""
|
|
33202
33572
|
if additional_backup_regions is not None:
|
|
33203
33573
|
pulumi.set(__self__, "additional_backup_regions", additional_backup_regions)
|
|
33574
|
+
if custom_code is not None:
|
|
33575
|
+
pulumi.set(__self__, "custom_code", custom_code)
|
|
33204
33576
|
if flink_version is not None:
|
|
33205
33577
|
pulumi.set(__self__, "flink_version", flink_version)
|
|
33206
33578
|
if ip_filter_objects is not None:
|
|
@@ -33233,6 +33605,14 @@ class GetFlinkFlinkUserConfigResult(dict):
|
|
|
33233
33605
|
"""
|
|
33234
33606
|
return pulumi.get(self, "additional_backup_regions")
|
|
33235
33607
|
|
|
33608
|
+
@property
|
|
33609
|
+
@pulumi.getter(name="customCode")
|
|
33610
|
+
def custom_code(self) -> Optional[bool]:
|
|
33611
|
+
"""
|
|
33612
|
+
Enable to upload Custom JARs for Flink applications.
|
|
33613
|
+
"""
|
|
33614
|
+
return pulumi.get(self, "custom_code")
|
|
33615
|
+
|
|
33236
33616
|
@property
|
|
33237
33617
|
@pulumi.getter(name="flinkVersion")
|
|
33238
33618
|
def flink_version(self) -> Optional[str]:
|
|
@@ -33610,6 +33990,7 @@ class GetGrafanaGrafanaUserConfigResult(dict):
|
|
|
33610
33990
|
cookie_samesite: Optional[str] = None,
|
|
33611
33991
|
custom_domain: Optional[str] = None,
|
|
33612
33992
|
dashboard_previews_enabled: Optional[bool] = None,
|
|
33993
|
+
dashboard_scenes_enabled: Optional[bool] = None,
|
|
33613
33994
|
dashboards_min_refresh_interval: Optional[str] = None,
|
|
33614
33995
|
dashboards_versions_to_keep: Optional[int] = None,
|
|
33615
33996
|
dataproxy_send_user_header: Optional[bool] = None,
|
|
@@ -33654,6 +34035,7 @@ class GetGrafanaGrafanaUserConfigResult(dict):
|
|
|
33654
34035
|
:param 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.
|
|
33655
34036
|
:param str custom_domain: Serve the web frontend using a custom CNAME pointing to the Aiven DNS name. Example: `grafana.example.org`.
|
|
33656
34037
|
:param 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.
|
|
34038
|
+
:param 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/.
|
|
33657
34039
|
:param 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`.
|
|
33658
34040
|
:param int dashboards_versions_to_keep: Dashboard versions to keep per dashboard. Example: `20`.
|
|
33659
34041
|
:param bool dataproxy_send_user_header: Send `X-Grafana-User` header to data source.
|
|
@@ -33713,6 +34095,8 @@ class GetGrafanaGrafanaUserConfigResult(dict):
|
|
|
33713
34095
|
pulumi.set(__self__, "custom_domain", custom_domain)
|
|
33714
34096
|
if dashboard_previews_enabled is not None:
|
|
33715
34097
|
pulumi.set(__self__, "dashboard_previews_enabled", dashboard_previews_enabled)
|
|
34098
|
+
if dashboard_scenes_enabled is not None:
|
|
34099
|
+
pulumi.set(__self__, "dashboard_scenes_enabled", dashboard_scenes_enabled)
|
|
33716
34100
|
if dashboards_min_refresh_interval is not None:
|
|
33717
34101
|
pulumi.set(__self__, "dashboards_min_refresh_interval", dashboards_min_refresh_interval)
|
|
33718
34102
|
if dashboards_versions_to_keep is not None:
|
|
@@ -33890,6 +34274,14 @@ class GetGrafanaGrafanaUserConfigResult(dict):
|
|
|
33890
34274
|
"""
|
|
33891
34275
|
return pulumi.get(self, "dashboard_previews_enabled")
|
|
33892
34276
|
|
|
34277
|
+
@property
|
|
34278
|
+
@pulumi.getter(name="dashboardScenesEnabled")
|
|
34279
|
+
def dashboard_scenes_enabled(self) -> Optional[bool]:
|
|
34280
|
+
"""
|
|
34281
|
+
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/.
|
|
34282
|
+
"""
|
|
34283
|
+
return pulumi.get(self, "dashboard_scenes_enabled")
|
|
34284
|
+
|
|
33893
34285
|
@property
|
|
33894
34286
|
@pulumi.getter(name="dashboardsMinRefreshInterval")
|
|
33895
34287
|
def dashboards_min_refresh_interval(self) -> Optional[str]:
|
|
@@ -35818,6 +36210,7 @@ class GetKafkaConnectKafkaConnectUserConfigResult(dict):
|
|
|
35818
36210
|
ip_filter_strings: Optional[Sequence[str]] = None,
|
|
35819
36211
|
ip_filters: Optional[Sequence[str]] = None,
|
|
35820
36212
|
kafka_connect: Optional['outputs.GetKafkaConnectKafkaConnectUserConfigKafkaConnectResult'] = None,
|
|
36213
|
+
plugin_versions: Optional[Sequence['outputs.GetKafkaConnectKafkaConnectUserConfigPluginVersionResult']] = None,
|
|
35821
36214
|
private_access: Optional['outputs.GetKafkaConnectKafkaConnectUserConfigPrivateAccessResult'] = None,
|
|
35822
36215
|
privatelink_access: Optional['outputs.GetKafkaConnectKafkaConnectUserConfigPrivatelinkAccessResult'] = None,
|
|
35823
36216
|
public_access: Optional['outputs.GetKafkaConnectKafkaConnectUserConfigPublicAccessResult'] = None,
|
|
@@ -35830,6 +36223,7 @@ class GetKafkaConnectKafkaConnectUserConfigResult(dict):
|
|
|
35830
36223
|
:param Sequence[str] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
|
|
35831
36224
|
:param Sequence[str] ip_filters: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
|
|
35832
36225
|
:param 'GetKafkaConnectKafkaConnectUserConfigKafkaConnectArgs' kafka_connect: Kafka Connect configuration values
|
|
36226
|
+
:param Sequence['GetKafkaConnectKafkaConnectUserConfigPluginVersionArgs'] plugin_versions: The plugin selected by the user
|
|
35833
36227
|
:param 'GetKafkaConnectKafkaConnectUserConfigPrivateAccessArgs' private_access: Allow access to selected service ports from private networks
|
|
35834
36228
|
:param 'GetKafkaConnectKafkaConnectUserConfigPrivatelinkAccessArgs' privatelink_access: Allow access to selected service components through Privatelink
|
|
35835
36229
|
:param 'GetKafkaConnectKafkaConnectUserConfigPublicAccessArgs' public_access: Allow access to selected service ports from the public Internet
|
|
@@ -35846,6 +36240,8 @@ class GetKafkaConnectKafkaConnectUserConfigResult(dict):
|
|
|
35846
36240
|
pulumi.set(__self__, "ip_filters", ip_filters)
|
|
35847
36241
|
if kafka_connect is not None:
|
|
35848
36242
|
pulumi.set(__self__, "kafka_connect", kafka_connect)
|
|
36243
|
+
if plugin_versions is not None:
|
|
36244
|
+
pulumi.set(__self__, "plugin_versions", plugin_versions)
|
|
35849
36245
|
if private_access is not None:
|
|
35850
36246
|
pulumi.set(__self__, "private_access", private_access)
|
|
35851
36247
|
if privatelink_access is not None:
|
|
@@ -35901,6 +36297,14 @@ class GetKafkaConnectKafkaConnectUserConfigResult(dict):
|
|
|
35901
36297
|
"""
|
|
35902
36298
|
return pulumi.get(self, "kafka_connect")
|
|
35903
36299
|
|
|
36300
|
+
@property
|
|
36301
|
+
@pulumi.getter(name="pluginVersions")
|
|
36302
|
+
def plugin_versions(self) -> Optional[Sequence['outputs.GetKafkaConnectKafkaConnectUserConfigPluginVersionResult']]:
|
|
36303
|
+
"""
|
|
36304
|
+
The plugin selected by the user
|
|
36305
|
+
"""
|
|
36306
|
+
return pulumi.get(self, "plugin_versions")
|
|
36307
|
+
|
|
35904
36308
|
@property
|
|
35905
36309
|
@pulumi.getter(name="privateAccess")
|
|
35906
36310
|
def private_access(self) -> Optional['outputs.GetKafkaConnectKafkaConnectUserConfigPrivateAccessResult']:
|
|
@@ -36176,6 +36580,35 @@ class GetKafkaConnectKafkaConnectUserConfigKafkaConnectResult(dict):
|
|
|
36176
36580
|
return pulumi.get(self, "session_timeout_ms")
|
|
36177
36581
|
|
|
36178
36582
|
|
|
36583
|
+
@pulumi.output_type
|
|
36584
|
+
class GetKafkaConnectKafkaConnectUserConfigPluginVersionResult(dict):
|
|
36585
|
+
def __init__(__self__, *,
|
|
36586
|
+
plugin_name: str,
|
|
36587
|
+
version: str):
|
|
36588
|
+
"""
|
|
36589
|
+
:param str plugin_name: The name of the plugin. Example: `debezium-connector`.
|
|
36590
|
+
:param str version: The version of the plugin. Example: `2.5.0`.
|
|
36591
|
+
"""
|
|
36592
|
+
pulumi.set(__self__, "plugin_name", plugin_name)
|
|
36593
|
+
pulumi.set(__self__, "version", version)
|
|
36594
|
+
|
|
36595
|
+
@property
|
|
36596
|
+
@pulumi.getter(name="pluginName")
|
|
36597
|
+
def plugin_name(self) -> str:
|
|
36598
|
+
"""
|
|
36599
|
+
The name of the plugin. Example: `debezium-connector`.
|
|
36600
|
+
"""
|
|
36601
|
+
return pulumi.get(self, "plugin_name")
|
|
36602
|
+
|
|
36603
|
+
@property
|
|
36604
|
+
@pulumi.getter
|
|
36605
|
+
def version(self) -> str:
|
|
36606
|
+
"""
|
|
36607
|
+
The version of the plugin. Example: `2.5.0`.
|
|
36608
|
+
"""
|
|
36609
|
+
return pulumi.get(self, "version")
|
|
36610
|
+
|
|
36611
|
+
|
|
36179
36612
|
@pulumi.output_type
|
|
36180
36613
|
class GetKafkaConnectKafkaConnectUserConfigPrivateAccessResult(dict):
|
|
36181
36614
|
def __init__(__self__, *,
|
|
@@ -42990,10 +43423,13 @@ class GetOpenSearchOpensearchUserConfigOpensearchResult(dict):
|
|
|
42990
43423
|
action_destructive_requires_name: Optional[bool] = None,
|
|
42991
43424
|
auth_failure_listeners: Optional['outputs.GetOpenSearchOpensearchUserConfigOpensearchAuthFailureListenersResult'] = None,
|
|
42992
43425
|
cluster_max_shards_per_node: Optional[int] = None,
|
|
43426
|
+
cluster_routing_allocation_balance_prefer_primary: Optional[bool] = None,
|
|
42993
43427
|
cluster_routing_allocation_node_concurrent_recoveries: Optional[int] = None,
|
|
43428
|
+
cluster_search_request_slowlog: Optional['outputs.GetOpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogResult'] = None,
|
|
42994
43429
|
email_sender_name: Optional[str] = None,
|
|
42995
43430
|
email_sender_password: Optional[str] = None,
|
|
42996
43431
|
email_sender_username: Optional[str] = None,
|
|
43432
|
+
enable_remote_backed_storage: Optional[bool] = None,
|
|
42997
43433
|
enable_security_audit: Optional[bool] = None,
|
|
42998
43434
|
http_max_content_length: Optional[int] = None,
|
|
42999
43435
|
http_max_header_size: Optional[int] = None,
|
|
@@ -43021,6 +43457,7 @@ class GetOpenSearchOpensearchUserConfigOpensearchResult(dict):
|
|
|
43021
43457
|
search_backpressure: Optional['outputs.GetOpenSearchOpensearchUserConfigOpensearchSearchBackpressureResult'] = None,
|
|
43022
43458
|
search_insights_top_queries: Optional['outputs.GetOpenSearchOpensearchUserConfigOpensearchSearchInsightsTopQueriesResult'] = None,
|
|
43023
43459
|
search_max_buckets: Optional[int] = None,
|
|
43460
|
+
segrep: Optional['outputs.GetOpenSearchOpensearchUserConfigOpensearchSegrepResult'] = None,
|
|
43024
43461
|
shard_indexing_pressure: Optional['outputs.GetOpenSearchOpensearchUserConfigOpensearchShardIndexingPressureResult'] = None,
|
|
43025
43462
|
thread_pool_analyze_queue_size: Optional[int] = None,
|
|
43026
43463
|
thread_pool_analyze_size: Optional[int] = None,
|
|
@@ -43038,10 +43475,12 @@ class GetOpenSearchOpensearchUserConfigOpensearchResult(dict):
|
|
|
43038
43475
|
:param bool action_destructive_requires_name: Require explicit index names when deleting.
|
|
43039
43476
|
:param 'GetOpenSearchOpensearchUserConfigOpensearchAuthFailureListenersArgs' auth_failure_listeners: Opensearch Security Plugin Settings
|
|
43040
43477
|
:param int cluster_max_shards_per_node: Controls the number of shards allowed in the cluster per data node. Example: `1000`.
|
|
43478
|
+
:param bool cluster_routing_allocation_balance_prefer_primary: When set to true, OpenSearch attempts to evenly distribute the primary shards between the cluster nodes. Enabling this setting does not always guarantee an equal number of primary shards on each node, especially in the event of a failover. Changing this setting to false after it was set to true does not invoke redistribution of primary shards. Default is false. Default: `false`.
|
|
43041
43479
|
:param int cluster_routing_allocation_node_concurrent_recoveries: How many concurrent incoming/outgoing shard recoveries (normally replicas) are allowed to happen on a node. Defaults to node cpu count * 2.
|
|
43042
43480
|
:param str email_sender_name: Sender name placeholder to be used in Opensearch Dashboards and Opensearch keystore. Example: `alert-sender`.
|
|
43043
43481
|
:param str email_sender_password: Sender password for Opensearch alerts to authenticate with SMTP server. Example: `very-secure-mail-password`.
|
|
43044
43482
|
:param str email_sender_username: Sender username for Opensearch alerts. Example: `jane@example.com`.
|
|
43483
|
+
:param bool enable_remote_backed_storage: Enable remote-backed storage.
|
|
43045
43484
|
:param bool enable_security_audit: Enable/Disable security audit.
|
|
43046
43485
|
:param int http_max_content_length: Maximum content length for HTTP requests to the OpenSearch HTTP API, in bytes.
|
|
43047
43486
|
:param int http_max_header_size: The max size of allowed headers, in bytes. Example: `8192`.
|
|
@@ -43068,6 +43507,7 @@ class GetOpenSearchOpensearchUserConfigOpensearchResult(dict):
|
|
|
43068
43507
|
:param str script_max_compilations_rate: Script compilation circuit breaker limits the number of inline script compilations within a period of time. Default is use-context. Example: `75/5m`.
|
|
43069
43508
|
:param 'GetOpenSearchOpensearchUserConfigOpensearchSearchBackpressureArgs' search_backpressure: Search Backpressure Settings
|
|
43070
43509
|
:param int search_max_buckets: Maximum number of aggregation buckets allowed in a single response. OpenSearch default value is used when this is not defined. Example: `10000`.
|
|
43510
|
+
:param 'GetOpenSearchOpensearchUserConfigOpensearchSegrepArgs' segrep: Segment Replication Backpressure Settings
|
|
43071
43511
|
:param 'GetOpenSearchOpensearchUserConfigOpensearchShardIndexingPressureArgs' shard_indexing_pressure: Shard indexing back pressure settings
|
|
43072
43512
|
:param int thread_pool_analyze_queue_size: Size for the thread pool queue. See documentation for exact details.
|
|
43073
43513
|
:param int thread_pool_analyze_size: Size for the thread pool. See documentation for exact details. Do note this may have maximum value depending on CPU count - value is automatically lowered if set to higher than maximum value.
|
|
@@ -43089,14 +43529,20 @@ class GetOpenSearchOpensearchUserConfigOpensearchResult(dict):
|
|
|
43089
43529
|
pulumi.set(__self__, "auth_failure_listeners", auth_failure_listeners)
|
|
43090
43530
|
if cluster_max_shards_per_node is not None:
|
|
43091
43531
|
pulumi.set(__self__, "cluster_max_shards_per_node", cluster_max_shards_per_node)
|
|
43532
|
+
if cluster_routing_allocation_balance_prefer_primary is not None:
|
|
43533
|
+
pulumi.set(__self__, "cluster_routing_allocation_balance_prefer_primary", cluster_routing_allocation_balance_prefer_primary)
|
|
43092
43534
|
if cluster_routing_allocation_node_concurrent_recoveries is not None:
|
|
43093
43535
|
pulumi.set(__self__, "cluster_routing_allocation_node_concurrent_recoveries", cluster_routing_allocation_node_concurrent_recoveries)
|
|
43536
|
+
if cluster_search_request_slowlog is not None:
|
|
43537
|
+
pulumi.set(__self__, "cluster_search_request_slowlog", cluster_search_request_slowlog)
|
|
43094
43538
|
if email_sender_name is not None:
|
|
43095
43539
|
pulumi.set(__self__, "email_sender_name", email_sender_name)
|
|
43096
43540
|
if email_sender_password is not None:
|
|
43097
43541
|
pulumi.set(__self__, "email_sender_password", email_sender_password)
|
|
43098
43542
|
if email_sender_username is not None:
|
|
43099
43543
|
pulumi.set(__self__, "email_sender_username", email_sender_username)
|
|
43544
|
+
if enable_remote_backed_storage is not None:
|
|
43545
|
+
pulumi.set(__self__, "enable_remote_backed_storage", enable_remote_backed_storage)
|
|
43100
43546
|
if enable_security_audit is not None:
|
|
43101
43547
|
pulumi.set(__self__, "enable_security_audit", enable_security_audit)
|
|
43102
43548
|
if http_max_content_length is not None:
|
|
@@ -43151,6 +43597,8 @@ class GetOpenSearchOpensearchUserConfigOpensearchResult(dict):
|
|
|
43151
43597
|
pulumi.set(__self__, "search_insights_top_queries", search_insights_top_queries)
|
|
43152
43598
|
if search_max_buckets is not None:
|
|
43153
43599
|
pulumi.set(__self__, "search_max_buckets", search_max_buckets)
|
|
43600
|
+
if segrep is not None:
|
|
43601
|
+
pulumi.set(__self__, "segrep", segrep)
|
|
43154
43602
|
if shard_indexing_pressure is not None:
|
|
43155
43603
|
pulumi.set(__self__, "shard_indexing_pressure", shard_indexing_pressure)
|
|
43156
43604
|
if thread_pool_analyze_queue_size is not None:
|
|
@@ -43208,6 +43656,14 @@ class GetOpenSearchOpensearchUserConfigOpensearchResult(dict):
|
|
|
43208
43656
|
"""
|
|
43209
43657
|
return pulumi.get(self, "cluster_max_shards_per_node")
|
|
43210
43658
|
|
|
43659
|
+
@property
|
|
43660
|
+
@pulumi.getter(name="clusterRoutingAllocationBalancePreferPrimary")
|
|
43661
|
+
def cluster_routing_allocation_balance_prefer_primary(self) -> Optional[bool]:
|
|
43662
|
+
"""
|
|
43663
|
+
When set to true, OpenSearch attempts to evenly distribute the primary shards between the cluster nodes. Enabling this setting does not always guarantee an equal number of primary shards on each node, especially in the event of a failover. Changing this setting to false after it was set to true does not invoke redistribution of primary shards. Default is false. Default: `false`.
|
|
43664
|
+
"""
|
|
43665
|
+
return pulumi.get(self, "cluster_routing_allocation_balance_prefer_primary")
|
|
43666
|
+
|
|
43211
43667
|
@property
|
|
43212
43668
|
@pulumi.getter(name="clusterRoutingAllocationNodeConcurrentRecoveries")
|
|
43213
43669
|
def cluster_routing_allocation_node_concurrent_recoveries(self) -> Optional[int]:
|
|
@@ -43216,6 +43672,11 @@ class GetOpenSearchOpensearchUserConfigOpensearchResult(dict):
|
|
|
43216
43672
|
"""
|
|
43217
43673
|
return pulumi.get(self, "cluster_routing_allocation_node_concurrent_recoveries")
|
|
43218
43674
|
|
|
43675
|
+
@property
|
|
43676
|
+
@pulumi.getter(name="clusterSearchRequestSlowlog")
|
|
43677
|
+
def cluster_search_request_slowlog(self) -> Optional['outputs.GetOpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogResult']:
|
|
43678
|
+
return pulumi.get(self, "cluster_search_request_slowlog")
|
|
43679
|
+
|
|
43219
43680
|
@property
|
|
43220
43681
|
@pulumi.getter(name="emailSenderName")
|
|
43221
43682
|
def email_sender_name(self) -> Optional[str]:
|
|
@@ -43240,6 +43701,14 @@ class GetOpenSearchOpensearchUserConfigOpensearchResult(dict):
|
|
|
43240
43701
|
"""
|
|
43241
43702
|
return pulumi.get(self, "email_sender_username")
|
|
43242
43703
|
|
|
43704
|
+
@property
|
|
43705
|
+
@pulumi.getter(name="enableRemoteBackedStorage")
|
|
43706
|
+
def enable_remote_backed_storage(self) -> Optional[bool]:
|
|
43707
|
+
"""
|
|
43708
|
+
Enable remote-backed storage.
|
|
43709
|
+
"""
|
|
43710
|
+
return pulumi.get(self, "enable_remote_backed_storage")
|
|
43711
|
+
|
|
43243
43712
|
@property
|
|
43244
43713
|
@pulumi.getter(name="enableSecurityAudit")
|
|
43245
43714
|
def enable_security_audit(self) -> Optional[bool]:
|
|
@@ -43453,6 +43922,14 @@ class GetOpenSearchOpensearchUserConfigOpensearchResult(dict):
|
|
|
43453
43922
|
"""
|
|
43454
43923
|
return pulumi.get(self, "search_max_buckets")
|
|
43455
43924
|
|
|
43925
|
+
@property
|
|
43926
|
+
@pulumi.getter
|
|
43927
|
+
def segrep(self) -> Optional['outputs.GetOpenSearchOpensearchUserConfigOpensearchSegrepResult']:
|
|
43928
|
+
"""
|
|
43929
|
+
Segment Replication Backpressure Settings
|
|
43930
|
+
"""
|
|
43931
|
+
return pulumi.get(self, "segrep")
|
|
43932
|
+
|
|
43456
43933
|
@property
|
|
43457
43934
|
@pulumi.getter(name="shardIndexingPressure")
|
|
43458
43935
|
def shard_indexing_pressure(self) -> Optional['outputs.GetOpenSearchOpensearchUserConfigOpensearchShardIndexingPressureResult']:
|
|
@@ -43747,6 +44224,88 @@ class GetOpenSearchOpensearchUserConfigOpensearchAuthFailureListenersIpRateLimit
|
|
|
43747
44224
|
return pulumi.get(self, "type")
|
|
43748
44225
|
|
|
43749
44226
|
|
|
44227
|
+
@pulumi.output_type
|
|
44228
|
+
class GetOpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogResult(dict):
|
|
44229
|
+
def __init__(__self__, *,
|
|
44230
|
+
level: Optional[str] = None,
|
|
44231
|
+
threshold: Optional['outputs.GetOpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogThresholdResult'] = None):
|
|
44232
|
+
"""
|
|
44233
|
+
:param str level: Enum: `debug`, `info`, `trace`, `warn`. Log level. Default: `trace`.
|
|
44234
|
+
"""
|
|
44235
|
+
if level is not None:
|
|
44236
|
+
pulumi.set(__self__, "level", level)
|
|
44237
|
+
if threshold is not None:
|
|
44238
|
+
pulumi.set(__self__, "threshold", threshold)
|
|
44239
|
+
|
|
44240
|
+
@property
|
|
44241
|
+
@pulumi.getter
|
|
44242
|
+
def level(self) -> Optional[str]:
|
|
44243
|
+
"""
|
|
44244
|
+
Enum: `debug`, `info`, `trace`, `warn`. Log level. Default: `trace`.
|
|
44245
|
+
"""
|
|
44246
|
+
return pulumi.get(self, "level")
|
|
44247
|
+
|
|
44248
|
+
@property
|
|
44249
|
+
@pulumi.getter
|
|
44250
|
+
def threshold(self) -> Optional['outputs.GetOpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogThresholdResult']:
|
|
44251
|
+
return pulumi.get(self, "threshold")
|
|
44252
|
+
|
|
44253
|
+
|
|
44254
|
+
@pulumi.output_type
|
|
44255
|
+
class GetOpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogThresholdResult(dict):
|
|
44256
|
+
def __init__(__self__, *,
|
|
44257
|
+
debug: Optional[str] = None,
|
|
44258
|
+
info: Optional[str] = None,
|
|
44259
|
+
trace: Optional[str] = None,
|
|
44260
|
+
warn: Optional[str] = None):
|
|
44261
|
+
"""
|
|
44262
|
+
:param 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.
|
|
44263
|
+
:param 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.
|
|
44264
|
+
:param 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.
|
|
44265
|
+
:param 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.
|
|
44266
|
+
"""
|
|
44267
|
+
if debug is not None:
|
|
44268
|
+
pulumi.set(__self__, "debug", debug)
|
|
44269
|
+
if info is not None:
|
|
44270
|
+
pulumi.set(__self__, "info", info)
|
|
44271
|
+
if trace is not None:
|
|
44272
|
+
pulumi.set(__self__, "trace", trace)
|
|
44273
|
+
if warn is not None:
|
|
44274
|
+
pulumi.set(__self__, "warn", warn)
|
|
44275
|
+
|
|
44276
|
+
@property
|
|
44277
|
+
@pulumi.getter
|
|
44278
|
+
def debug(self) -> Optional[str]:
|
|
44279
|
+
"""
|
|
44280
|
+
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.
|
|
44281
|
+
"""
|
|
44282
|
+
return pulumi.get(self, "debug")
|
|
44283
|
+
|
|
44284
|
+
@property
|
|
44285
|
+
@pulumi.getter
|
|
44286
|
+
def info(self) -> Optional[str]:
|
|
44287
|
+
"""
|
|
44288
|
+
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.
|
|
44289
|
+
"""
|
|
44290
|
+
return pulumi.get(self, "info")
|
|
44291
|
+
|
|
44292
|
+
@property
|
|
44293
|
+
@pulumi.getter
|
|
44294
|
+
def trace(self) -> Optional[str]:
|
|
44295
|
+
"""
|
|
44296
|
+
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.
|
|
44297
|
+
"""
|
|
44298
|
+
return pulumi.get(self, "trace")
|
|
44299
|
+
|
|
44300
|
+
@property
|
|
44301
|
+
@pulumi.getter
|
|
44302
|
+
def warn(self) -> Optional[str]:
|
|
44303
|
+
"""
|
|
44304
|
+
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.
|
|
44305
|
+
"""
|
|
44306
|
+
return pulumi.get(self, "warn")
|
|
44307
|
+
|
|
44308
|
+
|
|
43750
44309
|
@pulumi.output_type
|
|
43751
44310
|
class GetOpenSearchOpensearchUserConfigOpensearchDashboardsResult(dict):
|
|
43752
44311
|
def __init__(__self__, *,
|
|
@@ -44302,6 +44861,61 @@ class GetOpenSearchOpensearchUserConfigOpensearchSearchInsightsTopQueriesMemoryR
|
|
|
44302
44861
|
return pulumi.get(self, "window_size")
|
|
44303
44862
|
|
|
44304
44863
|
|
|
44864
|
+
@pulumi.output_type
|
|
44865
|
+
class GetOpenSearchOpensearchUserConfigOpensearchSegrepResult(dict):
|
|
44866
|
+
def __init__(__self__, *,
|
|
44867
|
+
pressure_checkpoint_limit: Optional[int] = None,
|
|
44868
|
+
pressure_enabled: Optional[bool] = None,
|
|
44869
|
+
pressure_replica_stale_limit: Optional[float] = None,
|
|
44870
|
+
pressure_time_limit: Optional[str] = None):
|
|
44871
|
+
"""
|
|
44872
|
+
:param int pressure_checkpoint_limit: The maximum number of indexing checkpoints that a replica shard can fall behind when copying from primary. Once `segrep.pressure.checkpoint.limit` is breached along with `segrep.pressure.time.limit`, the segment replication backpressure mechanism is initiated. Default is 4 checkpoints. Default: `4`.
|
|
44873
|
+
:param bool pressure_enabled: Enables the segment replication backpressure mechanism. Default is false. Default: `false`.
|
|
44874
|
+
:param float pressure_replica_stale_limit: The maximum number of stale replica shards that can exist in a replication group. Once `segrep.pressure.replica.stale.limit` is breached, the segment replication backpressure mechanism is initiated. Default is .5, which is 50% of a replication group. Default: `0.5`.
|
|
44875
|
+
:param str pressure_time_limit: The maximum amount of time that a replica shard can take to copy from the primary shard. Once segrep.pressure.time.limit is breached along with segrep.pressure.checkpoint.limit, the segment replication backpressure mechanism is initiated. Default is 5 minutes. Default: `5m`.
|
|
44876
|
+
"""
|
|
44877
|
+
if pressure_checkpoint_limit is not None:
|
|
44878
|
+
pulumi.set(__self__, "pressure_checkpoint_limit", pressure_checkpoint_limit)
|
|
44879
|
+
if pressure_enabled is not None:
|
|
44880
|
+
pulumi.set(__self__, "pressure_enabled", pressure_enabled)
|
|
44881
|
+
if pressure_replica_stale_limit is not None:
|
|
44882
|
+
pulumi.set(__self__, "pressure_replica_stale_limit", pressure_replica_stale_limit)
|
|
44883
|
+
if pressure_time_limit is not None:
|
|
44884
|
+
pulumi.set(__self__, "pressure_time_limit", pressure_time_limit)
|
|
44885
|
+
|
|
44886
|
+
@property
|
|
44887
|
+
@pulumi.getter(name="pressureCheckpointLimit")
|
|
44888
|
+
def pressure_checkpoint_limit(self) -> Optional[int]:
|
|
44889
|
+
"""
|
|
44890
|
+
The maximum number of indexing checkpoints that a replica shard can fall behind when copying from primary. Once `segrep.pressure.checkpoint.limit` is breached along with `segrep.pressure.time.limit`, the segment replication backpressure mechanism is initiated. Default is 4 checkpoints. Default: `4`.
|
|
44891
|
+
"""
|
|
44892
|
+
return pulumi.get(self, "pressure_checkpoint_limit")
|
|
44893
|
+
|
|
44894
|
+
@property
|
|
44895
|
+
@pulumi.getter(name="pressureEnabled")
|
|
44896
|
+
def pressure_enabled(self) -> Optional[bool]:
|
|
44897
|
+
"""
|
|
44898
|
+
Enables the segment replication backpressure mechanism. Default is false. Default: `false`.
|
|
44899
|
+
"""
|
|
44900
|
+
return pulumi.get(self, "pressure_enabled")
|
|
44901
|
+
|
|
44902
|
+
@property
|
|
44903
|
+
@pulumi.getter(name="pressureReplicaStaleLimit")
|
|
44904
|
+
def pressure_replica_stale_limit(self) -> Optional[float]:
|
|
44905
|
+
"""
|
|
44906
|
+
The maximum number of stale replica shards that can exist in a replication group. Once `segrep.pressure.replica.stale.limit` is breached, the segment replication backpressure mechanism is initiated. Default is .5, which is 50% of a replication group. Default: `0.5`.
|
|
44907
|
+
"""
|
|
44908
|
+
return pulumi.get(self, "pressure_replica_stale_limit")
|
|
44909
|
+
|
|
44910
|
+
@property
|
|
44911
|
+
@pulumi.getter(name="pressureTimeLimit")
|
|
44912
|
+
def pressure_time_limit(self) -> Optional[str]:
|
|
44913
|
+
"""
|
|
44914
|
+
The maximum amount of time that a replica shard can take to copy from the primary shard. Once segrep.pressure.time.limit is breached along with segrep.pressure.checkpoint.limit, the segment replication backpressure mechanism is initiated. Default is 5 minutes. Default: `5m`.
|
|
44915
|
+
"""
|
|
44916
|
+
return pulumi.get(self, "pressure_time_limit")
|
|
44917
|
+
|
|
44918
|
+
|
|
44305
44919
|
@pulumi.output_type
|
|
44306
44920
|
class GetOpenSearchOpensearchUserConfigOpensearchShardIndexingPressureResult(dict):
|
|
44307
44921
|
def __init__(__self__, *,
|
|
@@ -48934,6 +49548,47 @@ class GetServiceIntegrationEndpointExternalAwsS3UserConfigResult(dict):
|
|
|
48934
49548
|
return pulumi.get(self, "url")
|
|
48935
49549
|
|
|
48936
49550
|
|
|
49551
|
+
@pulumi.output_type
|
|
49552
|
+
class GetServiceIntegrationEndpointExternalAzureBlobStorageUserConfigResult(dict):
|
|
49553
|
+
def __init__(__self__, *,
|
|
49554
|
+
connection_string: str,
|
|
49555
|
+
container: str,
|
|
49556
|
+
blob_path: Optional[str] = None):
|
|
49557
|
+
"""
|
|
49558
|
+
:param str connection_string: Azure Blob Storage connection string. Example: `AccountName=IDENT;AccountKey=SECRET`.
|
|
49559
|
+
:param str container: Container. Example: `container-dev`.
|
|
49560
|
+
:param str blob_path: Blob path. Example: `path/to/blob/file.csv`.
|
|
49561
|
+
"""
|
|
49562
|
+
pulumi.set(__self__, "connection_string", connection_string)
|
|
49563
|
+
pulumi.set(__self__, "container", container)
|
|
49564
|
+
if blob_path is not None:
|
|
49565
|
+
pulumi.set(__self__, "blob_path", blob_path)
|
|
49566
|
+
|
|
49567
|
+
@property
|
|
49568
|
+
@pulumi.getter(name="connectionString")
|
|
49569
|
+
def connection_string(self) -> str:
|
|
49570
|
+
"""
|
|
49571
|
+
Azure Blob Storage connection string. Example: `AccountName=IDENT;AccountKey=SECRET`.
|
|
49572
|
+
"""
|
|
49573
|
+
return pulumi.get(self, "connection_string")
|
|
49574
|
+
|
|
49575
|
+
@property
|
|
49576
|
+
@pulumi.getter
|
|
49577
|
+
def container(self) -> str:
|
|
49578
|
+
"""
|
|
49579
|
+
Container. Example: `container-dev`.
|
|
49580
|
+
"""
|
|
49581
|
+
return pulumi.get(self, "container")
|
|
49582
|
+
|
|
49583
|
+
@property
|
|
49584
|
+
@pulumi.getter(name="blobPath")
|
|
49585
|
+
def blob_path(self) -> Optional[str]:
|
|
49586
|
+
"""
|
|
49587
|
+
Blob path. Example: `path/to/blob/file.csv`.
|
|
49588
|
+
"""
|
|
49589
|
+
return pulumi.get(self, "blob_path")
|
|
49590
|
+
|
|
49591
|
+
|
|
48937
49592
|
@pulumi.output_type
|
|
48938
49593
|
class GetServiceIntegrationEndpointExternalClickhouseUserConfigResult(dict):
|
|
48939
49594
|
def __init__(__self__, *,
|