pulumi-aiven 6.22.0__py3-none-any.whl → 6.22.0a1722921580__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-aiven might be problematic. Click here for more details.
- pulumi_aiven/_inputs.py +67 -721
- pulumi_aiven/account_authentication.py +5 -5
- pulumi_aiven/account_team_project.py +7 -7
- pulumi_aiven/aws_vpc_peering_connection.py +7 -7
- pulumi_aiven/azure_privatelink_connection_approval.py +16 -16
- pulumi_aiven/azure_vpc_peering_connection.py +7 -7
- pulumi_aiven/cassandra.py +46 -46
- pulumi_aiven/clickhouse.py +34 -34
- pulumi_aiven/clickhouse_grant.py +34 -34
- pulumi_aiven/dragonfly.py +40 -40
- pulumi_aiven/flink.py +40 -40
- pulumi_aiven/flink_application_deployment.py +16 -16
- pulumi_aiven/flink_application_version.py +36 -36
- pulumi_aiven/gcp_vpc_peering_connection.py +7 -7
- pulumi_aiven/get_account_team_project.py +1 -1
- pulumi_aiven/get_aws_vpc_peering_connection.py +1 -1
- pulumi_aiven/get_azure_vpc_peering_connection.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_gcp_vpc_peering_connection.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_my_sql.py +1 -1
- pulumi_aiven/get_mysql_user.py +1 -1
- pulumi_aiven/get_open_search.py +1 -1
- pulumi_aiven/get_pg.py +8 -8
- pulumi_aiven/get_pg_database.py +8 -8
- pulumi_aiven/get_pg_user.py +16 -16
- pulumi_aiven/get_project_user.py +1 -1
- pulumi_aiven/get_project_vpc.py +1 -1
- pulumi_aiven/get_redis.py +1 -1
- pulumi_aiven/get_service_integration.py +3 -3
- pulumi_aiven/get_thanos.py +1 -1
- pulumi_aiven/get_transit_gateway_vpc_attachment.py +1 -1
- pulumi_aiven/get_valkey.py +1 -1
- pulumi_aiven/grafana.py +46 -46
- pulumi_aiven/influx_db.py +41 -48
- pulumi_aiven/kafka.py +62 -62
- pulumi_aiven/kafka_connect.py +59 -59
- pulumi_aiven/kafka_connector.py +2 -2
- pulumi_aiven/kafka_mirror_maker.py +45 -45
- pulumi_aiven/kafka_topic.py +18 -18
- pulumi_aiven/m3_aggregator.py +40 -40
- pulumi_aiven/m3_db.py +48 -48
- pulumi_aiven/my_sql.py +54 -54
- pulumi_aiven/mysql_user.py +7 -7
- pulumi_aiven/open_search.py +56 -56
- pulumi_aiven/organization.py +3 -3
- pulumi_aiven/organization_group_project.py +3 -3
- pulumi_aiven/organization_user_group_member.py +3 -3
- pulumi_aiven/outputs.py +135 -1252
- pulumi_aiven/pg.py +43 -43
- pulumi_aiven/pg_database.py +12 -12
- pulumi_aiven/pg_user.py +47 -47
- pulumi_aiven/project.py +5 -5
- pulumi_aiven/project_user.py +7 -7
- pulumi_aiven/project_vpc.py +4 -4
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/redis.py +46 -46
- pulumi_aiven/service_integration.py +72 -72
- pulumi_aiven/service_integration_endpoint.py +65 -65
- pulumi_aiven/thanos.py +34 -34
- pulumi_aiven/transit_gateway_vpc_attachment.py +7 -7
- pulumi_aiven/valkey.py +40 -40
- {pulumi_aiven-6.22.0.dist-info → pulumi_aiven-6.22.0a1722921580.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.22.0.dist-info → pulumi_aiven-6.22.0a1722921580.dist-info}/RECORD +75 -75
- {pulumi_aiven-6.22.0.dist-info → pulumi_aiven-6.22.0a1722921580.dist-info}/WHEEL +1 -1
- {pulumi_aiven-6.22.0.dist-info → pulumi_aiven-6.22.0a1722921580.dist-info}/top_level.txt +0 -0
pulumi_aiven/thanos.py
CHANGED
|
@@ -37,7 +37,7 @@ class ThanosArgs:
|
|
|
37
37
|
: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 seem from the [Aiven pricing page](https://aiven.io/pricing).
|
|
38
38
|
:param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
39
39
|
:param pulumi.Input[str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
40
|
-
:param pulumi.Input[str] additional_disk_space:
|
|
40
|
+
:param pulumi.Input[str] additional_disk_space: Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
41
41
|
:param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like [here for Google](https://cloud.google.com/compute/docs/regions-zones/) and [here for AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
|
|
42
42
|
:param pulumi.Input[str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
43
43
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
@@ -124,7 +124,7 @@ class ThanosArgs:
|
|
|
124
124
|
@pulumi.getter(name="additionalDiskSpace")
|
|
125
125
|
def additional_disk_space(self) -> Optional[pulumi.Input[str]]:
|
|
126
126
|
"""
|
|
127
|
-
|
|
127
|
+
Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
128
128
|
"""
|
|
129
129
|
return pulumi.get(self, "additional_disk_space")
|
|
130
130
|
|
|
@@ -311,7 +311,7 @@ class _ThanosState:
|
|
|
311
311
|
thanos_user_config: Optional[pulumi.Input['ThanosThanosUserConfigArgs']] = None):
|
|
312
312
|
"""
|
|
313
313
|
Input properties used for looking up and filtering Thanos resources.
|
|
314
|
-
:param pulumi.Input[str] additional_disk_space:
|
|
314
|
+
:param pulumi.Input[str] additional_disk_space: Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
315
315
|
: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).
|
|
316
316
|
:param pulumi.Input[Sequence[pulumi.Input['ThanosComponentArgs']]] components: Service component information objects
|
|
317
317
|
: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.
|
|
@@ -404,7 +404,7 @@ class _ThanosState:
|
|
|
404
404
|
@pulumi.getter(name="additionalDiskSpace")
|
|
405
405
|
def additional_disk_space(self) -> Optional[pulumi.Input[str]]:
|
|
406
406
|
"""
|
|
407
|
-
|
|
407
|
+
Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
408
408
|
"""
|
|
409
409
|
return pulumi.get(self, "additional_disk_space")
|
|
410
410
|
|
|
@@ -751,14 +751,14 @@ class Thanos(pulumi.CustomResource):
|
|
|
751
751
|
plan: Optional[pulumi.Input[str]] = None,
|
|
752
752
|
project: Optional[pulumi.Input[str]] = None,
|
|
753
753
|
project_vpc_id: Optional[pulumi.Input[str]] = None,
|
|
754
|
-
service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
754
|
+
service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ThanosServiceIntegrationArgs']]]]] = None,
|
|
755
755
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
756
756
|
static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
757
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
758
|
-
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
757
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ThanosTagArgs']]]]] = None,
|
|
758
|
+
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ThanosTechEmailArgs']]]]] = None,
|
|
759
759
|
termination_protection: Optional[pulumi.Input[bool]] = None,
|
|
760
|
-
thanos: Optional[pulumi.Input[
|
|
761
|
-
thanos_user_config: Optional[pulumi.Input[
|
|
760
|
+
thanos: Optional[pulumi.Input[pulumi.InputType['ThanosThanosArgs']]] = None,
|
|
761
|
+
thanos_user_config: Optional[pulumi.Input[pulumi.InputType['ThanosThanosUserConfigArgs']]] = None,
|
|
762
762
|
__props__=None):
|
|
763
763
|
"""
|
|
764
764
|
Creates and manages an [Aiven for Metrics®](https://aiven.io/docs/products/metrics/concepts/metrics-overview) service.
|
|
@@ -768,7 +768,7 @@ class Thanos(pulumi.CustomResource):
|
|
|
768
768
|
|
|
769
769
|
:param str resource_name: The name of the resource.
|
|
770
770
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
771
|
-
:param pulumi.Input[str] additional_disk_space:
|
|
771
|
+
:param pulumi.Input[str] additional_disk_space: Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
772
772
|
: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).
|
|
773
773
|
: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.
|
|
774
774
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
@@ -776,14 +776,14 @@ class Thanos(pulumi.CustomResource):
|
|
|
776
776
|
: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 seem from the [Aiven pricing page](https://aiven.io/pricing).
|
|
777
777
|
: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.
|
|
778
778
|
: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.
|
|
779
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
779
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ThanosServiceIntegrationArgs']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
780
780
|
:param pulumi.Input[str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
781
781
|
: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
|
|
782
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
783
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
782
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ThanosTagArgs']]]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
783
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ThanosTechEmailArgs']]]] 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.
|
|
784
784
|
:param pulumi.Input[bool] termination_protection: Prevents the service from being deleted. It is recommended to set this to `true` for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
|
|
785
|
-
:param pulumi.Input[
|
|
786
|
-
:param pulumi.Input[
|
|
785
|
+
:param pulumi.Input[pulumi.InputType['ThanosThanosArgs']] thanos: Thanos server connection details.
|
|
786
|
+
:param pulumi.Input[pulumi.InputType['ThanosThanosUserConfigArgs']] thanos_user_config: Thanos user configurable settings
|
|
787
787
|
"""
|
|
788
788
|
...
|
|
789
789
|
@overload
|
|
@@ -820,14 +820,14 @@ class Thanos(pulumi.CustomResource):
|
|
|
820
820
|
plan: Optional[pulumi.Input[str]] = None,
|
|
821
821
|
project: Optional[pulumi.Input[str]] = None,
|
|
822
822
|
project_vpc_id: Optional[pulumi.Input[str]] = None,
|
|
823
|
-
service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
823
|
+
service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ThanosServiceIntegrationArgs']]]]] = None,
|
|
824
824
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
825
825
|
static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
826
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
827
|
-
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
826
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ThanosTagArgs']]]]] = None,
|
|
827
|
+
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ThanosTechEmailArgs']]]]] = None,
|
|
828
828
|
termination_protection: Optional[pulumi.Input[bool]] = None,
|
|
829
|
-
thanos: Optional[pulumi.Input[
|
|
830
|
-
thanos_user_config: Optional[pulumi.Input[
|
|
829
|
+
thanos: Optional[pulumi.Input[pulumi.InputType['ThanosThanosArgs']]] = None,
|
|
830
|
+
thanos_user_config: Optional[pulumi.Input[pulumi.InputType['ThanosThanosUserConfigArgs']]] = None,
|
|
831
831
|
__props__=None):
|
|
832
832
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
833
833
|
if not isinstance(opts, pulumi.ResourceOptions):
|
|
@@ -885,7 +885,7 @@ class Thanos(pulumi.CustomResource):
|
|
|
885
885
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
886
886
|
additional_disk_space: Optional[pulumi.Input[str]] = None,
|
|
887
887
|
cloud_name: Optional[pulumi.Input[str]] = None,
|
|
888
|
-
components: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
888
|
+
components: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ThanosComponentArgs']]]]] = None,
|
|
889
889
|
disk_space: Optional[pulumi.Input[str]] = None,
|
|
890
890
|
disk_space_cap: Optional[pulumi.Input[str]] = None,
|
|
891
891
|
disk_space_default: Optional[pulumi.Input[str]] = None,
|
|
@@ -897,7 +897,7 @@ class Thanos(pulumi.CustomResource):
|
|
|
897
897
|
project: Optional[pulumi.Input[str]] = None,
|
|
898
898
|
project_vpc_id: Optional[pulumi.Input[str]] = None,
|
|
899
899
|
service_host: Optional[pulumi.Input[str]] = None,
|
|
900
|
-
service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
900
|
+
service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ThanosServiceIntegrationArgs']]]]] = None,
|
|
901
901
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
902
902
|
service_password: Optional[pulumi.Input[str]] = None,
|
|
903
903
|
service_port: Optional[pulumi.Input[int]] = None,
|
|
@@ -906,11 +906,11 @@ class Thanos(pulumi.CustomResource):
|
|
|
906
906
|
service_username: Optional[pulumi.Input[str]] = None,
|
|
907
907
|
state: Optional[pulumi.Input[str]] = None,
|
|
908
908
|
static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
909
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
910
|
-
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
909
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ThanosTagArgs']]]]] = None,
|
|
910
|
+
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ThanosTechEmailArgs']]]]] = None,
|
|
911
911
|
termination_protection: Optional[pulumi.Input[bool]] = None,
|
|
912
|
-
thanos: Optional[pulumi.Input[
|
|
913
|
-
thanos_user_config: Optional[pulumi.Input[
|
|
912
|
+
thanos: Optional[pulumi.Input[pulumi.InputType['ThanosThanosArgs']]] = None,
|
|
913
|
+
thanos_user_config: Optional[pulumi.Input[pulumi.InputType['ThanosThanosUserConfigArgs']]] = None) -> 'Thanos':
|
|
914
914
|
"""
|
|
915
915
|
Get an existing Thanos resource's state with the given name, id, and optional extra
|
|
916
916
|
properties used to qualify the lookup.
|
|
@@ -918,9 +918,9 @@ class Thanos(pulumi.CustomResource):
|
|
|
918
918
|
:param str resource_name: The unique name of the resulting resource.
|
|
919
919
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
920
920
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
921
|
-
:param pulumi.Input[str] additional_disk_space:
|
|
921
|
+
:param pulumi.Input[str] additional_disk_space: Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
922
922
|
: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).
|
|
923
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
923
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ThanosComponentArgs']]]] components: Service component information objects
|
|
924
924
|
: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.
|
|
925
925
|
:param pulumi.Input[str] disk_space_cap: The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
|
|
926
926
|
:param pulumi.Input[str] disk_space_default: The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for `disk_space`
|
|
@@ -932,7 +932,7 @@ class Thanos(pulumi.CustomResource):
|
|
|
932
932
|
: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.
|
|
933
933
|
: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.
|
|
934
934
|
:param pulumi.Input[str] service_host: The hostname of the service.
|
|
935
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
935
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ThanosServiceIntegrationArgs']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
936
936
|
:param pulumi.Input[str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
937
937
|
:param pulumi.Input[str] service_password: Password used for connecting to the service, if applicable
|
|
938
938
|
:param pulumi.Input[int] service_port: The port of the service
|
|
@@ -941,11 +941,11 @@ class Thanos(pulumi.CustomResource):
|
|
|
941
941
|
:param pulumi.Input[str] service_username: Username used for connecting to the service, if applicable
|
|
942
942
|
:param pulumi.Input[str] state: Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
943
943
|
: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
|
|
944
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
945
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
944
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ThanosTagArgs']]]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
945
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ThanosTechEmailArgs']]]] 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.
|
|
946
946
|
:param pulumi.Input[bool] termination_protection: Prevents the service from being deleted. It is recommended to set this to `true` for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
|
|
947
|
-
:param pulumi.Input[
|
|
948
|
-
:param pulumi.Input[
|
|
947
|
+
:param pulumi.Input[pulumi.InputType['ThanosThanosArgs']] thanos: Thanos server connection details.
|
|
948
|
+
:param pulumi.Input[pulumi.InputType['ThanosThanosUserConfigArgs']] thanos_user_config: Thanos user configurable settings
|
|
949
949
|
"""
|
|
950
950
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
951
951
|
|
|
@@ -985,7 +985,7 @@ class Thanos(pulumi.CustomResource):
|
|
|
985
985
|
@pulumi.getter(name="additionalDiskSpace")
|
|
986
986
|
def additional_disk_space(self) -> pulumi.Output[Optional[str]]:
|
|
987
987
|
"""
|
|
988
|
-
|
|
988
|
+
Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
989
989
|
"""
|
|
990
990
|
return pulumi.get(self, "additional_disk_space")
|
|
991
991
|
|
|
@@ -103,7 +103,7 @@ class _TransitGatewayVpcAttachmentState:
|
|
|
103
103
|
peer_vpc: Optional[pulumi.Input[str]] = None,
|
|
104
104
|
peering_connection_id: Optional[pulumi.Input[str]] = None,
|
|
105
105
|
state: Optional[pulumi.Input[str]] = None,
|
|
106
|
-
state_info: Optional[pulumi.Input[Mapping[str,
|
|
106
|
+
state_info: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
|
107
107
|
user_peer_network_cidrs: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
108
108
|
vpc_id: Optional[pulumi.Input[str]] = None):
|
|
109
109
|
"""
|
|
@@ -113,7 +113,7 @@ class _TransitGatewayVpcAttachmentState:
|
|
|
113
113
|
:param pulumi.Input[str] peer_vpc: Transit gateway ID. Changing this property forces recreation of the resource.
|
|
114
114
|
:param pulumi.Input[str] peering_connection_id: Cloud provider identifier for the peering connection if available
|
|
115
115
|
:param pulumi.Input[str] state: State of the peering connection
|
|
116
|
-
:param pulumi.Input[Mapping[str,
|
|
116
|
+
:param pulumi.Input[Mapping[str, Any]] state_info: State-specific help or error information
|
|
117
117
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] user_peer_network_cidrs: List of private IPv4 ranges to route through the peering connection
|
|
118
118
|
:param pulumi.Input[str] vpc_id: The VPC the peering connection belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
119
119
|
"""
|
|
@@ -196,14 +196,14 @@ class _TransitGatewayVpcAttachmentState:
|
|
|
196
196
|
|
|
197
197
|
@property
|
|
198
198
|
@pulumi.getter(name="stateInfo")
|
|
199
|
-
def state_info(self) -> Optional[pulumi.Input[Mapping[str,
|
|
199
|
+
def state_info(self) -> Optional[pulumi.Input[Mapping[str, Any]]]:
|
|
200
200
|
"""
|
|
201
201
|
State-specific help or error information
|
|
202
202
|
"""
|
|
203
203
|
return pulumi.get(self, "state_info")
|
|
204
204
|
|
|
205
205
|
@state_info.setter
|
|
206
|
-
def state_info(self, value: Optional[pulumi.Input[Mapping[str,
|
|
206
|
+
def state_info(self, value: Optional[pulumi.Input[Mapping[str, Any]]]):
|
|
207
207
|
pulumi.set(self, "state_info", value)
|
|
208
208
|
|
|
209
209
|
@property
|
|
@@ -362,7 +362,7 @@ class TransitGatewayVpcAttachment(pulumi.CustomResource):
|
|
|
362
362
|
peer_vpc: Optional[pulumi.Input[str]] = None,
|
|
363
363
|
peering_connection_id: Optional[pulumi.Input[str]] = None,
|
|
364
364
|
state: Optional[pulumi.Input[str]] = None,
|
|
365
|
-
state_info: Optional[pulumi.Input[Mapping[str,
|
|
365
|
+
state_info: Optional[pulumi.Input[Mapping[str, Any]]] = None,
|
|
366
366
|
user_peer_network_cidrs: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
367
367
|
vpc_id: Optional[pulumi.Input[str]] = None) -> 'TransitGatewayVpcAttachment':
|
|
368
368
|
"""
|
|
@@ -377,7 +377,7 @@ class TransitGatewayVpcAttachment(pulumi.CustomResource):
|
|
|
377
377
|
:param pulumi.Input[str] peer_vpc: Transit gateway ID. Changing this property forces recreation of the resource.
|
|
378
378
|
:param pulumi.Input[str] peering_connection_id: Cloud provider identifier for the peering connection if available
|
|
379
379
|
:param pulumi.Input[str] state: State of the peering connection
|
|
380
|
-
:param pulumi.Input[Mapping[str,
|
|
380
|
+
:param pulumi.Input[Mapping[str, Any]] state_info: State-specific help or error information
|
|
381
381
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] user_peer_network_cidrs: List of private IPv4 ranges to route through the peering connection
|
|
382
382
|
:param pulumi.Input[str] vpc_id: The VPC the peering connection belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
383
383
|
"""
|
|
@@ -437,7 +437,7 @@ class TransitGatewayVpcAttachment(pulumi.CustomResource):
|
|
|
437
437
|
|
|
438
438
|
@property
|
|
439
439
|
@pulumi.getter(name="stateInfo")
|
|
440
|
-
def state_info(self) -> pulumi.Output[Mapping[str,
|
|
440
|
+
def state_info(self) -> pulumi.Output[Mapping[str, Any]]:
|
|
441
441
|
"""
|
|
442
442
|
State-specific help or error information
|
|
443
443
|
"""
|
pulumi_aiven/valkey.py
CHANGED
|
@@ -37,7 +37,7 @@ class ValkeyArgs:
|
|
|
37
37
|
: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 seem from the [Aiven pricing page](https://aiven.io/pricing).
|
|
38
38
|
:param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
39
39
|
:param pulumi.Input[str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
40
|
-
:param pulumi.Input[str] additional_disk_space:
|
|
40
|
+
:param pulumi.Input[str] additional_disk_space: Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
41
41
|
:param pulumi.Input[str] cloud_name: Defines where the cloud provider and region where the service is hosted in. This can be changed freely after service is created. Changing the value will trigger a potentially lengthy migration process for the service. Format is cloud provider name (`aws`, `azure`, `do` `google`, `upcloud`, etc.), dash, and the cloud provider specific region name. These are documented on each Cloud provider's own support articles, like [here for Google](https://cloud.google.com/compute/docs/regions-zones/) and [here for AWS](https://docs.aws.amazon.com/AmazonRDS/latest/UserGuide/Concepts.RegionsAndAvailabilityZones.html).
|
|
42
42
|
:param pulumi.Input[str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
43
43
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
@@ -124,7 +124,7 @@ class ValkeyArgs:
|
|
|
124
124
|
@pulumi.getter(name="additionalDiskSpace")
|
|
125
125
|
def additional_disk_space(self) -> Optional[pulumi.Input[str]]:
|
|
126
126
|
"""
|
|
127
|
-
|
|
127
|
+
Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
128
128
|
"""
|
|
129
129
|
return pulumi.get(self, "additional_disk_space")
|
|
130
130
|
|
|
@@ -311,7 +311,7 @@ class _ValkeyState:
|
|
|
311
311
|
valkey_user_config: Optional[pulumi.Input['ValkeyValkeyUserConfigArgs']] = None):
|
|
312
312
|
"""
|
|
313
313
|
Input properties used for looking up and filtering Valkey resources.
|
|
314
|
-
:param pulumi.Input[str] additional_disk_space:
|
|
314
|
+
:param pulumi.Input[str] additional_disk_space: Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
315
315
|
: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).
|
|
316
316
|
:param pulumi.Input[Sequence[pulumi.Input['ValkeyComponentArgs']]] components: Service component information objects
|
|
317
317
|
: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.
|
|
@@ -404,7 +404,7 @@ class _ValkeyState:
|
|
|
404
404
|
@pulumi.getter(name="additionalDiskSpace")
|
|
405
405
|
def additional_disk_space(self) -> Optional[pulumi.Input[str]]:
|
|
406
406
|
"""
|
|
407
|
-
|
|
407
|
+
Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
408
408
|
"""
|
|
409
409
|
return pulumi.get(self, "additional_disk_space")
|
|
410
410
|
|
|
@@ -751,14 +751,14 @@ class Valkey(pulumi.CustomResource):
|
|
|
751
751
|
plan: Optional[pulumi.Input[str]] = None,
|
|
752
752
|
project: Optional[pulumi.Input[str]] = None,
|
|
753
753
|
project_vpc_id: Optional[pulumi.Input[str]] = None,
|
|
754
|
-
service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
754
|
+
service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ValkeyServiceIntegrationArgs']]]]] = None,
|
|
755
755
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
756
756
|
static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
757
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
758
|
-
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
757
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ValkeyTagArgs']]]]] = None,
|
|
758
|
+
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ValkeyTechEmailArgs']]]]] = None,
|
|
759
759
|
termination_protection: Optional[pulumi.Input[bool]] = None,
|
|
760
|
-
valkey: Optional[pulumi.Input[
|
|
761
|
-
valkey_user_config: Optional[pulumi.Input[
|
|
760
|
+
valkey: Optional[pulumi.Input[pulumi.InputType['ValkeyValkeyArgs']]] = None,
|
|
761
|
+
valkey_user_config: Optional[pulumi.Input[pulumi.InputType['ValkeyValkeyUserConfigArgs']]] = None,
|
|
762
762
|
__props__=None):
|
|
763
763
|
"""
|
|
764
764
|
Creates and manages an [Aiven for Valkey](https://aiven.io/docs/products/valkey) service.
|
|
@@ -777,9 +777,9 @@ class Valkey(pulumi.CustomResource):
|
|
|
777
777
|
plan="startup-4",
|
|
778
778
|
cloud_name="google-europe-west1",
|
|
779
779
|
service_name="example-valkey-service",
|
|
780
|
-
valkey_user_config=
|
|
781
|
-
|
|
782
|
-
|
|
780
|
+
valkey_user_config=aiven.ValkeyValkeyUserConfigArgs(
|
|
781
|
+
valkey_maxmemory_policy="allkeys-random",
|
|
782
|
+
))
|
|
783
783
|
```
|
|
784
784
|
|
|
785
785
|
## Import
|
|
@@ -790,7 +790,7 @@ class Valkey(pulumi.CustomResource):
|
|
|
790
790
|
|
|
791
791
|
:param str resource_name: The name of the resource.
|
|
792
792
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
793
|
-
:param pulumi.Input[str] additional_disk_space:
|
|
793
|
+
:param pulumi.Input[str] additional_disk_space: Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
794
794
|
: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).
|
|
795
795
|
: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.
|
|
796
796
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
@@ -798,14 +798,14 @@ class Valkey(pulumi.CustomResource):
|
|
|
798
798
|
: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 seem from the [Aiven pricing page](https://aiven.io/pricing).
|
|
799
799
|
: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.
|
|
800
800
|
: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.
|
|
801
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
801
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ValkeyServiceIntegrationArgs']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
802
802
|
:param pulumi.Input[str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
803
803
|
: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
|
|
804
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
805
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
804
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ValkeyTagArgs']]]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
805
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ValkeyTechEmailArgs']]]] 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.
|
|
806
806
|
:param pulumi.Input[bool] termination_protection: Prevents the service from being deleted. It is recommended to set this to `true` for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
|
|
807
|
-
:param pulumi.Input[
|
|
808
|
-
:param pulumi.Input[
|
|
807
|
+
:param pulumi.Input[pulumi.InputType['ValkeyValkeyArgs']] valkey: Valkey server provided values
|
|
808
|
+
:param pulumi.Input[pulumi.InputType['ValkeyValkeyUserConfigArgs']] valkey_user_config: Valkey user configurable settings
|
|
809
809
|
"""
|
|
810
810
|
...
|
|
811
811
|
@overload
|
|
@@ -830,9 +830,9 @@ class Valkey(pulumi.CustomResource):
|
|
|
830
830
|
plan="startup-4",
|
|
831
831
|
cloud_name="google-europe-west1",
|
|
832
832
|
service_name="example-valkey-service",
|
|
833
|
-
valkey_user_config=
|
|
834
|
-
|
|
835
|
-
|
|
833
|
+
valkey_user_config=aiven.ValkeyValkeyUserConfigArgs(
|
|
834
|
+
valkey_maxmemory_policy="allkeys-random",
|
|
835
|
+
))
|
|
836
836
|
```
|
|
837
837
|
|
|
838
838
|
## Import
|
|
@@ -864,14 +864,14 @@ class Valkey(pulumi.CustomResource):
|
|
|
864
864
|
plan: Optional[pulumi.Input[str]] = None,
|
|
865
865
|
project: Optional[pulumi.Input[str]] = None,
|
|
866
866
|
project_vpc_id: Optional[pulumi.Input[str]] = None,
|
|
867
|
-
service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
867
|
+
service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ValkeyServiceIntegrationArgs']]]]] = None,
|
|
868
868
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
869
869
|
static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
870
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
871
|
-
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
870
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ValkeyTagArgs']]]]] = None,
|
|
871
|
+
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ValkeyTechEmailArgs']]]]] = None,
|
|
872
872
|
termination_protection: Optional[pulumi.Input[bool]] = None,
|
|
873
|
-
valkey: Optional[pulumi.Input[
|
|
874
|
-
valkey_user_config: Optional[pulumi.Input[
|
|
873
|
+
valkey: Optional[pulumi.Input[pulumi.InputType['ValkeyValkeyArgs']]] = None,
|
|
874
|
+
valkey_user_config: Optional[pulumi.Input[pulumi.InputType['ValkeyValkeyUserConfigArgs']]] = None,
|
|
875
875
|
__props__=None):
|
|
876
876
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
877
877
|
if not isinstance(opts, pulumi.ResourceOptions):
|
|
@@ -929,7 +929,7 @@ class Valkey(pulumi.CustomResource):
|
|
|
929
929
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
930
930
|
additional_disk_space: Optional[pulumi.Input[str]] = None,
|
|
931
931
|
cloud_name: Optional[pulumi.Input[str]] = None,
|
|
932
|
-
components: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
932
|
+
components: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ValkeyComponentArgs']]]]] = None,
|
|
933
933
|
disk_space: Optional[pulumi.Input[str]] = None,
|
|
934
934
|
disk_space_cap: Optional[pulumi.Input[str]] = None,
|
|
935
935
|
disk_space_default: Optional[pulumi.Input[str]] = None,
|
|
@@ -941,7 +941,7 @@ class Valkey(pulumi.CustomResource):
|
|
|
941
941
|
project: Optional[pulumi.Input[str]] = None,
|
|
942
942
|
project_vpc_id: Optional[pulumi.Input[str]] = None,
|
|
943
943
|
service_host: Optional[pulumi.Input[str]] = None,
|
|
944
|
-
service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
944
|
+
service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ValkeyServiceIntegrationArgs']]]]] = None,
|
|
945
945
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
946
946
|
service_password: Optional[pulumi.Input[str]] = None,
|
|
947
947
|
service_port: Optional[pulumi.Input[int]] = None,
|
|
@@ -950,11 +950,11 @@ class Valkey(pulumi.CustomResource):
|
|
|
950
950
|
service_username: Optional[pulumi.Input[str]] = None,
|
|
951
951
|
state: Optional[pulumi.Input[str]] = None,
|
|
952
952
|
static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
953
|
-
tags: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
954
|
-
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[
|
|
953
|
+
tags: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ValkeyTagArgs']]]]] = None,
|
|
954
|
+
tech_emails: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ValkeyTechEmailArgs']]]]] = None,
|
|
955
955
|
termination_protection: Optional[pulumi.Input[bool]] = None,
|
|
956
|
-
valkey: Optional[pulumi.Input[
|
|
957
|
-
valkey_user_config: Optional[pulumi.Input[
|
|
956
|
+
valkey: Optional[pulumi.Input[pulumi.InputType['ValkeyValkeyArgs']]] = None,
|
|
957
|
+
valkey_user_config: Optional[pulumi.Input[pulumi.InputType['ValkeyValkeyUserConfigArgs']]] = None) -> 'Valkey':
|
|
958
958
|
"""
|
|
959
959
|
Get an existing Valkey resource's state with the given name, id, and optional extra
|
|
960
960
|
properties used to qualify the lookup.
|
|
@@ -962,9 +962,9 @@ class Valkey(pulumi.CustomResource):
|
|
|
962
962
|
:param str resource_name: The unique name of the resulting resource.
|
|
963
963
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
964
964
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
965
|
-
:param pulumi.Input[str] additional_disk_space:
|
|
965
|
+
:param pulumi.Input[str] additional_disk_space: Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
966
966
|
: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).
|
|
967
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
967
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ValkeyComponentArgs']]]] components: Service component information objects
|
|
968
968
|
: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.
|
|
969
969
|
:param pulumi.Input[str] disk_space_cap: The maximum disk space of the service, possible values depend on the service type, the cloud provider and the project.
|
|
970
970
|
:param pulumi.Input[str] disk_space_default: The default disk space of the service, possible values depend on the service type, the cloud provider and the project. Its also the minimum value for `disk_space`
|
|
@@ -976,7 +976,7 @@ class Valkey(pulumi.CustomResource):
|
|
|
976
976
|
: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.
|
|
977
977
|
: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.
|
|
978
978
|
:param pulumi.Input[str] service_host: The hostname of the service.
|
|
979
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
979
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ValkeyServiceIntegrationArgs']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
980
980
|
:param pulumi.Input[str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
981
981
|
:param pulumi.Input[str] service_password: Password used for connecting to the service, if applicable
|
|
982
982
|
:param pulumi.Input[int] service_port: The port of the service
|
|
@@ -985,11 +985,11 @@ class Valkey(pulumi.CustomResource):
|
|
|
985
985
|
:param pulumi.Input[str] service_username: Username used for connecting to the service, if applicable
|
|
986
986
|
:param pulumi.Input[str] state: Service state. One of `POWEROFF`, `REBALANCING`, `REBUILDING` or `RUNNING`
|
|
987
987
|
: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
|
|
988
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
989
|
-
:param pulumi.Input[Sequence[pulumi.Input[
|
|
988
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ValkeyTagArgs']]]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
989
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['ValkeyTechEmailArgs']]]] 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.
|
|
990
990
|
:param pulumi.Input[bool] termination_protection: Prevents the service from being deleted. It is recommended to set this to `true` for all production services to prevent unintentional service deletion. This does not shield against deleting databases or topics but for services with backups much of the content can at least be restored from backup in case accidental deletion is done.
|
|
991
|
-
:param pulumi.Input[
|
|
992
|
-
:param pulumi.Input[
|
|
991
|
+
:param pulumi.Input[pulumi.InputType['ValkeyValkeyArgs']] valkey: Valkey server provided values
|
|
992
|
+
:param pulumi.Input[pulumi.InputType['ValkeyValkeyUserConfigArgs']] valkey_user_config: Valkey user configurable settings
|
|
993
993
|
"""
|
|
994
994
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
995
995
|
|
|
@@ -1029,7 +1029,7 @@ class Valkey(pulumi.CustomResource):
|
|
|
1029
1029
|
@pulumi.getter(name="additionalDiskSpace")
|
|
1030
1030
|
def additional_disk_space(self) -> pulumi.Output[Optional[str]]:
|
|
1031
1031
|
"""
|
|
1032
|
-
|
|
1032
|
+
Additional disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
1033
1033
|
"""
|
|
1034
1034
|
return pulumi.get(self, "additional_disk_space")
|
|
1035
1035
|
|