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.
- pulumi_aiven/_inputs.py +181 -1061
- pulumi_aiven/cassandra.py +1 -48
- pulumi_aiven/clickhouse.py +1 -48
- pulumi_aiven/dragonfly.py +1 -48
- pulumi_aiven/flink.py +2 -2
- pulumi_aiven/flink_application_deployment.py +30 -56
- pulumi_aiven/gcp_privatelink.py +30 -52
- pulumi_aiven/gcp_privatelink_connection_approval.py +30 -54
- pulumi_aiven/get_cassanda.py +1 -14
- pulumi_aiven/get_cassandra.py +1 -14
- pulumi_aiven/get_clickhouse.py +1 -14
- pulumi_aiven/get_dragonfly.py +1 -14
- pulumi_aiven/get_gcp_privatelink.py +2 -45
- pulumi_aiven/get_grafana.py +1 -14
- pulumi_aiven/get_m3_aggregator.py +1 -14
- pulumi_aiven/get_m3_db.py +1 -14
- pulumi_aiven/get_mirror_maker_replication_flow.py +1 -1
- pulumi_aiven/get_my_sql.py +1 -14
- pulumi_aiven/get_redis.py +1 -14
- pulumi_aiven/get_service_integration.py +3 -3
- pulumi_aiven/get_service_integration_endpoint.py +1 -1
- pulumi_aiven/grafana.py +1 -48
- pulumi_aiven/influx_db.py +2 -21
- pulumi_aiven/kafka.py +1 -20
- pulumi_aiven/m3_aggregator.py +1 -48
- pulumi_aiven/m3_db.py +1 -48
- pulumi_aiven/mirror_maker_replication_flow.py +7 -7
- pulumi_aiven/my_sql.py +1 -48
- pulumi_aiven/open_search.py +2 -21
- pulumi_aiven/outputs.py +285 -1758
- pulumi_aiven/pg.py +2 -2
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/redis.py +1 -48
- pulumi_aiven/service_integration.py +7 -7
- pulumi_aiven/service_integration_endpoint.py +7 -7
- {pulumi_aiven-6.16.0.dist-info → pulumi_aiven-6.16.0a1715859567.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.16.0.dist-info → pulumi_aiven-6.16.0a1715859567.dist-info}/RECORD +39 -39
- {pulumi_aiven-6.16.0.dist-info → pulumi_aiven-6.16.0a1715859567.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.16.0.dist-info → pulumi_aiven-6.16.0a1715859567.dist-info}/top_level.txt +0 -0
pulumi_aiven/influx_db.py
CHANGED
|
@@ -23,7 +23,6 @@ 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,
|
|
27
26
|
maintenance_window_dow: Optional[pulumi.Input[str]] = None,
|
|
28
27
|
maintenance_window_time: Optional[pulumi.Input[str]] = None,
|
|
29
28
|
project_vpc_id: Optional[pulumi.Input[str]] = None,
|
|
@@ -55,7 +54,6 @@ class InfluxDbArgs:
|
|
|
55
54
|
:param pulumi.Input[str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing
|
|
56
55
|
will result in the service rebalancing.
|
|
57
56
|
:param pulumi.Input['InfluxDbInfluxdbUserConfigArgs'] influxdb_user_config: Influxdb user configurable settings
|
|
58
|
-
:param pulumi.Input[Sequence[pulumi.Input['InfluxDbInfluxdbArgs']]] influxdbs: InfluxDB server provided values
|
|
59
57
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
60
58
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
61
59
|
: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
|
|
@@ -86,8 +84,6 @@ class InfluxDbArgs:
|
|
|
86
84
|
pulumi.set(__self__, "disk_space", disk_space)
|
|
87
85
|
if influxdb_user_config is not None:
|
|
88
86
|
pulumi.set(__self__, "influxdb_user_config", influxdb_user_config)
|
|
89
|
-
if influxdbs is not None:
|
|
90
|
-
pulumi.set(__self__, "influxdbs", influxdbs)
|
|
91
87
|
if maintenance_window_dow is not None:
|
|
92
88
|
pulumi.set(__self__, "maintenance_window_dow", maintenance_window_dow)
|
|
93
89
|
if maintenance_window_time is not None:
|
|
@@ -206,18 +202,6 @@ class InfluxDbArgs:
|
|
|
206
202
|
def influxdb_user_config(self, value: Optional[pulumi.Input['InfluxDbInfluxdbUserConfigArgs']]):
|
|
207
203
|
pulumi.set(self, "influxdb_user_config", value)
|
|
208
204
|
|
|
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
|
-
|
|
221
205
|
@property
|
|
222
206
|
@pulumi.getter(name="maintenanceWindowDow")
|
|
223
207
|
def maintenance_window_dow(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -839,7 +823,6 @@ class InfluxDb(pulumi.CustomResource):
|
|
|
839
823
|
cloud_name: Optional[pulumi.Input[str]] = None,
|
|
840
824
|
disk_space: Optional[pulumi.Input[str]] = None,
|
|
841
825
|
influxdb_user_config: Optional[pulumi.Input[pulumi.InputType['InfluxDbInfluxdbUserConfigArgs']]] = None,
|
|
842
|
-
influxdbs: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InfluxDbInfluxdbArgs']]]]] = None,
|
|
843
826
|
maintenance_window_dow: Optional[pulumi.Input[str]] = None,
|
|
844
827
|
maintenance_window_time: Optional[pulumi.Input[str]] = None,
|
|
845
828
|
plan: Optional[pulumi.Input[str]] = None,
|
|
@@ -867,7 +850,6 @@ class InfluxDb(pulumi.CustomResource):
|
|
|
867
850
|
:param pulumi.Input[str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing
|
|
868
851
|
will result in the service rebalancing.
|
|
869
852
|
: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
|
|
871
853
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
872
854
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
873
855
|
:param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there
|
|
@@ -921,7 +903,6 @@ class InfluxDb(pulumi.CustomResource):
|
|
|
921
903
|
cloud_name: Optional[pulumi.Input[str]] = None,
|
|
922
904
|
disk_space: Optional[pulumi.Input[str]] = None,
|
|
923
905
|
influxdb_user_config: Optional[pulumi.Input[pulumi.InputType['InfluxDbInfluxdbUserConfigArgs']]] = None,
|
|
924
|
-
influxdbs: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['InfluxDbInfluxdbArgs']]]]] = None,
|
|
925
906
|
maintenance_window_dow: Optional[pulumi.Input[str]] = None,
|
|
926
907
|
maintenance_window_time: Optional[pulumi.Input[str]] = None,
|
|
927
908
|
plan: Optional[pulumi.Input[str]] = None,
|
|
@@ -946,7 +927,6 @@ class InfluxDb(pulumi.CustomResource):
|
|
|
946
927
|
__props__.__dict__["cloud_name"] = cloud_name
|
|
947
928
|
__props__.__dict__["disk_space"] = disk_space
|
|
948
929
|
__props__.__dict__["influxdb_user_config"] = influxdb_user_config
|
|
949
|
-
__props__.__dict__["influxdbs"] = None if influxdbs is None else pulumi.Output.secret(influxdbs)
|
|
950
930
|
__props__.__dict__["maintenance_window_dow"] = maintenance_window_dow
|
|
951
931
|
__props__.__dict__["maintenance_window_time"] = maintenance_window_time
|
|
952
932
|
if plan is None and not opts.urn:
|
|
@@ -969,6 +949,7 @@ class InfluxDb(pulumi.CustomResource):
|
|
|
969
949
|
__props__.__dict__["disk_space_default"] = None
|
|
970
950
|
__props__.__dict__["disk_space_step"] = None
|
|
971
951
|
__props__.__dict__["disk_space_used"] = None
|
|
952
|
+
__props__.__dict__["influxdbs"] = None
|
|
972
953
|
__props__.__dict__["service_host"] = None
|
|
973
954
|
__props__.__dict__["service_password"] = None
|
|
974
955
|
__props__.__dict__["service_port"] = None
|
|
@@ -976,7 +957,7 @@ class InfluxDb(pulumi.CustomResource):
|
|
|
976
957
|
__props__.__dict__["service_uri"] = None
|
|
977
958
|
__props__.__dict__["service_username"] = None
|
|
978
959
|
__props__.__dict__["state"] = None
|
|
979
|
-
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["
|
|
960
|
+
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["servicePassword", "serviceUri"])
|
|
980
961
|
opts = pulumi.ResourceOptions.merge(opts, secret_opts)
|
|
981
962
|
super(InfluxDb, __self__).__init__(
|
|
982
963
|
'aiven:index/influxDb:InfluxDb',
|
pulumi_aiven/kafka.py
CHANGED
|
@@ -24,7 +24,6 @@ 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,
|
|
28
27
|
karapace: Optional[pulumi.Input[bool]] = None,
|
|
29
28
|
maintenance_window_dow: Optional[pulumi.Input[str]] = None,
|
|
30
29
|
maintenance_window_time: Optional[pulumi.Input[str]] = None,
|
|
@@ -44,7 +43,6 @@ class KafkaArgs:
|
|
|
44
43
|
:param pulumi.Input[bool] default_acl: Create a default wildcard Kafka ACL.
|
|
45
44
|
:param pulumi.Input[str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
46
45
|
:param pulumi.Input['KafkaKafkaUserConfigArgs'] kafka_user_config: Kafka user configurable settings
|
|
47
|
-
:param pulumi.Input[Sequence[pulumi.Input['KafkaKafkaArgs']]] kafkas: Kafka server connection details.
|
|
48
46
|
:param pulumi.Input[bool] karapace: Switch the service to use [Karapace](https://aiven.io/docs/products/kafka/karapace) for schema registry and REST proxy.
|
|
49
47
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
50
48
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
@@ -71,8 +69,6 @@ class KafkaArgs:
|
|
|
71
69
|
pulumi.set(__self__, "disk_space", disk_space)
|
|
72
70
|
if kafka_user_config is not None:
|
|
73
71
|
pulumi.set(__self__, "kafka_user_config", kafka_user_config)
|
|
74
|
-
if kafkas is not None:
|
|
75
|
-
pulumi.set(__self__, "kafkas", kafkas)
|
|
76
72
|
if karapace is not None:
|
|
77
73
|
warnings.warn("""Usage of this field is discouraged.""", DeprecationWarning)
|
|
78
74
|
pulumi.log.warn("""karapace is deprecated: Usage of this field is discouraged.""")
|
|
@@ -194,18 +190,6 @@ class KafkaArgs:
|
|
|
194
190
|
def kafka_user_config(self, value: Optional[pulumi.Input['KafkaKafkaUserConfigArgs']]):
|
|
195
191
|
pulumi.set(self, "kafka_user_config", value)
|
|
196
192
|
|
|
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
|
-
|
|
209
193
|
@property
|
|
210
194
|
@pulumi.getter
|
|
211
195
|
def karapace(self) -> Optional[pulumi.Input[bool]]:
|
|
@@ -828,7 +812,6 @@ class Kafka(pulumi.CustomResource):
|
|
|
828
812
|
default_acl: Optional[pulumi.Input[bool]] = None,
|
|
829
813
|
disk_space: Optional[pulumi.Input[str]] = None,
|
|
830
814
|
kafka_user_config: Optional[pulumi.Input[pulumi.InputType['KafkaKafkaUserConfigArgs']]] = None,
|
|
831
|
-
kafkas: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['KafkaKafkaArgs']]]]] = None,
|
|
832
815
|
karapace: Optional[pulumi.Input[bool]] = None,
|
|
833
816
|
maintenance_window_dow: Optional[pulumi.Input[str]] = None,
|
|
834
817
|
maintenance_window_time: Optional[pulumi.Input[str]] = None,
|
|
@@ -887,7 +870,6 @@ class Kafka(pulumi.CustomResource):
|
|
|
887
870
|
:param pulumi.Input[bool] default_acl: Create a default wildcard Kafka ACL.
|
|
888
871
|
: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.
|
|
889
872
|
: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.
|
|
891
873
|
:param pulumi.Input[bool] karapace: Switch the service to use [Karapace](https://aiven.io/docs/products/kafka/karapace) for schema registry and REST proxy.
|
|
892
874
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
893
875
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
@@ -965,7 +947,6 @@ class Kafka(pulumi.CustomResource):
|
|
|
965
947
|
default_acl: Optional[pulumi.Input[bool]] = None,
|
|
966
948
|
disk_space: Optional[pulumi.Input[str]] = None,
|
|
967
949
|
kafka_user_config: Optional[pulumi.Input[pulumi.InputType['KafkaKafkaUserConfigArgs']]] = None,
|
|
968
|
-
kafkas: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['KafkaKafkaArgs']]]]] = None,
|
|
969
950
|
karapace: Optional[pulumi.Input[bool]] = None,
|
|
970
951
|
maintenance_window_dow: Optional[pulumi.Input[str]] = None,
|
|
971
952
|
maintenance_window_time: Optional[pulumi.Input[str]] = None,
|
|
@@ -992,7 +973,6 @@ class Kafka(pulumi.CustomResource):
|
|
|
992
973
|
__props__.__dict__["default_acl"] = default_acl
|
|
993
974
|
__props__.__dict__["disk_space"] = disk_space
|
|
994
975
|
__props__.__dict__["kafka_user_config"] = kafka_user_config
|
|
995
|
-
__props__.__dict__["kafkas"] = None if kafkas is None else pulumi.Output.secret(kafkas)
|
|
996
976
|
__props__.__dict__["karapace"] = karapace
|
|
997
977
|
__props__.__dict__["maintenance_window_dow"] = maintenance_window_dow
|
|
998
978
|
__props__.__dict__["maintenance_window_time"] = maintenance_window_time
|
|
@@ -1016,6 +996,7 @@ class Kafka(pulumi.CustomResource):
|
|
|
1016
996
|
__props__.__dict__["disk_space_default"] = None
|
|
1017
997
|
__props__.__dict__["disk_space_step"] = None
|
|
1018
998
|
__props__.__dict__["disk_space_used"] = None
|
|
999
|
+
__props__.__dict__["kafkas"] = None
|
|
1019
1000
|
__props__.__dict__["service_host"] = None
|
|
1020
1001
|
__props__.__dict__["service_password"] = None
|
|
1021
1002
|
__props__.__dict__["service_port"] = None
|
pulumi_aiven/m3_aggregator.py
CHANGED
|
@@ -22,7 +22,6 @@ 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,
|
|
26
25
|
m3aggregator_user_config: Optional[pulumi.Input['M3AggregatorM3aggregatorUserConfigArgs']] = 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 M3AggregatorArgs:
|
|
|
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['M3AggregatorM3aggregatorArgs'] m3aggregator: M3 Aggregator server provided values
|
|
44
42
|
:param pulumi.Input['M3AggregatorM3aggregatorUserConfigArgs'] m3aggregator_user_config: M3aggregator 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 M3AggregatorArgs:
|
|
|
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 m3aggregator is not None:
|
|
67
|
-
pulumi.set(__self__, "m3aggregator", m3aggregator)
|
|
68
64
|
if m3aggregator_user_config is not None:
|
|
69
65
|
pulumi.set(__self__, "m3aggregator_user_config", m3aggregator_user_config)
|
|
70
66
|
if maintenance_window_dow is not None:
|
|
@@ -159,18 +155,6 @@ class M3AggregatorArgs:
|
|
|
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 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
|
-
|
|
174
158
|
@property
|
|
175
159
|
@pulumi.getter(name="m3aggregatorUserConfig")
|
|
176
160
|
def m3aggregator_user_config(self) -> Optional[pulumi.Input['M3AggregatorM3aggregatorUserConfigArgs']]:
|
|
@@ -291,7 +275,6 @@ class _M3AggregatorState:
|
|
|
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
|
-
m3aggregator: Optional[pulumi.Input['M3AggregatorM3aggregatorArgs']] = None,
|
|
295
278
|
m3aggregator_user_config: Optional[pulumi.Input['M3AggregatorM3aggregatorUserConfigArgs']] = 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 _M3AggregatorState:
|
|
|
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['M3AggregatorM3aggregatorArgs'] m3aggregator: M3 Aggregator server provided values
|
|
325
307
|
:param pulumi.Input['M3AggregatorM3aggregatorUserConfigArgs'] m3aggregator_user_config: M3aggregator 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 _M3AggregatorState:
|
|
|
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 m3aggregator is not None:
|
|
365
|
-
pulumi.set(__self__, "m3aggregator", m3aggregator)
|
|
366
346
|
if m3aggregator_user_config is not None:
|
|
367
347
|
pulumi.set(__self__, "m3aggregator_user_config", m3aggregator_user_config)
|
|
368
348
|
if maintenance_window_dow is not None:
|
|
@@ -501,18 +481,6 @@ class _M3AggregatorState:
|
|
|
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 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
|
-
|
|
516
484
|
@property
|
|
517
485
|
@pulumi.getter(name="m3aggregatorUserConfig")
|
|
518
486
|
def m3aggregator_user_config(self) -> Optional[pulumi.Input['M3AggregatorM3aggregatorUserConfigArgs']]:
|
|
@@ -750,7 +718,6 @@ class M3Aggregator(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
|
-
m3aggregator: Optional[pulumi.Input[pulumi.InputType['M3AggregatorM3aggregatorArgs']]] = None,
|
|
754
721
|
m3aggregator_user_config: Optional[pulumi.Input[pulumi.InputType['M3AggregatorM3aggregatorUserConfigArgs']]] = None,
|
|
755
722
|
maintenance_window_dow: Optional[pulumi.Input[str]] = None,
|
|
756
723
|
maintenance_window_time: Optional[pulumi.Input[str]] = None,
|
|
@@ -796,7 +763,6 @@ class M3Aggregator(pulumi.CustomResource):
|
|
|
796
763
|
: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.
|
|
797
764
|
: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).
|
|
798
765
|
: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
|
|
800
766
|
:param pulumi.Input[pulumi.InputType['M3AggregatorM3aggregatorUserConfigArgs']] m3aggregator_user_config: M3aggregator user configurable settings
|
|
801
767
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
802
768
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
@@ -861,7 +827,6 @@ class M3Aggregator(pulumi.CustomResource):
|
|
|
861
827
|
additional_disk_space: Optional[pulumi.Input[str]] = None,
|
|
862
828
|
cloud_name: Optional[pulumi.Input[str]] = None,
|
|
863
829
|
disk_space: Optional[pulumi.Input[str]] = None,
|
|
864
|
-
m3aggregator: Optional[pulumi.Input[pulumi.InputType['M3AggregatorM3aggregatorArgs']]] = None,
|
|
865
830
|
m3aggregator_user_config: Optional[pulumi.Input[pulumi.InputType['M3AggregatorM3aggregatorUserConfigArgs']]] = None,
|
|
866
831
|
maintenance_window_dow: Optional[pulumi.Input[str]] = None,
|
|
867
832
|
maintenance_window_time: Optional[pulumi.Input[str]] = None,
|
|
@@ -886,7 +851,6 @@ class M3Aggregator(pulumi.CustomResource):
|
|
|
886
851
|
__props__.__dict__["additional_disk_space"] = additional_disk_space
|
|
887
852
|
__props__.__dict__["cloud_name"] = cloud_name
|
|
888
853
|
__props__.__dict__["disk_space"] = disk_space
|
|
889
|
-
__props__.__dict__["m3aggregator"] = None if m3aggregator is None else pulumi.Output.secret(m3aggregator)
|
|
890
854
|
__props__.__dict__["m3aggregator_user_config"] = m3aggregator_user_config
|
|
891
855
|
__props__.__dict__["maintenance_window_dow"] = maintenance_window_dow
|
|
892
856
|
__props__.__dict__["maintenance_window_time"] = maintenance_window_time
|
|
@@ -917,7 +881,7 @@ class M3Aggregator(pulumi.CustomResource):
|
|
|
917
881
|
__props__.__dict__["service_uri"] = None
|
|
918
882
|
__props__.__dict__["service_username"] = None
|
|
919
883
|
__props__.__dict__["state"] = None
|
|
920
|
-
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["
|
|
884
|
+
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["servicePassword", "serviceUri"])
|
|
921
885
|
opts = pulumi.ResourceOptions.merge(opts, secret_opts)
|
|
922
886
|
super(M3Aggregator, __self__).__init__(
|
|
923
887
|
'aiven:index/m3Aggregator:M3Aggregator',
|
|
@@ -937,7 +901,6 @@ class M3Aggregator(pulumi.CustomResource):
|
|
|
937
901
|
disk_space_default: Optional[pulumi.Input[str]] = None,
|
|
938
902
|
disk_space_step: Optional[pulumi.Input[str]] = None,
|
|
939
903
|
disk_space_used: Optional[pulumi.Input[str]] = None,
|
|
940
|
-
m3aggregator: Optional[pulumi.Input[pulumi.InputType['M3AggregatorM3aggregatorArgs']]] = None,
|
|
941
904
|
m3aggregator_user_config: Optional[pulumi.Input[pulumi.InputType['M3AggregatorM3aggregatorUserConfigArgs']]] = None,
|
|
942
905
|
maintenance_window_dow: Optional[pulumi.Input[str]] = None,
|
|
943
906
|
maintenance_window_time: Optional[pulumi.Input[str]] = None,
|
|
@@ -972,7 +935,6 @@ class M3Aggregator(pulumi.CustomResource):
|
|
|
972
935
|
: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`
|
|
973
936
|
: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.
|
|
974
937
|
: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
|
|
976
938
|
:param pulumi.Input[pulumi.InputType['M3AggregatorM3aggregatorUserConfigArgs']] m3aggregator_user_config: M3aggregator user configurable settings
|
|
977
939
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
978
940
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
@@ -1005,7 +967,6 @@ class M3Aggregator(pulumi.CustomResource):
|
|
|
1005
967
|
__props__.__dict__["disk_space_default"] = disk_space_default
|
|
1006
968
|
__props__.__dict__["disk_space_step"] = disk_space_step
|
|
1007
969
|
__props__.__dict__["disk_space_used"] = disk_space_used
|
|
1008
|
-
__props__.__dict__["m3aggregator"] = m3aggregator
|
|
1009
970
|
__props__.__dict__["m3aggregator_user_config"] = m3aggregator_user_config
|
|
1010
971
|
__props__.__dict__["maintenance_window_dow"] = maintenance_window_dow
|
|
1011
972
|
__props__.__dict__["maintenance_window_time"] = maintenance_window_time
|
|
@@ -1094,14 +1055,6 @@ class M3Aggregator(pulumi.CustomResource):
|
|
|
1094
1055
|
"""
|
|
1095
1056
|
return pulumi.get(self, "disk_space_used")
|
|
1096
1057
|
|
|
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
|
-
|
|
1105
1058
|
@property
|
|
1106
1059
|
@pulumi.getter(name="m3aggregatorUserConfig")
|
|
1107
1060
|
def m3aggregator_user_config(self) -> pulumi.Output[Optional['outputs.M3AggregatorM3aggregatorUserConfig']]:
|
pulumi_aiven/m3_db.py
CHANGED
|
@@ -22,7 +22,6 @@ 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,
|
|
26
25
|
m3db_user_config: Optional[pulumi.Input['M3DbM3dbUserConfigArgs']] = 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 M3DbArgs:
|
|
|
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['M3DbM3dbArgs'] m3db: M3DB server provided values
|
|
44
42
|
:param pulumi.Input['M3DbM3dbUserConfigArgs'] m3db_user_config: M3db 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 M3DbArgs:
|
|
|
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 m3db is not None:
|
|
67
|
-
pulumi.set(__self__, "m3db", m3db)
|
|
68
64
|
if m3db_user_config is not None:
|
|
69
65
|
pulumi.set(__self__, "m3db_user_config", m3db_user_config)
|
|
70
66
|
if maintenance_window_dow is not None:
|
|
@@ -159,18 +155,6 @@ class M3DbArgs:
|
|
|
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 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
|
-
|
|
174
158
|
@property
|
|
175
159
|
@pulumi.getter(name="m3dbUserConfig")
|
|
176
160
|
def m3db_user_config(self) -> Optional[pulumi.Input['M3DbM3dbUserConfigArgs']]:
|
|
@@ -291,7 +275,6 @@ class _M3DbState:
|
|
|
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
|
-
m3db: Optional[pulumi.Input['M3DbM3dbArgs']] = None,
|
|
295
278
|
m3db_user_config: Optional[pulumi.Input['M3DbM3dbUserConfigArgs']] = 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 _M3DbState:
|
|
|
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['M3DbM3dbArgs'] m3db: M3DB server provided values
|
|
325
307
|
:param pulumi.Input['M3DbM3dbUserConfigArgs'] m3db_user_config: M3db 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 _M3DbState:
|
|
|
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 m3db is not None:
|
|
365
|
-
pulumi.set(__self__, "m3db", m3db)
|
|
366
346
|
if m3db_user_config is not None:
|
|
367
347
|
pulumi.set(__self__, "m3db_user_config", m3db_user_config)
|
|
368
348
|
if maintenance_window_dow is not None:
|
|
@@ -501,18 +481,6 @@ class _M3DbState:
|
|
|
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 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
|
-
|
|
516
484
|
@property
|
|
517
485
|
@pulumi.getter(name="m3dbUserConfig")
|
|
518
486
|
def m3db_user_config(self) -> Optional[pulumi.Input['M3DbM3dbUserConfigArgs']]:
|
|
@@ -750,7 +718,6 @@ class M3Db(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
|
-
m3db: Optional[pulumi.Input[pulumi.InputType['M3DbM3dbArgs']]] = None,
|
|
754
721
|
m3db_user_config: Optional[pulumi.Input[pulumi.InputType['M3DbM3dbUserConfigArgs']]] = None,
|
|
755
722
|
maintenance_window_dow: Optional[pulumi.Input[str]] = None,
|
|
756
723
|
maintenance_window_time: Optional[pulumi.Input[str]] = None,
|
|
@@ -800,7 +767,6 @@ class M3Db(pulumi.CustomResource):
|
|
|
800
767
|
: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.
|
|
801
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).
|
|
802
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.
|
|
803
|
-
:param pulumi.Input[pulumi.InputType['M3DbM3dbArgs']] m3db: M3DB server provided values
|
|
804
770
|
:param pulumi.Input[pulumi.InputType['M3DbM3dbUserConfigArgs']] m3db_user_config: M3db user configurable settings
|
|
805
771
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
806
772
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
@@ -869,7 +835,6 @@ class M3Db(pulumi.CustomResource):
|
|
|
869
835
|
additional_disk_space: Optional[pulumi.Input[str]] = None,
|
|
870
836
|
cloud_name: Optional[pulumi.Input[str]] = None,
|
|
871
837
|
disk_space: Optional[pulumi.Input[str]] = None,
|
|
872
|
-
m3db: Optional[pulumi.Input[pulumi.InputType['M3DbM3dbArgs']]] = None,
|
|
873
838
|
m3db_user_config: Optional[pulumi.Input[pulumi.InputType['M3DbM3dbUserConfigArgs']]] = None,
|
|
874
839
|
maintenance_window_dow: Optional[pulumi.Input[str]] = None,
|
|
875
840
|
maintenance_window_time: Optional[pulumi.Input[str]] = None,
|
|
@@ -894,7 +859,6 @@ class M3Db(pulumi.CustomResource):
|
|
|
894
859
|
__props__.__dict__["additional_disk_space"] = additional_disk_space
|
|
895
860
|
__props__.__dict__["cloud_name"] = cloud_name
|
|
896
861
|
__props__.__dict__["disk_space"] = disk_space
|
|
897
|
-
__props__.__dict__["m3db"] = None if m3db is None else pulumi.Output.secret(m3db)
|
|
898
862
|
__props__.__dict__["m3db_user_config"] = m3db_user_config
|
|
899
863
|
__props__.__dict__["maintenance_window_dow"] = maintenance_window_dow
|
|
900
864
|
__props__.__dict__["maintenance_window_time"] = maintenance_window_time
|
|
@@ -925,7 +889,7 @@ class M3Db(pulumi.CustomResource):
|
|
|
925
889
|
__props__.__dict__["service_uri"] = None
|
|
926
890
|
__props__.__dict__["service_username"] = None
|
|
927
891
|
__props__.__dict__["state"] = None
|
|
928
|
-
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["
|
|
892
|
+
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["servicePassword", "serviceUri"])
|
|
929
893
|
opts = pulumi.ResourceOptions.merge(opts, secret_opts)
|
|
930
894
|
super(M3Db, __self__).__init__(
|
|
931
895
|
'aiven:index/m3Db:M3Db',
|
|
@@ -945,7 +909,6 @@ class M3Db(pulumi.CustomResource):
|
|
|
945
909
|
disk_space_default: Optional[pulumi.Input[str]] = None,
|
|
946
910
|
disk_space_step: Optional[pulumi.Input[str]] = None,
|
|
947
911
|
disk_space_used: Optional[pulumi.Input[str]] = None,
|
|
948
|
-
m3db: Optional[pulumi.Input[pulumi.InputType['M3DbM3dbArgs']]] = None,
|
|
949
912
|
m3db_user_config: Optional[pulumi.Input[pulumi.InputType['M3DbM3dbUserConfigArgs']]] = None,
|
|
950
913
|
maintenance_window_dow: Optional[pulumi.Input[str]] = None,
|
|
951
914
|
maintenance_window_time: Optional[pulumi.Input[str]] = None,
|
|
@@ -980,7 +943,6 @@ class M3Db(pulumi.CustomResource):
|
|
|
980
943
|
: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`
|
|
981
944
|
: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.
|
|
982
945
|
: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
|
|
984
946
|
:param pulumi.Input[pulumi.InputType['M3DbM3dbUserConfigArgs']] m3db_user_config: M3db user configurable settings
|
|
985
947
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
986
948
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
@@ -1013,7 +975,6 @@ class M3Db(pulumi.CustomResource):
|
|
|
1013
975
|
__props__.__dict__["disk_space_default"] = disk_space_default
|
|
1014
976
|
__props__.__dict__["disk_space_step"] = disk_space_step
|
|
1015
977
|
__props__.__dict__["disk_space_used"] = disk_space_used
|
|
1016
|
-
__props__.__dict__["m3db"] = m3db
|
|
1017
978
|
__props__.__dict__["m3db_user_config"] = m3db_user_config
|
|
1018
979
|
__props__.__dict__["maintenance_window_dow"] = maintenance_window_dow
|
|
1019
980
|
__props__.__dict__["maintenance_window_time"] = maintenance_window_time
|
|
@@ -1102,14 +1063,6 @@ class M3Db(pulumi.CustomResource):
|
|
|
1102
1063
|
"""
|
|
1103
1064
|
return pulumi.get(self, "disk_space_used")
|
|
1104
1065
|
|
|
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
|
-
|
|
1113
1066
|
@property
|
|
1114
1067
|
@pulumi.getter(name="m3dbUserConfig")
|
|
1115
1068
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
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.
|
|
694
694
|
"""
|
|
695
695
|
return pulumi.get(self, "offset_syncs_topic_location")
|
|
696
696
|
|