pulumi-aiven 6.31.0a1736942712__py3-none-any.whl → 6.32.0a1737117101__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/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',
@@ -277,6 +280,7 @@ __all__ = [
277
280
  'ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfig',
278
281
  'ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfig',
279
282
  'ServiceIntegrationEndpointExternalAwsS3UserConfig',
283
+ 'ServiceIntegrationEndpointExternalAzureBlobStorageUserConfig',
280
284
  'ServiceIntegrationEndpointExternalClickhouseUserConfig',
281
285
  'ServiceIntegrationEndpointExternalElasticsearchLogsUserConfig',
282
286
  'ServiceIntegrationEndpointExternalGoogleCloudBigquery',
@@ -434,6 +438,7 @@ __all__ = [
434
438
  'GetKafkaConnectKafkaConnectUserConfigResult',
435
439
  'GetKafkaConnectKafkaConnectUserConfigIpFilterObjectResult',
436
440
  'GetKafkaConnectKafkaConnectUserConfigKafkaConnectResult',
441
+ 'GetKafkaConnectKafkaConnectUserConfigPluginVersionResult',
437
442
  'GetKafkaConnectKafkaConnectUserConfigPrivateAccessResult',
438
443
  'GetKafkaConnectKafkaConnectUserConfigPrivatelinkAccessResult',
439
444
  'GetKafkaConnectKafkaConnectUserConfigPublicAccessResult',
@@ -528,6 +533,8 @@ __all__ = [
528
533
  'GetOpenSearchOpensearchUserConfigOpensearchAuthFailureListenersResult',
529
534
  'GetOpenSearchOpensearchUserConfigOpensearchAuthFailureListenersInternalAuthenticationBackendLimitingResult',
530
535
  'GetOpenSearchOpensearchUserConfigOpensearchAuthFailureListenersIpRateLimitingResult',
536
+ 'GetOpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogResult',
537
+ 'GetOpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogThresholdResult',
531
538
  'GetOpenSearchOpensearchUserConfigOpensearchDashboardsResult',
532
539
  'GetOpenSearchOpensearchUserConfigOpensearchSearchBackpressureResult',
533
540
  'GetOpenSearchOpensearchUserConfigOpensearchSearchBackpressureNodeDuressResult',
@@ -600,6 +607,7 @@ __all__ = [
600
607
  'GetServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigResult',
601
608
  'GetServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigResult',
602
609
  'GetServiceIntegrationEndpointExternalAwsS3UserConfigResult',
610
+ 'GetServiceIntegrationEndpointExternalAzureBlobStorageUserConfigResult',
603
611
  'GetServiceIntegrationEndpointExternalClickhouseUserConfigResult',
604
612
  'GetServiceIntegrationEndpointExternalElasticsearchLogsUserConfigResult',
605
613
  'GetServiceIntegrationEndpointExternalGoogleCloudBigqueryResult',
@@ -5201,6 +5209,8 @@ class FlinkFlinkUserConfig(dict):
5201
5209
  suggest = None
5202
5210
  if key == "additionalBackupRegions":
5203
5211
  suggest = "additional_backup_regions"
5212
+ elif key == "customCode":
5213
+ suggest = "custom_code"
5204
5214
  elif key == "flinkVersion":
5205
5215
  suggest = "flink_version"
5206
5216
  elif key == "ipFilterObjects":
@@ -5237,6 +5247,7 @@ class FlinkFlinkUserConfig(dict):
5237
5247
 
5238
5248
  def __init__(__self__, *,
5239
5249
  additional_backup_regions: Optional[str] = None,
5250
+ custom_code: Optional[bool] = None,
5240
5251
  flink_version: Optional[str] = None,
5241
5252
  ip_filter_objects: Optional[Sequence['outputs.FlinkFlinkUserConfigIpFilterObject']] = None,
5242
5253
  ip_filter_strings: Optional[Sequence[str]] = None,
@@ -5250,6 +5261,7 @@ class FlinkFlinkUserConfig(dict):
5250
5261
  static_ips: Optional[bool] = None):
5251
5262
  """
5252
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.
5253
5265
  :param str flink_version: Enum: `1.16`, `1.19`, `1.20`, and newer. Flink major version.
5254
5266
  :param Sequence['FlinkFlinkUserConfigIpFilterObjectArgs'] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`
5255
5267
  :param Sequence[str] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
@@ -5264,6 +5276,8 @@ class FlinkFlinkUserConfig(dict):
5264
5276
  """
5265
5277
  if additional_backup_regions is not None:
5266
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)
5267
5281
  if flink_version is not None:
5268
5282
  pulumi.set(__self__, "flink_version", flink_version)
5269
5283
  if ip_filter_objects is not None:
@@ -5296,6 +5310,14 @@ class FlinkFlinkUserConfig(dict):
5296
5310
  """
5297
5311
  return pulumi.get(self, "additional_backup_regions")
5298
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
+
5299
5321
  @property
5300
5322
  @pulumi.getter(name="flinkVersion")
5301
5323
  def flink_version(self) -> Optional[str]:
@@ -5737,6 +5759,8 @@ class GrafanaGrafanaUserConfig(dict):
5737
5759
  suggest = "custom_domain"
5738
5760
  elif key == "dashboardPreviewsEnabled":
5739
5761
  suggest = "dashboard_previews_enabled"
5762
+ elif key == "dashboardScenesEnabled":
5763
+ suggest = "dashboard_scenes_enabled"
5740
5764
  elif key == "dashboardsMinRefreshInterval":
5741
5765
  suggest = "dashboards_min_refresh_interval"
5742
5766
  elif key == "dashboardsVersionsToKeep":
@@ -5819,6 +5843,7 @@ class GrafanaGrafanaUserConfig(dict):
5819
5843
  cookie_samesite: Optional[str] = None,
5820
5844
  custom_domain: Optional[str] = None,
5821
5845
  dashboard_previews_enabled: Optional[bool] = None,
5846
+ dashboard_scenes_enabled: Optional[bool] = None,
5822
5847
  dashboards_min_refresh_interval: Optional[str] = None,
5823
5848
  dashboards_versions_to_keep: Optional[int] = None,
5824
5849
  dataproxy_send_user_header: Optional[bool] = None,
@@ -5863,6 +5888,7 @@ class GrafanaGrafanaUserConfig(dict):
5863
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.
5864
5889
  :param str custom_domain: Serve the web frontend using a custom CNAME pointing to the Aiven DNS name. Example: `grafana.example.org`.
5865
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/.
5866
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`.
5867
5893
  :param int dashboards_versions_to_keep: Dashboard versions to keep per dashboard. Example: `20`.
5868
5894
  :param bool dataproxy_send_user_header: Send `X-Grafana-User` header to data source.
@@ -5922,6 +5948,8 @@ class GrafanaGrafanaUserConfig(dict):
5922
5948
  pulumi.set(__self__, "custom_domain", custom_domain)
5923
5949
  if dashboard_previews_enabled is not None:
5924
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)
5925
5953
  if dashboards_min_refresh_interval is not None:
5926
5954
  pulumi.set(__self__, "dashboards_min_refresh_interval", dashboards_min_refresh_interval)
5927
5955
  if dashboards_versions_to_keep is not None:
@@ -6099,6 +6127,14 @@ class GrafanaGrafanaUserConfig(dict):
6099
6127
  """
6100
6128
  return pulumi.get(self, "dashboard_previews_enabled")
6101
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
+
6102
6138
  @property
6103
6139
  @pulumi.getter(name="dashboardsMinRefreshInterval")
6104
6140
  def dashboards_min_refresh_interval(self) -> Optional[str]:
@@ -8517,6 +8553,8 @@ class KafkaConnectKafkaConnectUserConfig(dict):
8517
8553
  suggest = "ip_filters"
8518
8554
  elif key == "kafkaConnect":
8519
8555
  suggest = "kafka_connect"
8556
+ elif key == "pluginVersions":
8557
+ suggest = "plugin_versions"
8520
8558
  elif key == "privateAccess":
8521
8559
  suggest = "private_access"
8522
8560
  elif key == "privatelinkAccess":
@@ -8547,6 +8585,7 @@ class KafkaConnectKafkaConnectUserConfig(dict):
8547
8585
  ip_filter_strings: Optional[Sequence[str]] = None,
8548
8586
  ip_filters: Optional[Sequence[str]] = None,
8549
8587
  kafka_connect: Optional['outputs.KafkaConnectKafkaConnectUserConfigKafkaConnect'] = None,
8588
+ plugin_versions: Optional[Sequence['outputs.KafkaConnectKafkaConnectUserConfigPluginVersion']] = None,
8550
8589
  private_access: Optional['outputs.KafkaConnectKafkaConnectUserConfigPrivateAccess'] = None,
8551
8590
  privatelink_access: Optional['outputs.KafkaConnectKafkaConnectUserConfigPrivatelinkAccess'] = None,
8552
8591
  public_access: Optional['outputs.KafkaConnectKafkaConnectUserConfigPublicAccess'] = None,
@@ -8559,6 +8598,7 @@ class KafkaConnectKafkaConnectUserConfig(dict):
8559
8598
  :param Sequence[str] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
8560
8599
  :param Sequence[str] ip_filters: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
8561
8600
  :param 'KafkaConnectKafkaConnectUserConfigKafkaConnectArgs' kafka_connect: Kafka Connect configuration values
8601
+ :param Sequence['KafkaConnectKafkaConnectUserConfigPluginVersionArgs'] plugin_versions: The plugin selected by the user
8562
8602
  :param 'KafkaConnectKafkaConnectUserConfigPrivateAccessArgs' private_access: Allow access to selected service ports from private networks
8563
8603
  :param 'KafkaConnectKafkaConnectUserConfigPrivatelinkAccessArgs' privatelink_access: Allow access to selected service components through Privatelink
8564
8604
  :param 'KafkaConnectKafkaConnectUserConfigPublicAccessArgs' public_access: Allow access to selected service ports from the public Internet
@@ -8575,6 +8615,8 @@ class KafkaConnectKafkaConnectUserConfig(dict):
8575
8615
  pulumi.set(__self__, "ip_filters", ip_filters)
8576
8616
  if kafka_connect is not None:
8577
8617
  pulumi.set(__self__, "kafka_connect", kafka_connect)
8618
+ if plugin_versions is not None:
8619
+ pulumi.set(__self__, "plugin_versions", plugin_versions)
8578
8620
  if private_access is not None:
8579
8621
  pulumi.set(__self__, "private_access", private_access)
8580
8622
  if privatelink_access is not None:
@@ -8630,6 +8672,14 @@ class KafkaConnectKafkaConnectUserConfig(dict):
8630
8672
  """
8631
8673
  return pulumi.get(self, "kafka_connect")
8632
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
+
8633
8683
  @property
8634
8684
  @pulumi.getter(name="privateAccess")
8635
8685
  def private_access(self) -> Optional['outputs.KafkaConnectKafkaConnectUserConfigPrivateAccess']:
@@ -8952,6 +9002,52 @@ class KafkaConnectKafkaConnectUserConfigKafkaConnect(dict):
8952
9002
  return pulumi.get(self, "session_timeout_ms")
8953
9003
 
8954
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
+
8955
9051
  @pulumi.output_type
8956
9052
  class KafkaConnectKafkaConnectUserConfigPrivateAccess(dict):
8957
9053
  @staticmethod
@@ -17395,12 +17491,16 @@ class OpenSearchOpensearchUserConfigOpensearch(dict):
17395
17491
  suggest = "cluster_routing_allocation_balance_prefer_primary"
17396
17492
  elif key == "clusterRoutingAllocationNodeConcurrentRecoveries":
17397
17493
  suggest = "cluster_routing_allocation_node_concurrent_recoveries"
17494
+ elif key == "clusterSearchRequestSlowlog":
17495
+ suggest = "cluster_search_request_slowlog"
17398
17496
  elif key == "emailSenderName":
17399
17497
  suggest = "email_sender_name"
17400
17498
  elif key == "emailSenderPassword":
17401
17499
  suggest = "email_sender_password"
17402
17500
  elif key == "emailSenderUsername":
17403
17501
  suggest = "email_sender_username"
17502
+ elif key == "enableRemoteBackedStorage":
17503
+ suggest = "enable_remote_backed_storage"
17404
17504
  elif key == "enableSecurityAudit":
17405
17505
  suggest = "enable_security_audit"
17406
17506
  elif key == "httpMaxContentLength":
@@ -17498,9 +17598,11 @@ class OpenSearchOpensearchUserConfigOpensearch(dict):
17498
17598
  cluster_max_shards_per_node: Optional[int] = None,
17499
17599
  cluster_routing_allocation_balance_prefer_primary: Optional[bool] = None,
17500
17600
  cluster_routing_allocation_node_concurrent_recoveries: Optional[int] = None,
17601
+ cluster_search_request_slowlog: Optional['outputs.OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlog'] = None,
17501
17602
  email_sender_name: Optional[str] = None,
17502
17603
  email_sender_password: Optional[str] = None,
17503
17604
  email_sender_username: Optional[str] = None,
17605
+ enable_remote_backed_storage: Optional[bool] = None,
17504
17606
  enable_security_audit: Optional[bool] = None,
17505
17607
  http_max_content_length: Optional[int] = None,
17506
17608
  http_max_header_size: Optional[int] = None,
@@ -17551,6 +17653,7 @@ class OpenSearchOpensearchUserConfigOpensearch(dict):
17551
17653
  :param str email_sender_name: Sender name placeholder to be used in Opensearch Dashboards and Opensearch keystore. Example: `alert-sender`.
17552
17654
  :param str email_sender_password: Sender password for Opensearch alerts to authenticate with SMTP server. Example: `very-secure-mail-password`.
17553
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.
17554
17657
  :param bool enable_security_audit: Enable/Disable security audit.
17555
17658
  :param int http_max_content_length: Maximum content length for HTTP requests to the OpenSearch HTTP API, in bytes.
17556
17659
  :param int http_max_header_size: The max size of allowed headers, in bytes. Example: `8192`.
@@ -17603,12 +17706,16 @@ class OpenSearchOpensearchUserConfigOpensearch(dict):
17603
17706
  pulumi.set(__self__, "cluster_routing_allocation_balance_prefer_primary", cluster_routing_allocation_balance_prefer_primary)
17604
17707
  if cluster_routing_allocation_node_concurrent_recoveries is not None:
17605
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)
17606
17711
  if email_sender_name is not None:
17607
17712
  pulumi.set(__self__, "email_sender_name", email_sender_name)
17608
17713
  if email_sender_password is not None:
17609
17714
  pulumi.set(__self__, "email_sender_password", email_sender_password)
17610
17715
  if email_sender_username is not None:
17611
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)
17612
17719
  if enable_security_audit is not None:
17613
17720
  pulumi.set(__self__, "enable_security_audit", enable_security_audit)
17614
17721
  if http_max_content_length is not None:
@@ -17738,6 +17845,11 @@ class OpenSearchOpensearchUserConfigOpensearch(dict):
17738
17845
  """
17739
17846
  return pulumi.get(self, "cluster_routing_allocation_node_concurrent_recoveries")
17740
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
+
17741
17853
  @property
17742
17854
  @pulumi.getter(name="emailSenderName")
17743
17855
  def email_sender_name(self) -> Optional[str]:
@@ -17762,6 +17874,14 @@ class OpenSearchOpensearchUserConfigOpensearch(dict):
17762
17874
  """
17763
17875
  return pulumi.get(self, "email_sender_username")
17764
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
+
17765
17885
  @property
17766
17886
  @pulumi.getter(name="enableSecurityAudit")
17767
17887
  def enable_security_audit(self) -> Optional[bool]:
@@ -18348,6 +18468,88 @@ class OpenSearchOpensearchUserConfigOpensearchAuthFailureListenersIpRateLimiting
18348
18468
  return pulumi.get(self, "type")
18349
18469
 
18350
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
+
18351
18553
  @pulumi.output_type
18352
18554
  class OpenSearchOpensearchUserConfigOpensearchDashboards(dict):
18353
18555
  @staticmethod
@@ -24852,6 +25054,66 @@ class ServiceIntegrationEndpointExternalAwsS3UserConfig(dict):
24852
25054
  return pulumi.get(self, "url")
24853
25055
 
24854
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
+
24855
25117
  @pulumi.output_type
24856
25118
  class ServiceIntegrationEndpointExternalClickhouseUserConfig(dict):
24857
25119
  def __init__(__self__, *,
@@ -33280,6 +33542,7 @@ class GetFlinkFlinkResult(dict):
33280
33542
  class GetFlinkFlinkUserConfigResult(dict):
33281
33543
  def __init__(__self__, *,
33282
33544
  additional_backup_regions: Optional[str] = None,
33545
+ custom_code: Optional[bool] = None,
33283
33546
  flink_version: Optional[str] = None,
33284
33547
  ip_filter_objects: Optional[Sequence['outputs.GetFlinkFlinkUserConfigIpFilterObjectResult']] = None,
33285
33548
  ip_filter_strings: Optional[Sequence[str]] = None,
@@ -33293,6 +33556,7 @@ class GetFlinkFlinkUserConfigResult(dict):
33293
33556
  static_ips: Optional[bool] = None):
33294
33557
  """
33295
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.
33296
33560
  :param str flink_version: Enum: `1.16`, `1.19`, `1.20`, and newer. Flink major version.
33297
33561
  :param Sequence['GetFlinkFlinkUserConfigIpFilterObjectArgs'] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`
33298
33562
  :param Sequence[str] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
@@ -33307,6 +33571,8 @@ class GetFlinkFlinkUserConfigResult(dict):
33307
33571
  """
33308
33572
  if additional_backup_regions is not None:
33309
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)
33310
33576
  if flink_version is not None:
33311
33577
  pulumi.set(__self__, "flink_version", flink_version)
33312
33578
  if ip_filter_objects is not None:
@@ -33339,6 +33605,14 @@ class GetFlinkFlinkUserConfigResult(dict):
33339
33605
  """
33340
33606
  return pulumi.get(self, "additional_backup_regions")
33341
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
+
33342
33616
  @property
33343
33617
  @pulumi.getter(name="flinkVersion")
33344
33618
  def flink_version(self) -> Optional[str]:
@@ -33716,6 +33990,7 @@ class GetGrafanaGrafanaUserConfigResult(dict):
33716
33990
  cookie_samesite: Optional[str] = None,
33717
33991
  custom_domain: Optional[str] = None,
33718
33992
  dashboard_previews_enabled: Optional[bool] = None,
33993
+ dashboard_scenes_enabled: Optional[bool] = None,
33719
33994
  dashboards_min_refresh_interval: Optional[str] = None,
33720
33995
  dashboards_versions_to_keep: Optional[int] = None,
33721
33996
  dataproxy_send_user_header: Optional[bool] = None,
@@ -33760,6 +34035,7 @@ class GetGrafanaGrafanaUserConfigResult(dict):
33760
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.
33761
34036
  :param str custom_domain: Serve the web frontend using a custom CNAME pointing to the Aiven DNS name. Example: `grafana.example.org`.
33762
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/.
33763
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`.
33764
34040
  :param int dashboards_versions_to_keep: Dashboard versions to keep per dashboard. Example: `20`.
33765
34041
  :param bool dataproxy_send_user_header: Send `X-Grafana-User` header to data source.
@@ -33819,6 +34095,8 @@ class GetGrafanaGrafanaUserConfigResult(dict):
33819
34095
  pulumi.set(__self__, "custom_domain", custom_domain)
33820
34096
  if dashboard_previews_enabled is not None:
33821
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)
33822
34100
  if dashboards_min_refresh_interval is not None:
33823
34101
  pulumi.set(__self__, "dashboards_min_refresh_interval", dashboards_min_refresh_interval)
33824
34102
  if dashboards_versions_to_keep is not None:
@@ -33996,6 +34274,14 @@ class GetGrafanaGrafanaUserConfigResult(dict):
33996
34274
  """
33997
34275
  return pulumi.get(self, "dashboard_previews_enabled")
33998
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
+
33999
34285
  @property
34000
34286
  @pulumi.getter(name="dashboardsMinRefreshInterval")
34001
34287
  def dashboards_min_refresh_interval(self) -> Optional[str]:
@@ -35924,6 +36210,7 @@ class GetKafkaConnectKafkaConnectUserConfigResult(dict):
35924
36210
  ip_filter_strings: Optional[Sequence[str]] = None,
35925
36211
  ip_filters: Optional[Sequence[str]] = None,
35926
36212
  kafka_connect: Optional['outputs.GetKafkaConnectKafkaConnectUserConfigKafkaConnectResult'] = None,
36213
+ plugin_versions: Optional[Sequence['outputs.GetKafkaConnectKafkaConnectUserConfigPluginVersionResult']] = None,
35927
36214
  private_access: Optional['outputs.GetKafkaConnectKafkaConnectUserConfigPrivateAccessResult'] = None,
35928
36215
  privatelink_access: Optional['outputs.GetKafkaConnectKafkaConnectUserConfigPrivatelinkAccessResult'] = None,
35929
36216
  public_access: Optional['outputs.GetKafkaConnectKafkaConnectUserConfigPublicAccessResult'] = None,
@@ -35936,6 +36223,7 @@ class GetKafkaConnectKafkaConnectUserConfigResult(dict):
35936
36223
  :param Sequence[str] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
35937
36224
  :param Sequence[str] ip_filters: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
35938
36225
  :param 'GetKafkaConnectKafkaConnectUserConfigKafkaConnectArgs' kafka_connect: Kafka Connect configuration values
36226
+ :param Sequence['GetKafkaConnectKafkaConnectUserConfigPluginVersionArgs'] plugin_versions: The plugin selected by the user
35939
36227
  :param 'GetKafkaConnectKafkaConnectUserConfigPrivateAccessArgs' private_access: Allow access to selected service ports from private networks
35940
36228
  :param 'GetKafkaConnectKafkaConnectUserConfigPrivatelinkAccessArgs' privatelink_access: Allow access to selected service components through Privatelink
35941
36229
  :param 'GetKafkaConnectKafkaConnectUserConfigPublicAccessArgs' public_access: Allow access to selected service ports from the public Internet
@@ -35952,6 +36240,8 @@ class GetKafkaConnectKafkaConnectUserConfigResult(dict):
35952
36240
  pulumi.set(__self__, "ip_filters", ip_filters)
35953
36241
  if kafka_connect is not None:
35954
36242
  pulumi.set(__self__, "kafka_connect", kafka_connect)
36243
+ if plugin_versions is not None:
36244
+ pulumi.set(__self__, "plugin_versions", plugin_versions)
35955
36245
  if private_access is not None:
35956
36246
  pulumi.set(__self__, "private_access", private_access)
35957
36247
  if privatelink_access is not None:
@@ -36007,6 +36297,14 @@ class GetKafkaConnectKafkaConnectUserConfigResult(dict):
36007
36297
  """
36008
36298
  return pulumi.get(self, "kafka_connect")
36009
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
+
36010
36308
  @property
36011
36309
  @pulumi.getter(name="privateAccess")
36012
36310
  def private_access(self) -> Optional['outputs.GetKafkaConnectKafkaConnectUserConfigPrivateAccessResult']:
@@ -36282,6 +36580,35 @@ class GetKafkaConnectKafkaConnectUserConfigKafkaConnectResult(dict):
36282
36580
  return pulumi.get(self, "session_timeout_ms")
36283
36581
 
36284
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
+
36285
36612
  @pulumi.output_type
36286
36613
  class GetKafkaConnectKafkaConnectUserConfigPrivateAccessResult(dict):
36287
36614
  def __init__(__self__, *,
@@ -43098,9 +43425,11 @@ class GetOpenSearchOpensearchUserConfigOpensearchResult(dict):
43098
43425
  cluster_max_shards_per_node: Optional[int] = None,
43099
43426
  cluster_routing_allocation_balance_prefer_primary: Optional[bool] = None,
43100
43427
  cluster_routing_allocation_node_concurrent_recoveries: Optional[int] = None,
43428
+ cluster_search_request_slowlog: Optional['outputs.GetOpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogResult'] = None,
43101
43429
  email_sender_name: Optional[str] = None,
43102
43430
  email_sender_password: Optional[str] = None,
43103
43431
  email_sender_username: Optional[str] = None,
43432
+ enable_remote_backed_storage: Optional[bool] = None,
43104
43433
  enable_security_audit: Optional[bool] = None,
43105
43434
  http_max_content_length: Optional[int] = None,
43106
43435
  http_max_header_size: Optional[int] = None,
@@ -43151,6 +43480,7 @@ class GetOpenSearchOpensearchUserConfigOpensearchResult(dict):
43151
43480
  :param str email_sender_name: Sender name placeholder to be used in Opensearch Dashboards and Opensearch keystore. Example: `alert-sender`.
43152
43481
  :param str email_sender_password: Sender password for Opensearch alerts to authenticate with SMTP server. Example: `very-secure-mail-password`.
43153
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.
43154
43484
  :param bool enable_security_audit: Enable/Disable security audit.
43155
43485
  :param int http_max_content_length: Maximum content length for HTTP requests to the OpenSearch HTTP API, in bytes.
43156
43486
  :param int http_max_header_size: The max size of allowed headers, in bytes. Example: `8192`.
@@ -43203,12 +43533,16 @@ class GetOpenSearchOpensearchUserConfigOpensearchResult(dict):
43203
43533
  pulumi.set(__self__, "cluster_routing_allocation_balance_prefer_primary", cluster_routing_allocation_balance_prefer_primary)
43204
43534
  if cluster_routing_allocation_node_concurrent_recoveries is not None:
43205
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)
43206
43538
  if email_sender_name is not None:
43207
43539
  pulumi.set(__self__, "email_sender_name", email_sender_name)
43208
43540
  if email_sender_password is not None:
43209
43541
  pulumi.set(__self__, "email_sender_password", email_sender_password)
43210
43542
  if email_sender_username is not None:
43211
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)
43212
43546
  if enable_security_audit is not None:
43213
43547
  pulumi.set(__self__, "enable_security_audit", enable_security_audit)
43214
43548
  if http_max_content_length is not None:
@@ -43338,6 +43672,11 @@ class GetOpenSearchOpensearchUserConfigOpensearchResult(dict):
43338
43672
  """
43339
43673
  return pulumi.get(self, "cluster_routing_allocation_node_concurrent_recoveries")
43340
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
+
43341
43680
  @property
43342
43681
  @pulumi.getter(name="emailSenderName")
43343
43682
  def email_sender_name(self) -> Optional[str]:
@@ -43362,6 +43701,14 @@ class GetOpenSearchOpensearchUserConfigOpensearchResult(dict):
43362
43701
  """
43363
43702
  return pulumi.get(self, "email_sender_username")
43364
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
+
43365
43712
  @property
43366
43713
  @pulumi.getter(name="enableSecurityAudit")
43367
43714
  def enable_security_audit(self) -> Optional[bool]:
@@ -43877,6 +44224,88 @@ class GetOpenSearchOpensearchUserConfigOpensearchAuthFailureListenersIpRateLimit
43877
44224
  return pulumi.get(self, "type")
43878
44225
 
43879
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
+
43880
44309
  @pulumi.output_type
43881
44310
  class GetOpenSearchOpensearchUserConfigOpensearchDashboardsResult(dict):
43882
44311
  def __init__(__self__, *,
@@ -49119,6 +49548,47 @@ class GetServiceIntegrationEndpointExternalAwsS3UserConfigResult(dict):
49119
49548
  return pulumi.get(self, "url")
49120
49549
 
49121
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
+
49122
49592
  @pulumi.output_type
49123
49593
  class GetServiceIntegrationEndpointExternalClickhouseUserConfigResult(dict):
49124
49594
  def __init__(__self__, *,