pulumi-aiven 6.16.0a1716504562__py3-none-any.whl → 6.16.0a1716589862__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.
- pulumi_aiven/_inputs.py +1096 -216
- pulumi_aiven/cassandra.py +48 -1
- pulumi_aiven/clickhouse.py +48 -1
- pulumi_aiven/dragonfly.py +48 -1
- pulumi_aiven/flink.py +2 -2
- pulumi_aiven/flink_application_deployment.py +56 -30
- pulumi_aiven/gcp_privatelink.py +52 -30
- pulumi_aiven/gcp_privatelink_connection_approval.py +54 -30
- pulumi_aiven/get_cassanda.py +14 -1
- pulumi_aiven/get_cassandra.py +14 -1
- pulumi_aiven/get_clickhouse.py +14 -1
- pulumi_aiven/get_dragonfly.py +14 -1
- pulumi_aiven/get_gcp_privatelink.py +45 -2
- pulumi_aiven/get_grafana.py +14 -1
- pulumi_aiven/get_m3_aggregator.py +14 -1
- pulumi_aiven/get_m3_db.py +14 -1
- pulumi_aiven/get_mirror_maker_replication_flow.py +1 -1
- pulumi_aiven/get_my_sql.py +14 -1
- pulumi_aiven/get_redis.py +14 -1
- pulumi_aiven/get_service_integration.py +3 -3
- pulumi_aiven/get_service_integration_endpoint.py +1 -1
- pulumi_aiven/grafana.py +48 -1
- pulumi_aiven/influx_db.py +21 -2
- pulumi_aiven/kafka.py +20 -1
- pulumi_aiven/m3_aggregator.py +48 -1
- pulumi_aiven/m3_db.py +48 -1
- pulumi_aiven/mirror_maker_replication_flow.py +7 -7
- pulumi_aiven/my_sql.py +48 -1
- pulumi_aiven/open_search.py +21 -2
- pulumi_aiven/outputs.py +1758 -285
- pulumi_aiven/pg.py +2 -2
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/redis.py +48 -1
- pulumi_aiven/service_integration.py +7 -7
- pulumi_aiven/service_integration_endpoint.py +7 -7
- {pulumi_aiven-6.16.0a1716504562.dist-info → pulumi_aiven-6.16.0a1716589862.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.16.0a1716504562.dist-info → pulumi_aiven-6.16.0a1716589862.dist-info}/RECORD +39 -39
- {pulumi_aiven-6.16.0a1716504562.dist-info → pulumi_aiven-6.16.0a1716589862.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.16.0a1716504562.dist-info → pulumi_aiven-6.16.0a1716589862.dist-info}/top_level.txt +0 -0
pulumi_aiven/influx_db.py
CHANGED
|
@@ -23,6 +23,7 @@ class InfluxDbArgs:
|
|
|
23
23
|
cloud_name: Optional[pulumi.Input[str]] = None,
|
|
24
24
|
disk_space: Optional[pulumi.Input[str]] = None,
|
|
25
25
|
influxdb_user_config: Optional[pulumi.Input['InfluxDbInfluxdbUserConfigArgs']] = None,
|
|
26
|
+
influxdbs: Optional[pulumi.Input[Sequence[pulumi.Input['InfluxDbInfluxdbArgs']]]] = None,
|
|
26
27
|
maintenance_window_dow: Optional[pulumi.Input[str]] = None,
|
|
27
28
|
maintenance_window_time: Optional[pulumi.Input[str]] = None,
|
|
28
29
|
project_vpc_id: Optional[pulumi.Input[str]] = None,
|
|
@@ -54,6 +55,7 @@ class InfluxDbArgs:
|
|
|
54
55
|
:param pulumi.Input[str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing
|
|
55
56
|
will result in the service rebalancing.
|
|
56
57
|
:param pulumi.Input['InfluxDbInfluxdbUserConfigArgs'] influxdb_user_config: Influxdb user configurable settings
|
|
58
|
+
:param pulumi.Input[Sequence[pulumi.Input['InfluxDbInfluxdbArgs']]] influxdbs: InfluxDB server provided values
|
|
57
59
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
58
60
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
59
61
|
:param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the
|
|
@@ -84,6 +86,8 @@ class InfluxDbArgs:
|
|
|
84
86
|
pulumi.set(__self__, "disk_space", disk_space)
|
|
85
87
|
if influxdb_user_config is not None:
|
|
86
88
|
pulumi.set(__self__, "influxdb_user_config", influxdb_user_config)
|
|
89
|
+
if influxdbs is not None:
|
|
90
|
+
pulumi.set(__self__, "influxdbs", influxdbs)
|
|
87
91
|
if maintenance_window_dow is not None:
|
|
88
92
|
pulumi.set(__self__, "maintenance_window_dow", maintenance_window_dow)
|
|
89
93
|
if maintenance_window_time is not None:
|
|
@@ -202,6 +206,18 @@ class InfluxDbArgs:
|
|
|
202
206
|
def influxdb_user_config(self, value: Optional[pulumi.Input['InfluxDbInfluxdbUserConfigArgs']]):
|
|
203
207
|
pulumi.set(self, "influxdb_user_config", value)
|
|
204
208
|
|
|
209
|
+
@property
|
|
210
|
+
@pulumi.getter
|
|
211
|
+
def influxdbs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['InfluxDbInfluxdbArgs']]]]:
|
|
212
|
+
"""
|
|
213
|
+
InfluxDB server provided values
|
|
214
|
+
"""
|
|
215
|
+
return pulumi.get(self, "influxdbs")
|
|
216
|
+
|
|
217
|
+
@influxdbs.setter
|
|
218
|
+
def influxdbs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['InfluxDbInfluxdbArgs']]]]):
|
|
219
|
+
pulumi.set(self, "influxdbs", value)
|
|
220
|
+
|
|
205
221
|
@property
|
|
206
222
|
@pulumi.getter(name="maintenanceWindowDow")
|
|
207
223
|
def maintenance_window_dow(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -823,6 +839,7 @@ class InfluxDb(pulumi.CustomResource):
|
|
|
823
839
|
cloud_name: Optional[pulumi.Input[str]] = None,
|
|
824
840
|
disk_space: Optional[pulumi.Input[str]] = None,
|
|
825
841
|
influxdb_user_config: Optional[pulumi.Input[pulumi.InputType['InfluxDbInfluxdbUserConfigArgs']]] = None,
|
|
842
|
+
influxdbs: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InfluxDbInfluxdbArgs']]]]] = None,
|
|
826
843
|
maintenance_window_dow: Optional[pulumi.Input[str]] = None,
|
|
827
844
|
maintenance_window_time: Optional[pulumi.Input[str]] = None,
|
|
828
845
|
plan: Optional[pulumi.Input[str]] = None,
|
|
@@ -850,6 +867,7 @@ class InfluxDb(pulumi.CustomResource):
|
|
|
850
867
|
:param pulumi.Input[str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing
|
|
851
868
|
will result in the service rebalancing.
|
|
852
869
|
:param pulumi.Input[pulumi.InputType['InfluxDbInfluxdbUserConfigArgs']] influxdb_user_config: Influxdb user configurable settings
|
|
870
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InfluxDbInfluxdbArgs']]]] influxdbs: InfluxDB server provided values
|
|
853
871
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
854
872
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
855
873
|
:param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there
|
|
@@ -903,6 +921,7 @@ class InfluxDb(pulumi.CustomResource):
|
|
|
903
921
|
cloud_name: Optional[pulumi.Input[str]] = None,
|
|
904
922
|
disk_space: Optional[pulumi.Input[str]] = None,
|
|
905
923
|
influxdb_user_config: Optional[pulumi.Input[pulumi.InputType['InfluxDbInfluxdbUserConfigArgs']]] = None,
|
|
924
|
+
influxdbs: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InfluxDbInfluxdbArgs']]]]] = None,
|
|
906
925
|
maintenance_window_dow: Optional[pulumi.Input[str]] = None,
|
|
907
926
|
maintenance_window_time: Optional[pulumi.Input[str]] = None,
|
|
908
927
|
plan: Optional[pulumi.Input[str]] = None,
|
|
@@ -927,6 +946,7 @@ class InfluxDb(pulumi.CustomResource):
|
|
|
927
946
|
__props__.__dict__["cloud_name"] = cloud_name
|
|
928
947
|
__props__.__dict__["disk_space"] = disk_space
|
|
929
948
|
__props__.__dict__["influxdb_user_config"] = influxdb_user_config
|
|
949
|
+
__props__.__dict__["influxdbs"] = None if influxdbs is None else pulumi.Output.secret(influxdbs)
|
|
930
950
|
__props__.__dict__["maintenance_window_dow"] = maintenance_window_dow
|
|
931
951
|
__props__.__dict__["maintenance_window_time"] = maintenance_window_time
|
|
932
952
|
if plan is None and not opts.urn:
|
|
@@ -949,7 +969,6 @@ class InfluxDb(pulumi.CustomResource):
|
|
|
949
969
|
__props__.__dict__["disk_space_default"] = None
|
|
950
970
|
__props__.__dict__["disk_space_step"] = None
|
|
951
971
|
__props__.__dict__["disk_space_used"] = None
|
|
952
|
-
__props__.__dict__["influxdbs"] = None
|
|
953
972
|
__props__.__dict__["service_host"] = None
|
|
954
973
|
__props__.__dict__["service_password"] = None
|
|
955
974
|
__props__.__dict__["service_port"] = None
|
|
@@ -957,7 +976,7 @@ class InfluxDb(pulumi.CustomResource):
|
|
|
957
976
|
__props__.__dict__["service_uri"] = None
|
|
958
977
|
__props__.__dict__["service_username"] = None
|
|
959
978
|
__props__.__dict__["state"] = None
|
|
960
|
-
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["servicePassword", "serviceUri"])
|
|
979
|
+
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["influxdbs", "servicePassword", "serviceUri"])
|
|
961
980
|
opts = pulumi.ResourceOptions.merge(opts, secret_opts)
|
|
962
981
|
super(InfluxDb, __self__).__init__(
|
|
963
982
|
'aiven:index/influxDb:InfluxDb',
|
pulumi_aiven/kafka.py
CHANGED
|
@@ -24,6 +24,7 @@ class KafkaArgs:
|
|
|
24
24
|
default_acl: Optional[pulumi.Input[bool]] = None,
|
|
25
25
|
disk_space: Optional[pulumi.Input[str]] = None,
|
|
26
26
|
kafka_user_config: Optional[pulumi.Input['KafkaKafkaUserConfigArgs']] = None,
|
|
27
|
+
kafkas: Optional[pulumi.Input[Sequence[pulumi.Input['KafkaKafkaArgs']]]] = None,
|
|
27
28
|
karapace: Optional[pulumi.Input[bool]] = None,
|
|
28
29
|
maintenance_window_dow: Optional[pulumi.Input[str]] = None,
|
|
29
30
|
maintenance_window_time: Optional[pulumi.Input[str]] = None,
|
|
@@ -43,6 +44,7 @@ class KafkaArgs:
|
|
|
43
44
|
:param pulumi.Input[bool] default_acl: Create a default wildcard Kafka ACL.
|
|
44
45
|
: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.
|
|
45
46
|
:param pulumi.Input['KafkaKafkaUserConfigArgs'] kafka_user_config: Kafka user configurable settings
|
|
47
|
+
:param pulumi.Input[Sequence[pulumi.Input['KafkaKafkaArgs']]] kafkas: Kafka server connection details.
|
|
46
48
|
:param pulumi.Input[bool] karapace: Switch the service to use [Karapace](https://aiven.io/docs/products/kafka/karapace) for schema registry and REST proxy.
|
|
47
49
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
48
50
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
@@ -69,6 +71,8 @@ class KafkaArgs:
|
|
|
69
71
|
pulumi.set(__self__, "disk_space", disk_space)
|
|
70
72
|
if kafka_user_config is not None:
|
|
71
73
|
pulumi.set(__self__, "kafka_user_config", kafka_user_config)
|
|
74
|
+
if kafkas is not None:
|
|
75
|
+
pulumi.set(__self__, "kafkas", kafkas)
|
|
72
76
|
if karapace is not None:
|
|
73
77
|
warnings.warn("""Usage of this field is discouraged.""", DeprecationWarning)
|
|
74
78
|
pulumi.log.warn("""karapace is deprecated: Usage of this field is discouraged.""")
|
|
@@ -190,6 +194,18 @@ class KafkaArgs:
|
|
|
190
194
|
def kafka_user_config(self, value: Optional[pulumi.Input['KafkaKafkaUserConfigArgs']]):
|
|
191
195
|
pulumi.set(self, "kafka_user_config", value)
|
|
192
196
|
|
|
197
|
+
@property
|
|
198
|
+
@pulumi.getter
|
|
199
|
+
def kafkas(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['KafkaKafkaArgs']]]]:
|
|
200
|
+
"""
|
|
201
|
+
Kafka server connection details.
|
|
202
|
+
"""
|
|
203
|
+
return pulumi.get(self, "kafkas")
|
|
204
|
+
|
|
205
|
+
@kafkas.setter
|
|
206
|
+
def kafkas(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['KafkaKafkaArgs']]]]):
|
|
207
|
+
pulumi.set(self, "kafkas", value)
|
|
208
|
+
|
|
193
209
|
@property
|
|
194
210
|
@pulumi.getter
|
|
195
211
|
def karapace(self) -> Optional[pulumi.Input[bool]]:
|
|
@@ -812,6 +828,7 @@ class Kafka(pulumi.CustomResource):
|
|
|
812
828
|
default_acl: Optional[pulumi.Input[bool]] = None,
|
|
813
829
|
disk_space: Optional[pulumi.Input[str]] = None,
|
|
814
830
|
kafka_user_config: Optional[pulumi.Input[pulumi.InputType['KafkaKafkaUserConfigArgs']]] = None,
|
|
831
|
+
kafkas: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['KafkaKafkaArgs']]]]] = None,
|
|
815
832
|
karapace: Optional[pulumi.Input[bool]] = None,
|
|
816
833
|
maintenance_window_dow: Optional[pulumi.Input[str]] = None,
|
|
817
834
|
maintenance_window_time: Optional[pulumi.Input[str]] = None,
|
|
@@ -870,6 +887,7 @@ class Kafka(pulumi.CustomResource):
|
|
|
870
887
|
:param pulumi.Input[bool] default_acl: Create a default wildcard Kafka ACL.
|
|
871
888
|
: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.
|
|
872
889
|
:param pulumi.Input[pulumi.InputType['KafkaKafkaUserConfigArgs']] kafka_user_config: Kafka user configurable settings
|
|
890
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['KafkaKafkaArgs']]]] kafkas: Kafka server connection details.
|
|
873
891
|
:param pulumi.Input[bool] karapace: Switch the service to use [Karapace](https://aiven.io/docs/products/kafka/karapace) for schema registry and REST proxy.
|
|
874
892
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
875
893
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
@@ -947,6 +965,7 @@ class Kafka(pulumi.CustomResource):
|
|
|
947
965
|
default_acl: Optional[pulumi.Input[bool]] = None,
|
|
948
966
|
disk_space: Optional[pulumi.Input[str]] = None,
|
|
949
967
|
kafka_user_config: Optional[pulumi.Input[pulumi.InputType['KafkaKafkaUserConfigArgs']]] = None,
|
|
968
|
+
kafkas: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['KafkaKafkaArgs']]]]] = None,
|
|
950
969
|
karapace: Optional[pulumi.Input[bool]] = None,
|
|
951
970
|
maintenance_window_dow: Optional[pulumi.Input[str]] = None,
|
|
952
971
|
maintenance_window_time: Optional[pulumi.Input[str]] = None,
|
|
@@ -973,6 +992,7 @@ class Kafka(pulumi.CustomResource):
|
|
|
973
992
|
__props__.__dict__["default_acl"] = default_acl
|
|
974
993
|
__props__.__dict__["disk_space"] = disk_space
|
|
975
994
|
__props__.__dict__["kafka_user_config"] = kafka_user_config
|
|
995
|
+
__props__.__dict__["kafkas"] = None if kafkas is None else pulumi.Output.secret(kafkas)
|
|
976
996
|
__props__.__dict__["karapace"] = karapace
|
|
977
997
|
__props__.__dict__["maintenance_window_dow"] = maintenance_window_dow
|
|
978
998
|
__props__.__dict__["maintenance_window_time"] = maintenance_window_time
|
|
@@ -996,7 +1016,6 @@ class Kafka(pulumi.CustomResource):
|
|
|
996
1016
|
__props__.__dict__["disk_space_default"] = None
|
|
997
1017
|
__props__.__dict__["disk_space_step"] = None
|
|
998
1018
|
__props__.__dict__["disk_space_used"] = None
|
|
999
|
-
__props__.__dict__["kafkas"] = None
|
|
1000
1019
|
__props__.__dict__["service_host"] = None
|
|
1001
1020
|
__props__.__dict__["service_password"] = None
|
|
1002
1021
|
__props__.__dict__["service_port"] = None
|
pulumi_aiven/m3_aggregator.py
CHANGED
|
@@ -22,6 +22,7 @@ class M3AggregatorArgs:
|
|
|
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
|
+
m3aggregator: Optional[pulumi.Input['M3AggregatorM3aggregatorArgs']] = None,
|
|
25
26
|
m3aggregator_user_config: Optional[pulumi.Input['M3AggregatorM3aggregatorUserConfigArgs']] = 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 M3AggregatorArgs:
|
|
|
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['M3AggregatorM3aggregatorArgs'] m3aggregator: M3 Aggregator server provided values
|
|
42
44
|
:param pulumi.Input['M3AggregatorM3aggregatorUserConfigArgs'] m3aggregator_user_config: M3aggregator 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 M3AggregatorArgs:
|
|
|
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 m3aggregator is not None:
|
|
67
|
+
pulumi.set(__self__, "m3aggregator", m3aggregator)
|
|
64
68
|
if m3aggregator_user_config is not None:
|
|
65
69
|
pulumi.set(__self__, "m3aggregator_user_config", m3aggregator_user_config)
|
|
66
70
|
if maintenance_window_dow is not None:
|
|
@@ -155,6 +159,18 @@ class M3AggregatorArgs:
|
|
|
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 m3aggregator(self) -> Optional[pulumi.Input['M3AggregatorM3aggregatorArgs']]:
|
|
165
|
+
"""
|
|
166
|
+
M3 Aggregator server provided values
|
|
167
|
+
"""
|
|
168
|
+
return pulumi.get(self, "m3aggregator")
|
|
169
|
+
|
|
170
|
+
@m3aggregator.setter
|
|
171
|
+
def m3aggregator(self, value: Optional[pulumi.Input['M3AggregatorM3aggregatorArgs']]):
|
|
172
|
+
pulumi.set(self, "m3aggregator", value)
|
|
173
|
+
|
|
158
174
|
@property
|
|
159
175
|
@pulumi.getter(name="m3aggregatorUserConfig")
|
|
160
176
|
def m3aggregator_user_config(self) -> Optional[pulumi.Input['M3AggregatorM3aggregatorUserConfigArgs']]:
|
|
@@ -275,6 +291,7 @@ class _M3AggregatorState:
|
|
|
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
|
+
m3aggregator: Optional[pulumi.Input['M3AggregatorM3aggregatorArgs']] = None,
|
|
278
295
|
m3aggregator_user_config: Optional[pulumi.Input['M3AggregatorM3aggregatorUserConfigArgs']] = 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 _M3AggregatorState:
|
|
|
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['M3AggregatorM3aggregatorArgs'] m3aggregator: M3 Aggregator server provided values
|
|
307
325
|
:param pulumi.Input['M3AggregatorM3aggregatorUserConfigArgs'] m3aggregator_user_config: M3aggregator 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 _M3AggregatorState:
|
|
|
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 m3aggregator is not None:
|
|
365
|
+
pulumi.set(__self__, "m3aggregator", m3aggregator)
|
|
346
366
|
if m3aggregator_user_config is not None:
|
|
347
367
|
pulumi.set(__self__, "m3aggregator_user_config", m3aggregator_user_config)
|
|
348
368
|
if maintenance_window_dow is not None:
|
|
@@ -481,6 +501,18 @@ class _M3AggregatorState:
|
|
|
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 m3aggregator(self) -> Optional[pulumi.Input['M3AggregatorM3aggregatorArgs']]:
|
|
507
|
+
"""
|
|
508
|
+
M3 Aggregator server provided values
|
|
509
|
+
"""
|
|
510
|
+
return pulumi.get(self, "m3aggregator")
|
|
511
|
+
|
|
512
|
+
@m3aggregator.setter
|
|
513
|
+
def m3aggregator(self, value: Optional[pulumi.Input['M3AggregatorM3aggregatorArgs']]):
|
|
514
|
+
pulumi.set(self, "m3aggregator", value)
|
|
515
|
+
|
|
484
516
|
@property
|
|
485
517
|
@pulumi.getter(name="m3aggregatorUserConfig")
|
|
486
518
|
def m3aggregator_user_config(self) -> Optional[pulumi.Input['M3AggregatorM3aggregatorUserConfigArgs']]:
|
|
@@ -718,6 +750,7 @@ class M3Aggregator(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
|
+
m3aggregator: Optional[pulumi.Input[pulumi.InputType['M3AggregatorM3aggregatorArgs']]] = None,
|
|
721
754
|
m3aggregator_user_config: Optional[pulumi.Input[pulumi.InputType['M3AggregatorM3aggregatorUserConfigArgs']]] = None,
|
|
722
755
|
maintenance_window_dow: Optional[pulumi.Input[str]] = None,
|
|
723
756
|
maintenance_window_time: Optional[pulumi.Input[str]] = None,
|
|
@@ -763,6 +796,7 @@ class M3Aggregator(pulumi.CustomResource):
|
|
|
763
796
|
: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.
|
|
764
797
|
: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).
|
|
765
798
|
: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.
|
|
799
|
+
:param pulumi.Input[pulumi.InputType['M3AggregatorM3aggregatorArgs']] m3aggregator: M3 Aggregator server provided values
|
|
766
800
|
:param pulumi.Input[pulumi.InputType['M3AggregatorM3aggregatorUserConfigArgs']] m3aggregator_user_config: M3aggregator user configurable settings
|
|
767
801
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
768
802
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
@@ -827,6 +861,7 @@ class M3Aggregator(pulumi.CustomResource):
|
|
|
827
861
|
additional_disk_space: Optional[pulumi.Input[str]] = None,
|
|
828
862
|
cloud_name: Optional[pulumi.Input[str]] = None,
|
|
829
863
|
disk_space: Optional[pulumi.Input[str]] = None,
|
|
864
|
+
m3aggregator: Optional[pulumi.Input[pulumi.InputType['M3AggregatorM3aggregatorArgs']]] = None,
|
|
830
865
|
m3aggregator_user_config: Optional[pulumi.Input[pulumi.InputType['M3AggregatorM3aggregatorUserConfigArgs']]] = None,
|
|
831
866
|
maintenance_window_dow: Optional[pulumi.Input[str]] = None,
|
|
832
867
|
maintenance_window_time: Optional[pulumi.Input[str]] = None,
|
|
@@ -851,6 +886,7 @@ class M3Aggregator(pulumi.CustomResource):
|
|
|
851
886
|
__props__.__dict__["additional_disk_space"] = additional_disk_space
|
|
852
887
|
__props__.__dict__["cloud_name"] = cloud_name
|
|
853
888
|
__props__.__dict__["disk_space"] = disk_space
|
|
889
|
+
__props__.__dict__["m3aggregator"] = None if m3aggregator is None else pulumi.Output.secret(m3aggregator)
|
|
854
890
|
__props__.__dict__["m3aggregator_user_config"] = m3aggregator_user_config
|
|
855
891
|
__props__.__dict__["maintenance_window_dow"] = maintenance_window_dow
|
|
856
892
|
__props__.__dict__["maintenance_window_time"] = maintenance_window_time
|
|
@@ -881,7 +917,7 @@ class M3Aggregator(pulumi.CustomResource):
|
|
|
881
917
|
__props__.__dict__["service_uri"] = None
|
|
882
918
|
__props__.__dict__["service_username"] = None
|
|
883
919
|
__props__.__dict__["state"] = None
|
|
884
|
-
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["servicePassword", "serviceUri"])
|
|
920
|
+
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["m3aggregator", "servicePassword", "serviceUri"])
|
|
885
921
|
opts = pulumi.ResourceOptions.merge(opts, secret_opts)
|
|
886
922
|
super(M3Aggregator, __self__).__init__(
|
|
887
923
|
'aiven:index/m3Aggregator:M3Aggregator',
|
|
@@ -901,6 +937,7 @@ class M3Aggregator(pulumi.CustomResource):
|
|
|
901
937
|
disk_space_default: Optional[pulumi.Input[str]] = None,
|
|
902
938
|
disk_space_step: Optional[pulumi.Input[str]] = None,
|
|
903
939
|
disk_space_used: Optional[pulumi.Input[str]] = None,
|
|
940
|
+
m3aggregator: Optional[pulumi.Input[pulumi.InputType['M3AggregatorM3aggregatorArgs']]] = None,
|
|
904
941
|
m3aggregator_user_config: Optional[pulumi.Input[pulumi.InputType['M3AggregatorM3aggregatorUserConfigArgs']]] = None,
|
|
905
942
|
maintenance_window_dow: Optional[pulumi.Input[str]] = None,
|
|
906
943
|
maintenance_window_time: Optional[pulumi.Input[str]] = None,
|
|
@@ -935,6 +972,7 @@ class M3Aggregator(pulumi.CustomResource):
|
|
|
935
972
|
: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`
|
|
936
973
|
: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.
|
|
937
974
|
:param pulumi.Input[str] disk_space_used: Disk space that service is currently using
|
|
975
|
+
:param pulumi.Input[pulumi.InputType['M3AggregatorM3aggregatorArgs']] m3aggregator: M3 Aggregator server provided values
|
|
938
976
|
:param pulumi.Input[pulumi.InputType['M3AggregatorM3aggregatorUserConfigArgs']] m3aggregator_user_config: M3aggregator user configurable settings
|
|
939
977
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
940
978
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
@@ -967,6 +1005,7 @@ class M3Aggregator(pulumi.CustomResource):
|
|
|
967
1005
|
__props__.__dict__["disk_space_default"] = disk_space_default
|
|
968
1006
|
__props__.__dict__["disk_space_step"] = disk_space_step
|
|
969
1007
|
__props__.__dict__["disk_space_used"] = disk_space_used
|
|
1008
|
+
__props__.__dict__["m3aggregator"] = m3aggregator
|
|
970
1009
|
__props__.__dict__["m3aggregator_user_config"] = m3aggregator_user_config
|
|
971
1010
|
__props__.__dict__["maintenance_window_dow"] = maintenance_window_dow
|
|
972
1011
|
__props__.__dict__["maintenance_window_time"] = maintenance_window_time
|
|
@@ -1055,6 +1094,14 @@ class M3Aggregator(pulumi.CustomResource):
|
|
|
1055
1094
|
"""
|
|
1056
1095
|
return pulumi.get(self, "disk_space_used")
|
|
1057
1096
|
|
|
1097
|
+
@property
|
|
1098
|
+
@pulumi.getter
|
|
1099
|
+
def m3aggregator(self) -> pulumi.Output['outputs.M3AggregatorM3aggregator']:
|
|
1100
|
+
"""
|
|
1101
|
+
M3 Aggregator server provided values
|
|
1102
|
+
"""
|
|
1103
|
+
return pulumi.get(self, "m3aggregator")
|
|
1104
|
+
|
|
1058
1105
|
@property
|
|
1059
1106
|
@pulumi.getter(name="m3aggregatorUserConfig")
|
|
1060
1107
|
def m3aggregator_user_config(self) -> pulumi.Output[Optional['outputs.M3AggregatorM3aggregatorUserConfig']]:
|
pulumi_aiven/m3_db.py
CHANGED
|
@@ -22,6 +22,7 @@ class M3DbArgs:
|
|
|
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
|
+
m3db: Optional[pulumi.Input['M3DbM3dbArgs']] = None,
|
|
25
26
|
m3db_user_config: Optional[pulumi.Input['M3DbM3dbUserConfigArgs']] = 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 M3DbArgs:
|
|
|
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['M3DbM3dbArgs'] m3db: M3DB server provided values
|
|
42
44
|
:param pulumi.Input['M3DbM3dbUserConfigArgs'] m3db_user_config: M3db 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 M3DbArgs:
|
|
|
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 m3db is not None:
|
|
67
|
+
pulumi.set(__self__, "m3db", m3db)
|
|
64
68
|
if m3db_user_config is not None:
|
|
65
69
|
pulumi.set(__self__, "m3db_user_config", m3db_user_config)
|
|
66
70
|
if maintenance_window_dow is not None:
|
|
@@ -155,6 +159,18 @@ class M3DbArgs:
|
|
|
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 m3db(self) -> Optional[pulumi.Input['M3DbM3dbArgs']]:
|
|
165
|
+
"""
|
|
166
|
+
M3DB server provided values
|
|
167
|
+
"""
|
|
168
|
+
return pulumi.get(self, "m3db")
|
|
169
|
+
|
|
170
|
+
@m3db.setter
|
|
171
|
+
def m3db(self, value: Optional[pulumi.Input['M3DbM3dbArgs']]):
|
|
172
|
+
pulumi.set(self, "m3db", value)
|
|
173
|
+
|
|
158
174
|
@property
|
|
159
175
|
@pulumi.getter(name="m3dbUserConfig")
|
|
160
176
|
def m3db_user_config(self) -> Optional[pulumi.Input['M3DbM3dbUserConfigArgs']]:
|
|
@@ -275,6 +291,7 @@ class _M3DbState:
|
|
|
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
|
+
m3db: Optional[pulumi.Input['M3DbM3dbArgs']] = None,
|
|
278
295
|
m3db_user_config: Optional[pulumi.Input['M3DbM3dbUserConfigArgs']] = 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 _M3DbState:
|
|
|
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['M3DbM3dbArgs'] m3db: M3DB server provided values
|
|
307
325
|
:param pulumi.Input['M3DbM3dbUserConfigArgs'] m3db_user_config: M3db 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 _M3DbState:
|
|
|
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 m3db is not None:
|
|
365
|
+
pulumi.set(__self__, "m3db", m3db)
|
|
346
366
|
if m3db_user_config is not None:
|
|
347
367
|
pulumi.set(__self__, "m3db_user_config", m3db_user_config)
|
|
348
368
|
if maintenance_window_dow is not None:
|
|
@@ -481,6 +501,18 @@ class _M3DbState:
|
|
|
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 m3db(self) -> Optional[pulumi.Input['M3DbM3dbArgs']]:
|
|
507
|
+
"""
|
|
508
|
+
M3DB server provided values
|
|
509
|
+
"""
|
|
510
|
+
return pulumi.get(self, "m3db")
|
|
511
|
+
|
|
512
|
+
@m3db.setter
|
|
513
|
+
def m3db(self, value: Optional[pulumi.Input['M3DbM3dbArgs']]):
|
|
514
|
+
pulumi.set(self, "m3db", value)
|
|
515
|
+
|
|
484
516
|
@property
|
|
485
517
|
@pulumi.getter(name="m3dbUserConfig")
|
|
486
518
|
def m3db_user_config(self) -> Optional[pulumi.Input['M3DbM3dbUserConfigArgs']]:
|
|
@@ -718,6 +750,7 @@ class M3Db(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
|
+
m3db: Optional[pulumi.Input[pulumi.InputType['M3DbM3dbArgs']]] = None,
|
|
721
754
|
m3db_user_config: Optional[pulumi.Input[pulumi.InputType['M3DbM3dbUserConfigArgs']]] = None,
|
|
722
755
|
maintenance_window_dow: Optional[pulumi.Input[str]] = None,
|
|
723
756
|
maintenance_window_time: Optional[pulumi.Input[str]] = None,
|
|
@@ -767,6 +800,7 @@ class M3Db(pulumi.CustomResource):
|
|
|
767
800
|
: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.
|
|
768
801
|
: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
802
|
: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.
|
|
803
|
+
:param pulumi.Input[pulumi.InputType['M3DbM3dbArgs']] m3db: M3DB server provided values
|
|
770
804
|
:param pulumi.Input[pulumi.InputType['M3DbM3dbUserConfigArgs']] m3db_user_config: M3db user configurable settings
|
|
771
805
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
772
806
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
@@ -835,6 +869,7 @@ class M3Db(pulumi.CustomResource):
|
|
|
835
869
|
additional_disk_space: Optional[pulumi.Input[str]] = None,
|
|
836
870
|
cloud_name: Optional[pulumi.Input[str]] = None,
|
|
837
871
|
disk_space: Optional[pulumi.Input[str]] = None,
|
|
872
|
+
m3db: Optional[pulumi.Input[pulumi.InputType['M3DbM3dbArgs']]] = None,
|
|
838
873
|
m3db_user_config: Optional[pulumi.Input[pulumi.InputType['M3DbM3dbUserConfigArgs']]] = None,
|
|
839
874
|
maintenance_window_dow: Optional[pulumi.Input[str]] = None,
|
|
840
875
|
maintenance_window_time: Optional[pulumi.Input[str]] = None,
|
|
@@ -859,6 +894,7 @@ class M3Db(pulumi.CustomResource):
|
|
|
859
894
|
__props__.__dict__["additional_disk_space"] = additional_disk_space
|
|
860
895
|
__props__.__dict__["cloud_name"] = cloud_name
|
|
861
896
|
__props__.__dict__["disk_space"] = disk_space
|
|
897
|
+
__props__.__dict__["m3db"] = None if m3db is None else pulumi.Output.secret(m3db)
|
|
862
898
|
__props__.__dict__["m3db_user_config"] = m3db_user_config
|
|
863
899
|
__props__.__dict__["maintenance_window_dow"] = maintenance_window_dow
|
|
864
900
|
__props__.__dict__["maintenance_window_time"] = maintenance_window_time
|
|
@@ -889,7 +925,7 @@ class M3Db(pulumi.CustomResource):
|
|
|
889
925
|
__props__.__dict__["service_uri"] = None
|
|
890
926
|
__props__.__dict__["service_username"] = None
|
|
891
927
|
__props__.__dict__["state"] = None
|
|
892
|
-
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["servicePassword", "serviceUri"])
|
|
928
|
+
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["m3db", "servicePassword", "serviceUri"])
|
|
893
929
|
opts = pulumi.ResourceOptions.merge(opts, secret_opts)
|
|
894
930
|
super(M3Db, __self__).__init__(
|
|
895
931
|
'aiven:index/m3Db:M3Db',
|
|
@@ -909,6 +945,7 @@ class M3Db(pulumi.CustomResource):
|
|
|
909
945
|
disk_space_default: Optional[pulumi.Input[str]] = None,
|
|
910
946
|
disk_space_step: Optional[pulumi.Input[str]] = None,
|
|
911
947
|
disk_space_used: Optional[pulumi.Input[str]] = None,
|
|
948
|
+
m3db: Optional[pulumi.Input[pulumi.InputType['M3DbM3dbArgs']]] = None,
|
|
912
949
|
m3db_user_config: Optional[pulumi.Input[pulumi.InputType['M3DbM3dbUserConfigArgs']]] = None,
|
|
913
950
|
maintenance_window_dow: Optional[pulumi.Input[str]] = None,
|
|
914
951
|
maintenance_window_time: Optional[pulumi.Input[str]] = None,
|
|
@@ -943,6 +980,7 @@ class M3Db(pulumi.CustomResource):
|
|
|
943
980
|
: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`
|
|
944
981
|
: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.
|
|
945
982
|
:param pulumi.Input[str] disk_space_used: Disk space that service is currently using
|
|
983
|
+
:param pulumi.Input[pulumi.InputType['M3DbM3dbArgs']] m3db: M3DB server provided values
|
|
946
984
|
:param pulumi.Input[pulumi.InputType['M3DbM3dbUserConfigArgs']] m3db_user_config: M3db user configurable settings
|
|
947
985
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
948
986
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
@@ -975,6 +1013,7 @@ class M3Db(pulumi.CustomResource):
|
|
|
975
1013
|
__props__.__dict__["disk_space_default"] = disk_space_default
|
|
976
1014
|
__props__.__dict__["disk_space_step"] = disk_space_step
|
|
977
1015
|
__props__.__dict__["disk_space_used"] = disk_space_used
|
|
1016
|
+
__props__.__dict__["m3db"] = m3db
|
|
978
1017
|
__props__.__dict__["m3db_user_config"] = m3db_user_config
|
|
979
1018
|
__props__.__dict__["maintenance_window_dow"] = maintenance_window_dow
|
|
980
1019
|
__props__.__dict__["maintenance_window_time"] = maintenance_window_time
|
|
@@ -1063,6 +1102,14 @@ class M3Db(pulumi.CustomResource):
|
|
|
1063
1102
|
"""
|
|
1064
1103
|
return pulumi.get(self, "disk_space_used")
|
|
1065
1104
|
|
|
1105
|
+
@property
|
|
1106
|
+
@pulumi.getter
|
|
1107
|
+
def m3db(self) -> pulumi.Output['outputs.M3DbM3db']:
|
|
1108
|
+
"""
|
|
1109
|
+
M3DB server provided values
|
|
1110
|
+
"""
|
|
1111
|
+
return pulumi.get(self, "m3db")
|
|
1112
|
+
|
|
1066
1113
|
@property
|
|
1067
1114
|
@pulumi.getter(name="m3dbUserConfig")
|
|
1068
1115
|
def m3db_user_config(self) -> pulumi.Output[Optional['outputs.M3DbM3dbUserConfig']]:
|
|
@@ -30,7 +30,7 @@ class MirrorMakerReplicationFlowArgs:
|
|
|
30
30
|
"""
|
|
31
31
|
The set of arguments for constructing a MirrorMakerReplicationFlow resource.
|
|
32
32
|
:param pulumi.Input[bool] enable: Enable of disable replication flows for a service.
|
|
33
|
-
:param pulumi.Input[str] offset_syncs_topic_location: Offset syncs topic location.
|
|
33
|
+
:param pulumi.Input[str] offset_syncs_topic_location: Offset syncs topic location. Possible values are `source` & `target`. There is no default value.
|
|
34
34
|
: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.
|
|
35
35
|
:param pulumi.Input[str] replication_policy_class: Replication policy class. The possible values are `org.apache.kafka.connect.mirror.DefaultReplicationPolicy` and `org.apache.kafka.connect.mirror.IdentityReplicationPolicy`. The default value is `org.apache.kafka.connect.mirror.DefaultReplicationPolicy`.
|
|
36
36
|
:param pulumi.Input[str] service_name: 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.
|
|
@@ -79,7 +79,7 @@ class MirrorMakerReplicationFlowArgs:
|
|
|
79
79
|
@pulumi.getter(name="offsetSyncsTopicLocation")
|
|
80
80
|
def offset_syncs_topic_location(self) -> pulumi.Input[str]:
|
|
81
81
|
"""
|
|
82
|
-
Offset syncs topic location.
|
|
82
|
+
Offset syncs topic location. Possible values are `source` & `target`. There is no default value.
|
|
83
83
|
"""
|
|
84
84
|
return pulumi.get(self, "offset_syncs_topic_location")
|
|
85
85
|
|
|
@@ -241,7 +241,7 @@ class _MirrorMakerReplicationFlowState:
|
|
|
241
241
|
:param pulumi.Input[bool] emit_backward_heartbeats_enabled: Whether to emit heartbeats to the direction opposite to the flow, i.e. to the source cluster. The default value is `false`.
|
|
242
242
|
:param pulumi.Input[bool] emit_heartbeats_enabled: Whether to emit heartbeats to the target cluster. The default value is `false`.
|
|
243
243
|
:param pulumi.Input[bool] enable: Enable of disable replication flows for a service.
|
|
244
|
-
:param pulumi.Input[str] offset_syncs_topic_location: Offset syncs topic location.
|
|
244
|
+
:param pulumi.Input[str] offset_syncs_topic_location: Offset syncs topic location. Possible values are `source` & `target`. There is no default value.
|
|
245
245
|
: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.
|
|
246
246
|
:param pulumi.Input[str] replication_policy_class: Replication policy class. The possible values are `org.apache.kafka.connect.mirror.DefaultReplicationPolicy` and `org.apache.kafka.connect.mirror.IdentityReplicationPolicy`. The default value is `org.apache.kafka.connect.mirror.DefaultReplicationPolicy`.
|
|
247
247
|
:param pulumi.Input[str] service_name: 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.
|
|
@@ -319,7 +319,7 @@ class _MirrorMakerReplicationFlowState:
|
|
|
319
319
|
@pulumi.getter(name="offsetSyncsTopicLocation")
|
|
320
320
|
def offset_syncs_topic_location(self) -> Optional[pulumi.Input[str]]:
|
|
321
321
|
"""
|
|
322
|
-
Offset syncs topic location.
|
|
322
|
+
Offset syncs topic location. Possible values are `source` & `target`. There is no default value.
|
|
323
323
|
"""
|
|
324
324
|
return pulumi.get(self, "offset_syncs_topic_location")
|
|
325
325
|
|
|
@@ -489,7 +489,7 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
489
489
|
:param pulumi.Input[bool] emit_backward_heartbeats_enabled: Whether to emit heartbeats to the direction opposite to the flow, i.e. to the source cluster. The default value is `false`.
|
|
490
490
|
:param pulumi.Input[bool] emit_heartbeats_enabled: Whether to emit heartbeats to the target cluster. The default value is `false`.
|
|
491
491
|
:param pulumi.Input[bool] enable: Enable of disable replication flows for a service.
|
|
492
|
-
:param pulumi.Input[str] offset_syncs_topic_location: Offset syncs topic location.
|
|
492
|
+
:param pulumi.Input[str] offset_syncs_topic_location: Offset syncs topic location. Possible values are `source` & `target`. There is no default value.
|
|
493
493
|
: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.
|
|
494
494
|
:param pulumi.Input[str] replication_policy_class: Replication policy class. The possible values are `org.apache.kafka.connect.mirror.DefaultReplicationPolicy` and `org.apache.kafka.connect.mirror.IdentityReplicationPolicy`. The default value is `org.apache.kafka.connect.mirror.DefaultReplicationPolicy`.
|
|
495
495
|
:param pulumi.Input[str] service_name: 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.
|
|
@@ -632,7 +632,7 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
632
632
|
:param pulumi.Input[bool] emit_backward_heartbeats_enabled: Whether to emit heartbeats to the direction opposite to the flow, i.e. to the source cluster. The default value is `false`.
|
|
633
633
|
:param pulumi.Input[bool] emit_heartbeats_enabled: Whether to emit heartbeats to the target cluster. The default value is `false`.
|
|
634
634
|
:param pulumi.Input[bool] enable: Enable of disable replication flows for a service.
|
|
635
|
-
:param pulumi.Input[str] offset_syncs_topic_location: Offset syncs topic location.
|
|
635
|
+
:param pulumi.Input[str] offset_syncs_topic_location: Offset syncs topic location. Possible values are `source` & `target`. There is no default value.
|
|
636
636
|
: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.
|
|
637
637
|
:param pulumi.Input[str] replication_policy_class: Replication policy class. The possible values are `org.apache.kafka.connect.mirror.DefaultReplicationPolicy` and `org.apache.kafka.connect.mirror.IdentityReplicationPolicy`. The default value is `org.apache.kafka.connect.mirror.DefaultReplicationPolicy`.
|
|
638
638
|
:param pulumi.Input[str] service_name: 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.
|
|
@@ -690,7 +690,7 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
690
690
|
@pulumi.getter(name="offsetSyncsTopicLocation")
|
|
691
691
|
def offset_syncs_topic_location(self) -> pulumi.Output[str]:
|
|
692
692
|
"""
|
|
693
|
-
Offset syncs topic location.
|
|
693
|
+
Offset syncs topic location. Possible values are `source` & `target`. There is no default value.
|
|
694
694
|
"""
|
|
695
695
|
return pulumi.get(self, "offset_syncs_topic_location")
|
|
696
696
|
|