pulumi-aiven 6.15.0a1715356672__py3-none-any.whl → 6.16.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 (39) hide show
  1. pulumi_aiven/_inputs.py +1096 -216
  2. pulumi_aiven/cassandra.py +48 -1
  3. pulumi_aiven/clickhouse.py +48 -1
  4. pulumi_aiven/dragonfly.py +48 -1
  5. pulumi_aiven/flink.py +2 -2
  6. pulumi_aiven/flink_application_deployment.py +56 -30
  7. pulumi_aiven/gcp_privatelink.py +52 -30
  8. pulumi_aiven/gcp_privatelink_connection_approval.py +54 -30
  9. pulumi_aiven/get_cassanda.py +14 -1
  10. pulumi_aiven/get_cassandra.py +14 -1
  11. pulumi_aiven/get_clickhouse.py +14 -1
  12. pulumi_aiven/get_dragonfly.py +14 -1
  13. pulumi_aiven/get_gcp_privatelink.py +45 -2
  14. pulumi_aiven/get_grafana.py +14 -1
  15. pulumi_aiven/get_m3_aggregator.py +14 -1
  16. pulumi_aiven/get_m3_db.py +14 -1
  17. pulumi_aiven/get_mirror_maker_replication_flow.py +1 -1
  18. pulumi_aiven/get_my_sql.py +14 -1
  19. pulumi_aiven/get_redis.py +14 -1
  20. pulumi_aiven/get_service_integration.py +3 -3
  21. pulumi_aiven/get_service_integration_endpoint.py +1 -1
  22. pulumi_aiven/grafana.py +48 -1
  23. pulumi_aiven/influx_db.py +21 -2
  24. pulumi_aiven/kafka.py +20 -1
  25. pulumi_aiven/m3_aggregator.py +48 -1
  26. pulumi_aiven/m3_db.py +48 -1
  27. pulumi_aiven/mirror_maker_replication_flow.py +7 -7
  28. pulumi_aiven/my_sql.py +48 -1
  29. pulumi_aiven/open_search.py +21 -2
  30. pulumi_aiven/outputs.py +1758 -285
  31. pulumi_aiven/pg.py +2 -2
  32. pulumi_aiven/pulumi-plugin.json +2 -1
  33. pulumi_aiven/redis.py +48 -1
  34. pulumi_aiven/service_integration.py +7 -7
  35. pulumi_aiven/service_integration_endpoint.py +7 -7
  36. {pulumi_aiven-6.15.0a1715356672.dist-info → pulumi_aiven-6.16.0.dist-info}/METADATA +1 -1
  37. {pulumi_aiven-6.15.0a1715356672.dist-info → pulumi_aiven-6.16.0.dist-info}/RECORD +39 -39
  38. {pulumi_aiven-6.15.0a1715356672.dist-info → pulumi_aiven-6.16.0.dist-info}/WHEEL +0 -0
  39. {pulumi_aiven-6.15.0a1715356672.dist-info → pulumi_aiven-6.16.0.dist-info}/top_level.txt +0 -0
pulumi_aiven/cassandra.py CHANGED
@@ -20,6 +20,7 @@ class CassandraArgs:
20
20
  project: pulumi.Input[str],
21
21
  service_name: pulumi.Input[str],
22
22
  additional_disk_space: Optional[pulumi.Input[str]] = None,
23
+ cassandra: Optional[pulumi.Input['CassandraCassandraArgs']] = None,
23
24
  cassandra_user_config: Optional[pulumi.Input['CassandraCassandraUserConfigArgs']] = None,
24
25
  cloud_name: Optional[pulumi.Input[str]] = None,
25
26
  disk_space: Optional[pulumi.Input[str]] = None,
@@ -37,6 +38,7 @@ class CassandraArgs:
37
38
  :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.
38
39
  :param pulumi.Input[str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
39
40
  :param pulumi.Input[str] additional_disk_space: Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
41
+ :param pulumi.Input['CassandraCassandraArgs'] cassandra: Cassandra server provided values
40
42
  :param pulumi.Input['CassandraCassandraUserConfigArgs'] cassandra_user_config: Cassandra user configurable settings
41
43
  :param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like [here for Google](https://cloud.google.com/compute/docs/regions-zones/) and [here for AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
42
44
  :param pulumi.Input[str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
@@ -54,6 +56,8 @@ class CassandraArgs:
54
56
  pulumi.set(__self__, "service_name", service_name)
55
57
  if additional_disk_space is not None:
56
58
  pulumi.set(__self__, "additional_disk_space", additional_disk_space)
59
+ if cassandra is not None:
60
+ pulumi.set(__self__, "cassandra", cassandra)
57
61
  if cassandra_user_config is not None:
58
62
  pulumi.set(__self__, "cassandra_user_config", cassandra_user_config)
59
63
  if cloud_name is not None:
@@ -128,6 +132,18 @@ class CassandraArgs:
128
132
  def additional_disk_space(self, value: Optional[pulumi.Input[str]]):
129
133
  pulumi.set(self, "additional_disk_space", value)
130
134
 
135
+ @property
136
+ @pulumi.getter
137
+ def cassandra(self) -> Optional[pulumi.Input['CassandraCassandraArgs']]:
138
+ """
139
+ Cassandra server provided values
140
+ """
141
+ return pulumi.get(self, "cassandra")
142
+
143
+ @cassandra.setter
144
+ def cassandra(self, value: Optional[pulumi.Input['CassandraCassandraArgs']]):
145
+ pulumi.set(self, "cassandra", value)
146
+
131
147
  @property
132
148
  @pulumi.getter(name="cassandraUserConfig")
133
149
  def cassandra_user_config(self) -> Optional[pulumi.Input['CassandraCassandraUserConfigArgs']]:
@@ -268,6 +284,7 @@ class CassandraArgs:
268
284
  class _CassandraState:
269
285
  def __init__(__self__, *,
270
286
  additional_disk_space: Optional[pulumi.Input[str]] = None,
287
+ cassandra: Optional[pulumi.Input['CassandraCassandraArgs']] = None,
271
288
  cassandra_user_config: Optional[pulumi.Input['CassandraCassandraUserConfigArgs']] = None,
272
289
  cloud_name: Optional[pulumi.Input[str]] = None,
273
290
  components: Optional[pulumi.Input[Sequence[pulumi.Input['CassandraComponentArgs']]]] = None,
@@ -297,6 +314,7 @@ class _CassandraState:
297
314
  """
298
315
  Input properties used for looking up and filtering Cassandra resources.
299
316
  :param pulumi.Input[str] additional_disk_space: Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
317
+ :param pulumi.Input['CassandraCassandraArgs'] cassandra: Cassandra server provided values
300
318
  :param pulumi.Input['CassandraCassandraUserConfigArgs'] cassandra_user_config: Cassandra user configurable settings
301
319
  :param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like [here for Google](https://cloud.google.com/compute/docs/regions-zones/) and [here for AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
302
320
  :param pulumi.Input[Sequence[pulumi.Input['CassandraComponentArgs']]] components: Service component information objects
@@ -326,6 +344,8 @@ class _CassandraState:
326
344
  """
327
345
  if additional_disk_space is not None:
328
346
  pulumi.set(__self__, "additional_disk_space", additional_disk_space)
347
+ if cassandra is not None:
348
+ pulumi.set(__self__, "cassandra", cassandra)
329
349
  if cassandra_user_config is not None:
330
350
  pulumi.set(__self__, "cassandra_user_config", cassandra_user_config)
331
351
  if cloud_name is not None:
@@ -394,6 +414,18 @@ class _CassandraState:
394
414
  def additional_disk_space(self, value: Optional[pulumi.Input[str]]):
395
415
  pulumi.set(self, "additional_disk_space", value)
396
416
 
417
+ @property
418
+ @pulumi.getter
419
+ def cassandra(self) -> Optional[pulumi.Input['CassandraCassandraArgs']]:
420
+ """
421
+ Cassandra server provided values
422
+ """
423
+ return pulumi.get(self, "cassandra")
424
+
425
+ @cassandra.setter
426
+ def cassandra(self, value: Optional[pulumi.Input['CassandraCassandraArgs']]):
427
+ pulumi.set(self, "cassandra", value)
428
+
397
429
  @property
398
430
  @pulumi.getter(name="cassandraUserConfig")
399
431
  def cassandra_user_config(self) -> Optional[pulumi.Input['CassandraCassandraUserConfigArgs']]:
@@ -716,6 +748,7 @@ class Cassandra(pulumi.CustomResource):
716
748
  resource_name: str,
717
749
  opts: Optional[pulumi.ResourceOptions] = None,
718
750
  additional_disk_space: Optional[pulumi.Input[str]] = None,
751
+ cassandra: Optional[pulumi.Input[pulumi.InputType['CassandraCassandraArgs']]] = None,
719
752
  cassandra_user_config: Optional[pulumi.Input[pulumi.InputType['CassandraCassandraUserConfigArgs']]] = None,
720
753
  cloud_name: Optional[pulumi.Input[str]] = None,
721
754
  disk_space: Optional[pulumi.Input[str]] = None,
@@ -764,6 +797,7 @@ class Cassandra(pulumi.CustomResource):
764
797
  :param str resource_name: The name of the resource.
765
798
  :param pulumi.ResourceOptions opts: Options for the resource.
766
799
  :param pulumi.Input[str] additional_disk_space: Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
800
+ :param pulumi.Input[pulumi.InputType['CassandraCassandraArgs']] cassandra: Cassandra server provided values
767
801
  :param pulumi.Input[pulumi.InputType['CassandraCassandraUserConfigArgs']] cassandra_user_config: Cassandra user configurable settings
768
802
  :param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like [here for Google](https://cloud.google.com/compute/docs/regions-zones/) and [here for AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
769
803
  :param pulumi.Input[str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
@@ -831,6 +865,7 @@ class Cassandra(pulumi.CustomResource):
831
865
  resource_name: str,
832
866
  opts: Optional[pulumi.ResourceOptions] = None,
833
867
  additional_disk_space: Optional[pulumi.Input[str]] = None,
868
+ cassandra: Optional[pulumi.Input[pulumi.InputType['CassandraCassandraArgs']]] = None,
834
869
  cassandra_user_config: Optional[pulumi.Input[pulumi.InputType['CassandraCassandraUserConfigArgs']]] = None,
835
870
  cloud_name: Optional[pulumi.Input[str]] = None,
836
871
  disk_space: Optional[pulumi.Input[str]] = None,
@@ -855,6 +890,7 @@ class Cassandra(pulumi.CustomResource):
855
890
  __props__ = CassandraArgs.__new__(CassandraArgs)
856
891
 
857
892
  __props__.__dict__["additional_disk_space"] = additional_disk_space
893
+ __props__.__dict__["cassandra"] = None if cassandra is None else pulumi.Output.secret(cassandra)
858
894
  __props__.__dict__["cassandra_user_config"] = cassandra_user_config
859
895
  __props__.__dict__["cloud_name"] = cloud_name
860
896
  __props__.__dict__["disk_space"] = disk_space
@@ -887,7 +923,7 @@ class Cassandra(pulumi.CustomResource):
887
923
  __props__.__dict__["service_uri"] = None
888
924
  __props__.__dict__["service_username"] = None
889
925
  __props__.__dict__["state"] = None
890
- secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["servicePassword", "serviceUri"])
926
+ secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["cassandra", "servicePassword", "serviceUri"])
891
927
  opts = pulumi.ResourceOptions.merge(opts, secret_opts)
892
928
  super(Cassandra, __self__).__init__(
893
929
  'aiven:index/cassandra:Cassandra',
@@ -900,6 +936,7 @@ class Cassandra(pulumi.CustomResource):
900
936
  id: pulumi.Input[str],
901
937
  opts: Optional[pulumi.ResourceOptions] = None,
902
938
  additional_disk_space: Optional[pulumi.Input[str]] = None,
939
+ cassandra: Optional[pulumi.Input[pulumi.InputType['CassandraCassandraArgs']]] = None,
903
940
  cassandra_user_config: Optional[pulumi.Input[pulumi.InputType['CassandraCassandraUserConfigArgs']]] = None,
904
941
  cloud_name: Optional[pulumi.Input[str]] = None,
905
942
  components: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['CassandraComponentArgs']]]]] = None,
@@ -934,6 +971,7 @@ class Cassandra(pulumi.CustomResource):
934
971
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
935
972
  :param pulumi.ResourceOptions opts: Options for the resource.
936
973
  :param pulumi.Input[str] additional_disk_space: Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
974
+ :param pulumi.Input[pulumi.InputType['CassandraCassandraArgs']] cassandra: Cassandra server provided values
937
975
  :param pulumi.Input[pulumi.InputType['CassandraCassandraUserConfigArgs']] cassandra_user_config: Cassandra user configurable settings
938
976
  :param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like [here for Google](https://cloud.google.com/compute/docs/regions-zones/) and [here for AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
939
977
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['CassandraComponentArgs']]]] components: Service component information objects
@@ -966,6 +1004,7 @@ class Cassandra(pulumi.CustomResource):
966
1004
  __props__ = _CassandraState.__new__(_CassandraState)
967
1005
 
968
1006
  __props__.__dict__["additional_disk_space"] = additional_disk_space
1007
+ __props__.__dict__["cassandra"] = cassandra
969
1008
  __props__.__dict__["cassandra_user_config"] = cassandra_user_config
970
1009
  __props__.__dict__["cloud_name"] = cloud_name
971
1010
  __props__.__dict__["components"] = components
@@ -1002,6 +1041,14 @@ class Cassandra(pulumi.CustomResource):
1002
1041
  """
1003
1042
  return pulumi.get(self, "additional_disk_space")
1004
1043
 
1044
+ @property
1045
+ @pulumi.getter
1046
+ def cassandra(self) -> pulumi.Output['outputs.CassandraCassandra']:
1047
+ """
1048
+ Cassandra server provided values
1049
+ """
1050
+ return pulumi.get(self, "cassandra")
1051
+
1005
1052
  @property
1006
1053
  @pulumi.getter(name="cassandraUserConfig")
1007
1054
  def cassandra_user_config(self) -> pulumi.Output[Optional['outputs.CassandraCassandraUserConfig']]:
@@ -20,6 +20,7 @@ class ClickhouseArgs:
20
20
  project: pulumi.Input[str],
21
21
  service_name: pulumi.Input[str],
22
22
  additional_disk_space: Optional[pulumi.Input[str]] = None,
23
+ clickhouse: Optional[pulumi.Input['ClickhouseClickhouseArgs']] = None,
23
24
  clickhouse_user_config: Optional[pulumi.Input['ClickhouseClickhouseUserConfigArgs']] = None,
24
25
  cloud_name: Optional[pulumi.Input[str]] = None,
25
26
  disk_space: Optional[pulumi.Input[str]] = None,
@@ -37,6 +38,7 @@ class ClickhouseArgs:
37
38
  :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.
38
39
  :param pulumi.Input[str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
39
40
  :param pulumi.Input[str] additional_disk_space: Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
41
+ :param pulumi.Input['ClickhouseClickhouseArgs'] clickhouse: Clickhouse server provided values
40
42
  :param pulumi.Input['ClickhouseClickhouseUserConfigArgs'] clickhouse_user_config: Clickhouse user configurable settings
41
43
  :param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like [here for Google](https://cloud.google.com/compute/docs/regions-zones/) and [here for AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
42
44
  :param pulumi.Input[str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
@@ -54,6 +56,8 @@ class ClickhouseArgs:
54
56
  pulumi.set(__self__, "service_name", service_name)
55
57
  if additional_disk_space is not None:
56
58
  pulumi.set(__self__, "additional_disk_space", additional_disk_space)
59
+ if clickhouse is not None:
60
+ pulumi.set(__self__, "clickhouse", clickhouse)
57
61
  if clickhouse_user_config is not None:
58
62
  pulumi.set(__self__, "clickhouse_user_config", clickhouse_user_config)
59
63
  if cloud_name is not None:
@@ -128,6 +132,18 @@ class ClickhouseArgs:
128
132
  def additional_disk_space(self, value: Optional[pulumi.Input[str]]):
129
133
  pulumi.set(self, "additional_disk_space", value)
130
134
 
135
+ @property
136
+ @pulumi.getter
137
+ def clickhouse(self) -> Optional[pulumi.Input['ClickhouseClickhouseArgs']]:
138
+ """
139
+ Clickhouse server provided values
140
+ """
141
+ return pulumi.get(self, "clickhouse")
142
+
143
+ @clickhouse.setter
144
+ def clickhouse(self, value: Optional[pulumi.Input['ClickhouseClickhouseArgs']]):
145
+ pulumi.set(self, "clickhouse", value)
146
+
131
147
  @property
132
148
  @pulumi.getter(name="clickhouseUserConfig")
133
149
  def clickhouse_user_config(self) -> Optional[pulumi.Input['ClickhouseClickhouseUserConfigArgs']]:
@@ -268,6 +284,7 @@ class ClickhouseArgs:
268
284
  class _ClickhouseState:
269
285
  def __init__(__self__, *,
270
286
  additional_disk_space: Optional[pulumi.Input[str]] = None,
287
+ clickhouse: Optional[pulumi.Input['ClickhouseClickhouseArgs']] = None,
271
288
  clickhouse_user_config: Optional[pulumi.Input['ClickhouseClickhouseUserConfigArgs']] = None,
272
289
  cloud_name: Optional[pulumi.Input[str]] = None,
273
290
  components: Optional[pulumi.Input[Sequence[pulumi.Input['ClickhouseComponentArgs']]]] = None,
@@ -297,6 +314,7 @@ class _ClickhouseState:
297
314
  """
298
315
  Input properties used for looking up and filtering Clickhouse resources.
299
316
  :param pulumi.Input[str] additional_disk_space: Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
317
+ :param pulumi.Input['ClickhouseClickhouseArgs'] clickhouse: Clickhouse server provided values
300
318
  :param pulumi.Input['ClickhouseClickhouseUserConfigArgs'] clickhouse_user_config: Clickhouse user configurable settings
301
319
  :param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like [here for Google](https://cloud.google.com/compute/docs/regions-zones/) and [here for AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
302
320
  :param pulumi.Input[Sequence[pulumi.Input['ClickhouseComponentArgs']]] components: Service component information objects
@@ -326,6 +344,8 @@ class _ClickhouseState:
326
344
  """
327
345
  if additional_disk_space is not None:
328
346
  pulumi.set(__self__, "additional_disk_space", additional_disk_space)
347
+ if clickhouse is not None:
348
+ pulumi.set(__self__, "clickhouse", clickhouse)
329
349
  if clickhouse_user_config is not None:
330
350
  pulumi.set(__self__, "clickhouse_user_config", clickhouse_user_config)
331
351
  if cloud_name is not None:
@@ -394,6 +414,18 @@ class _ClickhouseState:
394
414
  def additional_disk_space(self, value: Optional[pulumi.Input[str]]):
395
415
  pulumi.set(self, "additional_disk_space", value)
396
416
 
417
+ @property
418
+ @pulumi.getter
419
+ def clickhouse(self) -> Optional[pulumi.Input['ClickhouseClickhouseArgs']]:
420
+ """
421
+ Clickhouse server provided values
422
+ """
423
+ return pulumi.get(self, "clickhouse")
424
+
425
+ @clickhouse.setter
426
+ def clickhouse(self, value: Optional[pulumi.Input['ClickhouseClickhouseArgs']]):
427
+ pulumi.set(self, "clickhouse", value)
428
+
397
429
  @property
398
430
  @pulumi.getter(name="clickhouseUserConfig")
399
431
  def clickhouse_user_config(self) -> Optional[pulumi.Input['ClickhouseClickhouseUserConfigArgs']]:
@@ -716,6 +748,7 @@ class Clickhouse(pulumi.CustomResource):
716
748
  resource_name: str,
717
749
  opts: Optional[pulumi.ResourceOptions] = None,
718
750
  additional_disk_space: Optional[pulumi.Input[str]] = None,
751
+ clickhouse: Optional[pulumi.Input[pulumi.InputType['ClickhouseClickhouseArgs']]] = None,
719
752
  clickhouse_user_config: Optional[pulumi.Input[pulumi.InputType['ClickhouseClickhouseUserConfigArgs']]] = None,
720
753
  cloud_name: Optional[pulumi.Input[str]] = None,
721
754
  disk_space: Optional[pulumi.Input[str]] = None,
@@ -758,6 +791,7 @@ class Clickhouse(pulumi.CustomResource):
758
791
  :param str resource_name: The name of the resource.
759
792
  :param pulumi.ResourceOptions opts: Options for the resource.
760
793
  :param pulumi.Input[str] additional_disk_space: Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
794
+ :param pulumi.Input[pulumi.InputType['ClickhouseClickhouseArgs']] clickhouse: Clickhouse server provided values
761
795
  :param pulumi.Input[pulumi.InputType['ClickhouseClickhouseUserConfigArgs']] clickhouse_user_config: Clickhouse user configurable settings
762
796
  :param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like [here for Google](https://cloud.google.com/compute/docs/regions-zones/) and [here for AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
763
797
  :param pulumi.Input[str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
@@ -819,6 +853,7 @@ class Clickhouse(pulumi.CustomResource):
819
853
  resource_name: str,
820
854
  opts: Optional[pulumi.ResourceOptions] = None,
821
855
  additional_disk_space: Optional[pulumi.Input[str]] = None,
856
+ clickhouse: Optional[pulumi.Input[pulumi.InputType['ClickhouseClickhouseArgs']]] = None,
822
857
  clickhouse_user_config: Optional[pulumi.Input[pulumi.InputType['ClickhouseClickhouseUserConfigArgs']]] = None,
823
858
  cloud_name: Optional[pulumi.Input[str]] = None,
824
859
  disk_space: Optional[pulumi.Input[str]] = None,
@@ -843,6 +878,7 @@ class Clickhouse(pulumi.CustomResource):
843
878
  __props__ = ClickhouseArgs.__new__(ClickhouseArgs)
844
879
 
845
880
  __props__.__dict__["additional_disk_space"] = additional_disk_space
881
+ __props__.__dict__["clickhouse"] = None if clickhouse is None else pulumi.Output.secret(clickhouse)
846
882
  __props__.__dict__["clickhouse_user_config"] = clickhouse_user_config
847
883
  __props__.__dict__["cloud_name"] = cloud_name
848
884
  __props__.__dict__["disk_space"] = disk_space
@@ -875,7 +911,7 @@ class Clickhouse(pulumi.CustomResource):
875
911
  __props__.__dict__["service_uri"] = None
876
912
  __props__.__dict__["service_username"] = None
877
913
  __props__.__dict__["state"] = None
878
- secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["servicePassword", "serviceUri"])
914
+ secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["clickhouse", "servicePassword", "serviceUri"])
879
915
  opts = pulumi.ResourceOptions.merge(opts, secret_opts)
880
916
  super(Clickhouse, __self__).__init__(
881
917
  'aiven:index/clickhouse:Clickhouse',
@@ -888,6 +924,7 @@ class Clickhouse(pulumi.CustomResource):
888
924
  id: pulumi.Input[str],
889
925
  opts: Optional[pulumi.ResourceOptions] = None,
890
926
  additional_disk_space: Optional[pulumi.Input[str]] = None,
927
+ clickhouse: Optional[pulumi.Input[pulumi.InputType['ClickhouseClickhouseArgs']]] = None,
891
928
  clickhouse_user_config: Optional[pulumi.Input[pulumi.InputType['ClickhouseClickhouseUserConfigArgs']]] = None,
892
929
  cloud_name: Optional[pulumi.Input[str]] = None,
893
930
  components: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ClickhouseComponentArgs']]]]] = None,
@@ -922,6 +959,7 @@ class Clickhouse(pulumi.CustomResource):
922
959
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
923
960
  :param pulumi.ResourceOptions opts: Options for the resource.
924
961
  :param pulumi.Input[str] additional_disk_space: Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
962
+ :param pulumi.Input[pulumi.InputType['ClickhouseClickhouseArgs']] clickhouse: Clickhouse server provided values
925
963
  :param pulumi.Input[pulumi.InputType['ClickhouseClickhouseUserConfigArgs']] clickhouse_user_config: Clickhouse user configurable settings
926
964
  :param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like [here for Google](https://cloud.google.com/compute/docs/regions-zones/) and [here for AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
927
965
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ClickhouseComponentArgs']]]] components: Service component information objects
@@ -954,6 +992,7 @@ class Clickhouse(pulumi.CustomResource):
954
992
  __props__ = _ClickhouseState.__new__(_ClickhouseState)
955
993
 
956
994
  __props__.__dict__["additional_disk_space"] = additional_disk_space
995
+ __props__.__dict__["clickhouse"] = clickhouse
957
996
  __props__.__dict__["clickhouse_user_config"] = clickhouse_user_config
958
997
  __props__.__dict__["cloud_name"] = cloud_name
959
998
  __props__.__dict__["components"] = components
@@ -990,6 +1029,14 @@ class Clickhouse(pulumi.CustomResource):
990
1029
  """
991
1030
  return pulumi.get(self, "additional_disk_space")
992
1031
 
1032
+ @property
1033
+ @pulumi.getter
1034
+ def clickhouse(self) -> pulumi.Output['outputs.ClickhouseClickhouse']:
1035
+ """
1036
+ Clickhouse server provided values
1037
+ """
1038
+ return pulumi.get(self, "clickhouse")
1039
+
993
1040
  @property
994
1041
  @pulumi.getter(name="clickhouseUserConfig")
995
1042
  def clickhouse_user_config(self) -> pulumi.Output[Optional['outputs.ClickhouseClickhouseUserConfig']]:
pulumi_aiven/dragonfly.py CHANGED
@@ -22,6 +22,7 @@ class DragonflyArgs:
22
22
  additional_disk_space: Optional[pulumi.Input[str]] = None,
23
23
  cloud_name: Optional[pulumi.Input[str]] = None,
24
24
  disk_space: Optional[pulumi.Input[str]] = None,
25
+ dragonfly: Optional[pulumi.Input['DragonflyDragonflyArgs']] = None,
25
26
  dragonfly_user_config: Optional[pulumi.Input['DragonflyDragonflyUserConfigArgs']] = None,
26
27
  maintenance_window_dow: Optional[pulumi.Input[str]] = None,
27
28
  maintenance_window_time: Optional[pulumi.Input[str]] = None,
@@ -39,6 +40,7 @@ class DragonflyArgs:
39
40
  :param pulumi.Input[str] additional_disk_space: Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
40
41
  :param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like [here for Google](https://cloud.google.com/compute/docs/regions-zones/) and [here for AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
41
42
  :param pulumi.Input[str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
43
+ :param pulumi.Input['DragonflyDragonflyArgs'] dragonfly: Dragonfly server provided values
42
44
  :param pulumi.Input['DragonflyDragonflyUserConfigArgs'] dragonfly_user_config: Dragonfly user configurable settings
43
45
  :param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
44
46
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
@@ -61,6 +63,8 @@ class DragonflyArgs:
61
63
  pulumi.log.warn("""disk_space is deprecated: This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
62
64
  if disk_space is not None:
63
65
  pulumi.set(__self__, "disk_space", disk_space)
66
+ if dragonfly is not None:
67
+ pulumi.set(__self__, "dragonfly", dragonfly)
64
68
  if dragonfly_user_config is not None:
65
69
  pulumi.set(__self__, "dragonfly_user_config", dragonfly_user_config)
66
70
  if maintenance_window_dow is not None:
@@ -155,6 +159,18 @@ class DragonflyArgs:
155
159
  def disk_space(self, value: Optional[pulumi.Input[str]]):
156
160
  pulumi.set(self, "disk_space", value)
157
161
 
162
+ @property
163
+ @pulumi.getter
164
+ def dragonfly(self) -> Optional[pulumi.Input['DragonflyDragonflyArgs']]:
165
+ """
166
+ Dragonfly server provided values
167
+ """
168
+ return pulumi.get(self, "dragonfly")
169
+
170
+ @dragonfly.setter
171
+ def dragonfly(self, value: Optional[pulumi.Input['DragonflyDragonflyArgs']]):
172
+ pulumi.set(self, "dragonfly", value)
173
+
158
174
  @property
159
175
  @pulumi.getter(name="dragonflyUserConfig")
160
176
  def dragonfly_user_config(self) -> Optional[pulumi.Input['DragonflyDragonflyUserConfigArgs']]:
@@ -275,6 +291,7 @@ class _DragonflyState:
275
291
  disk_space_default: Optional[pulumi.Input[str]] = None,
276
292
  disk_space_step: Optional[pulumi.Input[str]] = None,
277
293
  disk_space_used: Optional[pulumi.Input[str]] = None,
294
+ dragonfly: Optional[pulumi.Input['DragonflyDragonflyArgs']] = None,
278
295
  dragonfly_user_config: Optional[pulumi.Input['DragonflyDragonflyUserConfigArgs']] = None,
279
296
  maintenance_window_dow: Optional[pulumi.Input[str]] = None,
280
297
  maintenance_window_time: Optional[pulumi.Input[str]] = None,
@@ -304,6 +321,7 @@ class _DragonflyState:
304
321
  :param pulumi.Input[str] disk_space_default: The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for `disk_space`
305
322
  :param pulumi.Input[str] disk_space_step: The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. `disk_space` needs to increment from `disk_space_default` by increments of this size.
306
323
  :param pulumi.Input[str] disk_space_used: Disk space that service is currently using
324
+ :param pulumi.Input['DragonflyDragonflyArgs'] dragonfly: Dragonfly server provided values
307
325
  :param pulumi.Input['DragonflyDragonflyUserConfigArgs'] dragonfly_user_config: Dragonfly user configurable settings
308
326
  :param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
309
327
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
@@ -343,6 +361,8 @@ class _DragonflyState:
343
361
  pulumi.set(__self__, "disk_space_step", disk_space_step)
344
362
  if disk_space_used is not None:
345
363
  pulumi.set(__self__, "disk_space_used", disk_space_used)
364
+ if dragonfly is not None:
365
+ pulumi.set(__self__, "dragonfly", dragonfly)
346
366
  if dragonfly_user_config is not None:
347
367
  pulumi.set(__self__, "dragonfly_user_config", dragonfly_user_config)
348
368
  if maintenance_window_dow is not None:
@@ -481,6 +501,18 @@ class _DragonflyState:
481
501
  def disk_space_used(self, value: Optional[pulumi.Input[str]]):
482
502
  pulumi.set(self, "disk_space_used", value)
483
503
 
504
+ @property
505
+ @pulumi.getter
506
+ def dragonfly(self) -> Optional[pulumi.Input['DragonflyDragonflyArgs']]:
507
+ """
508
+ Dragonfly server provided values
509
+ """
510
+ return pulumi.get(self, "dragonfly")
511
+
512
+ @dragonfly.setter
513
+ def dragonfly(self, value: Optional[pulumi.Input['DragonflyDragonflyArgs']]):
514
+ pulumi.set(self, "dragonfly", value)
515
+
484
516
  @property
485
517
  @pulumi.getter(name="dragonflyUserConfig")
486
518
  def dragonfly_user_config(self) -> Optional[pulumi.Input['DragonflyDragonflyUserConfigArgs']]:
@@ -718,6 +750,7 @@ class Dragonfly(pulumi.CustomResource):
718
750
  additional_disk_space: Optional[pulumi.Input[str]] = None,
719
751
  cloud_name: Optional[pulumi.Input[str]] = None,
720
752
  disk_space: Optional[pulumi.Input[str]] = None,
753
+ dragonfly: Optional[pulumi.Input[pulumi.InputType['DragonflyDragonflyArgs']]] = None,
721
754
  dragonfly_user_config: Optional[pulumi.Input[pulumi.InputType['DragonflyDragonflyUserConfigArgs']]] = None,
722
755
  maintenance_window_dow: Optional[pulumi.Input[str]] = None,
723
756
  maintenance_window_time: Optional[pulumi.Input[str]] = None,
@@ -761,6 +794,7 @@ class Dragonfly(pulumi.CustomResource):
761
794
  :param pulumi.Input[str] additional_disk_space: Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
762
795
  :param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like [here for Google](https://cloud.google.com/compute/docs/regions-zones/) and [here for AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
763
796
  :param pulumi.Input[str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
797
+ :param pulumi.Input[pulumi.InputType['DragonflyDragonflyArgs']] dragonfly: Dragonfly server provided values
764
798
  :param pulumi.Input[pulumi.InputType['DragonflyDragonflyUserConfigArgs']] dragonfly_user_config: Dragonfly user configurable settings
765
799
  :param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
766
800
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
@@ -823,6 +857,7 @@ class Dragonfly(pulumi.CustomResource):
823
857
  additional_disk_space: Optional[pulumi.Input[str]] = None,
824
858
  cloud_name: Optional[pulumi.Input[str]] = None,
825
859
  disk_space: Optional[pulumi.Input[str]] = None,
860
+ dragonfly: Optional[pulumi.Input[pulumi.InputType['DragonflyDragonflyArgs']]] = None,
826
861
  dragonfly_user_config: Optional[pulumi.Input[pulumi.InputType['DragonflyDragonflyUserConfigArgs']]] = None,
827
862
  maintenance_window_dow: Optional[pulumi.Input[str]] = None,
828
863
  maintenance_window_time: Optional[pulumi.Input[str]] = None,
@@ -847,6 +882,7 @@ class Dragonfly(pulumi.CustomResource):
847
882
  __props__.__dict__["additional_disk_space"] = additional_disk_space
848
883
  __props__.__dict__["cloud_name"] = cloud_name
849
884
  __props__.__dict__["disk_space"] = disk_space
885
+ __props__.__dict__["dragonfly"] = None if dragonfly is None else pulumi.Output.secret(dragonfly)
850
886
  __props__.__dict__["dragonfly_user_config"] = dragonfly_user_config
851
887
  __props__.__dict__["maintenance_window_dow"] = maintenance_window_dow
852
888
  __props__.__dict__["maintenance_window_time"] = maintenance_window_time
@@ -877,7 +913,7 @@ class Dragonfly(pulumi.CustomResource):
877
913
  __props__.__dict__["service_uri"] = None
878
914
  __props__.__dict__["service_username"] = None
879
915
  __props__.__dict__["state"] = None
880
- secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["servicePassword", "serviceUri"])
916
+ secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["dragonfly", "servicePassword", "serviceUri"])
881
917
  opts = pulumi.ResourceOptions.merge(opts, secret_opts)
882
918
  super(Dragonfly, __self__).__init__(
883
919
  'aiven:index/dragonfly:Dragonfly',
@@ -897,6 +933,7 @@ class Dragonfly(pulumi.CustomResource):
897
933
  disk_space_default: Optional[pulumi.Input[str]] = None,
898
934
  disk_space_step: Optional[pulumi.Input[str]] = None,
899
935
  disk_space_used: Optional[pulumi.Input[str]] = None,
936
+ dragonfly: Optional[pulumi.Input[pulumi.InputType['DragonflyDragonflyArgs']]] = None,
900
937
  dragonfly_user_config: Optional[pulumi.Input[pulumi.InputType['DragonflyDragonflyUserConfigArgs']]] = None,
901
938
  maintenance_window_dow: Optional[pulumi.Input[str]] = None,
902
939
  maintenance_window_time: Optional[pulumi.Input[str]] = None,
@@ -931,6 +968,7 @@ class Dragonfly(pulumi.CustomResource):
931
968
  :param pulumi.Input[str] disk_space_default: The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for `disk_space`
932
969
  :param pulumi.Input[str] disk_space_step: The default disk space step of the service, possible values depend on the service type, the cloud provider and the project. `disk_space` needs to increment from `disk_space_default` by increments of this size.
933
970
  :param pulumi.Input[str] disk_space_used: Disk space that service is currently using
971
+ :param pulumi.Input[pulumi.InputType['DragonflyDragonflyArgs']] dragonfly: Dragonfly server provided values
934
972
  :param pulumi.Input[pulumi.InputType['DragonflyDragonflyUserConfigArgs']] dragonfly_user_config: Dragonfly user configurable settings
935
973
  :param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
936
974
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
@@ -963,6 +1001,7 @@ class Dragonfly(pulumi.CustomResource):
963
1001
  __props__.__dict__["disk_space_default"] = disk_space_default
964
1002
  __props__.__dict__["disk_space_step"] = disk_space_step
965
1003
  __props__.__dict__["disk_space_used"] = disk_space_used
1004
+ __props__.__dict__["dragonfly"] = dragonfly
966
1005
  __props__.__dict__["dragonfly_user_config"] = dragonfly_user_config
967
1006
  __props__.__dict__["maintenance_window_dow"] = maintenance_window_dow
968
1007
  __props__.__dict__["maintenance_window_time"] = maintenance_window_time
@@ -1051,6 +1090,14 @@ class Dragonfly(pulumi.CustomResource):
1051
1090
  """
1052
1091
  return pulumi.get(self, "disk_space_used")
1053
1092
 
1093
+ @property
1094
+ @pulumi.getter
1095
+ def dragonfly(self) -> pulumi.Output['outputs.DragonflyDragonfly']:
1096
+ """
1097
+ Dragonfly server provided values
1098
+ """
1099
+ return pulumi.get(self, "dragonfly")
1100
+
1054
1101
  @property
1055
1102
  @pulumi.getter(name="dragonflyUserConfig")
1056
1103
  def dragonfly_user_config(self) -> pulumi.Output[Optional['outputs.DragonflyDragonflyUserConfig']]:
pulumi_aiven/flink.py CHANGED
@@ -886,7 +886,7 @@ class Flink(pulumi.CustomResource):
886
886
  __props__.__dict__["additional_disk_space"] = additional_disk_space
887
887
  __props__.__dict__["cloud_name"] = cloud_name
888
888
  __props__.__dict__["disk_space"] = disk_space
889
- __props__.__dict__["flink"] = flink
889
+ __props__.__dict__["flink"] = None if flink is None else pulumi.Output.secret(flink)
890
890
  __props__.__dict__["flink_user_config"] = flink_user_config
891
891
  __props__.__dict__["maintenance_window_dow"] = maintenance_window_dow
892
892
  __props__.__dict__["maintenance_window_time"] = maintenance_window_time
@@ -917,7 +917,7 @@ class Flink(pulumi.CustomResource):
917
917
  __props__.__dict__["service_uri"] = None
918
918
  __props__.__dict__["service_username"] = None
919
919
  __props__.__dict__["state"] = None
920
- secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["servicePassword", "serviceUri"])
920
+ secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["flink", "servicePassword", "serviceUri"])
921
921
  opts = pulumi.ResourceOptions.merge(opts, secret_opts)
922
922
  super(Flink, __self__).__init__(
923
923
  'aiven:index/flink:Flink',