pulumi-aiven 6.19.0a1721845827__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 (47) hide show
  1. pulumi_aiven/__init__.py +20 -0
  2. pulumi_aiven/_inputs.py +1089 -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_transit_gateway_vpc_attachment.py +1 -1
  27. pulumi_aiven/get_valkey.py +469 -0
  28. pulumi_aiven/get_valkey_user.py +206 -0
  29. pulumi_aiven/kafka_acl.py +43 -39
  30. pulumi_aiven/kafka_connect.py +66 -14
  31. pulumi_aiven/kafka_connector.py +46 -40
  32. pulumi_aiven/kafka_schema_registry_acl.py +2 -2
  33. pulumi_aiven/kafka_topic.py +16 -16
  34. pulumi_aiven/kafka_user.py +40 -40
  35. pulumi_aiven/organization_application_user.py +12 -2
  36. pulumi_aiven/organization_application_user_token.py +7 -7
  37. pulumi_aiven/organization_group_project.py +9 -9
  38. pulumi_aiven/organization_user_group_member.py +13 -9
  39. pulumi_aiven/outputs.py +2113 -332
  40. pulumi_aiven/pulumi-plugin.json +1 -1
  41. pulumi_aiven/transit_gateway_vpc_attachment.py +7 -16
  42. pulumi_aiven/valkey.py +1252 -0
  43. pulumi_aiven/valkey_user.py +513 -0
  44. {pulumi_aiven-6.19.0a1721845827.dist-info → pulumi_aiven-6.19.0a1721847551.dist-info}/METADATA +1 -1
  45. {pulumi_aiven-6.19.0a1721845827.dist-info → pulumi_aiven-6.19.0a1721847551.dist-info}/RECORD +47 -43
  46. {pulumi_aiven-6.19.0a1721845827.dist-info → pulumi_aiven-6.19.0a1721847551.dist-info}/WHEEL +0 -0
  47. {pulumi_aiven-6.19.0a1721845827.dist-info → pulumi_aiven-6.19.0a1721847551.dist-info}/top_level.txt +0 -0
@@ -26,13 +26,13 @@ class FlinkApplicationVersionArgs:
26
26
  sources: Optional[pulumi.Input[Sequence[pulumi.Input['FlinkApplicationVersionSourceArgs']]]] = None):
27
27
  """
28
28
  The set of arguments for constructing a FlinkApplicationVersion resource.
29
- :param pulumi.Input[str] application_id: Application ID
29
+ :param pulumi.Input[str] application_id: Application ID.
30
30
  :param pulumi.Input[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.
31
31
  :param pulumi.Input[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.
32
- :param pulumi.Input[str] statement: Job SQL statement
33
- :param pulumi.Input[Sequence[pulumi.Input['FlinkApplicationVersionSinkArgs']]] sink: Application sink
32
+ :param pulumi.Input[str] statement: Job SQL statement.
33
+ :param pulumi.Input[Sequence[pulumi.Input['FlinkApplicationVersionSinkArgs']]] sink: The sink table for the application.
34
34
  :param pulumi.Input[Sequence[pulumi.Input['FlinkApplicationVersionSinkArgs']]] sinks: Application sinks
35
- :param pulumi.Input[Sequence[pulumi.Input['FlinkApplicationVersionSourceArgs']]] source: Application source
35
+ :param pulumi.Input[Sequence[pulumi.Input['FlinkApplicationVersionSourceArgs']]] source: The source table for the application.
36
36
  :param pulumi.Input[Sequence[pulumi.Input['FlinkApplicationVersionSourceArgs']]] sources: Application sources
37
37
  """
38
38
  pulumi.set(__self__, "application_id", application_id)
@@ -58,7 +58,7 @@ class FlinkApplicationVersionArgs:
58
58
  @pulumi.getter(name="applicationId")
59
59
  def application_id(self) -> pulumi.Input[str]:
60
60
  """
61
- Application ID
61
+ Application ID.
62
62
  """
63
63
  return pulumi.get(self, "application_id")
64
64
 
@@ -94,7 +94,7 @@ class FlinkApplicationVersionArgs:
94
94
  @pulumi.getter
95
95
  def statement(self) -> pulumi.Input[str]:
96
96
  """
97
- Job SQL statement
97
+ Job SQL statement.
98
98
  """
99
99
  return pulumi.get(self, "statement")
100
100
 
@@ -106,7 +106,7 @@ class FlinkApplicationVersionArgs:
106
106
  @pulumi.getter
107
107
  def sink(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['FlinkApplicationVersionSinkArgs']]]]:
108
108
  """
109
- Application sink
109
+ The sink table for the application.
110
110
  """
111
111
  return pulumi.get(self, "sink")
112
112
 
@@ -131,7 +131,7 @@ class FlinkApplicationVersionArgs:
131
131
  @pulumi.getter
132
132
  def source(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['FlinkApplicationVersionSourceArgs']]]]:
133
133
  """
134
- Application source
134
+ The source table for the application.
135
135
  """
136
136
  return pulumi.get(self, "source")
137
137
 
@@ -170,18 +170,18 @@ class _FlinkApplicationVersionState:
170
170
  version: Optional[pulumi.Input[int]] = None):
171
171
  """
172
172
  Input properties used for looking up and filtering FlinkApplicationVersion resources.
173
- :param pulumi.Input[str] application_id: Application ID
174
- :param pulumi.Input[str] application_version_id: Application version ID
175
- :param pulumi.Input[str] created_at: Application version creation time
176
- :param pulumi.Input[str] created_by: Application version creator
173
+ :param pulumi.Input[str] application_id: Application ID.
174
+ :param pulumi.Input[str] application_version_id: Application version ID.
175
+ :param pulumi.Input[str] created_at: Application version creation time.
176
+ :param pulumi.Input[str] created_by: The user who created the application.
177
177
  :param pulumi.Input[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.
178
178
  :param pulumi.Input[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.
179
- :param pulumi.Input[Sequence[pulumi.Input['FlinkApplicationVersionSinkArgs']]] sink: Application sink
179
+ :param pulumi.Input[Sequence[pulumi.Input['FlinkApplicationVersionSinkArgs']]] sink: The sink table for the application.
180
180
  :param pulumi.Input[Sequence[pulumi.Input['FlinkApplicationVersionSinkArgs']]] sinks: Application sinks
181
- :param pulumi.Input[Sequence[pulumi.Input['FlinkApplicationVersionSourceArgs']]] source: Application source
181
+ :param pulumi.Input[Sequence[pulumi.Input['FlinkApplicationVersionSourceArgs']]] source: The source table for the application.
182
182
  :param pulumi.Input[Sequence[pulumi.Input['FlinkApplicationVersionSourceArgs']]] sources: Application sources
183
- :param pulumi.Input[str] statement: Job SQL statement
184
- :param pulumi.Input[int] version: Application version number
183
+ :param pulumi.Input[str] statement: Job SQL statement.
184
+ :param pulumi.Input[int] version: Application version number.
185
185
  """
186
186
  if application_id is not None:
187
187
  pulumi.set(__self__, "application_id", application_id)
@@ -218,7 +218,7 @@ class _FlinkApplicationVersionState:
218
218
  @pulumi.getter(name="applicationId")
219
219
  def application_id(self) -> Optional[pulumi.Input[str]]:
220
220
  """
221
- Application ID
221
+ Application ID.
222
222
  """
223
223
  return pulumi.get(self, "application_id")
224
224
 
@@ -230,7 +230,7 @@ class _FlinkApplicationVersionState:
230
230
  @pulumi.getter(name="applicationVersionId")
231
231
  def application_version_id(self) -> Optional[pulumi.Input[str]]:
232
232
  """
233
- Application version ID
233
+ Application version ID.
234
234
  """
235
235
  return pulumi.get(self, "application_version_id")
236
236
 
@@ -242,7 +242,7 @@ class _FlinkApplicationVersionState:
242
242
  @pulumi.getter(name="createdAt")
243
243
  def created_at(self) -> Optional[pulumi.Input[str]]:
244
244
  """
245
- Application version creation time
245
+ Application version creation time.
246
246
  """
247
247
  return pulumi.get(self, "created_at")
248
248
 
@@ -254,7 +254,7 @@ class _FlinkApplicationVersionState:
254
254
  @pulumi.getter(name="createdBy")
255
255
  def created_by(self) -> Optional[pulumi.Input[str]]:
256
256
  """
257
- Application version creator
257
+ The user who created the application.
258
258
  """
259
259
  return pulumi.get(self, "created_by")
260
260
 
@@ -290,7 +290,7 @@ class _FlinkApplicationVersionState:
290
290
  @pulumi.getter
291
291
  def sink(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['FlinkApplicationVersionSinkArgs']]]]:
292
292
  """
293
- Application sink
293
+ The sink table for the application.
294
294
  """
295
295
  return pulumi.get(self, "sink")
296
296
 
@@ -315,7 +315,7 @@ class _FlinkApplicationVersionState:
315
315
  @pulumi.getter
316
316
  def source(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['FlinkApplicationVersionSourceArgs']]]]:
317
317
  """
318
- Application source
318
+ The source table for the application.
319
319
  """
320
320
  return pulumi.get(self, "source")
321
321
 
@@ -340,7 +340,7 @@ class _FlinkApplicationVersionState:
340
340
  @pulumi.getter
341
341
  def statement(self) -> Optional[pulumi.Input[str]]:
342
342
  """
343
- Job SQL statement
343
+ Job SQL statement.
344
344
  """
345
345
  return pulumi.get(self, "statement")
346
346
 
@@ -352,7 +352,7 @@ class _FlinkApplicationVersionState:
352
352
  @pulumi.getter
353
353
  def version(self) -> Optional[pulumi.Input[int]]:
354
354
  """
355
- Application version number
355
+ Application version number.
356
356
  """
357
357
  return pulumi.get(self, "version")
358
358
 
@@ -376,7 +376,7 @@ class FlinkApplicationVersion(pulumi.CustomResource):
376
376
  statement: Optional[pulumi.Input[str]] = None,
377
377
  __props__=None):
378
378
  """
379
- The Flink Application Version resource allows the creation and management of Aiven Flink Application Versions.
379
+ Creates and manages an Aiven for Apache Flink® application version.
380
380
 
381
381
  ## Example Usage
382
382
 
@@ -384,10 +384,14 @@ class FlinkApplicationVersion(pulumi.CustomResource):
384
384
  import pulumi
385
385
  import pulumi_aiven as aiven
386
386
 
387
- foo = aiven.FlinkApplicationVersion("foo",
388
- project=foo_aiven_project["project"],
389
- service_name=foo_aiven_flink["serviceName"],
390
- application_id=foo_aiven_flink_application["applicationId"],
387
+ example_app = aiven.FlinkApplication("example_app",
388
+ project=example_project["project"],
389
+ service_name="example-flink-service",
390
+ name="example-app")
391
+ main = aiven.FlinkApplicationVersion("main",
392
+ project=example_project["project"],
393
+ service_name=example_flink["serviceName"],
394
+ application_id=example_app.application_id,
391
395
  statement=" INSERT INTO kafka_known_pizza SELECT * FROM kafka_pizza WHERE shop LIKE '%Luigis Pizza%'\\n",
392
396
  sinks=[aiven.FlinkApplicationVersionSinkArgs(
393
397
  create_table=\"\"\" CREATE TABLE kafka_known_pizza (
@@ -422,19 +426,19 @@ class FlinkApplicationVersion(pulumi.CustomResource):
422
426
  ## Import
423
427
 
424
428
  ```sh
425
- $ pulumi import aiven:index/flinkApplicationVersion:FlinkApplicationVersion v1 project/service/application_id/application_version_id
429
+ $ pulumi import aiven:index/flinkApplicationVersion:FlinkApplicationVersion main PROJECT/SERVICE_NAME/APPLICATION_ID/APPLICATION_VERSION_ID
426
430
  ```
427
431
 
428
432
  :param str resource_name: The name of the resource.
429
433
  :param pulumi.ResourceOptions opts: Options for the resource.
430
- :param pulumi.Input[str] application_id: Application ID
434
+ :param pulumi.Input[str] application_id: Application ID.
431
435
  :param pulumi.Input[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.
432
436
  :param pulumi.Input[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.
433
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['FlinkApplicationVersionSinkArgs']]]] sink: Application sink
437
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['FlinkApplicationVersionSinkArgs']]]] sink: The sink table for the application.
434
438
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['FlinkApplicationVersionSinkArgs']]]] sinks: Application sinks
435
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['FlinkApplicationVersionSourceArgs']]]] source: Application source
439
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['FlinkApplicationVersionSourceArgs']]]] source: The source table for the application.
436
440
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['FlinkApplicationVersionSourceArgs']]]] sources: Application sources
437
- :param pulumi.Input[str] statement: Job SQL statement
441
+ :param pulumi.Input[str] statement: Job SQL statement.
438
442
  """
439
443
  ...
440
444
  @overload
@@ -443,7 +447,7 @@ class FlinkApplicationVersion(pulumi.CustomResource):
443
447
  args: FlinkApplicationVersionArgs,
444
448
  opts: Optional[pulumi.ResourceOptions] = None):
445
449
  """
446
- The Flink Application Version resource allows the creation and management of Aiven Flink Application Versions.
450
+ Creates and manages an Aiven for Apache Flink® application version.
447
451
 
448
452
  ## Example Usage
449
453
 
@@ -451,10 +455,14 @@ class FlinkApplicationVersion(pulumi.CustomResource):
451
455
  import pulumi
452
456
  import pulumi_aiven as aiven
453
457
 
454
- foo = aiven.FlinkApplicationVersion("foo",
455
- project=foo_aiven_project["project"],
456
- service_name=foo_aiven_flink["serviceName"],
457
- application_id=foo_aiven_flink_application["applicationId"],
458
+ example_app = aiven.FlinkApplication("example_app",
459
+ project=example_project["project"],
460
+ service_name="example-flink-service",
461
+ name="example-app")
462
+ main = aiven.FlinkApplicationVersion("main",
463
+ project=example_project["project"],
464
+ service_name=example_flink["serviceName"],
465
+ application_id=example_app.application_id,
458
466
  statement=" INSERT INTO kafka_known_pizza SELECT * FROM kafka_pizza WHERE shop LIKE '%Luigis Pizza%'\\n",
459
467
  sinks=[aiven.FlinkApplicationVersionSinkArgs(
460
468
  create_table=\"\"\" CREATE TABLE kafka_known_pizza (
@@ -489,7 +497,7 @@ class FlinkApplicationVersion(pulumi.CustomResource):
489
497
  ## Import
490
498
 
491
499
  ```sh
492
- $ pulumi import aiven:index/flinkApplicationVersion:FlinkApplicationVersion v1 project/service/application_id/application_version_id
500
+ $ pulumi import aiven:index/flinkApplicationVersion:FlinkApplicationVersion main PROJECT/SERVICE_NAME/APPLICATION_ID/APPLICATION_VERSION_ID
493
501
  ```
494
502
 
495
503
  :param str resource_name: The name of the resource.
@@ -573,18 +581,18 @@ class FlinkApplicationVersion(pulumi.CustomResource):
573
581
  :param str resource_name: The unique name of the resulting resource.
574
582
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
575
583
  :param pulumi.ResourceOptions opts: Options for the resource.
576
- :param pulumi.Input[str] application_id: Application ID
577
- :param pulumi.Input[str] application_version_id: Application version ID
578
- :param pulumi.Input[str] created_at: Application version creation time
579
- :param pulumi.Input[str] created_by: Application version creator
584
+ :param pulumi.Input[str] application_id: Application ID.
585
+ :param pulumi.Input[str] application_version_id: Application version ID.
586
+ :param pulumi.Input[str] created_at: Application version creation time.
587
+ :param pulumi.Input[str] created_by: The user who created the application.
580
588
  :param pulumi.Input[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.
581
589
  :param pulumi.Input[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.
582
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['FlinkApplicationVersionSinkArgs']]]] sink: Application sink
590
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['FlinkApplicationVersionSinkArgs']]]] sink: The sink table for the application.
583
591
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['FlinkApplicationVersionSinkArgs']]]] sinks: Application sinks
584
- :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['FlinkApplicationVersionSourceArgs']]]] source: Application source
592
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['FlinkApplicationVersionSourceArgs']]]] source: The source table for the application.
585
593
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['FlinkApplicationVersionSourceArgs']]]] sources: Application sources
586
- :param pulumi.Input[str] statement: Job SQL statement
587
- :param pulumi.Input[int] version: Application version number
594
+ :param pulumi.Input[str] statement: Job SQL statement.
595
+ :param pulumi.Input[int] version: Application version number.
588
596
  """
589
597
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
590
598
 
@@ -608,7 +616,7 @@ class FlinkApplicationVersion(pulumi.CustomResource):
608
616
  @pulumi.getter(name="applicationId")
609
617
  def application_id(self) -> pulumi.Output[str]:
610
618
  """
611
- Application ID
619
+ Application ID.
612
620
  """
613
621
  return pulumi.get(self, "application_id")
614
622
 
@@ -616,7 +624,7 @@ class FlinkApplicationVersion(pulumi.CustomResource):
616
624
  @pulumi.getter(name="applicationVersionId")
617
625
  def application_version_id(self) -> pulumi.Output[str]:
618
626
  """
619
- Application version ID
627
+ Application version ID.
620
628
  """
621
629
  return pulumi.get(self, "application_version_id")
622
630
 
@@ -624,7 +632,7 @@ class FlinkApplicationVersion(pulumi.CustomResource):
624
632
  @pulumi.getter(name="createdAt")
625
633
  def created_at(self) -> pulumi.Output[str]:
626
634
  """
627
- Application version creation time
635
+ Application version creation time.
628
636
  """
629
637
  return pulumi.get(self, "created_at")
630
638
 
@@ -632,7 +640,7 @@ class FlinkApplicationVersion(pulumi.CustomResource):
632
640
  @pulumi.getter(name="createdBy")
633
641
  def created_by(self) -> pulumi.Output[str]:
634
642
  """
635
- Application version creator
643
+ The user who created the application.
636
644
  """
637
645
  return pulumi.get(self, "created_by")
638
646
 
@@ -656,7 +664,7 @@ class FlinkApplicationVersion(pulumi.CustomResource):
656
664
  @pulumi.getter
657
665
  def sink(self) -> pulumi.Output[Optional[Sequence['outputs.FlinkApplicationVersionSink']]]:
658
666
  """
659
- Application sink
667
+ The sink table for the application.
660
668
  """
661
669
  return pulumi.get(self, "sink")
662
670
 
@@ -673,7 +681,7 @@ class FlinkApplicationVersion(pulumi.CustomResource):
673
681
  @pulumi.getter
674
682
  def source(self) -> pulumi.Output[Optional[Sequence['outputs.FlinkApplicationVersionSource']]]:
675
683
  """
676
- Application source
684
+ The source table for the application.
677
685
  """
678
686
  return pulumi.get(self, "source")
679
687
 
@@ -690,7 +698,7 @@ class FlinkApplicationVersion(pulumi.CustomResource):
690
698
  @pulumi.getter
691
699
  def statement(self) -> pulumi.Output[str]:
692
700
  """
693
- Job SQL statement
701
+ Job SQL statement.
694
702
  """
695
703
  return pulumi.get(self, "statement")
696
704
 
@@ -698,7 +706,7 @@ class FlinkApplicationVersion(pulumi.CustomResource):
698
706
  @pulumi.getter
699
707
  def version(self) -> pulumi.Output[int]:
700
708
  """
701
- Application version number
709
+ Application version number.
702
710
  """
703
711
  return pulumi.get(self, "version")
704
712
 
@@ -131,7 +131,7 @@ class GetClickhouseResult:
131
131
  @pulumi.getter
132
132
  def clickhouses(self) -> Sequence['outputs.GetClickhouseClickhouseResult']:
133
133
  """
134
- Clickhouse server provided values
134
+ Values provided by the ClickHouse server.
135
135
  """
136
136
  return pulumi.get(self, "clickhouses")
137
137
 
@@ -251,7 +251,7 @@ class GetClickhouseResult:
251
251
  @pulumi.getter(name="serviceIntegrations")
252
252
  def service_integrations(self) -> Sequence['outputs.GetClickhouseServiceIntegrationResult']:
253
253
  """
254
- Service integrations to specify when creating a service. Not applied after initial service creation
254
+ Integrations with other services. Service integrations are only applied at service creation.
255
255
  """
256
256
  return pulumi.get(self, "service_integrations")
257
257
 
@@ -385,7 +385,7 @@ def get_clickhouse(project: Optional[str] = None,
385
385
  service_name: Optional[str] = None,
386
386
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetClickhouseResult:
387
387
  """
388
- The Clickhouse data source provides information about the existing Aiven Clickhouse service.
388
+ Gets information about a ClickHouse service.
389
389
 
390
390
  ## Example Usage
391
391
 
@@ -393,8 +393,8 @@ def get_clickhouse(project: Optional[str] = None,
393
393
  import pulumi
394
394
  import pulumi_aiven as aiven
395
395
 
396
- clickhouse = aiven.get_clickhouse(project=pr1["project"],
397
- service_name="<SERVICE_NAME>")
396
+ example_clickhouse = aiven.get_clickhouse(project=example_project["project"],
397
+ service_name="example-clickhouse-service")
398
398
  ```
399
399
 
400
400
 
@@ -444,7 +444,7 @@ def get_clickhouse_output(project: Optional[pulumi.Input[str]] = None,
444
444
  service_name: Optional[pulumi.Input[str]] = None,
445
445
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetClickhouseResult]:
446
446
  """
447
- The Clickhouse data source provides information about the existing Aiven Clickhouse service.
447
+ Gets information about a ClickHouse service.
448
448
 
449
449
  ## Example Usage
450
450
 
@@ -452,8 +452,8 @@ def get_clickhouse_output(project: Optional[pulumi.Input[str]] = None,
452
452
  import pulumi
453
453
  import pulumi_aiven as aiven
454
454
 
455
- clickhouse = aiven.get_clickhouse(project=pr1["project"],
456
- service_name="<SERVICE_NAME>")
455
+ example_clickhouse = aiven.get_clickhouse(project=example_project["project"],
456
+ service_name="example-clickhouse-service")
457
457
  ```
458
458
 
459
459
 
@@ -50,7 +50,7 @@ class GetClickhouseDatabaseResult:
50
50
  @pulumi.getter
51
51
  def name(self) -> str:
52
52
  """
53
- The name of the Clickhouse database. Changing this property forces recreation of the resource.
53
+ The name of the ClickHouse database. Changing this property forces recreation of the resource.
54
54
  """
55
55
  return pulumi.get(self, "name")
56
56
 
@@ -94,7 +94,7 @@ def get_clickhouse_database(name: Optional[str] = None,
94
94
  service_name: Optional[str] = None,
95
95
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetClickhouseDatabaseResult:
96
96
  """
97
- The Clickhouse database data source provides information about the existing Aiven Clickhouse Database.
97
+ Gets information about a ClickHouse database.
98
98
 
99
99
  ## Example Usage
100
100
 
@@ -102,13 +102,13 @@ def get_clickhouse_database(name: Optional[str] = None,
102
102
  import pulumi
103
103
  import pulumi_aiven as aiven
104
104
 
105
- clickhouse_db = aiven.get_clickhouse_database(project=ch["project"],
106
- service_name=ch["serviceName"],
107
- name="my-ch-db")
105
+ example_clickhouse_db = aiven.get_clickhouse_database(project=example_project["project"],
106
+ service_name=example_clickhouse["serviceName"],
107
+ name="example-database")
108
108
  ```
109
109
 
110
110
 
111
- :param str name: The name of the Clickhouse database. Changing this property forces recreation of the resource.
111
+ :param str name: The name of the ClickHouse database. Changing this property forces recreation of the resource.
112
112
  :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.
113
113
  :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.
114
114
  """
@@ -133,7 +133,7 @@ def get_clickhouse_database_output(name: Optional[pulumi.Input[str]] = None,
133
133
  service_name: Optional[pulumi.Input[str]] = None,
134
134
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetClickhouseDatabaseResult]:
135
135
  """
136
- The Clickhouse database data source provides information about the existing Aiven Clickhouse Database.
136
+ Gets information about a ClickHouse database.
137
137
 
138
138
  ## Example Usage
139
139
 
@@ -141,13 +141,13 @@ def get_clickhouse_database_output(name: Optional[pulumi.Input[str]] = None,
141
141
  import pulumi
142
142
  import pulumi_aiven as aiven
143
143
 
144
- clickhouse_db = aiven.get_clickhouse_database(project=ch["project"],
145
- service_name=ch["serviceName"],
146
- name="my-ch-db")
144
+ example_clickhouse_db = aiven.get_clickhouse_database(project=example_project["project"],
145
+ service_name=example_clickhouse["serviceName"],
146
+ name="example-database")
147
147
  ```
148
148
 
149
149
 
150
- :param str name: The name of the Clickhouse database. Changing this property forces recreation of the resource.
150
+ :param str name: The name of the ClickHouse database. Changing this property forces recreation of the resource.
151
151
  :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.
152
152
  :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.
153
153
  """
@@ -56,7 +56,7 @@ class GetClickhouseUserResult:
56
56
  @pulumi.getter
57
57
  def password(self) -> str:
58
58
  """
59
- The password of the clickhouse user.
59
+ The password of the ClickHouse user.
60
60
  """
61
61
  return pulumi.get(self, "password")
62
62
 
@@ -72,7 +72,7 @@ class GetClickhouseUserResult:
72
72
  @pulumi.getter
73
73
  def required(self) -> bool:
74
74
  """
75
- Indicates if a clickhouse user is required
75
+ Indicates if a ClickHouse user is required.
76
76
  """
77
77
  return pulumi.get(self, "required")
78
78
 
@@ -88,7 +88,7 @@ class GetClickhouseUserResult:
88
88
  @pulumi.getter
89
89
  def username(self) -> str:
90
90
  """
91
- The actual name of the Clickhouse user. Changing this property forces recreation of the resource.
91
+ The name of the ClickHouse user. Changing this property forces recreation of the resource.
92
92
  """
93
93
  return pulumi.get(self, "username")
94
94
 
@@ -96,7 +96,7 @@ class GetClickhouseUserResult:
96
96
  @pulumi.getter
97
97
  def uuid(self) -> str:
98
98
  """
99
- UUID of the clickhouse user.
99
+ UUID of the ClickHouse user.
100
100
  """
101
101
  return pulumi.get(self, "uuid")
102
102
 
@@ -121,7 +121,7 @@ def get_clickhouse_user(project: Optional[str] = None,
121
121
  username: Optional[str] = None,
122
122
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetClickhouseUserResult:
123
123
  """
124
- The Clickhouse User data source provides information about the existing Aiven Clickhouse User.
124
+ Gets information about a ClickHouse user.
125
125
 
126
126
  ## Example Usage
127
127
 
@@ -129,15 +129,15 @@ def get_clickhouse_user(project: Optional[str] = None,
129
129
  import pulumi
130
130
  import pulumi_aiven as aiven
131
131
 
132
- ch_user = aiven.get_clickhouse_user(project=myproject["project"],
133
- service_name=myservice["serviceName"],
134
- username="<USERNAME>")
132
+ example_user = aiven.get_clickhouse_user(project=example_project["project"],
133
+ service_name=example_clickhouse["serviceName"],
134
+ username="analyst")
135
135
  ```
136
136
 
137
137
 
138
138
  :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.
139
139
  :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.
140
- :param str username: The actual name of the Clickhouse user. Changing this property forces recreation of the resource.
140
+ :param str username: The name of the ClickHouse user. Changing this property forces recreation of the resource.
141
141
  """
142
142
  __args__ = dict()
143
143
  __args__['project'] = project
@@ -162,7 +162,7 @@ def get_clickhouse_user_output(project: Optional[pulumi.Input[str]] = None,
162
162
  username: Optional[pulumi.Input[str]] = None,
163
163
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetClickhouseUserResult]:
164
164
  """
165
- The Clickhouse User data source provides information about the existing Aiven Clickhouse User.
165
+ Gets information about a ClickHouse user.
166
166
 
167
167
  ## Example Usage
168
168
 
@@ -170,14 +170,14 @@ def get_clickhouse_user_output(project: Optional[pulumi.Input[str]] = None,
170
170
  import pulumi
171
171
  import pulumi_aiven as aiven
172
172
 
173
- ch_user = aiven.get_clickhouse_user(project=myproject["project"],
174
- service_name=myservice["serviceName"],
175
- username="<USERNAME>")
173
+ example_user = aiven.get_clickhouse_user(project=example_project["project"],
174
+ service_name=example_clickhouse["serviceName"],
175
+ username="analyst")
176
176
  ```
177
177
 
178
178
 
179
179
  :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.
180
180
  :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.
181
- :param str username: The actual name of the Clickhouse user. Changing this property forces recreation of the resource.
181
+ :param str username: The name of the ClickHouse user. Changing this property forces recreation of the resource.
182
182
  """
183
183
  ...
pulumi_aiven/get_flink.py CHANGED
@@ -187,7 +187,7 @@ class GetFlinkResult:
187
187
  @pulumi.getter
188
188
  def flinks(self) -> Sequence['outputs.GetFlinkFlinkResult']:
189
189
  """
190
- Flink server provided values
190
+ Values provided by the Flink server.
191
191
  """
192
192
  return pulumi.get(self, "flinks")
193
193
 
@@ -385,7 +385,7 @@ def get_flink(project: Optional[str] = None,
385
385
  service_name: Optional[str] = None,
386
386
  opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetFlinkResult:
387
387
  """
388
- The Flink data source provides information about the existing Aiven Flink service.
388
+ Gets information about an Aiven for Apache Flink® service.
389
389
 
390
390
  ## Example Usage
391
391
 
@@ -393,8 +393,8 @@ def get_flink(project: Optional[str] = None,
393
393
  import pulumi
394
394
  import pulumi_aiven as aiven
395
395
 
396
- flink = aiven.get_flink(project=pr1["project"],
397
- service_name="<SERVICE_NAME>")
396
+ example_flink = aiven.get_flink(project=example_project["project"],
397
+ service_name="example-flink-service")
398
398
  ```
399
399
 
400
400
 
@@ -444,7 +444,7 @@ def get_flink_output(project: Optional[pulumi.Input[str]] = None,
444
444
  service_name: Optional[pulumi.Input[str]] = None,
445
445
  opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetFlinkResult]:
446
446
  """
447
- The Flink data source provides information about the existing Aiven Flink service.
447
+ Gets information about an Aiven for Apache Flink® service.
448
448
 
449
449
  ## Example Usage
450
450
 
@@ -452,8 +452,8 @@ def get_flink_output(project: Optional[pulumi.Input[str]] = None,
452
452
  import pulumi
453
453
  import pulumi_aiven as aiven
454
454
 
455
- flink = aiven.get_flink(project=pr1["project"],
456
- service_name="<SERVICE_NAME>")
455
+ example_flink = aiven.get_flink(project=example_project["project"],
456
+ service_name="example-flink-service")
457
457
  ```
458
458
 
459
459