pulumi-aiven 6.28.0a1731647682__py3-none-any.whl → 6.29.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-aiven might be problematic. Click here for more details.
- pulumi_aiven/__init__.py +9 -0
- pulumi_aiven/_inputs.py +1136 -227
- pulumi_aiven/account_team_project.py +7 -7
- pulumi_aiven/billing_group.py +7 -7
- pulumi_aiven/cassandra.py +8 -8
- pulumi_aiven/clickhouse.py +8 -8
- pulumi_aiven/dragonfly.py +8 -8
- pulumi_aiven/flink.py +8 -8
- pulumi_aiven/get_account_team_project.py +1 -1
- pulumi_aiven/get_billing_group.py +1 -1
- pulumi_aiven/get_cassanda.py +1 -1
- pulumi_aiven/get_cassandra.py +1 -1
- pulumi_aiven/get_clickhouse.py +1 -1
- pulumi_aiven/get_dragonfly.py +1 -1
- pulumi_aiven/get_flink.py +1 -1
- pulumi_aiven/get_grafana.py +1 -1
- pulumi_aiven/get_kafka.py +1 -1
- pulumi_aiven/get_kafka_connect.py +1 -1
- pulumi_aiven/get_kafka_mirror_maker.py +1 -1
- pulumi_aiven/get_m3_aggregator.py +1 -1
- pulumi_aiven/get_m3_db.py +1 -1
- pulumi_aiven/get_mirror_maker_replication_flow.py +16 -2
- pulumi_aiven/get_my_sql.py +1 -1
- pulumi_aiven/get_open_search.py +1 -1
- pulumi_aiven/get_pg.py +1 -1
- pulumi_aiven/get_project_user.py +1 -1
- pulumi_aiven/get_redis.py +1 -1
- pulumi_aiven/get_service_component.py +9 -9
- pulumi_aiven/get_service_integration.py +17 -17
- pulumi_aiven/get_service_integration_endpoint.py +59 -31
- pulumi_aiven/get_thanos.py +1 -1
- pulumi_aiven/get_valkey.py +1 -1
- pulumi_aiven/get_valkey_user.py +9 -9
- pulumi_aiven/grafana.py +8 -8
- pulumi_aiven/influx_db.py +15 -8
- pulumi_aiven/kafka.py +8 -8
- pulumi_aiven/kafka_connect.py +8 -8
- pulumi_aiven/kafka_mirror_maker.py +8 -8
- pulumi_aiven/kafka_native_acl.py +534 -0
- pulumi_aiven/m3_aggregator.py +8 -8
- pulumi_aiven/m3_db.py +8 -8
- pulumi_aiven/mirror_maker_replication_flow.py +54 -7
- pulumi_aiven/my_sql.py +8 -8
- pulumi_aiven/open_search.py +8 -8
- pulumi_aiven/organization_group_project.py +17 -9
- pulumi_aiven/organization_permission.py +49 -49
- pulumi_aiven/outputs.py +1586 -295
- pulumi_aiven/pg.py +8 -8
- pulumi_aiven/project_user.py +15 -7
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/redis.py +8 -8
- pulumi_aiven/service_integration.py +139 -123
- pulumi_aiven/service_integration_endpoint.py +302 -140
- pulumi_aiven/thanos.py +8 -8
- pulumi_aiven/valkey.py +10 -10
- pulumi_aiven/valkey_user.py +142 -48
- {pulumi_aiven-6.28.0a1731647682.dist-info → pulumi_aiven-6.29.0.dist-info}/METADATA +5 -5
- {pulumi_aiven-6.28.0a1731647682.dist-info → pulumi_aiven-6.29.0.dist-info}/RECORD +60 -59
- {pulumi_aiven-6.28.0a1731647682.dist-info → pulumi_aiven-6.29.0.dist-info}/WHEEL +1 -1
- {pulumi_aiven-6.28.0a1731647682.dist-info → pulumi_aiven-6.29.0.dist-info}/top_level.txt +0 -0
pulumi_aiven/m3_db.py
CHANGED
|
@@ -46,7 +46,7 @@ class M3DbArgs:
|
|
|
46
46
|
: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).
|
|
47
47
|
: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.
|
|
48
48
|
:param pulumi.Input['M3DbM3dbArgs'] m3db: Values provided by the M3DB server.
|
|
49
|
-
:param pulumi.Input['M3DbM3dbUserConfigArgs'] m3db_user_config: M3db user configurable settings
|
|
49
|
+
:param pulumi.Input['M3DbM3dbUserConfigArgs'] m3db_user_config: M3db user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
50
50
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
51
51
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
52
52
|
: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 value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
@@ -178,7 +178,7 @@ class M3DbArgs:
|
|
|
178
178
|
@pulumi.getter(name="m3dbUserConfig")
|
|
179
179
|
def m3db_user_config(self) -> Optional[pulumi.Input['M3DbM3dbUserConfigArgs']]:
|
|
180
180
|
"""
|
|
181
|
-
M3db user configurable settings
|
|
181
|
+
M3db user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
182
182
|
"""
|
|
183
183
|
return pulumi.get(self, "m3db_user_config")
|
|
184
184
|
|
|
@@ -325,7 +325,7 @@ class _M3DbState:
|
|
|
325
325
|
: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.
|
|
326
326
|
:param pulumi.Input[str] disk_space_used: Disk space that service is currently using
|
|
327
327
|
:param pulumi.Input['M3DbM3dbArgs'] m3db: Values provided by the M3DB server.
|
|
328
|
-
:param pulumi.Input['M3DbM3dbUserConfigArgs'] m3db_user_config: M3db user configurable settings
|
|
328
|
+
:param pulumi.Input['M3DbM3dbUserConfigArgs'] m3db_user_config: M3db user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
329
329
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
330
330
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
331
331
|
:param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
@@ -522,7 +522,7 @@ class _M3DbState:
|
|
|
522
522
|
@pulumi.getter(name="m3dbUserConfig")
|
|
523
523
|
def m3db_user_config(self) -> Optional[pulumi.Input['M3DbM3dbUserConfigArgs']]:
|
|
524
524
|
"""
|
|
525
|
-
M3db user configurable settings
|
|
525
|
+
M3db user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
526
526
|
"""
|
|
527
527
|
return pulumi.get(self, "m3db_user_config")
|
|
528
528
|
|
|
@@ -806,7 +806,7 @@ class M3Db(pulumi.CustomResource):
|
|
|
806
806
|
: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).
|
|
807
807
|
: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.
|
|
808
808
|
:param pulumi.Input[Union['M3DbM3dbArgs', 'M3DbM3dbArgsDict']] m3db: Values provided by the M3DB server.
|
|
809
|
-
:param pulumi.Input[Union['M3DbM3dbUserConfigArgs', 'M3DbM3dbUserConfigArgsDict']] m3db_user_config: M3db user configurable settings
|
|
809
|
+
:param pulumi.Input[Union['M3DbM3dbUserConfigArgs', 'M3DbM3dbUserConfigArgsDict']] m3db_user_config: M3db user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
810
810
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
811
811
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
812
812
|
:param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
@@ -986,7 +986,7 @@ class M3Db(pulumi.CustomResource):
|
|
|
986
986
|
: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.
|
|
987
987
|
:param pulumi.Input[str] disk_space_used: Disk space that service is currently using
|
|
988
988
|
:param pulumi.Input[Union['M3DbM3dbArgs', 'M3DbM3dbArgsDict']] m3db: Values provided by the M3DB server.
|
|
989
|
-
:param pulumi.Input[Union['M3DbM3dbUserConfigArgs', 'M3DbM3dbUserConfigArgsDict']] m3db_user_config: M3db user configurable settings
|
|
989
|
+
:param pulumi.Input[Union['M3DbM3dbUserConfigArgs', 'M3DbM3dbUserConfigArgsDict']] m3db_user_config: M3db user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
990
990
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
991
991
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
992
992
|
:param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
@@ -1042,7 +1042,7 @@ class M3Db(pulumi.CustomResource):
|
|
|
1042
1042
|
|
|
1043
1043
|
@property
|
|
1044
1044
|
@pulumi.getter(name="additionalDiskSpace")
|
|
1045
|
-
def additional_disk_space(self) -> pulumi.Output[
|
|
1045
|
+
def additional_disk_space(self) -> pulumi.Output[str]:
|
|
1046
1046
|
"""
|
|
1047
1047
|
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
1048
1048
|
"""
|
|
@@ -1118,7 +1118,7 @@ class M3Db(pulumi.CustomResource):
|
|
|
1118
1118
|
@pulumi.getter(name="m3dbUserConfig")
|
|
1119
1119
|
def m3db_user_config(self) -> pulumi.Output[Optional['outputs.M3DbM3dbUserConfig']]:
|
|
1120
1120
|
"""
|
|
1121
|
-
M3db user configurable settings
|
|
1121
|
+
M3db user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1122
1122
|
"""
|
|
1123
1123
|
return pulumi.get(self, "m3db_user_config")
|
|
1124
1124
|
|
|
@@ -29,6 +29,7 @@ class MirrorMakerReplicationFlowArgs:
|
|
|
29
29
|
config_properties_excludes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
30
30
|
emit_backward_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
|
|
31
31
|
emit_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
|
|
32
|
+
exactly_once_delivery_enabled: Optional[pulumi.Input[bool]] = None,
|
|
32
33
|
replication_factor: Optional[pulumi.Input[int]] = None,
|
|
33
34
|
sync_group_offsets_enabled: Optional[pulumi.Input[bool]] = None,
|
|
34
35
|
sync_group_offsets_interval_seconds: Optional[pulumi.Input[int]] = None,
|
|
@@ -37,7 +38,7 @@ class MirrorMakerReplicationFlowArgs:
|
|
|
37
38
|
"""
|
|
38
39
|
The set of arguments for constructing a MirrorMakerReplicationFlow resource.
|
|
39
40
|
:param pulumi.Input[bool] enable: Enable of disable replication flows for a service.
|
|
40
|
-
:param pulumi.Input[str] offset_syncs_topic_location: Offset syncs topic location.
|
|
41
|
+
:param pulumi.Input[str] offset_syncs_topic_location: Offset syncs topic location. The possible values are `source` and `target`.
|
|
41
42
|
: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.
|
|
42
43
|
: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`.
|
|
43
44
|
: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.
|
|
@@ -46,6 +47,7 @@ class MirrorMakerReplicationFlowArgs:
|
|
|
46
47
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] config_properties_excludes: List of topic configuration properties and/or regular expressions to not replicate. The properties that are not replicated by default are: `follower.replication.throttled.replicas`, `leader.replication.throttled.replicas`, `message.timestamp.difference.max.ms`, `message.timestamp.type`, `unclean.leader.election.enable`, and `min.insync.replicas`. Setting this overrides the defaults. For example, to enable replication for 'min.insync.replicas' and 'unclean.leader.election.enable' set this to: ["follower\\\\.replication\\\\.throttled\\\\.replicas", "leader\\\\.replication\\\\.throttled\\\\.replicas", "message\\\\.timestamp\\\\.difference\\\\.max\\\\.ms", "message\\\\.timestamp\\\\.type"]
|
|
47
48
|
: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`.
|
|
48
49
|
:param pulumi.Input[bool] emit_heartbeats_enabled: Whether to emit heartbeats to the target cluster. The default value is `false`.
|
|
50
|
+
:param pulumi.Input[bool] exactly_once_delivery_enabled: Whether to enable exactly-once message delivery. We recommend you set this to `enabled` for new replications. The default value is `false`.
|
|
49
51
|
:param pulumi.Input[int] replication_factor: Replication factor, `>= 1`.
|
|
50
52
|
:param pulumi.Input[bool] sync_group_offsets_enabled: Sync consumer group offsets. The default value is `false`.
|
|
51
53
|
:param pulumi.Input[int] sync_group_offsets_interval_seconds: Frequency of consumer group offset sync. The default value is `1`.
|
|
@@ -65,6 +67,8 @@ class MirrorMakerReplicationFlowArgs:
|
|
|
65
67
|
pulumi.set(__self__, "emit_backward_heartbeats_enabled", emit_backward_heartbeats_enabled)
|
|
66
68
|
if emit_heartbeats_enabled is not None:
|
|
67
69
|
pulumi.set(__self__, "emit_heartbeats_enabled", emit_heartbeats_enabled)
|
|
70
|
+
if exactly_once_delivery_enabled is not None:
|
|
71
|
+
pulumi.set(__self__, "exactly_once_delivery_enabled", exactly_once_delivery_enabled)
|
|
68
72
|
if replication_factor is not None:
|
|
69
73
|
pulumi.set(__self__, "replication_factor", replication_factor)
|
|
70
74
|
if sync_group_offsets_enabled is not None:
|
|
@@ -92,7 +96,7 @@ class MirrorMakerReplicationFlowArgs:
|
|
|
92
96
|
@pulumi.getter(name="offsetSyncsTopicLocation")
|
|
93
97
|
def offset_syncs_topic_location(self) -> pulumi.Input[str]:
|
|
94
98
|
"""
|
|
95
|
-
Offset syncs topic location.
|
|
99
|
+
Offset syncs topic location. The possible values are `source` and `target`.
|
|
96
100
|
"""
|
|
97
101
|
return pulumi.get(self, "offset_syncs_topic_location")
|
|
98
102
|
|
|
@@ -196,6 +200,18 @@ class MirrorMakerReplicationFlowArgs:
|
|
|
196
200
|
def emit_heartbeats_enabled(self, value: Optional[pulumi.Input[bool]]):
|
|
197
201
|
pulumi.set(self, "emit_heartbeats_enabled", value)
|
|
198
202
|
|
|
203
|
+
@property
|
|
204
|
+
@pulumi.getter(name="exactlyOnceDeliveryEnabled")
|
|
205
|
+
def exactly_once_delivery_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
206
|
+
"""
|
|
207
|
+
Whether to enable exactly-once message delivery. We recommend you set this to `enabled` for new replications. The default value is `false`.
|
|
208
|
+
"""
|
|
209
|
+
return pulumi.get(self, "exactly_once_delivery_enabled")
|
|
210
|
+
|
|
211
|
+
@exactly_once_delivery_enabled.setter
|
|
212
|
+
def exactly_once_delivery_enabled(self, value: Optional[pulumi.Input[bool]]):
|
|
213
|
+
pulumi.set(self, "exactly_once_delivery_enabled", value)
|
|
214
|
+
|
|
199
215
|
@property
|
|
200
216
|
@pulumi.getter(name="replicationFactor")
|
|
201
217
|
def replication_factor(self) -> Optional[pulumi.Input[int]]:
|
|
@@ -264,6 +280,7 @@ class _MirrorMakerReplicationFlowState:
|
|
|
264
280
|
emit_backward_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
|
|
265
281
|
emit_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
|
|
266
282
|
enable: Optional[pulumi.Input[bool]] = None,
|
|
283
|
+
exactly_once_delivery_enabled: Optional[pulumi.Input[bool]] = None,
|
|
267
284
|
offset_syncs_topic_location: Optional[pulumi.Input[str]] = None,
|
|
268
285
|
project: Optional[pulumi.Input[str]] = None,
|
|
269
286
|
replication_factor: Optional[pulumi.Input[int]] = None,
|
|
@@ -281,7 +298,8 @@ class _MirrorMakerReplicationFlowState:
|
|
|
281
298
|
: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`.
|
|
282
299
|
:param pulumi.Input[bool] emit_heartbeats_enabled: Whether to emit heartbeats to the target cluster. The default value is `false`.
|
|
283
300
|
:param pulumi.Input[bool] enable: Enable of disable replication flows for a service.
|
|
284
|
-
:param pulumi.Input[
|
|
301
|
+
:param pulumi.Input[bool] exactly_once_delivery_enabled: Whether to enable exactly-once message delivery. We recommend you set this to `enabled` for new replications. The default value is `false`.
|
|
302
|
+
:param pulumi.Input[str] offset_syncs_topic_location: Offset syncs topic location. The possible values are `source` and `target`.
|
|
285
303
|
: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.
|
|
286
304
|
:param pulumi.Input[int] replication_factor: Replication factor, `>= 1`.
|
|
287
305
|
: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`.
|
|
@@ -301,6 +319,8 @@ class _MirrorMakerReplicationFlowState:
|
|
|
301
319
|
pulumi.set(__self__, "emit_heartbeats_enabled", emit_heartbeats_enabled)
|
|
302
320
|
if enable is not None:
|
|
303
321
|
pulumi.set(__self__, "enable", enable)
|
|
322
|
+
if exactly_once_delivery_enabled is not None:
|
|
323
|
+
pulumi.set(__self__, "exactly_once_delivery_enabled", exactly_once_delivery_enabled)
|
|
304
324
|
if offset_syncs_topic_location is not None:
|
|
305
325
|
pulumi.set(__self__, "offset_syncs_topic_location", offset_syncs_topic_location)
|
|
306
326
|
if project is not None:
|
|
@@ -372,11 +392,23 @@ class _MirrorMakerReplicationFlowState:
|
|
|
372
392
|
def enable(self, value: Optional[pulumi.Input[bool]]):
|
|
373
393
|
pulumi.set(self, "enable", value)
|
|
374
394
|
|
|
395
|
+
@property
|
|
396
|
+
@pulumi.getter(name="exactlyOnceDeliveryEnabled")
|
|
397
|
+
def exactly_once_delivery_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
398
|
+
"""
|
|
399
|
+
Whether to enable exactly-once message delivery. We recommend you set this to `enabled` for new replications. The default value is `false`.
|
|
400
|
+
"""
|
|
401
|
+
return pulumi.get(self, "exactly_once_delivery_enabled")
|
|
402
|
+
|
|
403
|
+
@exactly_once_delivery_enabled.setter
|
|
404
|
+
def exactly_once_delivery_enabled(self, value: Optional[pulumi.Input[bool]]):
|
|
405
|
+
pulumi.set(self, "exactly_once_delivery_enabled", value)
|
|
406
|
+
|
|
375
407
|
@property
|
|
376
408
|
@pulumi.getter(name="offsetSyncsTopicLocation")
|
|
377
409
|
def offset_syncs_topic_location(self) -> Optional[pulumi.Input[str]]:
|
|
378
410
|
"""
|
|
379
|
-
Offset syncs topic location.
|
|
411
|
+
Offset syncs topic location. The possible values are `source` and `target`.
|
|
380
412
|
"""
|
|
381
413
|
return pulumi.get(self, "offset_syncs_topic_location")
|
|
382
414
|
|
|
@@ -514,6 +546,7 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
514
546
|
emit_backward_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
|
|
515
547
|
emit_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
|
|
516
548
|
enable: Optional[pulumi.Input[bool]] = None,
|
|
549
|
+
exactly_once_delivery_enabled: Optional[pulumi.Input[bool]] = None,
|
|
517
550
|
offset_syncs_topic_location: Optional[pulumi.Input[str]] = None,
|
|
518
551
|
project: Optional[pulumi.Input[str]] = None,
|
|
519
552
|
replication_factor: Optional[pulumi.Input[int]] = None,
|
|
@@ -569,7 +602,8 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
569
602
|
: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`.
|
|
570
603
|
:param pulumi.Input[bool] emit_heartbeats_enabled: Whether to emit heartbeats to the target cluster. The default value is `false`.
|
|
571
604
|
:param pulumi.Input[bool] enable: Enable of disable replication flows for a service.
|
|
572
|
-
:param pulumi.Input[
|
|
605
|
+
:param pulumi.Input[bool] exactly_once_delivery_enabled: Whether to enable exactly-once message delivery. We recommend you set this to `enabled` for new replications. The default value is `false`.
|
|
606
|
+
:param pulumi.Input[str] offset_syncs_topic_location: Offset syncs topic location. The possible values are `source` and `target`.
|
|
573
607
|
: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.
|
|
574
608
|
:param pulumi.Input[int] replication_factor: Replication factor, `>= 1`.
|
|
575
609
|
: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`.
|
|
@@ -643,6 +677,7 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
643
677
|
emit_backward_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
|
|
644
678
|
emit_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
|
|
645
679
|
enable: Optional[pulumi.Input[bool]] = None,
|
|
680
|
+
exactly_once_delivery_enabled: Optional[pulumi.Input[bool]] = None,
|
|
646
681
|
offset_syncs_topic_location: Optional[pulumi.Input[str]] = None,
|
|
647
682
|
project: Optional[pulumi.Input[str]] = None,
|
|
648
683
|
replication_factor: Optional[pulumi.Input[int]] = None,
|
|
@@ -669,6 +704,7 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
669
704
|
if enable is None and not opts.urn:
|
|
670
705
|
raise TypeError("Missing required property 'enable'")
|
|
671
706
|
__props__.__dict__["enable"] = enable
|
|
707
|
+
__props__.__dict__["exactly_once_delivery_enabled"] = exactly_once_delivery_enabled
|
|
672
708
|
if offset_syncs_topic_location is None and not opts.urn:
|
|
673
709
|
raise TypeError("Missing required property 'offset_syncs_topic_location'")
|
|
674
710
|
__props__.__dict__["offset_syncs_topic_location"] = offset_syncs_topic_location
|
|
@@ -706,6 +742,7 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
706
742
|
emit_backward_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
|
|
707
743
|
emit_heartbeats_enabled: Optional[pulumi.Input[bool]] = None,
|
|
708
744
|
enable: Optional[pulumi.Input[bool]] = None,
|
|
745
|
+
exactly_once_delivery_enabled: Optional[pulumi.Input[bool]] = None,
|
|
709
746
|
offset_syncs_topic_location: Optional[pulumi.Input[str]] = None,
|
|
710
747
|
project: Optional[pulumi.Input[str]] = None,
|
|
711
748
|
replication_factor: Optional[pulumi.Input[int]] = None,
|
|
@@ -728,7 +765,8 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
728
765
|
: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`.
|
|
729
766
|
:param pulumi.Input[bool] emit_heartbeats_enabled: Whether to emit heartbeats to the target cluster. The default value is `false`.
|
|
730
767
|
:param pulumi.Input[bool] enable: Enable of disable replication flows for a service.
|
|
731
|
-
:param pulumi.Input[
|
|
768
|
+
:param pulumi.Input[bool] exactly_once_delivery_enabled: Whether to enable exactly-once message delivery. We recommend you set this to `enabled` for new replications. The default value is `false`.
|
|
769
|
+
:param pulumi.Input[str] offset_syncs_topic_location: Offset syncs topic location. The possible values are `source` and `target`.
|
|
732
770
|
: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.
|
|
733
771
|
:param pulumi.Input[int] replication_factor: Replication factor, `>= 1`.
|
|
734
772
|
: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`.
|
|
@@ -748,6 +786,7 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
748
786
|
__props__.__dict__["emit_backward_heartbeats_enabled"] = emit_backward_heartbeats_enabled
|
|
749
787
|
__props__.__dict__["emit_heartbeats_enabled"] = emit_heartbeats_enabled
|
|
750
788
|
__props__.__dict__["enable"] = enable
|
|
789
|
+
__props__.__dict__["exactly_once_delivery_enabled"] = exactly_once_delivery_enabled
|
|
751
790
|
__props__.__dict__["offset_syncs_topic_location"] = offset_syncs_topic_location
|
|
752
791
|
__props__.__dict__["project"] = project
|
|
753
792
|
__props__.__dict__["replication_factor"] = replication_factor
|
|
@@ -793,11 +832,19 @@ class MirrorMakerReplicationFlow(pulumi.CustomResource):
|
|
|
793
832
|
"""
|
|
794
833
|
return pulumi.get(self, "enable")
|
|
795
834
|
|
|
835
|
+
@property
|
|
836
|
+
@pulumi.getter(name="exactlyOnceDeliveryEnabled")
|
|
837
|
+
def exactly_once_delivery_enabled(self) -> pulumi.Output[Optional[bool]]:
|
|
838
|
+
"""
|
|
839
|
+
Whether to enable exactly-once message delivery. We recommend you set this to `enabled` for new replications. The default value is `false`.
|
|
840
|
+
"""
|
|
841
|
+
return pulumi.get(self, "exactly_once_delivery_enabled")
|
|
842
|
+
|
|
796
843
|
@property
|
|
797
844
|
@pulumi.getter(name="offsetSyncsTopicLocation")
|
|
798
845
|
def offset_syncs_topic_location(self) -> pulumi.Output[str]:
|
|
799
846
|
"""
|
|
800
|
-
Offset syncs topic location.
|
|
847
|
+
Offset syncs topic location. The possible values are `source` and `target`.
|
|
801
848
|
"""
|
|
802
849
|
return pulumi.get(self, "offset_syncs_topic_location")
|
|
803
850
|
|
pulumi_aiven/my_sql.py
CHANGED
|
@@ -48,7 +48,7 @@ class MySqlArgs:
|
|
|
48
48
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
49
49
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
50
50
|
:param pulumi.Input['MySqlMysqlArgs'] mysql: MySQL specific server provided values
|
|
51
|
-
:param pulumi.Input['MySqlMysqlUserConfigArgs'] mysql_user_config: Mysql user configurable settings
|
|
51
|
+
:param pulumi.Input['MySqlMysqlUserConfigArgs'] mysql_user_config: Mysql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
52
52
|
: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 value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
53
53
|
:param pulumi.Input[Sequence[pulumi.Input['MySqlServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
54
54
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips: Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
|
|
@@ -202,7 +202,7 @@ class MySqlArgs:
|
|
|
202
202
|
@pulumi.getter(name="mysqlUserConfig")
|
|
203
203
|
def mysql_user_config(self) -> Optional[pulumi.Input['MySqlMysqlUserConfigArgs']]:
|
|
204
204
|
"""
|
|
205
|
-
Mysql user configurable settings
|
|
205
|
+
Mysql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
206
206
|
"""
|
|
207
207
|
return pulumi.get(self, "mysql_user_config")
|
|
208
208
|
|
|
@@ -327,7 +327,7 @@ class _MySqlState:
|
|
|
327
327
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
328
328
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
329
329
|
:param pulumi.Input['MySqlMysqlArgs'] mysql: MySQL specific server provided values
|
|
330
|
-
:param pulumi.Input['MySqlMysqlUserConfigArgs'] mysql_user_config: Mysql user configurable settings
|
|
330
|
+
:param pulumi.Input['MySqlMysqlUserConfigArgs'] mysql_user_config: Mysql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
331
331
|
:param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
332
332
|
: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.
|
|
333
333
|
: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 value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
@@ -546,7 +546,7 @@ class _MySqlState:
|
|
|
546
546
|
@pulumi.getter(name="mysqlUserConfig")
|
|
547
547
|
def mysql_user_config(self) -> Optional[pulumi.Input['MySqlMysqlUserConfigArgs']]:
|
|
548
548
|
"""
|
|
549
|
-
Mysql user configurable settings
|
|
549
|
+
Mysql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
550
550
|
"""
|
|
551
551
|
return pulumi.get(self, "mysql_user_config")
|
|
552
552
|
|
|
@@ -811,7 +811,7 @@ class MySql(pulumi.CustomResource):
|
|
|
811
811
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
812
812
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
813
813
|
:param pulumi.Input[Union['MySqlMysqlArgs', 'MySqlMysqlArgsDict']] mysql: MySQL specific server provided values
|
|
814
|
-
:param pulumi.Input[Union['MySqlMysqlUserConfigArgs', 'MySqlMysqlUserConfigArgsDict']] mysql_user_config: Mysql user configurable settings
|
|
814
|
+
:param pulumi.Input[Union['MySqlMysqlUserConfigArgs', 'MySqlMysqlUserConfigArgsDict']] mysql_user_config: Mysql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
815
815
|
:param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
816
816
|
: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.
|
|
817
817
|
: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 value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
@@ -994,7 +994,7 @@ class MySql(pulumi.CustomResource):
|
|
|
994
994
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
995
995
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
996
996
|
:param pulumi.Input[Union['MySqlMysqlArgs', 'MySqlMysqlArgsDict']] mysql: MySQL specific server provided values
|
|
997
|
-
:param pulumi.Input[Union['MySqlMysqlUserConfigArgs', 'MySqlMysqlUserConfigArgsDict']] mysql_user_config: Mysql user configurable settings
|
|
997
|
+
:param pulumi.Input[Union['MySqlMysqlUserConfigArgs', 'MySqlMysqlUserConfigArgsDict']] mysql_user_config: Mysql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
998
998
|
:param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
999
999
|
: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.
|
|
1000
1000
|
: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 value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
@@ -1048,7 +1048,7 @@ class MySql(pulumi.CustomResource):
|
|
|
1048
1048
|
|
|
1049
1049
|
@property
|
|
1050
1050
|
@pulumi.getter(name="additionalDiskSpace")
|
|
1051
|
-
def additional_disk_space(self) -> pulumi.Output[
|
|
1051
|
+
def additional_disk_space(self) -> pulumi.Output[str]:
|
|
1052
1052
|
"""
|
|
1053
1053
|
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
1054
1054
|
"""
|
|
@@ -1140,7 +1140,7 @@ class MySql(pulumi.CustomResource):
|
|
|
1140
1140
|
@pulumi.getter(name="mysqlUserConfig")
|
|
1141
1141
|
def mysql_user_config(self) -> pulumi.Output[Optional['outputs.MySqlMysqlUserConfig']]:
|
|
1142
1142
|
"""
|
|
1143
|
-
Mysql user configurable settings
|
|
1143
|
+
Mysql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1144
1144
|
"""
|
|
1145
1145
|
return pulumi.get(self, "mysql_user_config")
|
|
1146
1146
|
|
pulumi_aiven/open_search.py
CHANGED
|
@@ -47,7 +47,7 @@ class OpenSearchArgs:
|
|
|
47
47
|
: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.
|
|
48
48
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
49
49
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
50
|
-
:param pulumi.Input['OpenSearchOpensearchUserConfigArgs'] opensearch_user_config: Opensearch user configurable settings
|
|
50
|
+
:param pulumi.Input['OpenSearchOpensearchUserConfigArgs'] opensearch_user_config: Opensearch user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
51
51
|
:param pulumi.Input[Sequence[pulumi.Input['OpenSearchOpensearchArgs']]] opensearches: OpenSearch server provided values
|
|
52
52
|
: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 value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
53
53
|
:param pulumi.Input[Sequence[pulumi.Input['OpenSearchServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
@@ -190,7 +190,7 @@ class OpenSearchArgs:
|
|
|
190
190
|
@pulumi.getter(name="opensearchUserConfig")
|
|
191
191
|
def opensearch_user_config(self) -> Optional[pulumi.Input['OpenSearchOpensearchUserConfigArgs']]:
|
|
192
192
|
"""
|
|
193
|
-
Opensearch user configurable settings
|
|
193
|
+
Opensearch user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
194
194
|
"""
|
|
195
195
|
return pulumi.get(self, "opensearch_user_config")
|
|
196
196
|
|
|
@@ -326,7 +326,7 @@ class _OpenSearchState:
|
|
|
326
326
|
:param pulumi.Input[str] disk_space_used: Disk space that service is currently using
|
|
327
327
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
328
328
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
329
|
-
:param pulumi.Input['OpenSearchOpensearchUserConfigArgs'] opensearch_user_config: Opensearch user configurable settings
|
|
329
|
+
:param pulumi.Input['OpenSearchOpensearchUserConfigArgs'] opensearch_user_config: Opensearch user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
330
330
|
:param pulumi.Input[Sequence[pulumi.Input['OpenSearchOpensearchArgs']]] opensearches: OpenSearch server provided values
|
|
331
331
|
:param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
332
332
|
: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.
|
|
@@ -534,7 +534,7 @@ class _OpenSearchState:
|
|
|
534
534
|
@pulumi.getter(name="opensearchUserConfig")
|
|
535
535
|
def opensearch_user_config(self) -> Optional[pulumi.Input['OpenSearchOpensearchUserConfigArgs']]:
|
|
536
536
|
"""
|
|
537
|
-
Opensearch user configurable settings
|
|
537
|
+
Opensearch user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
538
538
|
"""
|
|
539
539
|
return pulumi.get(self, "opensearch_user_config")
|
|
540
540
|
|
|
@@ -811,7 +811,7 @@ class OpenSearch(pulumi.CustomResource):
|
|
|
811
811
|
: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.
|
|
812
812
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
813
813
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
814
|
-
:param pulumi.Input[Union['OpenSearchOpensearchUserConfigArgs', 'OpenSearchOpensearchUserConfigArgsDict']] opensearch_user_config: Opensearch user configurable settings
|
|
814
|
+
:param pulumi.Input[Union['OpenSearchOpensearchUserConfigArgs', 'OpenSearchOpensearchUserConfigArgsDict']] opensearch_user_config: Opensearch user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
815
815
|
:param pulumi.Input[Sequence[pulumi.Input[Union['OpenSearchOpensearchArgs', 'OpenSearchOpensearchArgsDict']]]] opensearches: OpenSearch server provided values
|
|
816
816
|
:param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
817
817
|
: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.
|
|
@@ -995,7 +995,7 @@ class OpenSearch(pulumi.CustomResource):
|
|
|
995
995
|
:param pulumi.Input[str] disk_space_used: Disk space that service is currently using
|
|
996
996
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
997
997
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
998
|
-
:param pulumi.Input[Union['OpenSearchOpensearchUserConfigArgs', 'OpenSearchOpensearchUserConfigArgsDict']] opensearch_user_config: Opensearch user configurable settings
|
|
998
|
+
:param pulumi.Input[Union['OpenSearchOpensearchUserConfigArgs', 'OpenSearchOpensearchUserConfigArgsDict']] opensearch_user_config: Opensearch user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
999
999
|
:param pulumi.Input[Sequence[pulumi.Input[Union['OpenSearchOpensearchArgs', 'OpenSearchOpensearchArgsDict']]]] opensearches: OpenSearch server provided values
|
|
1000
1000
|
:param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
1001
1001
|
: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.
|
|
@@ -1050,7 +1050,7 @@ class OpenSearch(pulumi.CustomResource):
|
|
|
1050
1050
|
|
|
1051
1051
|
@property
|
|
1052
1052
|
@pulumi.getter(name="additionalDiskSpace")
|
|
1053
|
-
def additional_disk_space(self) -> pulumi.Output[
|
|
1053
|
+
def additional_disk_space(self) -> pulumi.Output[str]:
|
|
1054
1054
|
"""
|
|
1055
1055
|
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
1056
1056
|
"""
|
|
@@ -1134,7 +1134,7 @@ class OpenSearch(pulumi.CustomResource):
|
|
|
1134
1134
|
@pulumi.getter(name="opensearchUserConfig")
|
|
1135
1135
|
def opensearch_user_config(self) -> pulumi.Output[Optional['outputs.OpenSearchOpensearchUserConfig']]:
|
|
1136
1136
|
"""
|
|
1137
|
-
Opensearch user configurable settings
|
|
1137
|
+
Opensearch user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1138
1138
|
"""
|
|
1139
1139
|
return pulumi.get(self, "opensearch_user_config")
|
|
1140
1140
|
|
|
@@ -29,7 +29,7 @@ class OrganizationGroupProjectArgs:
|
|
|
29
29
|
The set of arguments for constructing a OrganizationGroupProject resource.
|
|
30
30
|
:param pulumi.Input[str] group_id: The ID of the user group.
|
|
31
31
|
:param pulumi.Input[str] project: The project that the users in the group are members of.
|
|
32
|
-
:param pulumi.Input[str] role: [Project-level role](https://aiven.io/docs/platform/reference/project-member-privileges) assigned to all users in the group. The possible values are `admin`, `operator`, `developer`, `read_only`, `project:permissions:read` and `service:
|
|
32
|
+
:param pulumi.Input[str] role: [Project-level role](https://aiven.io/docs/platform/reference/project-member-privileges) assigned to all users in the group. The possible values are `admin`, `operator`, `developer`, `read_only`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `service:configuration:write`, `service:logs:read`, `project:services:read`, `project:services:write`, `project:audit_logs:read`, `service:data:write`, `service:secrets:read`, `role:services:maintenance`, `role:services:recover`, `organization:billing:read`, `organization:billing:write`, `organization:audit_logs:read`, `organization:projects:read`, `organization:projects:write`, `organization:users:write`, `organization:permissions:read`, `organization:permissions:write`, `organization:app_users:write`, `organization:groups:write`, `organization:idps:write`, `organization:domains:write`, `organization:network:read`, `organization:network:write`, `role:organization:admin` and `service:users:write`.
|
|
33
33
|
"""
|
|
34
34
|
pulumi.set(__self__, "group_id", group_id)
|
|
35
35
|
pulumi.set(__self__, "project", project)
|
|
@@ -65,7 +65,7 @@ class OrganizationGroupProjectArgs:
|
|
|
65
65
|
@pulumi.getter
|
|
66
66
|
def role(self) -> pulumi.Input[str]:
|
|
67
67
|
"""
|
|
68
|
-
[Project-level role](https://aiven.io/docs/platform/reference/project-member-privileges) assigned to all users in the group. The possible values are `admin`, `operator`, `developer`, `read_only`, `project:permissions:read` and `service:
|
|
68
|
+
[Project-level role](https://aiven.io/docs/platform/reference/project-member-privileges) assigned to all users in the group. The possible values are `admin`, `operator`, `developer`, `read_only`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `service:configuration:write`, `service:logs:read`, `project:services:read`, `project:services:write`, `project:audit_logs:read`, `service:data:write`, `service:secrets:read`, `role:services:maintenance`, `role:services:recover`, `organization:billing:read`, `organization:billing:write`, `organization:audit_logs:read`, `organization:projects:read`, `organization:projects:write`, `organization:users:write`, `organization:permissions:read`, `organization:permissions:write`, `organization:app_users:write`, `organization:groups:write`, `organization:idps:write`, `organization:domains:write`, `organization:network:read`, `organization:network:write`, `role:organization:admin` and `service:users:write`.
|
|
69
69
|
"""
|
|
70
70
|
return pulumi.get(self, "role")
|
|
71
71
|
|
|
@@ -94,7 +94,7 @@ class _OrganizationGroupProjectState:
|
|
|
94
94
|
Input properties used for looking up and filtering OrganizationGroupProject resources.
|
|
95
95
|
:param pulumi.Input[str] group_id: The ID of the user group.
|
|
96
96
|
:param pulumi.Input[str] project: The project that the users in the group are members of.
|
|
97
|
-
:param pulumi.Input[str] role: [Project-level role](https://aiven.io/docs/platform/reference/project-member-privileges) assigned to all users in the group. The possible values are `admin`, `operator`, `developer`, `read_only`, `project:permissions:read` and `service:
|
|
97
|
+
:param pulumi.Input[str] role: [Project-level role](https://aiven.io/docs/platform/reference/project-member-privileges) assigned to all users in the group. The possible values are `admin`, `operator`, `developer`, `read_only`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `service:configuration:write`, `service:logs:read`, `project:services:read`, `project:services:write`, `project:audit_logs:read`, `service:data:write`, `service:secrets:read`, `role:services:maintenance`, `role:services:recover`, `organization:billing:read`, `organization:billing:write`, `organization:audit_logs:read`, `organization:projects:read`, `organization:projects:write`, `organization:users:write`, `organization:permissions:read`, `organization:permissions:write`, `organization:app_users:write`, `organization:groups:write`, `organization:idps:write`, `organization:domains:write`, `organization:network:read`, `organization:network:write`, `role:organization:admin` and `service:users:write`.
|
|
98
98
|
"""
|
|
99
99
|
if group_id is not None:
|
|
100
100
|
pulumi.set(__self__, "group_id", group_id)
|
|
@@ -133,7 +133,7 @@ class _OrganizationGroupProjectState:
|
|
|
133
133
|
@pulumi.getter
|
|
134
134
|
def role(self) -> Optional[pulumi.Input[str]]:
|
|
135
135
|
"""
|
|
136
|
-
[Project-level role](https://aiven.io/docs/platform/reference/project-member-privileges) assigned to all users in the group. The possible values are `admin`, `operator`, `developer`, `read_only`, `project:permissions:read` and `service:
|
|
136
|
+
[Project-level role](https://aiven.io/docs/platform/reference/project-member-privileges) assigned to all users in the group. The possible values are `admin`, `operator`, `developer`, `read_only`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `service:configuration:write`, `service:logs:read`, `project:services:read`, `project:services:write`, `project:audit_logs:read`, `service:data:write`, `service:secrets:read`, `role:services:maintenance`, `role:services:recover`, `organization:billing:read`, `organization:billing:write`, `organization:audit_logs:read`, `organization:projects:read`, `organization:projects:write`, `organization:users:write`, `organization:permissions:read`, `organization:permissions:write`, `organization:app_users:write`, `organization:groups:write`, `organization:idps:write`, `organization:domains:write`, `organization:network:read`, `organization:network:write`, `role:organization:admin` and `service:users:write`.
|
|
137
137
|
"""
|
|
138
138
|
return pulumi.get(self, "role")
|
|
139
139
|
|
|
@@ -162,7 +162,11 @@ class OrganizationGroupProject(pulumi.CustomResource):
|
|
|
162
162
|
timeouts: Optional[pulumi.Input[Union['OrganizationGroupProjectTimeoutsArgs', 'OrganizationGroupProjectTimeoutsArgsDict']]] = None,
|
|
163
163
|
__props__=None):
|
|
164
164
|
"""
|
|
165
|
-
Adds and manages a
|
|
165
|
+
Adds and manages a group of users as members of a project.
|
|
166
|
+
|
|
167
|
+
**This resource is deprecated.** Use `OrganizationPermission` and
|
|
168
|
+
migrate existing OrganizationGroupProject resources
|
|
169
|
+
to the new resource.
|
|
166
170
|
|
|
167
171
|
## Example Usage
|
|
168
172
|
|
|
@@ -197,7 +201,7 @@ class OrganizationGroupProject(pulumi.CustomResource):
|
|
|
197
201
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
198
202
|
:param pulumi.Input[str] group_id: The ID of the user group.
|
|
199
203
|
:param pulumi.Input[str] project: The project that the users in the group are members of.
|
|
200
|
-
:param pulumi.Input[str] role: [Project-level role](https://aiven.io/docs/platform/reference/project-member-privileges) assigned to all users in the group. The possible values are `admin`, `operator`, `developer`, `read_only`, `project:permissions:read` and `service:
|
|
204
|
+
:param pulumi.Input[str] role: [Project-level role](https://aiven.io/docs/platform/reference/project-member-privileges) assigned to all users in the group. The possible values are `admin`, `operator`, `developer`, `read_only`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `service:configuration:write`, `service:logs:read`, `project:services:read`, `project:services:write`, `project:audit_logs:read`, `service:data:write`, `service:secrets:read`, `role:services:maintenance`, `role:services:recover`, `organization:billing:read`, `organization:billing:write`, `organization:audit_logs:read`, `organization:projects:read`, `organization:projects:write`, `organization:users:write`, `organization:permissions:read`, `organization:permissions:write`, `organization:app_users:write`, `organization:groups:write`, `organization:idps:write`, `organization:domains:write`, `organization:network:read`, `organization:network:write`, `role:organization:admin` and `service:users:write`.
|
|
201
205
|
"""
|
|
202
206
|
...
|
|
203
207
|
@overload
|
|
@@ -206,7 +210,11 @@ class OrganizationGroupProject(pulumi.CustomResource):
|
|
|
206
210
|
args: OrganizationGroupProjectArgs,
|
|
207
211
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
208
212
|
"""
|
|
209
|
-
Adds and manages a
|
|
213
|
+
Adds and manages a group of users as members of a project.
|
|
214
|
+
|
|
215
|
+
**This resource is deprecated.** Use `OrganizationPermission` and
|
|
216
|
+
migrate existing OrganizationGroupProject resources
|
|
217
|
+
to the new resource.
|
|
210
218
|
|
|
211
219
|
## Example Usage
|
|
212
220
|
|
|
@@ -298,7 +306,7 @@ class OrganizationGroupProject(pulumi.CustomResource):
|
|
|
298
306
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
299
307
|
:param pulumi.Input[str] group_id: The ID of the user group.
|
|
300
308
|
:param pulumi.Input[str] project: The project that the users in the group are members of.
|
|
301
|
-
:param pulumi.Input[str] role: [Project-level role](https://aiven.io/docs/platform/reference/project-member-privileges) assigned to all users in the group. The possible values are `admin`, `operator`, `developer`, `read_only`, `project:permissions:read` and `service:
|
|
309
|
+
:param pulumi.Input[str] role: [Project-level role](https://aiven.io/docs/platform/reference/project-member-privileges) assigned to all users in the group. The possible values are `admin`, `operator`, `developer`, `read_only`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `service:configuration:write`, `service:logs:read`, `project:services:read`, `project:services:write`, `project:audit_logs:read`, `service:data:write`, `service:secrets:read`, `role:services:maintenance`, `role:services:recover`, `organization:billing:read`, `organization:billing:write`, `organization:audit_logs:read`, `organization:projects:read`, `organization:projects:write`, `organization:users:write`, `organization:permissions:read`, `organization:permissions:write`, `organization:app_users:write`, `organization:groups:write`, `organization:idps:write`, `organization:domains:write`, `organization:network:read`, `organization:network:write`, `role:organization:admin` and `service:users:write`.
|
|
302
310
|
"""
|
|
303
311
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
304
312
|
|
|
@@ -330,7 +338,7 @@ class OrganizationGroupProject(pulumi.CustomResource):
|
|
|
330
338
|
@pulumi.getter
|
|
331
339
|
def role(self) -> pulumi.Output[str]:
|
|
332
340
|
"""
|
|
333
|
-
[Project-level role](https://aiven.io/docs/platform/reference/project-member-privileges) assigned to all users in the group. The possible values are `admin`, `operator`, `developer`, `read_only`, `project:permissions:read` and `service:
|
|
341
|
+
[Project-level role](https://aiven.io/docs/platform/reference/project-member-privileges) assigned to all users in the group. The possible values are `admin`, `operator`, `developer`, `read_only`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `service:configuration:write`, `service:logs:read`, `project:services:read`, `project:services:write`, `project:audit_logs:read`, `service:data:write`, `service:secrets:read`, `role:services:maintenance`, `role:services:recover`, `organization:billing:read`, `organization:billing:write`, `organization:audit_logs:read`, `organization:projects:read`, `organization:projects:write`, `organization:users:write`, `organization:permissions:read`, `organization:permissions:write`, `organization:app_users:write`, `organization:groups:write`, `organization:idps:write`, `organization:domains:write`, `organization:network:read`, `organization:network:write`, `role:organization:admin` and `service:users:write`.
|
|
334
342
|
"""
|
|
335
343
|
return pulumi.get(self, "role")
|
|
336
344
|
|