pulumi-aiven 6.37.0a1744182902__py3-none-any.whl → 6.37.0a1744255932__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 +21 -0
- pulumi_aiven/_inputs.py +603 -15
- pulumi_aiven/alloydbomni.py +7 -15
- pulumi_aiven/cassandra.py +7 -15
- pulumi_aiven/clickhouse.py +7 -15
- pulumi_aiven/dragonfly.py +7 -15
- pulumi_aiven/flink.py +7 -15
- pulumi_aiven/get_alloydbomni.py +1 -4
- pulumi_aiven/get_cassanda.py +1 -4
- pulumi_aiven/get_cassandra.py +1 -4
- pulumi_aiven/get_clickhouse.py +1 -4
- pulumi_aiven/get_dragonfly.py +1 -4
- pulumi_aiven/get_flink.py +1 -4
- pulumi_aiven/get_grafana.py +1 -4
- pulumi_aiven/get_kafka.py +1 -4
- pulumi_aiven/get_kafka_connect.py +1 -4
- pulumi_aiven/get_kafka_mirror_maker.py +1 -4
- pulumi_aiven/get_m3_aggregator.py +1 -4
- pulumi_aiven/get_m3_db.py +1 -4
- pulumi_aiven/get_my_sql.py +1 -4
- pulumi_aiven/get_open_search.py +1 -4
- pulumi_aiven/get_organization.py +2 -2
- pulumi_aiven/get_organization_address.py +227 -0
- pulumi_aiven/get_organization_application_user.py +0 -20
- pulumi_aiven/get_organization_billing_group.py +241 -0
- pulumi_aiven/get_organization_billing_group_list.py +110 -0
- pulumi_aiven/get_organization_project.py +15 -1
- pulumi_aiven/get_organization_user_list.py +25 -13
- pulumi_aiven/get_pg.py +1 -4
- pulumi_aiven/get_redis.py +1 -4
- pulumi_aiven/get_service_component.py +15 -1
- pulumi_aiven/get_service_integration.py +2 -2
- pulumi_aiven/get_thanos.py +1 -4
- pulumi_aiven/get_valkey.py +1 -4
- pulumi_aiven/grafana.py +7 -15
- pulumi_aiven/influx_db.py +21 -15
- pulumi_aiven/kafka.py +7 -15
- pulumi_aiven/kafka_connect.py +7 -15
- pulumi_aiven/kafka_mirror_maker.py +7 -15
- pulumi_aiven/kafka_native_acl.py +1 -1
- pulumi_aiven/m3_aggregator.py +7 -15
- pulumi_aiven/m3_db.py +7 -15
- pulumi_aiven/my_sql.py +7 -15
- pulumi_aiven/open_search.py +7 -15
- pulumi_aiven/organization.py +2 -2
- pulumi_aiven/organization_address.py +557 -0
- pulumi_aiven/organization_application_user.py +4 -4
- pulumi_aiven/organization_billing_group.py +645 -0
- pulumi_aiven/organization_permission.py +2 -2
- pulumi_aiven/organization_project.py +47 -16
- pulumi_aiven/organization_user_group_member.py +0 -32
- pulumi_aiven/outputs.py +807 -42
- pulumi_aiven/pg.py +7 -15
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/redis.py +7 -15
- pulumi_aiven/service_integration.py +4 -4
- pulumi_aiven/thanos.py +7 -15
- pulumi_aiven/valkey.py +7 -15
- {pulumi_aiven-6.37.0a1744182902.dist-info → pulumi_aiven-6.37.0a1744255932.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.37.0a1744182902.dist-info → pulumi_aiven-6.37.0a1744255932.dist-info}/RECORD +62 -57
- {pulumi_aiven-6.37.0a1744182902.dist-info → pulumi_aiven-6.37.0a1744255932.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.37.0a1744182902.dist-info → pulumi_aiven-6.37.0a1744255932.dist-info}/top_level.txt +0 -0
pulumi_aiven/m3_aggregator.py
CHANGED
|
@@ -43,7 +43,7 @@ class M3AggregatorArgs:
|
|
|
43
43
|
:param pulumi.Input[builtins.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).
|
|
44
44
|
:param pulumi.Input[builtins.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.
|
|
45
45
|
:param pulumi.Input[builtins.str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
46
|
-
:param pulumi.Input[builtins.str] additional_disk_space: 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
|
|
46
|
+
:param pulumi.Input[builtins.str] additional_disk_space: 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 without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
47
47
|
:param pulumi.Input[builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
48
48
|
:param pulumi.Input[builtins.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.
|
|
49
49
|
:param pulumi.Input['M3AggregatorM3aggregatorArgs'] m3aggregator: M3 Aggregator server provided values
|
|
@@ -130,7 +130,7 @@ class M3AggregatorArgs:
|
|
|
130
130
|
@pulumi.getter(name="additionalDiskSpace")
|
|
131
131
|
def additional_disk_space(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
132
132
|
"""
|
|
133
|
-
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
|
|
133
|
+
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 without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
134
134
|
"""
|
|
135
135
|
return pulumi.get(self, "additional_disk_space")
|
|
136
136
|
|
|
@@ -317,7 +317,7 @@ class _M3AggregatorState:
|
|
|
317
317
|
termination_protection: Optional[pulumi.Input[builtins.bool]] = None):
|
|
318
318
|
"""
|
|
319
319
|
Input properties used for looking up and filtering M3Aggregator resources.
|
|
320
|
-
:param pulumi.Input[builtins.str] additional_disk_space: 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
|
|
320
|
+
:param pulumi.Input[builtins.str] additional_disk_space: 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 without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
321
321
|
:param pulumi.Input[builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
322
322
|
:param pulumi.Input[Sequence[pulumi.Input['M3AggregatorComponentArgs']]] components: Service component information objects
|
|
323
323
|
:param pulumi.Input[builtins.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.
|
|
@@ -340,7 +340,6 @@ class _M3AggregatorState:
|
|
|
340
340
|
:param pulumi.Input[builtins.str] service_type: Aiven internal service type code
|
|
341
341
|
:param pulumi.Input[builtins.str] service_uri: URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
|
|
342
342
|
:param pulumi.Input[builtins.str] service_username: Username used for connecting to the service, if applicable
|
|
343
|
-
:param pulumi.Input[builtins.str] state: Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
344
343
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.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
|
|
345
344
|
:param pulumi.Input[Sequence[pulumi.Input['M3AggregatorTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
346
345
|
:param pulumi.Input[Sequence[pulumi.Input['M3AggregatorTechEmailArgs']]] tech_emails: The email addresses for [service contacts](https://aiven.io/docs/platform/howto/technical-emails), who will receive important alerts and updates about this service. You can also set email contacts at the project level.
|
|
@@ -413,7 +412,7 @@ class _M3AggregatorState:
|
|
|
413
412
|
@pulumi.getter(name="additionalDiskSpace")
|
|
414
413
|
def additional_disk_space(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
415
414
|
"""
|
|
416
|
-
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
|
|
415
|
+
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 without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
417
416
|
"""
|
|
418
417
|
return pulumi.get(self, "additional_disk_space")
|
|
419
418
|
|
|
@@ -690,9 +689,6 @@ class _M3AggregatorState:
|
|
|
690
689
|
@property
|
|
691
690
|
@pulumi.getter
|
|
692
691
|
def state(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
693
|
-
"""
|
|
694
|
-
Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
695
|
-
"""
|
|
696
692
|
return pulumi.get(self, "state")
|
|
697
693
|
|
|
698
694
|
@state.setter
|
|
@@ -799,7 +795,7 @@ class M3Aggregator(pulumi.CustomResource):
|
|
|
799
795
|
|
|
800
796
|
:param str resource_name: The name of the resource.
|
|
801
797
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
802
|
-
:param pulumi.Input[builtins.str] additional_disk_space: 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
|
|
798
|
+
:param pulumi.Input[builtins.str] additional_disk_space: 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 without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
803
799
|
:param pulumi.Input[builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
804
800
|
:param pulumi.Input[builtins.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.
|
|
805
801
|
:param pulumi.Input[Union['M3AggregatorM3aggregatorArgs', 'M3AggregatorM3aggregatorArgsDict']] m3aggregator: M3 Aggregator server provided values
|
|
@@ -970,7 +966,7 @@ class M3Aggregator(pulumi.CustomResource):
|
|
|
970
966
|
:param str resource_name: The unique name of the resulting resource.
|
|
971
967
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
972
968
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
973
|
-
:param pulumi.Input[builtins.str] additional_disk_space: 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
|
|
969
|
+
:param pulumi.Input[builtins.str] additional_disk_space: 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 without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
974
970
|
:param pulumi.Input[builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
975
971
|
:param pulumi.Input[Sequence[pulumi.Input[Union['M3AggregatorComponentArgs', 'M3AggregatorComponentArgsDict']]]] components: Service component information objects
|
|
976
972
|
:param pulumi.Input[builtins.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.
|
|
@@ -993,7 +989,6 @@ class M3Aggregator(pulumi.CustomResource):
|
|
|
993
989
|
:param pulumi.Input[builtins.str] service_type: Aiven internal service type code
|
|
994
990
|
:param pulumi.Input[builtins.str] service_uri: URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
|
|
995
991
|
:param pulumi.Input[builtins.str] service_username: Username used for connecting to the service, if applicable
|
|
996
|
-
:param pulumi.Input[builtins.str] state: Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
997
992
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.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
|
|
998
993
|
:param pulumi.Input[Sequence[pulumi.Input[Union['M3AggregatorTagArgs', 'M3AggregatorTagArgsDict']]]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
999
994
|
:param pulumi.Input[Sequence[pulumi.Input[Union['M3AggregatorTechEmailArgs', 'M3AggregatorTechEmailArgsDict']]]] tech_emails: The email addresses for [service contacts](https://aiven.io/docs/platform/howto/technical-emails), who will receive important alerts and updates about this service. You can also set email contacts at the project level.
|
|
@@ -1037,7 +1032,7 @@ class M3Aggregator(pulumi.CustomResource):
|
|
|
1037
1032
|
@pulumi.getter(name="additionalDiskSpace")
|
|
1038
1033
|
def additional_disk_space(self) -> pulumi.Output[builtins.str]:
|
|
1039
1034
|
"""
|
|
1040
|
-
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
|
|
1035
|
+
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 without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
1041
1036
|
"""
|
|
1042
1037
|
return pulumi.get(self, "additional_disk_space")
|
|
1043
1038
|
|
|
@@ -1222,9 +1217,6 @@ class M3Aggregator(pulumi.CustomResource):
|
|
|
1222
1217
|
@property
|
|
1223
1218
|
@pulumi.getter
|
|
1224
1219
|
def state(self) -> pulumi.Output[builtins.str]:
|
|
1225
|
-
"""
|
|
1226
|
-
Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
1227
|
-
"""
|
|
1228
1220
|
return pulumi.get(self, "state")
|
|
1229
1221
|
|
|
1230
1222
|
@property
|
pulumi_aiven/m3_db.py
CHANGED
|
@@ -43,7 +43,7 @@ class M3DbArgs:
|
|
|
43
43
|
:param pulumi.Input[builtins.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).
|
|
44
44
|
:param pulumi.Input[builtins.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.
|
|
45
45
|
:param pulumi.Input[builtins.str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
46
|
-
:param pulumi.Input[builtins.str] additional_disk_space: 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
|
|
46
|
+
:param pulumi.Input[builtins.str] additional_disk_space: 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 without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
47
47
|
:param pulumi.Input[builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
48
48
|
:param pulumi.Input[builtins.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.
|
|
49
49
|
:param pulumi.Input['M3DbM3dbArgs'] m3db: Values provided by the M3DB server.
|
|
@@ -130,7 +130,7 @@ class M3DbArgs:
|
|
|
130
130
|
@pulumi.getter(name="additionalDiskSpace")
|
|
131
131
|
def additional_disk_space(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
132
132
|
"""
|
|
133
|
-
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
|
|
133
|
+
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 without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
134
134
|
"""
|
|
135
135
|
return pulumi.get(self, "additional_disk_space")
|
|
136
136
|
|
|
@@ -317,7 +317,7 @@ class _M3DbState:
|
|
|
317
317
|
termination_protection: Optional[pulumi.Input[builtins.bool]] = None):
|
|
318
318
|
"""
|
|
319
319
|
Input properties used for looking up and filtering M3Db resources.
|
|
320
|
-
:param pulumi.Input[builtins.str] additional_disk_space: 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
|
|
320
|
+
:param pulumi.Input[builtins.str] additional_disk_space: 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 without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
321
321
|
:param pulumi.Input[builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
322
322
|
:param pulumi.Input[Sequence[pulumi.Input['M3DbComponentArgs']]] components: Service component information objects
|
|
323
323
|
:param pulumi.Input[builtins.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.
|
|
@@ -340,7 +340,6 @@ class _M3DbState:
|
|
|
340
340
|
:param pulumi.Input[builtins.str] service_type: Aiven internal service type code
|
|
341
341
|
:param pulumi.Input[builtins.str] service_uri: URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
|
|
342
342
|
:param pulumi.Input[builtins.str] service_username: Username used for connecting to the service, if applicable
|
|
343
|
-
:param pulumi.Input[builtins.str] state: Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
344
343
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.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
|
|
345
344
|
:param pulumi.Input[Sequence[pulumi.Input['M3DbTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
346
345
|
:param pulumi.Input[Sequence[pulumi.Input['M3DbTechEmailArgs']]] tech_emails: The email addresses for [service contacts](https://aiven.io/docs/platform/howto/technical-emails), who will receive important alerts and updates about this service. You can also set email contacts at the project level.
|
|
@@ -413,7 +412,7 @@ class _M3DbState:
|
|
|
413
412
|
@pulumi.getter(name="additionalDiskSpace")
|
|
414
413
|
def additional_disk_space(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
415
414
|
"""
|
|
416
|
-
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
|
|
415
|
+
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 without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
417
416
|
"""
|
|
418
417
|
return pulumi.get(self, "additional_disk_space")
|
|
419
418
|
|
|
@@ -690,9 +689,6 @@ class _M3DbState:
|
|
|
690
689
|
@property
|
|
691
690
|
@pulumi.getter
|
|
692
691
|
def state(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
693
|
-
"""
|
|
694
|
-
Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
695
|
-
"""
|
|
696
692
|
return pulumi.get(self, "state")
|
|
697
693
|
|
|
698
694
|
@state.setter
|
|
@@ -809,7 +805,7 @@ class M3Db(pulumi.CustomResource):
|
|
|
809
805
|
|
|
810
806
|
:param str resource_name: The name of the resource.
|
|
811
807
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
812
|
-
:param pulumi.Input[builtins.str] additional_disk_space: 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
|
|
808
|
+
:param pulumi.Input[builtins.str] additional_disk_space: 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 without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
813
809
|
:param pulumi.Input[builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
814
810
|
:param pulumi.Input[builtins.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.
|
|
815
811
|
:param pulumi.Input[Union['M3DbM3dbArgs', 'M3DbM3dbArgsDict']] m3db: Values provided by the M3DB server.
|
|
@@ -990,7 +986,7 @@ class M3Db(pulumi.CustomResource):
|
|
|
990
986
|
:param str resource_name: The unique name of the resulting resource.
|
|
991
987
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
992
988
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
993
|
-
:param pulumi.Input[builtins.str] additional_disk_space: 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
|
|
989
|
+
:param pulumi.Input[builtins.str] additional_disk_space: 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 without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
994
990
|
:param pulumi.Input[builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
995
991
|
:param pulumi.Input[Sequence[pulumi.Input[Union['M3DbComponentArgs', 'M3DbComponentArgsDict']]]] components: Service component information objects
|
|
996
992
|
:param pulumi.Input[builtins.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.
|
|
@@ -1013,7 +1009,6 @@ class M3Db(pulumi.CustomResource):
|
|
|
1013
1009
|
:param pulumi.Input[builtins.str] service_type: Aiven internal service type code
|
|
1014
1010
|
:param pulumi.Input[builtins.str] service_uri: URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
|
|
1015
1011
|
:param pulumi.Input[builtins.str] service_username: Username used for connecting to the service, if applicable
|
|
1016
|
-
:param pulumi.Input[builtins.str] state: Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
1017
1012
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.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
|
|
1018
1013
|
:param pulumi.Input[Sequence[pulumi.Input[Union['M3DbTagArgs', 'M3DbTagArgsDict']]]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
1019
1014
|
:param pulumi.Input[Sequence[pulumi.Input[Union['M3DbTechEmailArgs', 'M3DbTechEmailArgsDict']]]] tech_emails: The email addresses for [service contacts](https://aiven.io/docs/platform/howto/technical-emails), who will receive important alerts and updates about this service. You can also set email contacts at the project level.
|
|
@@ -1057,7 +1052,7 @@ class M3Db(pulumi.CustomResource):
|
|
|
1057
1052
|
@pulumi.getter(name="additionalDiskSpace")
|
|
1058
1053
|
def additional_disk_space(self) -> pulumi.Output[builtins.str]:
|
|
1059
1054
|
"""
|
|
1060
|
-
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
|
|
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 without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
1061
1056
|
"""
|
|
1062
1057
|
return pulumi.get(self, "additional_disk_space")
|
|
1063
1058
|
|
|
@@ -1242,9 +1237,6 @@ class M3Db(pulumi.CustomResource):
|
|
|
1242
1237
|
@property
|
|
1243
1238
|
@pulumi.getter
|
|
1244
1239
|
def state(self) -> pulumi.Output[builtins.str]:
|
|
1245
|
-
"""
|
|
1246
|
-
Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
1247
|
-
"""
|
|
1248
1240
|
return pulumi.get(self, "state")
|
|
1249
1241
|
|
|
1250
1242
|
@property
|
pulumi_aiven/my_sql.py
CHANGED
|
@@ -43,7 +43,7 @@ class MySqlArgs:
|
|
|
43
43
|
:param pulumi.Input[builtins.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).
|
|
44
44
|
:param pulumi.Input[builtins.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.
|
|
45
45
|
:param pulumi.Input[builtins.str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
46
|
-
:param pulumi.Input[builtins.str] additional_disk_space: 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
|
|
46
|
+
:param pulumi.Input[builtins.str] additional_disk_space: 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 without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
47
47
|
:param pulumi.Input[builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
48
48
|
:param pulumi.Input[builtins.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.
|
|
49
49
|
:param pulumi.Input[builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
@@ -130,7 +130,7 @@ class MySqlArgs:
|
|
|
130
130
|
@pulumi.getter(name="additionalDiskSpace")
|
|
131
131
|
def additional_disk_space(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
132
132
|
"""
|
|
133
|
-
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
|
|
133
|
+
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 without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
134
134
|
"""
|
|
135
135
|
return pulumi.get(self, "additional_disk_space")
|
|
136
136
|
|
|
@@ -317,7 +317,7 @@ class _MySqlState:
|
|
|
317
317
|
termination_protection: Optional[pulumi.Input[builtins.bool]] = None):
|
|
318
318
|
"""
|
|
319
319
|
Input properties used for looking up and filtering MySql resources.
|
|
320
|
-
:param pulumi.Input[builtins.str] additional_disk_space: 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
|
|
320
|
+
:param pulumi.Input[builtins.str] additional_disk_space: 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 without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
321
321
|
:param pulumi.Input[builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
322
322
|
:param pulumi.Input[Sequence[pulumi.Input['MySqlComponentArgs']]] components: Service component information objects
|
|
323
323
|
:param pulumi.Input[builtins.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.
|
|
@@ -340,7 +340,6 @@ class _MySqlState:
|
|
|
340
340
|
:param pulumi.Input[builtins.str] service_type: Aiven internal service type code
|
|
341
341
|
:param pulumi.Input[builtins.str] service_uri: URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
|
|
342
342
|
:param pulumi.Input[builtins.str] service_username: Username used for connecting to the service, if applicable
|
|
343
|
-
:param pulumi.Input[builtins.str] state: Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
344
343
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.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
|
|
345
344
|
:param pulumi.Input[Sequence[pulumi.Input['MySqlTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
346
345
|
:param pulumi.Input[Sequence[pulumi.Input['MySqlTechEmailArgs']]] tech_emails: The email addresses for [service contacts](https://aiven.io/docs/platform/howto/technical-emails), who will receive important alerts and updates about this service. You can also set email contacts at the project level.
|
|
@@ -413,7 +412,7 @@ class _MySqlState:
|
|
|
413
412
|
@pulumi.getter(name="additionalDiskSpace")
|
|
414
413
|
def additional_disk_space(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
415
414
|
"""
|
|
416
|
-
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
|
|
415
|
+
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 without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
417
416
|
"""
|
|
418
417
|
return pulumi.get(self, "additional_disk_space")
|
|
419
418
|
|
|
@@ -690,9 +689,6 @@ class _MySqlState:
|
|
|
690
689
|
@property
|
|
691
690
|
@pulumi.getter
|
|
692
691
|
def state(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
693
|
-
"""
|
|
694
|
-
Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
695
|
-
"""
|
|
696
692
|
return pulumi.get(self, "state")
|
|
697
693
|
|
|
698
694
|
@state.setter
|
|
@@ -806,7 +802,7 @@ class MySql(pulumi.CustomResource):
|
|
|
806
802
|
|
|
807
803
|
:param str resource_name: The name of the resource.
|
|
808
804
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
809
|
-
:param pulumi.Input[builtins.str] additional_disk_space: 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
|
|
805
|
+
:param pulumi.Input[builtins.str] additional_disk_space: 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 without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
810
806
|
:param pulumi.Input[builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
811
807
|
:param pulumi.Input[builtins.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
808
|
:param pulumi.Input[builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
@@ -984,7 +980,7 @@ class MySql(pulumi.CustomResource):
|
|
|
984
980
|
:param str resource_name: The unique name of the resulting resource.
|
|
985
981
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
986
982
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
987
|
-
:param pulumi.Input[builtins.str] additional_disk_space: 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
|
|
983
|
+
:param pulumi.Input[builtins.str] additional_disk_space: 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 without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
988
984
|
:param pulumi.Input[builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
989
985
|
:param pulumi.Input[Sequence[pulumi.Input[Union['MySqlComponentArgs', 'MySqlComponentArgsDict']]]] components: Service component information objects
|
|
990
986
|
:param pulumi.Input[builtins.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.
|
|
@@ -1007,7 +1003,6 @@ class MySql(pulumi.CustomResource):
|
|
|
1007
1003
|
:param pulumi.Input[builtins.str] service_type: Aiven internal service type code
|
|
1008
1004
|
:param pulumi.Input[builtins.str] service_uri: URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
|
|
1009
1005
|
:param pulumi.Input[builtins.str] service_username: Username used for connecting to the service, if applicable
|
|
1010
|
-
:param pulumi.Input[builtins.str] state: Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
1011
1006
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.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
|
|
1012
1007
|
:param pulumi.Input[Sequence[pulumi.Input[Union['MySqlTagArgs', 'MySqlTagArgsDict']]]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
1013
1008
|
:param pulumi.Input[Sequence[pulumi.Input[Union['MySqlTechEmailArgs', 'MySqlTechEmailArgsDict']]]] tech_emails: The email addresses for [service contacts](https://aiven.io/docs/platform/howto/technical-emails), who will receive important alerts and updates about this service. You can also set email contacts at the project level.
|
|
@@ -1051,7 +1046,7 @@ class MySql(pulumi.CustomResource):
|
|
|
1051
1046
|
@pulumi.getter(name="additionalDiskSpace")
|
|
1052
1047
|
def additional_disk_space(self) -> pulumi.Output[builtins.str]:
|
|
1053
1048
|
"""
|
|
1054
|
-
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
|
|
1049
|
+
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 without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
1055
1050
|
"""
|
|
1056
1051
|
return pulumi.get(self, "additional_disk_space")
|
|
1057
1052
|
|
|
@@ -1236,9 +1231,6 @@ class MySql(pulumi.CustomResource):
|
|
|
1236
1231
|
@property
|
|
1237
1232
|
@pulumi.getter
|
|
1238
1233
|
def state(self) -> pulumi.Output[builtins.str]:
|
|
1239
|
-
"""
|
|
1240
|
-
Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
1241
|
-
"""
|
|
1242
1234
|
return pulumi.get(self, "state")
|
|
1243
1235
|
|
|
1244
1236
|
@property
|
pulumi_aiven/open_search.py
CHANGED
|
@@ -43,7 +43,7 @@ class OpenSearchArgs:
|
|
|
43
43
|
:param pulumi.Input[builtins.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).
|
|
44
44
|
:param pulumi.Input[builtins.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.
|
|
45
45
|
:param pulumi.Input[builtins.str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
46
|
-
:param pulumi.Input[builtins.str] additional_disk_space: 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
|
|
46
|
+
:param pulumi.Input[builtins.str] additional_disk_space: 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 without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
47
47
|
:param pulumi.Input[builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
48
48
|
:param pulumi.Input[builtins.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.
|
|
49
49
|
:param pulumi.Input[builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
@@ -130,7 +130,7 @@ class OpenSearchArgs:
|
|
|
130
130
|
@pulumi.getter(name="additionalDiskSpace")
|
|
131
131
|
def additional_disk_space(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
132
132
|
"""
|
|
133
|
-
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
|
|
133
|
+
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 without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
134
134
|
"""
|
|
135
135
|
return pulumi.get(self, "additional_disk_space")
|
|
136
136
|
|
|
@@ -317,7 +317,7 @@ class _OpenSearchState:
|
|
|
317
317
|
termination_protection: Optional[pulumi.Input[builtins.bool]] = None):
|
|
318
318
|
"""
|
|
319
319
|
Input properties used for looking up and filtering OpenSearch resources.
|
|
320
|
-
:param pulumi.Input[builtins.str] additional_disk_space: 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
|
|
320
|
+
:param pulumi.Input[builtins.str] additional_disk_space: 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 without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
321
321
|
:param pulumi.Input[builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
322
322
|
:param pulumi.Input[Sequence[pulumi.Input['OpenSearchComponentArgs']]] components: Service component information objects
|
|
323
323
|
:param pulumi.Input[builtins.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.
|
|
@@ -340,7 +340,6 @@ class _OpenSearchState:
|
|
|
340
340
|
:param pulumi.Input[builtins.str] service_type: Aiven internal service type code
|
|
341
341
|
:param pulumi.Input[builtins.str] service_uri: URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
|
|
342
342
|
:param pulumi.Input[builtins.str] service_username: Username used for connecting to the service, if applicable
|
|
343
|
-
:param pulumi.Input[builtins.str] state: Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
344
343
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.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
|
|
345
344
|
:param pulumi.Input[Sequence[pulumi.Input['OpenSearchTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
346
345
|
:param pulumi.Input[Sequence[pulumi.Input['OpenSearchTechEmailArgs']]] tech_emails: The email addresses for [service contacts](https://aiven.io/docs/platform/howto/technical-emails), who will receive important alerts and updates about this service. You can also set email contacts at the project level.
|
|
@@ -413,7 +412,7 @@ class _OpenSearchState:
|
|
|
413
412
|
@pulumi.getter(name="additionalDiskSpace")
|
|
414
413
|
def additional_disk_space(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
415
414
|
"""
|
|
416
|
-
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
|
|
415
|
+
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 without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
417
416
|
"""
|
|
418
417
|
return pulumi.get(self, "additional_disk_space")
|
|
419
418
|
|
|
@@ -690,9 +689,6 @@ class _OpenSearchState:
|
|
|
690
689
|
@property
|
|
691
690
|
@pulumi.getter
|
|
692
691
|
def state(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
693
|
-
"""
|
|
694
|
-
Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
695
|
-
"""
|
|
696
692
|
return pulumi.get(self, "state")
|
|
697
693
|
|
|
698
694
|
@state.setter
|
|
@@ -807,7 +803,7 @@ class OpenSearch(pulumi.CustomResource):
|
|
|
807
803
|
|
|
808
804
|
:param str resource_name: The name of the resource.
|
|
809
805
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
810
|
-
:param pulumi.Input[builtins.str] additional_disk_space: 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
|
|
806
|
+
:param pulumi.Input[builtins.str] additional_disk_space: 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 without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
811
807
|
:param pulumi.Input[builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
812
808
|
:param pulumi.Input[builtins.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.
|
|
813
809
|
:param pulumi.Input[builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
@@ -986,7 +982,7 @@ class OpenSearch(pulumi.CustomResource):
|
|
|
986
982
|
:param str resource_name: The unique name of the resulting resource.
|
|
987
983
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
988
984
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
989
|
-
:param pulumi.Input[builtins.str] additional_disk_space: 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
|
|
985
|
+
:param pulumi.Input[builtins.str] additional_disk_space: 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 without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
990
986
|
:param pulumi.Input[builtins.str] cloud_name: The cloud provider and region the service is hosted in. The format is `provider-region`, for example: `google-europe-west1`. The [available cloud regions](https://aiven.io/docs/platform/reference/list_of_clouds) can differ per project and service. Changing this value [migrates the service to another cloud provider or region](https://aiven.io/docs/platform/howto/migrate-services-cloud-region). The migration runs in the background and includes a DNS update to redirect traffic to the new region. Most services experience no downtime, but some databases may have a brief interruption during DNS propagation.
|
|
991
987
|
:param pulumi.Input[Sequence[pulumi.Input[Union['OpenSearchComponentArgs', 'OpenSearchComponentArgsDict']]]] components: Service component information objects
|
|
992
988
|
:param pulumi.Input[builtins.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.
|
|
@@ -1009,7 +1005,6 @@ class OpenSearch(pulumi.CustomResource):
|
|
|
1009
1005
|
:param pulumi.Input[builtins.str] service_type: Aiven internal service type code
|
|
1010
1006
|
:param pulumi.Input[builtins.str] service_uri: URI for connecting to the service. Service specific info is under "kafka", "pg", etc.
|
|
1011
1007
|
:param pulumi.Input[builtins.str] service_username: Username used for connecting to the service, if applicable
|
|
1012
|
-
:param pulumi.Input[builtins.str] state: Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
1013
1008
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.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
|
|
1014
1009
|
:param pulumi.Input[Sequence[pulumi.Input[Union['OpenSearchTagArgs', 'OpenSearchTagArgsDict']]]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
1015
1010
|
:param pulumi.Input[Sequence[pulumi.Input[Union['OpenSearchTechEmailArgs', 'OpenSearchTechEmailArgsDict']]]] tech_emails: The email addresses for [service contacts](https://aiven.io/docs/platform/howto/technical-emails), who will receive important alerts and updates about this service. You can also set email contacts at the project level.
|
|
@@ -1053,7 +1048,7 @@ class OpenSearch(pulumi.CustomResource):
|
|
|
1053
1048
|
@pulumi.getter(name="additionalDiskSpace")
|
|
1054
1049
|
def additional_disk_space(self) -> pulumi.Output[builtins.str]:
|
|
1055
1050
|
"""
|
|
1056
|
-
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
|
|
1051
|
+
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 without an autoscaler integration or high availability capabilities. The field can be safely removed when autoscaler is enabled without causing any changes.
|
|
1057
1052
|
"""
|
|
1058
1053
|
return pulumi.get(self, "additional_disk_space")
|
|
1059
1054
|
|
|
@@ -1238,9 +1233,6 @@ class OpenSearch(pulumi.CustomResource):
|
|
|
1238
1233
|
@property
|
|
1239
1234
|
@pulumi.getter
|
|
1240
1235
|
def state(self) -> pulumi.Output[builtins.str]:
|
|
1241
|
-
"""
|
|
1242
|
-
Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
1243
|
-
"""
|
|
1244
1236
|
return pulumi.get(self, "state")
|
|
1245
1237
|
|
|
1246
1238
|
@property
|
pulumi_aiven/organization.py
CHANGED
|
@@ -162,7 +162,7 @@ class Organization(pulumi.CustomResource):
|
|
|
162
162
|
## Import
|
|
163
163
|
|
|
164
164
|
```sh
|
|
165
|
-
$ pulumi import aiven:index/organization:Organization main ORGANIZATION_ID
|
|
165
|
+
$ pulumi import aiven:index/organization:Organization main ORGANIZATION_ID # (e.g. a1234567890 or org123456)
|
|
166
166
|
```
|
|
167
167
|
|
|
168
168
|
:param str resource_name: The name of the resource.
|
|
@@ -190,7 +190,7 @@ class Organization(pulumi.CustomResource):
|
|
|
190
190
|
## Import
|
|
191
191
|
|
|
192
192
|
```sh
|
|
193
|
-
$ pulumi import aiven:index/organization:Organization main ORGANIZATION_ID
|
|
193
|
+
$ pulumi import aiven:index/organization:Organization main ORGANIZATION_ID # (e.g. a1234567890 or org123456)
|
|
194
194
|
```
|
|
195
195
|
|
|
196
196
|
:param str resource_name: The name of the resource.
|