pulumi-aiven 6.27.0a1729894273__py3-none-any.whl → 6.28.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.

Files changed (62) hide show
  1. pulumi_aiven/__init__.py +1 -0
  2. pulumi_aiven/_inputs.py +1560 -200
  3. pulumi_aiven/account_team_project.py +7 -7
  4. pulumi_aiven/cassandra.py +8 -8
  5. pulumi_aiven/clickhouse.py +8 -8
  6. pulumi_aiven/dragonfly.py +8 -8
  7. pulumi_aiven/flink.py +8 -8
  8. pulumi_aiven/get_account_team_project.py +1 -1
  9. pulumi_aiven/get_cassanda.py +1 -1
  10. pulumi_aiven/get_cassandra.py +1 -1
  11. pulumi_aiven/get_clickhouse.py +1 -1
  12. pulumi_aiven/get_dragonfly.py +1 -1
  13. pulumi_aiven/get_flink.py +1 -1
  14. pulumi_aiven/get_grafana.py +1 -1
  15. pulumi_aiven/get_kafka.py +1 -1
  16. pulumi_aiven/get_kafka_connect.py +1 -1
  17. pulumi_aiven/get_kafka_mirror_maker.py +1 -1
  18. pulumi_aiven/get_kafka_schema.py +1 -1
  19. pulumi_aiven/get_kafka_schema_configuration.py +1 -1
  20. pulumi_aiven/get_kafka_topic.py +1 -1
  21. pulumi_aiven/get_m3_aggregator.py +1 -1
  22. pulumi_aiven/get_m3_db.py +1 -1
  23. pulumi_aiven/get_mirror_maker_replication_flow.py +1 -1
  24. pulumi_aiven/get_my_sql.py +1 -1
  25. pulumi_aiven/get_open_search.py +1 -1
  26. pulumi_aiven/get_organization_user_list.py +121 -0
  27. pulumi_aiven/get_pg.py +1 -1
  28. pulumi_aiven/get_project_user.py +1 -1
  29. pulumi_aiven/get_redis.py +1 -1
  30. pulumi_aiven/get_service_component.py +9 -9
  31. pulumi_aiven/get_service_integration.py +17 -17
  32. pulumi_aiven/get_service_integration_endpoint.py +59 -31
  33. pulumi_aiven/get_thanos.py +21 -1
  34. pulumi_aiven/get_valkey.py +1 -1
  35. pulumi_aiven/grafana.py +8 -8
  36. pulumi_aiven/influx_db.py +15 -8
  37. pulumi_aiven/kafka.py +8 -8
  38. pulumi_aiven/kafka_connect.py +8 -8
  39. pulumi_aiven/kafka_mirror_maker.py +8 -8
  40. pulumi_aiven/kafka_schema.py +7 -7
  41. pulumi_aiven/kafka_topic.py +11 -9
  42. pulumi_aiven/m3_aggregator.py +8 -8
  43. pulumi_aiven/m3_db.py +8 -8
  44. pulumi_aiven/mirror_maker_replication_flow.py +7 -7
  45. pulumi_aiven/my_sql.py +8 -8
  46. pulumi_aiven/open_search.py +8 -8
  47. pulumi_aiven/organization_group_project.py +17 -9
  48. pulumi_aiven/organization_permission.py +49 -49
  49. pulumi_aiven/outputs.py +2437 -354
  50. pulumi_aiven/pg.py +8 -8
  51. pulumi_aiven/project.py +1 -1
  52. pulumi_aiven/project_user.py +15 -7
  53. pulumi_aiven/pulumi-plugin.json +1 -1
  54. pulumi_aiven/redis.py +8 -8
  55. pulumi_aiven/service_integration.py +139 -123
  56. pulumi_aiven/service_integration_endpoint.py +302 -140
  57. pulumi_aiven/thanos.py +58 -8
  58. pulumi_aiven/valkey.py +8 -8
  59. {pulumi_aiven-6.27.0a1729894273.dist-info → pulumi_aiven-6.28.0.dist-info}/METADATA +1 -1
  60. {pulumi_aiven-6.27.0a1729894273.dist-info → pulumi_aiven-6.28.0.dist-info}/RECORD +62 -61
  61. {pulumi_aiven-6.27.0a1729894273.dist-info → pulumi_aiven-6.28.0.dist-info}/WHEEL +1 -1
  62. {pulumi_aiven-6.27.0a1729894273.dist-info → pulumi_aiven-6.28.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,121 @@
1
+ # coding=utf-8
2
+ # *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
3
+ # *** Do not edit by hand unless you're certain you know what you are doing! ***
4
+
5
+ import copy
6
+ import warnings
7
+ import sys
8
+ import pulumi
9
+ import pulumi.runtime
10
+ from typing import Any, Mapping, Optional, Sequence, Union, overload
11
+ if sys.version_info >= (3, 11):
12
+ from typing import NotRequired, TypedDict, TypeAlias
13
+ else:
14
+ from typing_extensions import NotRequired, TypedDict, TypeAlias
15
+ from . import _utilities
16
+ from . import outputs
17
+
18
+ __all__ = [
19
+ 'GetOrganizationUserListResult',
20
+ 'AwaitableGetOrganizationUserListResult',
21
+ 'get_organization_user_list',
22
+ 'get_organization_user_list_output',
23
+ ]
24
+
25
+ @pulumi.output_type
26
+ class GetOrganizationUserListResult:
27
+ """
28
+ A collection of values returned by getOrganizationUserList.
29
+ """
30
+ def __init__(__self__, id=None, name=None, users=None):
31
+ if id and not isinstance(id, str):
32
+ raise TypeError("Expected argument 'id' to be a str")
33
+ pulumi.set(__self__, "id", id)
34
+ if name and not isinstance(name, str):
35
+ raise TypeError("Expected argument 'name' to be a str")
36
+ pulumi.set(__self__, "name", name)
37
+ if users and not isinstance(users, list):
38
+ raise TypeError("Expected argument 'users' to be a list")
39
+ pulumi.set(__self__, "users", users)
40
+
41
+ @property
42
+ @pulumi.getter
43
+ def id(self) -> Optional[str]:
44
+ """
45
+ Organization id. Example: `org12345678`.
46
+ """
47
+ return pulumi.get(self, "id")
48
+
49
+ @property
50
+ @pulumi.getter
51
+ def name(self) -> Optional[str]:
52
+ """
53
+ Organization name. Example: `aiven`.
54
+ """
55
+ return pulumi.get(self, "name")
56
+
57
+ @property
58
+ @pulumi.getter
59
+ def users(self) -> Sequence['outputs.GetOrganizationUserListUserResult']:
60
+ """
61
+ List of users of the organization
62
+ """
63
+ return pulumi.get(self, "users")
64
+
65
+
66
+ class AwaitableGetOrganizationUserListResult(GetOrganizationUserListResult):
67
+ # pylint: disable=using-constant-test
68
+ def __await__(self):
69
+ if False:
70
+ yield self
71
+ return GetOrganizationUserListResult(
72
+ id=self.id,
73
+ name=self.name,
74
+ users=self.users)
75
+
76
+
77
+ def get_organization_user_list(id: Optional[str] = None,
78
+ name: Optional[str] = None,
79
+ opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetOrganizationUserListResult:
80
+ """
81
+ List of users of the organization.
82
+
83
+ **This resource is in the beta stage and may change without notice.** Set
84
+ the `PROVIDER_AIVEN_ENABLE_BETA` environment variable to use the resource.
85
+
86
+
87
+ :param str id: Organization id. Example: `org12345678`.
88
+ :param str name: Organization name. Example: `aiven`.
89
+ """
90
+ __args__ = dict()
91
+ __args__['id'] = id
92
+ __args__['name'] = name
93
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
94
+ __ret__ = pulumi.runtime.invoke('aiven:index/getOrganizationUserList:getOrganizationUserList', __args__, opts=opts, typ=GetOrganizationUserListResult).value
95
+
96
+ return AwaitableGetOrganizationUserListResult(
97
+ id=pulumi.get(__ret__, 'id'),
98
+ name=pulumi.get(__ret__, 'name'),
99
+ users=pulumi.get(__ret__, 'users'))
100
+ def get_organization_user_list_output(id: Optional[pulumi.Input[Optional[str]]] = None,
101
+ name: Optional[pulumi.Input[Optional[str]]] = None,
102
+ opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetOrganizationUserListResult]:
103
+ """
104
+ List of users of the organization.
105
+
106
+ **This resource is in the beta stage and may change without notice.** Set
107
+ the `PROVIDER_AIVEN_ENABLE_BETA` environment variable to use the resource.
108
+
109
+
110
+ :param str id: Organization id. Example: `org12345678`.
111
+ :param str name: Organization name. Example: `aiven`.
112
+ """
113
+ __args__ = dict()
114
+ __args__['id'] = id
115
+ __args__['name'] = name
116
+ opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
117
+ __ret__ = pulumi.runtime.invoke_output('aiven:index/getOrganizationUserList:getOrganizationUserList', __args__, opts=opts, typ=GetOrganizationUserListResult)
118
+ return __ret__.apply(lambda __response__: GetOrganizationUserListResult(
119
+ id=pulumi.get(__response__, 'id'),
120
+ name=pulumi.get(__response__, 'name'),
121
+ users=pulumi.get(__response__, 'users')))
pulumi_aiven/get_pg.py CHANGED
@@ -208,7 +208,7 @@ class GetPgResult:
208
208
  @pulumi.getter(name="pgUserConfigs")
209
209
  def pg_user_configs(self) -> Sequence['outputs.GetPgPgUserConfigResult']:
210
210
  """
211
- Pg user configurable settings
211
+ Pg user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
212
212
  """
213
213
  return pulumi.get(self, "pg_user_configs")
214
214
 
@@ -71,7 +71,7 @@ class GetProjectUserResult:
71
71
  @pulumi.getter(name="memberType")
72
72
  def member_type(self) -> str:
73
73
  """
74
- Project membership type. The possible values are `admin`, `developer`, `operator`, `project:permissions:read` and `read_only`.
74
+ Project membership type. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:billing:read`, `organization:billing:write`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization:network:read`, `organization:network:write`, `organization:permissions:read`, `organization:permissions:write`, `organization:projects:read`, `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`.
75
75
  """
76
76
  return pulumi.get(self, "member_type")
77
77
 
pulumi_aiven/get_redis.py CHANGED
@@ -240,7 +240,7 @@ class GetRedisResult:
240
240
  @pulumi.getter(name="redisUserConfigs")
241
241
  def redis_user_configs(self) -> Sequence['outputs.GetRedisRedisUserConfigResult']:
242
242
  """
243
- Redis user configurable settings
243
+ Redis user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
244
244
  """
245
245
  return pulumi.get(self, "redis_user_configs")
246
246
 
@@ -86,7 +86,7 @@ class GetServiceComponentResult:
86
86
  @pulumi.getter(name="kafkaAuthenticationMethod")
87
87
  def kafka_authentication_method(self) -> Optional[str]:
88
88
  """
89
- Kafka authentication method. This is a value specific to the 'kafka' service component
89
+ Kafka authentication method. This is a value specific to the 'kafka' service component. The possible values are `certificate` and `sasl`.
90
90
  """
91
91
  return pulumi.get(self, "kafka_authentication_method")
92
92
 
@@ -110,7 +110,7 @@ class GetServiceComponentResult:
110
110
  @pulumi.getter
111
111
  def route(self) -> Optional[str]:
112
112
  """
113
- Network access route
113
+ Network access route. The possible values are `dynamic`, `public`, `private` and `privatelink`.
114
114
  """
115
115
  return pulumi.get(self, "route")
116
116
 
@@ -134,7 +134,7 @@ class GetServiceComponentResult:
134
134
  @pulumi.getter
135
135
  def usage(self) -> Optional[str]:
136
136
  """
137
- DNS usage name
137
+ DNS usage name. The possible values are `disaster_recovery`, `primary` and `replica`.
138
138
  """
139
139
  return pulumi.get(self, "usage")
140
140
 
@@ -185,12 +185,12 @@ def get_service_component(component: Optional[str] = None,
185
185
 
186
186
 
187
187
  :param str component: Service component name
188
- :param str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
188
+ :param str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component. The possible values are `certificate` and `sasl`.
189
189
  :param str project: Project name
190
- :param str route: Network access route
190
+ :param str route: Network access route. The possible values are `dynamic`, `public`, `private` and `privatelink`.
191
191
  :param str service_name: Service name
192
192
  :param bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components that may disable encryption
193
- :param str usage: DNS usage name
193
+ :param str usage: DNS usage name. The possible values are `disaster_recovery`, `primary` and `replica`.
194
194
  """
195
195
  __args__ = dict()
196
196
  __args__['component'] = component
@@ -242,12 +242,12 @@ def get_service_component_output(component: Optional[pulumi.Input[str]] = None,
242
242
 
243
243
 
244
244
  :param str component: Service component name
245
- :param str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component
245
+ :param str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component. The possible values are `certificate` and `sasl`.
246
246
  :param str project: Project name
247
- :param str route: Network access route
247
+ :param str route: Network access route. The possible values are `dynamic`, `public`, `private` and `privatelink`.
248
248
  :param str service_name: Service name
249
249
  :param bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components that may disable encryption
250
- :param str usage: DNS usage name
250
+ :param str usage: DNS usage name. The possible values are `disaster_recovery`, `primary` and `replica`.
251
251
  """
252
252
  __args__ = dict()
253
253
  __args__['component'] = component
@@ -99,7 +99,7 @@ class GetServiceIntegrationResult:
99
99
  @pulumi.getter(name="clickhouseKafkaUserConfigs")
100
100
  def clickhouse_kafka_user_configs(self) -> Sequence['outputs.GetServiceIntegrationClickhouseKafkaUserConfigResult']:
101
101
  """
102
- ClickhouseKafka user configurable settings
102
+ ClickhouseKafka user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
103
103
  """
104
104
  return pulumi.get(self, "clickhouse_kafka_user_configs")
105
105
 
@@ -107,7 +107,7 @@ class GetServiceIntegrationResult:
107
107
  @pulumi.getter(name="clickhousePostgresqlUserConfigs")
108
108
  def clickhouse_postgresql_user_configs(self) -> Sequence['outputs.GetServiceIntegrationClickhousePostgresqlUserConfigResult']:
109
109
  """
110
- ClickhousePostgresql user configurable settings
110
+ ClickhousePostgresql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
111
111
  """
112
112
  return pulumi.get(self, "clickhouse_postgresql_user_configs")
113
113
 
@@ -115,7 +115,7 @@ class GetServiceIntegrationResult:
115
115
  @pulumi.getter(name="datadogUserConfigs")
116
116
  def datadog_user_configs(self) -> Sequence['outputs.GetServiceIntegrationDatadogUserConfigResult']:
117
117
  """
118
- Datadog user configurable settings
118
+ Datadog user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
119
119
  """
120
120
  return pulumi.get(self, "datadog_user_configs")
121
121
 
@@ -139,7 +139,7 @@ class GetServiceIntegrationResult:
139
139
  @pulumi.getter(name="externalAwsCloudwatchLogsUserConfigs")
140
140
  def external_aws_cloudwatch_logs_user_configs(self) -> Sequence['outputs.GetServiceIntegrationExternalAwsCloudwatchLogsUserConfigResult']:
141
141
  """
142
- ExternalAwsCloudwatchLogs user configurable settings
142
+ ExternalAwsCloudwatchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
143
143
  """
144
144
  return pulumi.get(self, "external_aws_cloudwatch_logs_user_configs")
145
145
 
@@ -147,7 +147,7 @@ class GetServiceIntegrationResult:
147
147
  @pulumi.getter(name="externalAwsCloudwatchMetricsUserConfigs")
148
148
  def external_aws_cloudwatch_metrics_user_configs(self) -> Sequence['outputs.GetServiceIntegrationExternalAwsCloudwatchMetricsUserConfigResult']:
149
149
  """
150
- ExternalAwsCloudwatchMetrics user configurable settings
150
+ ExternalAwsCloudwatchMetrics user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
151
151
  """
152
152
  return pulumi.get(self, "external_aws_cloudwatch_metrics_user_configs")
153
153
 
@@ -155,7 +155,7 @@ class GetServiceIntegrationResult:
155
155
  @pulumi.getter(name="externalElasticsearchLogsUserConfigs")
156
156
  def external_elasticsearch_logs_user_configs(self) -> Sequence['outputs.GetServiceIntegrationExternalElasticsearchLogsUserConfigResult']:
157
157
  """
158
- ExternalElasticsearchLogs user configurable settings
158
+ ExternalElasticsearchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
159
159
  """
160
160
  return pulumi.get(self, "external_elasticsearch_logs_user_configs")
161
161
 
@@ -163,7 +163,7 @@ class GetServiceIntegrationResult:
163
163
  @pulumi.getter(name="externalOpensearchLogsUserConfigs")
164
164
  def external_opensearch_logs_user_configs(self) -> Sequence['outputs.GetServiceIntegrationExternalOpensearchLogsUserConfigResult']:
165
165
  """
166
- ExternalOpensearchLogs user configurable settings
166
+ ExternalOpensearchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
167
167
  """
168
168
  return pulumi.get(self, "external_opensearch_logs_user_configs")
169
169
 
@@ -171,7 +171,7 @@ class GetServiceIntegrationResult:
171
171
  @pulumi.getter(name="flinkExternalPostgresqlUserConfigs")
172
172
  def flink_external_postgresql_user_configs(self) -> Sequence['outputs.GetServiceIntegrationFlinkExternalPostgresqlUserConfigResult']:
173
173
  """
174
- FlinkExternalPostgresql user configurable settings
174
+ FlinkExternalPostgresql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
175
175
  """
176
176
  return pulumi.get(self, "flink_external_postgresql_user_configs")
177
177
 
@@ -195,7 +195,7 @@ class GetServiceIntegrationResult:
195
195
  @pulumi.getter(name="integrationType")
196
196
  def integration_type(self) -> str:
197
197
  """
198
- Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `disaster_recovery`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_distributed_query`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosruler`, `thanosstore`, `vector`, `vmalert`
198
+ Type of the service integration. The possible values are `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `disaster_recovery`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_distributed_query`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosruler`, `thanosstore`, `vector` and `vmalert`.
199
199
  """
200
200
  return pulumi.get(self, "integration_type")
201
201
 
@@ -203,7 +203,7 @@ class GetServiceIntegrationResult:
203
203
  @pulumi.getter(name="kafkaConnectUserConfigs")
204
204
  def kafka_connect_user_configs(self) -> Sequence['outputs.GetServiceIntegrationKafkaConnectUserConfigResult']:
205
205
  """
206
- KafkaConnect user configurable settings
206
+ KafkaConnect user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
207
207
  """
208
208
  return pulumi.get(self, "kafka_connect_user_configs")
209
209
 
@@ -211,7 +211,7 @@ class GetServiceIntegrationResult:
211
211
  @pulumi.getter(name="kafkaLogsUserConfigs")
212
212
  def kafka_logs_user_configs(self) -> Sequence['outputs.GetServiceIntegrationKafkaLogsUserConfigResult']:
213
213
  """
214
- KafkaLogs user configurable settings
214
+ KafkaLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
215
215
  """
216
216
  return pulumi.get(self, "kafka_logs_user_configs")
217
217
 
@@ -219,7 +219,7 @@ class GetServiceIntegrationResult:
219
219
  @pulumi.getter(name="kafkaMirrormakerUserConfigs")
220
220
  def kafka_mirrormaker_user_configs(self) -> Sequence['outputs.GetServiceIntegrationKafkaMirrormakerUserConfigResult']:
221
221
  """
222
- KafkaMirrormaker user configurable settings
222
+ KafkaMirrormaker user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
223
223
  """
224
224
  return pulumi.get(self, "kafka_mirrormaker_user_configs")
225
225
 
@@ -227,7 +227,7 @@ class GetServiceIntegrationResult:
227
227
  @pulumi.getter(name="logsUserConfigs")
228
228
  def logs_user_configs(self) -> Sequence['outputs.GetServiceIntegrationLogsUserConfigResult']:
229
229
  """
230
- Logs user configurable settings
230
+ Logs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
231
231
  """
232
232
  return pulumi.get(self, "logs_user_configs")
233
233
 
@@ -235,7 +235,7 @@ class GetServiceIntegrationResult:
235
235
  @pulumi.getter(name="metricsUserConfigs")
236
236
  def metrics_user_configs(self) -> Sequence['outputs.GetServiceIntegrationMetricsUserConfigResult']:
237
237
  """
238
- Metrics user configurable settings
238
+ Metrics user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
239
239
  """
240
240
  return pulumi.get(self, "metrics_user_configs")
241
241
 
@@ -251,7 +251,7 @@ class GetServiceIntegrationResult:
251
251
  @pulumi.getter(name="prometheusUserConfigs")
252
252
  def prometheus_user_configs(self) -> Sequence['outputs.GetServiceIntegrationPrometheusUserConfigResult']:
253
253
  """
254
- Prometheus user configurable settings
254
+ Prometheus user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
255
255
  """
256
256
  return pulumi.get(self, "prometheus_user_configs")
257
257
 
@@ -324,7 +324,7 @@ def get_service_integration(destination_service_name: Optional[str] = None,
324
324
 
325
325
 
326
326
  :param str destination_service_name: Destination service for the integration.
327
- :param str integration_type: Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `disaster_recovery`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_distributed_query`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosruler`, `thanosstore`, `vector`, `vmalert`
327
+ :param str integration_type: Type of the service integration. The possible values are `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `disaster_recovery`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_distributed_query`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosruler`, `thanosstore`, `vector` and `vmalert`.
328
328
  :param str project: Project the integration belongs to.
329
329
  :param str source_service_name: Source service for the integration (if any)
330
330
  """
@@ -381,7 +381,7 @@ def get_service_integration_output(destination_service_name: Optional[pulumi.Inp
381
381
 
382
382
 
383
383
  :param str destination_service_name: Destination service for the integration.
384
- :param str integration_type: Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `disaster_recovery`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_distributed_query`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosruler`, `thanosstore`, `vector`, `vmalert`
384
+ :param str integration_type: Type of the service integration. The possible values are `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `disaster_recovery`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_distributed_query`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosruler`, `thanosstore`, `vector` and `vmalert`.
385
385
  :param str project: Project the integration belongs to.
386
386
  :param str source_service_name: Source service for the integration (if any)
387
387
  """