pulumi-aiven 6.19.0a1721711612__py3-none-any.whl → 6.19.0a1721847551__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 (49) hide show
  1. pulumi_aiven/__init__.py +30 -0
  2. pulumi_aiven/_inputs.py +1863 -29
  3. pulumi_aiven/account_team.py +12 -4
  4. pulumi_aiven/account_team_member.py +4 -4
  5. pulumi_aiven/account_team_project.py +4 -4
  6. pulumi_aiven/clickhouse.py +22 -22
  7. pulumi_aiven/clickhouse_database.py +39 -19
  8. pulumi_aiven/clickhouse_grant.py +80 -82
  9. pulumi_aiven/clickhouse_role.py +17 -31
  10. pulumi_aiven/clickhouse_user.py +31 -31
  11. pulumi_aiven/flink.py +19 -19
  12. pulumi_aiven/flink_application.py +39 -39
  13. pulumi_aiven/flink_application_deployment.py +131 -57
  14. pulumi_aiven/flink_application_version.py +64 -56
  15. pulumi_aiven/get_clickhouse.py +8 -8
  16. pulumi_aiven/get_clickhouse_database.py +11 -11
  17. pulumi_aiven/get_clickhouse_user.py +14 -14
  18. pulumi_aiven/get_flink.py +7 -7
  19. pulumi_aiven/get_flink_application.py +16 -16
  20. pulumi_aiven/get_flink_application_version.py +22 -22
  21. pulumi_aiven/get_kafka_acl.py +22 -22
  22. pulumi_aiven/get_kafka_connect.py +6 -6
  23. pulumi_aiven/get_kafka_connector.py +13 -13
  24. pulumi_aiven/get_kafka_topic.py +2 -2
  25. pulumi_aiven/get_kafka_user.py +15 -15
  26. pulumi_aiven/get_thanos.py +449 -0
  27. pulumi_aiven/get_transit_gateway_vpc_attachment.py +1 -1
  28. pulumi_aiven/get_valkey.py +469 -0
  29. pulumi_aiven/get_valkey_user.py +206 -0
  30. pulumi_aiven/kafka_acl.py +43 -39
  31. pulumi_aiven/kafka_connect.py +66 -14
  32. pulumi_aiven/kafka_connector.py +46 -40
  33. pulumi_aiven/kafka_schema_registry_acl.py +2 -2
  34. pulumi_aiven/kafka_topic.py +16 -16
  35. pulumi_aiven/kafka_user.py +40 -40
  36. pulumi_aiven/organization_application_user.py +12 -2
  37. pulumi_aiven/organization_application_user_token.py +7 -7
  38. pulumi_aiven/organization_group_project.py +9 -9
  39. pulumi_aiven/organization_user_group_member.py +13 -9
  40. pulumi_aiven/outputs.py +13290 -10153
  41. pulumi_aiven/pulumi-plugin.json +1 -1
  42. pulumi_aiven/thanos.py +1208 -0
  43. pulumi_aiven/transit_gateway_vpc_attachment.py +7 -16
  44. pulumi_aiven/valkey.py +1252 -0
  45. pulumi_aiven/valkey_user.py +513 -0
  46. {pulumi_aiven-6.19.0a1721711612.dist-info → pulumi_aiven-6.19.0a1721847551.dist-info}/METADATA +1 -1
  47. {pulumi_aiven-6.19.0a1721711612.dist-info → pulumi_aiven-6.19.0a1721847551.dist-info}/RECORD +49 -43
  48. {pulumi_aiven-6.19.0a1721711612.dist-info → pulumi_aiven-6.19.0a1721847551.dist-info}/WHEEL +0 -0
  49. {pulumi_aiven-6.19.0a1721711612.dist-info → pulumi_aiven-6.19.0a1721847551.dist-info}/top_level.txt +0 -0
@@ -54,7 +54,7 @@ class GetFlinkApplicationResult:
54
54
  @pulumi.getter(name="applicationId")
55
55
  def application_id(self) -> str:
56
56
  """
57
- Application ID
57
+ Application ID.
58
58
  """
59
59
  return pulumi.get(self, "application_id")
60
60
 
@@ -62,7 +62,7 @@ class GetFlinkApplicationResult:
62
62
  @pulumi.getter(name="createdAt")
63
63
  def created_at(self) -> str:
64
64
  """
65
- Application creation time
65
+ Application creation time.
66
66
  """
67
67
  return pulumi.get(self, "created_at")
68
68
 
@@ -70,7 +70,7 @@ class GetFlinkApplicationResult:
70
70
  @pulumi.getter(name="createdBy")
71
71
  def created_by(self) -> str:
72
72
  """
73
- Application creator
73
+ The user who created the application.
74
74
  """
75
75
  return pulumi.get(self, "created_by")
76
76
 
@@ -86,7 +86,7 @@ class GetFlinkApplicationResult:
86
86
  @pulumi.getter
87
87
  def name(self) -> str:
88
88
  """
89
- Application name
89
+ The name of the application.
90
90
  """
91
91
  return pulumi.get(self, "name")
92
92
 
@@ -110,7 +110,7 @@ class GetFlinkApplicationResult:
110
110
  @pulumi.getter(name="updatedAt")
111
111
  def updated_at(self) -> str:
112
112
  """
113
- Application update time
113
+ When the application was updated.
114
114
  """
115
115
  return pulumi.get(self, "updated_at")
116
116
 
@@ -118,7 +118,7 @@ class GetFlinkApplicationResult:
118
118
  @pulumi.getter(name="updatedBy")
119
119
  def updated_by(self) -> str:
120
120
  """
121
- Application updater
121
+ The user who updated the application.
122
122
  """
123
123
  return pulumi.get(self, "updated_by")
124
124
 
@@ -145,7 +145,7 @@ def get_flink_application(name: Optional[str] = None,
145
145
  service_name: Optional[str] = None,
146
146
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetFlinkApplicationResult:
147
147
  """
148
- The Flink Application data source provides information about the existing Aiven Flink Application.
148
+ Gets information about an Aiven for Apache Flink® application.
149
149
 
150
150
  ## Example Usage
151
151
 
@@ -153,13 +153,13 @@ def get_flink_application(name: Optional[str] = None,
153
153
  import pulumi
154
154
  import pulumi_aiven as aiven
155
155
 
156
- app1 = aiven.get_flink_application(project=pr1["project"],
157
- service_name="<SERVICE_NAME>",
158
- name="<APPLICATION_NAME>")
156
+ example_app = aiven.get_flink_application(project=example_project["project"],
157
+ service_name="example-flink-service",
158
+ name="example-app")
159
159
  ```
160
160
 
161
161
 
162
- :param str name: Application name
162
+ :param str name: The name of the application.
163
163
  :param str project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
164
164
  :param str service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
165
165
  """
@@ -188,7 +188,7 @@ def get_flink_application_output(name: Optional[pulumi.Input[str]] = None,
188
188
  service_name: Optional[pulumi.Input[str]] = None,
189
189
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetFlinkApplicationResult]:
190
190
  """
191
- The Flink Application data source provides information about the existing Aiven Flink Application.
191
+ Gets information about an Aiven for Apache Flink® application.
192
192
 
193
193
  ## Example Usage
194
194
 
@@ -196,13 +196,13 @@ def get_flink_application_output(name: Optional[pulumi.Input[str]] = None,
196
196
  import pulumi
197
197
  import pulumi_aiven as aiven
198
198
 
199
- app1 = aiven.get_flink_application(project=pr1["project"],
200
- service_name="<SERVICE_NAME>",
201
- name="<APPLICATION_NAME>")
199
+ example_app = aiven.get_flink_application(project=example_project["project"],
200
+ service_name="example-flink-service",
201
+ name="example-app")
202
202
  ```
203
203
 
204
204
 
205
- :param str name: Application name
205
+ :param str name: The name of the application.
206
206
  :param str project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
207
207
  :param str service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
208
208
  """
@@ -67,7 +67,7 @@ class GetFlinkApplicationVersionResult:
67
67
  @pulumi.getter(name="applicationId")
68
68
  def application_id(self) -> str:
69
69
  """
70
- Application ID
70
+ Application ID.
71
71
  """
72
72
  return pulumi.get(self, "application_id")
73
73
 
@@ -75,7 +75,7 @@ class GetFlinkApplicationVersionResult:
75
75
  @pulumi.getter(name="applicationVersionId")
76
76
  def application_version_id(self) -> str:
77
77
  """
78
- Application version ID
78
+ Application version ID.
79
79
  """
80
80
  return pulumi.get(self, "application_version_id")
81
81
 
@@ -83,7 +83,7 @@ class GetFlinkApplicationVersionResult:
83
83
  @pulumi.getter(name="createdAt")
84
84
  def created_at(self) -> str:
85
85
  """
86
- Application version creation time
86
+ Application version creation time.
87
87
  """
88
88
  return pulumi.get(self, "created_at")
89
89
 
@@ -91,7 +91,7 @@ class GetFlinkApplicationVersionResult:
91
91
  @pulumi.getter(name="createdBy")
92
92
  def created_by(self) -> str:
93
93
  """
94
- Application version creator
94
+ The user who created the application.
95
95
  """
96
96
  return pulumi.get(self, "created_by")
97
97
 
@@ -123,7 +123,7 @@ class GetFlinkApplicationVersionResult:
123
123
  @pulumi.getter
124
124
  def sink(self) -> Sequence['outputs.GetFlinkApplicationVersionSinkResult']:
125
125
  """
126
- Application sink
126
+ The sink table for the application.
127
127
  """
128
128
  return pulumi.get(self, "sink")
129
129
 
@@ -139,7 +139,7 @@ class GetFlinkApplicationVersionResult:
139
139
  @pulumi.getter
140
140
  def source(self) -> Sequence['outputs.GetFlinkApplicationVersionSourceResult']:
141
141
  """
142
- Application source
142
+ The source table for the application.
143
143
  """
144
144
  return pulumi.get(self, "source")
145
145
 
@@ -155,7 +155,7 @@ class GetFlinkApplicationVersionResult:
155
155
  @pulumi.getter
156
156
  def statement(self) -> str:
157
157
  """
158
- Job SQL statement
158
+ Job SQL statement.
159
159
  """
160
160
  return pulumi.get(self, "statement")
161
161
 
@@ -163,7 +163,7 @@ class GetFlinkApplicationVersionResult:
163
163
  @pulumi.getter
164
164
  def version(self) -> int:
165
165
  """
166
- Application version number
166
+ Application version number.
167
167
  """
168
168
  return pulumi.get(self, "version")
169
169
 
@@ -195,7 +195,7 @@ def get_flink_application_version(application_id: Optional[str] = None,
195
195
  service_name: Optional[str] = None,
196
196
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetFlinkApplicationVersionResult:
197
197
  """
198
- The Flink Application Version data source provides information about the existing Aiven Flink Application Version.
198
+ Gets information about an Aiven for Apache Flink® application version.
199
199
 
200
200
  ## Example Usage
201
201
 
@@ -203,15 +203,15 @@ def get_flink_application_version(application_id: Optional[str] = None,
203
203
  import pulumi
204
204
  import pulumi_aiven as aiven
205
205
 
206
- app1 = aiven.get_flink_application_version(project=pr1["project"],
207
- service_name="<SERVICE_NAME>",
208
- application_id="<APPLICATION_ID>",
209
- application_version_id="<APPLICATION_VERSION_ID>")
206
+ main = aiven.get_flink_application_version(project=example_project["project"],
207
+ service_name=example_flink["serviceName"],
208
+ application_id=example_app["applicationId"],
209
+ application_version_id="d6e7f71c-cadf-49b5-a4ad-126c805fe684")
210
210
  ```
211
211
 
212
212
 
213
- :param str application_id: Application ID
214
- :param str application_version_id: Application version ID
213
+ :param str application_id: Application ID.
214
+ :param str application_version_id: Application version ID.
215
215
  :param str project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
216
216
  :param str service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
217
217
  """
@@ -246,7 +246,7 @@ def get_flink_application_version_output(application_id: Optional[pulumi.Input[s
246
246
  service_name: Optional[pulumi.Input[str]] = None,
247
247
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetFlinkApplicationVersionResult]:
248
248
  """
249
- The Flink Application Version data source provides information about the existing Aiven Flink Application Version.
249
+ Gets information about an Aiven for Apache Flink® application version.
250
250
 
251
251
  ## Example Usage
252
252
 
@@ -254,15 +254,15 @@ def get_flink_application_version_output(application_id: Optional[pulumi.Input[s
254
254
  import pulumi
255
255
  import pulumi_aiven as aiven
256
256
 
257
- app1 = aiven.get_flink_application_version(project=pr1["project"],
258
- service_name="<SERVICE_NAME>",
259
- application_id="<APPLICATION_ID>",
260
- application_version_id="<APPLICATION_VERSION_ID>")
257
+ main = aiven.get_flink_application_version(project=example_project["project"],
258
+ service_name=example_flink["serviceName"],
259
+ application_id=example_app["applicationId"],
260
+ application_version_id="d6e7f71c-cadf-49b5-a4ad-126c805fe684")
261
261
  ```
262
262
 
263
263
 
264
- :param str application_id: Application ID
265
- :param str application_version_id: Application version ID
264
+ :param str application_id: Application ID.
265
+ :param str application_version_id: Application version ID.
266
266
  :param str project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
267
267
  :param str service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
268
268
  """
@@ -48,7 +48,7 @@ class GetKafkaAclResult:
48
48
  @pulumi.getter(name="aclId")
49
49
  def acl_id(self) -> str:
50
50
  """
51
- Kafka ACL ID
51
+ Kafka ACL ID.
52
52
  """
53
53
  return pulumi.get(self, "acl_id")
54
54
 
@@ -64,7 +64,7 @@ class GetKafkaAclResult:
64
64
  @pulumi.getter
65
65
  def permission(self) -> str:
66
66
  """
67
- Kafka permission to grant. The possible values are `admin`, `read`, `readwrite` and `write`. Changing this property forces recreation of the resource.
67
+ Permissions to grant. The possible values are `admin`, `read`, `readwrite` and `write`. Changing this property forces recreation of the resource.
68
68
  """
69
69
  return pulumi.get(self, "permission")
70
70
 
@@ -88,7 +88,7 @@ class GetKafkaAclResult:
88
88
  @pulumi.getter
89
89
  def topic(self) -> str:
90
90
  """
91
- Topic name pattern for the ACL entry. Changing this property forces recreation of the resource.
91
+ Topics that the permissions apply to. Changing this property forces recreation of the resource.
92
92
  """
93
93
  return pulumi.get(self, "topic")
94
94
 
@@ -96,7 +96,7 @@ class GetKafkaAclResult:
96
96
  @pulumi.getter
97
97
  def username(self) -> str:
98
98
  """
99
- Username pattern for the ACL entry. Changing this property forces recreation of the resource.
99
+ Usernames to grant permissions to. Changing this property forces recreation of the resource.
100
100
  """
101
101
  return pulumi.get(self, "username")
102
102
 
@@ -123,7 +123,7 @@ def get_kafka_acl(permission: Optional[str] = None,
123
123
  username: Optional[str] = None,
124
124
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetKafkaAclResult:
125
125
  """
126
- The Data Source Kafka ACL data source provides information about the existing Aiven Kafka ACL for a Kafka service.
126
+ Gets information about an ACL entry for an Aiven for Apache Kafka® service.
127
127
 
128
128
  ## Example Usage
129
129
 
@@ -131,19 +131,19 @@ def get_kafka_acl(permission: Optional[str] = None,
131
131
  import pulumi
132
132
  import pulumi_aiven as aiven
133
133
 
134
- mytestacl = aiven.get_kafka_acl(project=myproject["project"],
135
- service_name=mykafka["serviceName"],
136
- topic="<TOPIC_NAME_PATTERN>",
137
- permission="<PERMISSON>",
138
- username="<USERNAME_PATTERN>")
134
+ example_acl = aiven.get_kafka_acl(project=example_project["project"],
135
+ service_name=example_kafka["serviceName"],
136
+ topic="example-topic",
137
+ permission="admin",
138
+ username="example-user")
139
139
  ```
140
140
 
141
141
 
142
- :param str permission: Kafka permission to grant. The possible values are `admin`, `read`, `readwrite` and `write`. Changing this property forces recreation of the resource.
142
+ :param str permission: Permissions to grant. The possible values are `admin`, `read`, `readwrite` and `write`. Changing this property forces recreation of the resource.
143
143
  :param str project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
144
144
  :param str service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
145
- :param str topic: Topic name pattern for the ACL entry. Changing this property forces recreation of the resource.
146
- :param str username: Username pattern for the ACL entry. Changing this property forces recreation of the resource.
145
+ :param str topic: Topics that the permissions apply to. Changing this property forces recreation of the resource.
146
+ :param str username: Usernames to grant permissions to. Changing this property forces recreation of the resource.
147
147
  """
148
148
  __args__ = dict()
149
149
  __args__['permission'] = permission
@@ -172,7 +172,7 @@ def get_kafka_acl_output(permission: Optional[pulumi.Input[str]] = None,
172
172
  username: Optional[pulumi.Input[str]] = None,
173
173
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetKafkaAclResult]:
174
174
  """
175
- The Data Source Kafka ACL data source provides information about the existing Aiven Kafka ACL for a Kafka service.
175
+ Gets information about an ACL entry for an Aiven for Apache Kafka® service.
176
176
 
177
177
  ## Example Usage
178
178
 
@@ -180,18 +180,18 @@ def get_kafka_acl_output(permission: Optional[pulumi.Input[str]] = None,
180
180
  import pulumi
181
181
  import pulumi_aiven as aiven
182
182
 
183
- mytestacl = aiven.get_kafka_acl(project=myproject["project"],
184
- service_name=mykafka["serviceName"],
185
- topic="<TOPIC_NAME_PATTERN>",
186
- permission="<PERMISSON>",
187
- username="<USERNAME_PATTERN>")
183
+ example_acl = aiven.get_kafka_acl(project=example_project["project"],
184
+ service_name=example_kafka["serviceName"],
185
+ topic="example-topic",
186
+ permission="admin",
187
+ username="example-user")
188
188
  ```
189
189
 
190
190
 
191
- :param str permission: Kafka permission to grant. The possible values are `admin`, `read`, `readwrite` and `write`. Changing this property forces recreation of the resource.
191
+ :param str permission: Permissions to grant. The possible values are `admin`, `read`, `readwrite` and `write`. Changing this property forces recreation of the resource.
192
192
  :param str project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
193
193
  :param str service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
194
- :param str topic: Topic name pattern for the ACL entry. Changing this property forces recreation of the resource.
195
- :param str username: Username pattern for the ACL entry. Changing this property forces recreation of the resource.
194
+ :param str topic: Topics that the permissions apply to. Changing this property forces recreation of the resource.
195
+ :param str username: Usernames to grant permissions to. Changing this property forces recreation of the resource.
196
196
  """
197
197
  ...
@@ -373,7 +373,7 @@ def get_kafka_connect(project: Optional[str] = None,
373
373
  service_name: Optional[str] = None,
374
374
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetKafkaConnectResult:
375
375
  """
376
- The Kafka Connect data source provides information about the existing Aiven Kafka Connect service.
376
+ Gets information about an Aiven for Apache Kafka® Connect service.
377
377
 
378
378
  ## Example Usage
379
379
 
@@ -381,8 +381,8 @@ def get_kafka_connect(project: Optional[str] = None,
381
381
  import pulumi
382
382
  import pulumi_aiven as aiven
383
383
 
384
- kc1 = aiven.get_kafka_connect(project=pr1["project"],
385
- service_name="my-kc1")
384
+ example_kafka_connect = aiven.get_kafka_connect(project=example_project["project"],
385
+ service_name="example-connect-service")
386
386
  ```
387
387
 
388
388
 
@@ -431,7 +431,7 @@ def get_kafka_connect_output(project: Optional[pulumi.Input[str]] = None,
431
431
  service_name: Optional[pulumi.Input[str]] = None,
432
432
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetKafkaConnectResult]:
433
433
  """
434
- The Kafka Connect data source provides information about the existing Aiven Kafka Connect service.
434
+ Gets information about an Aiven for Apache Kafka® Connect service.
435
435
 
436
436
  ## Example Usage
437
437
 
@@ -439,8 +439,8 @@ def get_kafka_connect_output(project: Optional[pulumi.Input[str]] = None,
439
439
  import pulumi
440
440
  import pulumi_aiven as aiven
441
441
 
442
- kc1 = aiven.get_kafka_connect(project=pr1["project"],
443
- service_name="my-kc1")
442
+ example_kafka_connect = aiven.get_kafka_connect(project=example_project["project"],
443
+ service_name="example-connect-service")
444
444
  ```
445
445
 
446
446
 
@@ -64,7 +64,7 @@ class GetKafkaConnectorResult:
64
64
  @pulumi.getter
65
65
  def config(self) -> Mapping[str, str]:
66
66
  """
67
- The Kafka Connector configuration parameters.
67
+ The Kafka connector configuration parameters.
68
68
  """
69
69
  return pulumi.get(self, "config")
70
70
 
@@ -72,7 +72,7 @@ class GetKafkaConnectorResult:
72
72
  @pulumi.getter(name="connectorName")
73
73
  def connector_name(self) -> str:
74
74
  """
75
- The kafka connector name. Changing this property forces recreation of the resource.
75
+ The Kafka connector name. Changing this property forces recreation of the resource.
76
76
  """
77
77
  return pulumi.get(self, "connector_name")
78
78
 
@@ -128,7 +128,7 @@ class GetKafkaConnectorResult:
128
128
  @pulumi.getter(name="pluginVersion")
129
129
  def plugin_version(self) -> str:
130
130
  """
131
- The version of the kafka connector.
131
+ The version of the Kafka connector.
132
132
  """
133
133
  return pulumi.get(self, "plugin_version")
134
134
 
@@ -182,7 +182,7 @@ def get_kafka_connector(connector_name: Optional[str] = None,
182
182
  service_name: Optional[str] = None,
183
183
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetKafkaConnectorResult:
184
184
  """
185
- The Kafka connector data source provides information about the existing Aiven Kafka connector.
185
+ Gets information about an Aiven for Apache Kafka® connector.
186
186
 
187
187
  ## Example Usage
188
188
 
@@ -190,13 +190,13 @@ def get_kafka_connector(connector_name: Optional[str] = None,
190
190
  import pulumi
191
191
  import pulumi_aiven as aiven
192
192
 
193
- kafka_es_con1 = aiven.get_kafka_connector(project=kafka_con_project1["project"],
194
- service_name=kafka_service1["serviceName"],
195
- connector_name="kafka-es-con1")
193
+ kafka_os_connector = aiven.get_kafka_connector(project=example_project["project"],
194
+ service_name=example_kafka["serviceName"],
195
+ connector_name="kafka-opensearch-connector")
196
196
  ```
197
197
 
198
198
 
199
- :param str connector_name: The kafka connector name. Changing this property forces recreation of the resource.
199
+ :param str connector_name: The Kafka connector name. Changing this property forces recreation of the resource.
200
200
  :param str project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
201
201
  :param str service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
202
202
  """
@@ -228,7 +228,7 @@ def get_kafka_connector_output(connector_name: Optional[pulumi.Input[str]] = Non
228
228
  service_name: Optional[pulumi.Input[str]] = None,
229
229
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetKafkaConnectorResult]:
230
230
  """
231
- The Kafka connector data source provides information about the existing Aiven Kafka connector.
231
+ Gets information about an Aiven for Apache Kafka® connector.
232
232
 
233
233
  ## Example Usage
234
234
 
@@ -236,13 +236,13 @@ def get_kafka_connector_output(connector_name: Optional[pulumi.Input[str]] = Non
236
236
  import pulumi
237
237
  import pulumi_aiven as aiven
238
238
 
239
- kafka_es_con1 = aiven.get_kafka_connector(project=kafka_con_project1["project"],
240
- service_name=kafka_service1["serviceName"],
241
- connector_name="kafka-es-con1")
239
+ kafka_os_connector = aiven.get_kafka_connector(project=example_project["project"],
240
+ service_name=example_kafka["serviceName"],
241
+ connector_name="kafka-opensearch-connector")
242
242
  ```
243
243
 
244
244
 
245
- :param str connector_name: The kafka connector name. Changing this property forces recreation of the resource.
245
+ :param str connector_name: The Kafka connector name. Changing this property forces recreation of the resource.
246
246
  :param str project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
247
247
  :param str service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
248
248
  """
@@ -55,7 +55,7 @@ class GetKafkaTopicResult:
55
55
  @pulumi.getter
56
56
  def configs(self) -> Sequence['outputs.GetKafkaTopicConfigResult']:
57
57
  """
58
- Kafka topic configuration.
58
+ [Advanced parameters](https://aiven.io/docs/products/kafka/reference/advanced-params) to configure topics.
59
59
  """
60
60
  return pulumi.get(self, "configs")
61
61
 
@@ -103,7 +103,7 @@ class GetKafkaTopicResult:
103
103
  @pulumi.getter
104
104
  def tags(self) -> Sequence['outputs.GetKafkaTopicTagResult']:
105
105
  """
106
- Tags for the Kafka topic.
106
+ Tags for the topic.
107
107
  """
108
108
  return pulumi.get(self, "tags")
109
109
 
@@ -51,7 +51,7 @@ class GetKafkaUserResult:
51
51
  @pulumi.getter(name="accessCert")
52
52
  def access_cert(self) -> str:
53
53
  """
54
- Access certificate for the user
54
+ Access certificate for the user.
55
55
  """
56
56
  return pulumi.get(self, "access_cert")
57
57
 
@@ -59,7 +59,7 @@ class GetKafkaUserResult:
59
59
  @pulumi.getter(name="accessKey")
60
60
  def access_key(self) -> str:
61
61
  """
62
- Access certificate key for the user
62
+ Access certificate key for the user.
63
63
  """
64
64
  return pulumi.get(self, "access_key")
65
65
 
@@ -75,7 +75,7 @@ class GetKafkaUserResult:
75
75
  @pulumi.getter
76
76
  def password(self) -> str:
77
77
  """
78
- The password of the Kafka User.
78
+ The Kafka service user's password.
79
79
  """
80
80
  return pulumi.get(self, "password")
81
81
 
@@ -99,7 +99,7 @@ class GetKafkaUserResult:
99
99
  @pulumi.getter
100
100
  def type(self) -> str:
101
101
  """
102
- Type of the user account. Tells whether the user is the primary account or a regular account.
102
+ User account type, such as primary or regular account.
103
103
  """
104
104
  return pulumi.get(self, "type")
105
105
 
@@ -107,7 +107,7 @@ class GetKafkaUserResult:
107
107
  @pulumi.getter
108
108
  def username(self) -> str:
109
109
  """
110
- The actual name of the Kafka User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
110
+ Name of the Kafka service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
111
111
  """
112
112
  return pulumi.get(self, "username")
113
113
 
@@ -133,7 +133,7 @@ def get_kafka_user(project: Optional[str] = None,
133
133
  username: Optional[str] = None,
134
134
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetKafkaUserResult:
135
135
  """
136
- The Kafka User data source provides information about the existing Aiven Kafka User.
136
+ Gets information about an Aiven for Apache Kafka® service user.
137
137
 
138
138
  ## Example Usage
139
139
 
@@ -141,15 +141,15 @@ def get_kafka_user(project: Optional[str] = None,
141
141
  import pulumi
142
142
  import pulumi_aiven as aiven
143
143
 
144
- user = aiven.get_kafka_user(service_name="my-service",
145
- project="my-project",
146
- username="user1")
144
+ example_service_user = aiven.get_kafka_user(service_name=example_kafka["serviceName"],
145
+ project=example_project["project"],
146
+ username="example-kafka-user")
147
147
  ```
148
148
 
149
149
 
150
150
  :param str project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
151
151
  :param str service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
152
- :param str username: The actual name of the Kafka User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
152
+ :param str username: Name of the Kafka service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
153
153
  """
154
154
  __args__ = dict()
155
155
  __args__['project'] = project
@@ -175,7 +175,7 @@ def get_kafka_user_output(project: Optional[pulumi.Input[str]] = None,
175
175
  username: Optional[pulumi.Input[str]] = None,
176
176
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetKafkaUserResult]:
177
177
  """
178
- The Kafka User data source provides information about the existing Aiven Kafka User.
178
+ Gets information about an Aiven for Apache Kafka® service user.
179
179
 
180
180
  ## Example Usage
181
181
 
@@ -183,14 +183,14 @@ def get_kafka_user_output(project: Optional[pulumi.Input[str]] = None,
183
183
  import pulumi
184
184
  import pulumi_aiven as aiven
185
185
 
186
- user = aiven.get_kafka_user(service_name="my-service",
187
- project="my-project",
188
- username="user1")
186
+ example_service_user = aiven.get_kafka_user(service_name=example_kafka["serviceName"],
187
+ project=example_project["project"],
188
+ username="example-kafka-user")
189
189
  ```
190
190
 
191
191
 
192
192
  :param str project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
193
193
  :param str service_name: The name of the service that this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
194
- :param str username: The actual name of the Kafka User. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
194
+ :param str username: Name of the Kafka service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
195
195
  """
196
196
  ...