pulumi-aiven 6.16.0__py3-none-any.whl → 6.16.0a1715859567__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 +181 -1061
  2. pulumi_aiven/cassandra.py +1 -48
  3. pulumi_aiven/clickhouse.py +1 -48
  4. pulumi_aiven/dragonfly.py +1 -48
  5. pulumi_aiven/flink.py +2 -2
  6. pulumi_aiven/flink_application_deployment.py +30 -56
  7. pulumi_aiven/gcp_privatelink.py +30 -52
  8. pulumi_aiven/gcp_privatelink_connection_approval.py +30 -54
  9. pulumi_aiven/get_cassanda.py +1 -14
  10. pulumi_aiven/get_cassandra.py +1 -14
  11. pulumi_aiven/get_clickhouse.py +1 -14
  12. pulumi_aiven/get_dragonfly.py +1 -14
  13. pulumi_aiven/get_gcp_privatelink.py +2 -45
  14. pulumi_aiven/get_grafana.py +1 -14
  15. pulumi_aiven/get_m3_aggregator.py +1 -14
  16. pulumi_aiven/get_m3_db.py +1 -14
  17. pulumi_aiven/get_mirror_maker_replication_flow.py +1 -1
  18. pulumi_aiven/get_my_sql.py +1 -14
  19. pulumi_aiven/get_redis.py +1 -14
  20. pulumi_aiven/get_service_integration.py +3 -3
  21. pulumi_aiven/get_service_integration_endpoint.py +1 -1
  22. pulumi_aiven/grafana.py +1 -48
  23. pulumi_aiven/influx_db.py +2 -21
  24. pulumi_aiven/kafka.py +1 -20
  25. pulumi_aiven/m3_aggregator.py +1 -48
  26. pulumi_aiven/m3_db.py +1 -48
  27. pulumi_aiven/mirror_maker_replication_flow.py +7 -7
  28. pulumi_aiven/my_sql.py +1 -48
  29. pulumi_aiven/open_search.py +2 -21
  30. pulumi_aiven/outputs.py +285 -1758
  31. pulumi_aiven/pg.py +2 -2
  32. pulumi_aiven/pulumi-plugin.json +1 -1
  33. pulumi_aiven/redis.py +1 -48
  34. pulumi_aiven/service_integration.py +7 -7
  35. pulumi_aiven/service_integration_endpoint.py +7 -7
  36. {pulumi_aiven-6.16.0.dist-info → pulumi_aiven-6.16.0a1715859567.dist-info}/METADATA +1 -1
  37. {pulumi_aiven-6.16.0.dist-info → pulumi_aiven-6.16.0a1715859567.dist-info}/RECORD +39 -39
  38. {pulumi_aiven-6.16.0.dist-info → pulumi_aiven-6.16.0a1715859567.dist-info}/WHEEL +0 -0
  39. {pulumi_aiven-6.16.0.dist-info → pulumi_aiven-6.16.0a1715859567.dist-info}/top_level.txt +0 -0
pulumi_aiven/cassandra.py CHANGED
@@ -20,7 +20,6 @@ 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,
24
23
  cassandra_user_config: Optional[pulumi.Input['CassandraCassandraUserConfigArgs']] = None,
25
24
  cloud_name: Optional[pulumi.Input[str]] = None,
26
25
  disk_space: Optional[pulumi.Input[str]] = None,
@@ -38,7 +37,6 @@ class CassandraArgs:
38
37
  :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.
39
38
  :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.
40
39
  :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
42
40
  :param pulumi.Input['CassandraCassandraUserConfigArgs'] cassandra_user_config: Cassandra user configurable settings
43
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).
44
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.
@@ -56,8 +54,6 @@ class CassandraArgs:
56
54
  pulumi.set(__self__, "service_name", service_name)
57
55
  if additional_disk_space is not None:
58
56
  pulumi.set(__self__, "additional_disk_space", additional_disk_space)
59
- if cassandra is not None:
60
- pulumi.set(__self__, "cassandra", cassandra)
61
57
  if cassandra_user_config is not None:
62
58
  pulumi.set(__self__, "cassandra_user_config", cassandra_user_config)
63
59
  if cloud_name is not None:
@@ -132,18 +128,6 @@ class CassandraArgs:
132
128
  def additional_disk_space(self, value: Optional[pulumi.Input[str]]):
133
129
  pulumi.set(self, "additional_disk_space", value)
134
130
 
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
-
147
131
  @property
148
132
  @pulumi.getter(name="cassandraUserConfig")
149
133
  def cassandra_user_config(self) -> Optional[pulumi.Input['CassandraCassandraUserConfigArgs']]:
@@ -284,7 +268,6 @@ class CassandraArgs:
284
268
  class _CassandraState:
285
269
  def __init__(__self__, *,
286
270
  additional_disk_space: Optional[pulumi.Input[str]] = None,
287
- cassandra: Optional[pulumi.Input['CassandraCassandraArgs']] = None,
288
271
  cassandra_user_config: Optional[pulumi.Input['CassandraCassandraUserConfigArgs']] = None,
289
272
  cloud_name: Optional[pulumi.Input[str]] = None,
290
273
  components: Optional[pulumi.Input[Sequence[pulumi.Input['CassandraComponentArgs']]]] = None,
@@ -314,7 +297,6 @@ class _CassandraState:
314
297
  """
315
298
  Input properties used for looking up and filtering Cassandra resources.
316
299
  :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
318
300
  :param pulumi.Input['CassandraCassandraUserConfigArgs'] cassandra_user_config: Cassandra user configurable settings
319
301
  :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).
320
302
  :param pulumi.Input[Sequence[pulumi.Input['CassandraComponentArgs']]] components: Service component information objects
@@ -344,8 +326,6 @@ class _CassandraState:
344
326
  """
345
327
  if additional_disk_space is not None:
346
328
  pulumi.set(__self__, "additional_disk_space", additional_disk_space)
347
- if cassandra is not None:
348
- pulumi.set(__self__, "cassandra", cassandra)
349
329
  if cassandra_user_config is not None:
350
330
  pulumi.set(__self__, "cassandra_user_config", cassandra_user_config)
351
331
  if cloud_name is not None:
@@ -414,18 +394,6 @@ class _CassandraState:
414
394
  def additional_disk_space(self, value: Optional[pulumi.Input[str]]):
415
395
  pulumi.set(self, "additional_disk_space", value)
416
396
 
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
-
429
397
  @property
430
398
  @pulumi.getter(name="cassandraUserConfig")
431
399
  def cassandra_user_config(self) -> Optional[pulumi.Input['CassandraCassandraUserConfigArgs']]:
@@ -748,7 +716,6 @@ class Cassandra(pulumi.CustomResource):
748
716
  resource_name: str,
749
717
  opts: Optional[pulumi.ResourceOptions] = None,
750
718
  additional_disk_space: Optional[pulumi.Input[str]] = None,
751
- cassandra: Optional[pulumi.Input[pulumi.InputType['CassandraCassandraArgs']]] = None,
752
719
  cassandra_user_config: Optional[pulumi.Input[pulumi.InputType['CassandraCassandraUserConfigArgs']]] = None,
753
720
  cloud_name: Optional[pulumi.Input[str]] = None,
754
721
  disk_space: Optional[pulumi.Input[str]] = None,
@@ -797,7 +764,6 @@ class Cassandra(pulumi.CustomResource):
797
764
  :param str resource_name: The name of the resource.
798
765
  :param pulumi.ResourceOptions opts: Options for the resource.
799
766
  :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
801
767
  :param pulumi.Input[pulumi.InputType['CassandraCassandraUserConfigArgs']] cassandra_user_config: Cassandra user configurable settings
802
768
  :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).
803
769
  :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.
@@ -865,7 +831,6 @@ class Cassandra(pulumi.CustomResource):
865
831
  resource_name: str,
866
832
  opts: Optional[pulumi.ResourceOptions] = None,
867
833
  additional_disk_space: Optional[pulumi.Input[str]] = None,
868
- cassandra: Optional[pulumi.Input[pulumi.InputType['CassandraCassandraArgs']]] = None,
869
834
  cassandra_user_config: Optional[pulumi.Input[pulumi.InputType['CassandraCassandraUserConfigArgs']]] = None,
870
835
  cloud_name: Optional[pulumi.Input[str]] = None,
871
836
  disk_space: Optional[pulumi.Input[str]] = None,
@@ -890,7 +855,6 @@ class Cassandra(pulumi.CustomResource):
890
855
  __props__ = CassandraArgs.__new__(CassandraArgs)
891
856
 
892
857
  __props__.__dict__["additional_disk_space"] = additional_disk_space
893
- __props__.__dict__["cassandra"] = None if cassandra is None else pulumi.Output.secret(cassandra)
894
858
  __props__.__dict__["cassandra_user_config"] = cassandra_user_config
895
859
  __props__.__dict__["cloud_name"] = cloud_name
896
860
  __props__.__dict__["disk_space"] = disk_space
@@ -923,7 +887,7 @@ class Cassandra(pulumi.CustomResource):
923
887
  __props__.__dict__["service_uri"] = None
924
888
  __props__.__dict__["service_username"] = None
925
889
  __props__.__dict__["state"] = None
926
- secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["cassandra", "servicePassword", "serviceUri"])
890
+ secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["servicePassword", "serviceUri"])
927
891
  opts = pulumi.ResourceOptions.merge(opts, secret_opts)
928
892
  super(Cassandra, __self__).__init__(
929
893
  'aiven:index/cassandra:Cassandra',
@@ -936,7 +900,6 @@ class Cassandra(pulumi.CustomResource):
936
900
  id: pulumi.Input[str],
937
901
  opts: Optional[pulumi.ResourceOptions] = None,
938
902
  additional_disk_space: Optional[pulumi.Input[str]] = None,
939
- cassandra: Optional[pulumi.Input[pulumi.InputType['CassandraCassandraArgs']]] = None,
940
903
  cassandra_user_config: Optional[pulumi.Input[pulumi.InputType['CassandraCassandraUserConfigArgs']]] = None,
941
904
  cloud_name: Optional[pulumi.Input[str]] = None,
942
905
  components: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['CassandraComponentArgs']]]]] = None,
@@ -971,7 +934,6 @@ class Cassandra(pulumi.CustomResource):
971
934
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
972
935
  :param pulumi.ResourceOptions opts: Options for the resource.
973
936
  :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
975
937
  :param pulumi.Input[pulumi.InputType['CassandraCassandraUserConfigArgs']] cassandra_user_config: Cassandra user configurable settings
976
938
  :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).
977
939
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['CassandraComponentArgs']]]] components: Service component information objects
@@ -1004,7 +966,6 @@ class Cassandra(pulumi.CustomResource):
1004
966
  __props__ = _CassandraState.__new__(_CassandraState)
1005
967
 
1006
968
  __props__.__dict__["additional_disk_space"] = additional_disk_space
1007
- __props__.__dict__["cassandra"] = cassandra
1008
969
  __props__.__dict__["cassandra_user_config"] = cassandra_user_config
1009
970
  __props__.__dict__["cloud_name"] = cloud_name
1010
971
  __props__.__dict__["components"] = components
@@ -1041,14 +1002,6 @@ class Cassandra(pulumi.CustomResource):
1041
1002
  """
1042
1003
  return pulumi.get(self, "additional_disk_space")
1043
1004
 
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
-
1052
1005
  @property
1053
1006
  @pulumi.getter(name="cassandraUserConfig")
1054
1007
  def cassandra_user_config(self) -> pulumi.Output[Optional['outputs.CassandraCassandraUserConfig']]:
@@ -20,7 +20,6 @@ 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,
24
23
  clickhouse_user_config: Optional[pulumi.Input['ClickhouseClickhouseUserConfigArgs']] = None,
25
24
  cloud_name: Optional[pulumi.Input[str]] = None,
26
25
  disk_space: Optional[pulumi.Input[str]] = None,
@@ -38,7 +37,6 @@ class ClickhouseArgs:
38
37
  :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.
39
38
  :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.
40
39
  :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
42
40
  :param pulumi.Input['ClickhouseClickhouseUserConfigArgs'] clickhouse_user_config: Clickhouse user configurable settings
43
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).
44
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.
@@ -56,8 +54,6 @@ class ClickhouseArgs:
56
54
  pulumi.set(__self__, "service_name", service_name)
57
55
  if additional_disk_space is not None:
58
56
  pulumi.set(__self__, "additional_disk_space", additional_disk_space)
59
- if clickhouse is not None:
60
- pulumi.set(__self__, "clickhouse", clickhouse)
61
57
  if clickhouse_user_config is not None:
62
58
  pulumi.set(__self__, "clickhouse_user_config", clickhouse_user_config)
63
59
  if cloud_name is not None:
@@ -132,18 +128,6 @@ class ClickhouseArgs:
132
128
  def additional_disk_space(self, value: Optional[pulumi.Input[str]]):
133
129
  pulumi.set(self, "additional_disk_space", value)
134
130
 
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
-
147
131
  @property
148
132
  @pulumi.getter(name="clickhouseUserConfig")
149
133
  def clickhouse_user_config(self) -> Optional[pulumi.Input['ClickhouseClickhouseUserConfigArgs']]:
@@ -284,7 +268,6 @@ class ClickhouseArgs:
284
268
  class _ClickhouseState:
285
269
  def __init__(__self__, *,
286
270
  additional_disk_space: Optional[pulumi.Input[str]] = None,
287
- clickhouse: Optional[pulumi.Input['ClickhouseClickhouseArgs']] = None,
288
271
  clickhouse_user_config: Optional[pulumi.Input['ClickhouseClickhouseUserConfigArgs']] = None,
289
272
  cloud_name: Optional[pulumi.Input[str]] = None,
290
273
  components: Optional[pulumi.Input[Sequence[pulumi.Input['ClickhouseComponentArgs']]]] = None,
@@ -314,7 +297,6 @@ class _ClickhouseState:
314
297
  """
315
298
  Input properties used for looking up and filtering Clickhouse resources.
316
299
  :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
318
300
  :param pulumi.Input['ClickhouseClickhouseUserConfigArgs'] clickhouse_user_config: Clickhouse user configurable settings
319
301
  :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).
320
302
  :param pulumi.Input[Sequence[pulumi.Input['ClickhouseComponentArgs']]] components: Service component information objects
@@ -344,8 +326,6 @@ class _ClickhouseState:
344
326
  """
345
327
  if additional_disk_space is not None:
346
328
  pulumi.set(__self__, "additional_disk_space", additional_disk_space)
347
- if clickhouse is not None:
348
- pulumi.set(__self__, "clickhouse", clickhouse)
349
329
  if clickhouse_user_config is not None:
350
330
  pulumi.set(__self__, "clickhouse_user_config", clickhouse_user_config)
351
331
  if cloud_name is not None:
@@ -414,18 +394,6 @@ class _ClickhouseState:
414
394
  def additional_disk_space(self, value: Optional[pulumi.Input[str]]):
415
395
  pulumi.set(self, "additional_disk_space", value)
416
396
 
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
-
429
397
  @property
430
398
  @pulumi.getter(name="clickhouseUserConfig")
431
399
  def clickhouse_user_config(self) -> Optional[pulumi.Input['ClickhouseClickhouseUserConfigArgs']]:
@@ -748,7 +716,6 @@ class Clickhouse(pulumi.CustomResource):
748
716
  resource_name: str,
749
717
  opts: Optional[pulumi.ResourceOptions] = None,
750
718
  additional_disk_space: Optional[pulumi.Input[str]] = None,
751
- clickhouse: Optional[pulumi.Input[pulumi.InputType['ClickhouseClickhouseArgs']]] = None,
752
719
  clickhouse_user_config: Optional[pulumi.Input[pulumi.InputType['ClickhouseClickhouseUserConfigArgs']]] = None,
753
720
  cloud_name: Optional[pulumi.Input[str]] = None,
754
721
  disk_space: Optional[pulumi.Input[str]] = None,
@@ -791,7 +758,6 @@ class Clickhouse(pulumi.CustomResource):
791
758
  :param str resource_name: The name of the resource.
792
759
  :param pulumi.ResourceOptions opts: Options for the resource.
793
760
  :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
795
761
  :param pulumi.Input[pulumi.InputType['ClickhouseClickhouseUserConfigArgs']] clickhouse_user_config: Clickhouse user configurable settings
796
762
  :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).
797
763
  :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.
@@ -853,7 +819,6 @@ class Clickhouse(pulumi.CustomResource):
853
819
  resource_name: str,
854
820
  opts: Optional[pulumi.ResourceOptions] = None,
855
821
  additional_disk_space: Optional[pulumi.Input[str]] = None,
856
- clickhouse: Optional[pulumi.Input[pulumi.InputType['ClickhouseClickhouseArgs']]] = None,
857
822
  clickhouse_user_config: Optional[pulumi.Input[pulumi.InputType['ClickhouseClickhouseUserConfigArgs']]] = None,
858
823
  cloud_name: Optional[pulumi.Input[str]] = None,
859
824
  disk_space: Optional[pulumi.Input[str]] = None,
@@ -878,7 +843,6 @@ class Clickhouse(pulumi.CustomResource):
878
843
  __props__ = ClickhouseArgs.__new__(ClickhouseArgs)
879
844
 
880
845
  __props__.__dict__["additional_disk_space"] = additional_disk_space
881
- __props__.__dict__["clickhouse"] = None if clickhouse is None else pulumi.Output.secret(clickhouse)
882
846
  __props__.__dict__["clickhouse_user_config"] = clickhouse_user_config
883
847
  __props__.__dict__["cloud_name"] = cloud_name
884
848
  __props__.__dict__["disk_space"] = disk_space
@@ -911,7 +875,7 @@ class Clickhouse(pulumi.CustomResource):
911
875
  __props__.__dict__["service_uri"] = None
912
876
  __props__.__dict__["service_username"] = None
913
877
  __props__.__dict__["state"] = None
914
- secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["clickhouse", "servicePassword", "serviceUri"])
878
+ secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["servicePassword", "serviceUri"])
915
879
  opts = pulumi.ResourceOptions.merge(opts, secret_opts)
916
880
  super(Clickhouse, __self__).__init__(
917
881
  'aiven:index/clickhouse:Clickhouse',
@@ -924,7 +888,6 @@ class Clickhouse(pulumi.CustomResource):
924
888
  id: pulumi.Input[str],
925
889
  opts: Optional[pulumi.ResourceOptions] = None,
926
890
  additional_disk_space: Optional[pulumi.Input[str]] = None,
927
- clickhouse: Optional[pulumi.Input[pulumi.InputType['ClickhouseClickhouseArgs']]] = None,
928
891
  clickhouse_user_config: Optional[pulumi.Input[pulumi.InputType['ClickhouseClickhouseUserConfigArgs']]] = None,
929
892
  cloud_name: Optional[pulumi.Input[str]] = None,
930
893
  components: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ClickhouseComponentArgs']]]]] = None,
@@ -959,7 +922,6 @@ class Clickhouse(pulumi.CustomResource):
959
922
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
960
923
  :param pulumi.ResourceOptions opts: Options for the resource.
961
924
  :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
963
925
  :param pulumi.Input[pulumi.InputType['ClickhouseClickhouseUserConfigArgs']] clickhouse_user_config: Clickhouse user configurable settings
964
926
  :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).
965
927
  :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ClickhouseComponentArgs']]]] components: Service component information objects
@@ -992,7 +954,6 @@ class Clickhouse(pulumi.CustomResource):
992
954
  __props__ = _ClickhouseState.__new__(_ClickhouseState)
993
955
 
994
956
  __props__.__dict__["additional_disk_space"] = additional_disk_space
995
- __props__.__dict__["clickhouse"] = clickhouse
996
957
  __props__.__dict__["clickhouse_user_config"] = clickhouse_user_config
997
958
  __props__.__dict__["cloud_name"] = cloud_name
998
959
  __props__.__dict__["components"] = components
@@ -1029,14 +990,6 @@ class Clickhouse(pulumi.CustomResource):
1029
990
  """
1030
991
  return pulumi.get(self, "additional_disk_space")
1031
992
 
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
-
1040
993
  @property
1041
994
  @pulumi.getter(name="clickhouseUserConfig")
1042
995
  def clickhouse_user_config(self) -> pulumi.Output[Optional['outputs.ClickhouseClickhouseUserConfig']]:
pulumi_aiven/dragonfly.py CHANGED
@@ -22,7 +22,6 @@ 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,
26
25
  dragonfly_user_config: Optional[pulumi.Input['DragonflyDragonflyUserConfigArgs']] = None,
27
26
  maintenance_window_dow: Optional[pulumi.Input[str]] = None,
28
27
  maintenance_window_time: Optional[pulumi.Input[str]] = None,
@@ -40,7 +39,6 @@ class DragonflyArgs:
40
39
  :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
40
  :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
41
  :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
44
42
  :param pulumi.Input['DragonflyDragonflyUserConfigArgs'] dragonfly_user_config: Dragonfly user configurable settings
45
43
  :param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
46
44
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
@@ -63,8 +61,6 @@ class DragonflyArgs:
63
61
  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.""")
64
62
  if disk_space is not None:
65
63
  pulumi.set(__self__, "disk_space", disk_space)
66
- if dragonfly is not None:
67
- pulumi.set(__self__, "dragonfly", dragonfly)
68
64
  if dragonfly_user_config is not None:
69
65
  pulumi.set(__self__, "dragonfly_user_config", dragonfly_user_config)
70
66
  if maintenance_window_dow is not None:
@@ -159,18 +155,6 @@ class DragonflyArgs:
159
155
  def disk_space(self, value: Optional[pulumi.Input[str]]):
160
156
  pulumi.set(self, "disk_space", value)
161
157
 
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
-
174
158
  @property
175
159
  @pulumi.getter(name="dragonflyUserConfig")
176
160
  def dragonfly_user_config(self) -> Optional[pulumi.Input['DragonflyDragonflyUserConfigArgs']]:
@@ -291,7 +275,6 @@ class _DragonflyState:
291
275
  disk_space_default: Optional[pulumi.Input[str]] = None,
292
276
  disk_space_step: Optional[pulumi.Input[str]] = None,
293
277
  disk_space_used: Optional[pulumi.Input[str]] = None,
294
- dragonfly: Optional[pulumi.Input['DragonflyDragonflyArgs']] = None,
295
278
  dragonfly_user_config: Optional[pulumi.Input['DragonflyDragonflyUserConfigArgs']] = None,
296
279
  maintenance_window_dow: Optional[pulumi.Input[str]] = None,
297
280
  maintenance_window_time: Optional[pulumi.Input[str]] = None,
@@ -321,7 +304,6 @@ class _DragonflyState:
321
304
  :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`
322
305
  :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.
323
306
  :param pulumi.Input[str] disk_space_used: Disk space that service is currently using
324
- :param pulumi.Input['DragonflyDragonflyArgs'] dragonfly: Dragonfly server provided values
325
307
  :param pulumi.Input['DragonflyDragonflyUserConfigArgs'] dragonfly_user_config: Dragonfly user configurable settings
326
308
  :param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
327
309
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
@@ -361,8 +343,6 @@ class _DragonflyState:
361
343
  pulumi.set(__self__, "disk_space_step", disk_space_step)
362
344
  if disk_space_used is not None:
363
345
  pulumi.set(__self__, "disk_space_used", disk_space_used)
364
- if dragonfly is not None:
365
- pulumi.set(__self__, "dragonfly", dragonfly)
366
346
  if dragonfly_user_config is not None:
367
347
  pulumi.set(__self__, "dragonfly_user_config", dragonfly_user_config)
368
348
  if maintenance_window_dow is not None:
@@ -501,18 +481,6 @@ class _DragonflyState:
501
481
  def disk_space_used(self, value: Optional[pulumi.Input[str]]):
502
482
  pulumi.set(self, "disk_space_used", value)
503
483
 
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
-
516
484
  @property
517
485
  @pulumi.getter(name="dragonflyUserConfig")
518
486
  def dragonfly_user_config(self) -> Optional[pulumi.Input['DragonflyDragonflyUserConfigArgs']]:
@@ -750,7 +718,6 @@ class Dragonfly(pulumi.CustomResource):
750
718
  additional_disk_space: Optional[pulumi.Input[str]] = None,
751
719
  cloud_name: Optional[pulumi.Input[str]] = None,
752
720
  disk_space: Optional[pulumi.Input[str]] = None,
753
- dragonfly: Optional[pulumi.Input[pulumi.InputType['DragonflyDragonflyArgs']]] = None,
754
721
  dragonfly_user_config: Optional[pulumi.Input[pulumi.InputType['DragonflyDragonflyUserConfigArgs']]] = None,
755
722
  maintenance_window_dow: Optional[pulumi.Input[str]] = None,
756
723
  maintenance_window_time: Optional[pulumi.Input[str]] = None,
@@ -794,7 +761,6 @@ class Dragonfly(pulumi.CustomResource):
794
761
  :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.
795
762
  :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).
796
763
  :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
798
764
  :param pulumi.Input[pulumi.InputType['DragonflyDragonflyUserConfigArgs']] dragonfly_user_config: Dragonfly user configurable settings
799
765
  :param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
800
766
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
@@ -857,7 +823,6 @@ class Dragonfly(pulumi.CustomResource):
857
823
  additional_disk_space: Optional[pulumi.Input[str]] = None,
858
824
  cloud_name: Optional[pulumi.Input[str]] = None,
859
825
  disk_space: Optional[pulumi.Input[str]] = None,
860
- dragonfly: Optional[pulumi.Input[pulumi.InputType['DragonflyDragonflyArgs']]] = None,
861
826
  dragonfly_user_config: Optional[pulumi.Input[pulumi.InputType['DragonflyDragonflyUserConfigArgs']]] = None,
862
827
  maintenance_window_dow: Optional[pulumi.Input[str]] = None,
863
828
  maintenance_window_time: Optional[pulumi.Input[str]] = None,
@@ -882,7 +847,6 @@ class Dragonfly(pulumi.CustomResource):
882
847
  __props__.__dict__["additional_disk_space"] = additional_disk_space
883
848
  __props__.__dict__["cloud_name"] = cloud_name
884
849
  __props__.__dict__["disk_space"] = disk_space
885
- __props__.__dict__["dragonfly"] = None if dragonfly is None else pulumi.Output.secret(dragonfly)
886
850
  __props__.__dict__["dragonfly_user_config"] = dragonfly_user_config
887
851
  __props__.__dict__["maintenance_window_dow"] = maintenance_window_dow
888
852
  __props__.__dict__["maintenance_window_time"] = maintenance_window_time
@@ -913,7 +877,7 @@ class Dragonfly(pulumi.CustomResource):
913
877
  __props__.__dict__["service_uri"] = None
914
878
  __props__.__dict__["service_username"] = None
915
879
  __props__.__dict__["state"] = None
916
- secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["dragonfly", "servicePassword", "serviceUri"])
880
+ secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["servicePassword", "serviceUri"])
917
881
  opts = pulumi.ResourceOptions.merge(opts, secret_opts)
918
882
  super(Dragonfly, __self__).__init__(
919
883
  'aiven:index/dragonfly:Dragonfly',
@@ -933,7 +897,6 @@ class Dragonfly(pulumi.CustomResource):
933
897
  disk_space_default: Optional[pulumi.Input[str]] = None,
934
898
  disk_space_step: Optional[pulumi.Input[str]] = None,
935
899
  disk_space_used: Optional[pulumi.Input[str]] = None,
936
- dragonfly: Optional[pulumi.Input[pulumi.InputType['DragonflyDragonflyArgs']]] = None,
937
900
  dragonfly_user_config: Optional[pulumi.Input[pulumi.InputType['DragonflyDragonflyUserConfigArgs']]] = None,
938
901
  maintenance_window_dow: Optional[pulumi.Input[str]] = None,
939
902
  maintenance_window_time: Optional[pulumi.Input[str]] = None,
@@ -968,7 +931,6 @@ class Dragonfly(pulumi.CustomResource):
968
931
  :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`
969
932
  :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.
970
933
  :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
972
934
  :param pulumi.Input[pulumi.InputType['DragonflyDragonflyUserConfigArgs']] dragonfly_user_config: Dragonfly user configurable settings
973
935
  :param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
974
936
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
@@ -1001,7 +963,6 @@ class Dragonfly(pulumi.CustomResource):
1001
963
  __props__.__dict__["disk_space_default"] = disk_space_default
1002
964
  __props__.__dict__["disk_space_step"] = disk_space_step
1003
965
  __props__.__dict__["disk_space_used"] = disk_space_used
1004
- __props__.__dict__["dragonfly"] = dragonfly
1005
966
  __props__.__dict__["dragonfly_user_config"] = dragonfly_user_config
1006
967
  __props__.__dict__["maintenance_window_dow"] = maintenance_window_dow
1007
968
  __props__.__dict__["maintenance_window_time"] = maintenance_window_time
@@ -1090,14 +1051,6 @@ class Dragonfly(pulumi.CustomResource):
1090
1051
  """
1091
1052
  return pulumi.get(self, "disk_space_used")
1092
1053
 
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
-
1101
1054
  @property
1102
1055
  @pulumi.getter(name="dragonflyUserConfig")
1103
1056
  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"] = None if flink is None else pulumi.Output.secret(flink)
889
+ __props__.__dict__["flink"] = 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=["flink", "servicePassword", "serviceUri"])
920
+ secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["servicePassword", "serviceUri"])
921
921
  opts = pulumi.ResourceOptions.merge(opts, secret_opts)
922
922
  super(Flink, __self__).__init__(
923
923
  'aiven:index/flink:Flink',