pulumi-aiven 6.22.0a1724217730__py3-none-any.whl → 6.22.0a1724238465__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 +721 -67
- pulumi_aiven/account_team_project.py +7 -7
- pulumi_aiven/cassandra.py +7 -7
- pulumi_aiven/clickhouse.py +7 -7
- pulumi_aiven/dragonfly.py +7 -7
- pulumi_aiven/flink.py +7 -7
- pulumi_aiven/get_account_team_project.py +1 -1
- pulumi_aiven/get_cassanda.py +1 -1
- pulumi_aiven/get_cassandra.py +1 -1
- pulumi_aiven/get_clickhouse.py +1 -1
- pulumi_aiven/get_dragonfly.py +1 -1
- pulumi_aiven/get_flink.py +1 -1
- pulumi_aiven/get_grafana.py +1 -1
- pulumi_aiven/get_kafka.py +1 -1
- pulumi_aiven/get_kafka_connect.py +1 -1
- pulumi_aiven/get_kafka_mirror_maker.py +1 -1
- pulumi_aiven/get_m3_aggregator.py +1 -1
- pulumi_aiven/get_m3_db.py +1 -1
- pulumi_aiven/get_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_valkey.py +1 -1
- pulumi_aiven/grafana.py +7 -7
- pulumi_aiven/influx_db.py +21 -14
- pulumi_aiven/kafka.py +7 -7
- pulumi_aiven/kafka_connect.py +7 -7
- pulumi_aiven/kafka_mirror_maker.py +7 -7
- pulumi_aiven/m3_aggregator.py +7 -7
- pulumi_aiven/m3_db.py +7 -7
- pulumi_aiven/my_sql.py +7 -7
- pulumi_aiven/mysql_user.py +7 -7
- pulumi_aiven/open_search.py +7 -7
- pulumi_aiven/outputs.py +1252 -135
- pulumi_aiven/pg.py +18 -18
- pulumi_aiven/pg_database.py +12 -12
- pulumi_aiven/pg_user.py +47 -47
- 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 +7 -7
- pulumi_aiven/service_integration.py +7 -7
- pulumi_aiven/thanos.py +7 -7
- pulumi_aiven/valkey.py +7 -7
- {pulumi_aiven-6.22.0a1724217730.dist-info → pulumi_aiven-6.22.0a1724238465.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.22.0a1724217730.dist-info → pulumi_aiven-6.22.0a1724238465.dist-info}/RECORD +55 -55
- {pulumi_aiven-6.22.0a1724217730.dist-info → pulumi_aiven-6.22.0a1724238465.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.22.0a1724217730.dist-info → pulumi_aiven-6.22.0a1724238465.dist-info}/top_level.txt +0 -0
pulumi_aiven/redis.py
CHANGED
|
@@ -37,7 +37,7 @@ class RedisArgs:
|
|
|
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: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
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 RedisArgs:
|
|
|
124
124
|
@pulumi.getter(name="additionalDiskSpace")
|
|
125
125
|
def additional_disk_space(self) -> Optional[pulumi.Input[str]]:
|
|
126
126
|
"""
|
|
127
|
-
|
|
127
|
+
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
128
128
|
"""
|
|
129
129
|
return pulumi.get(self, "additional_disk_space")
|
|
130
130
|
|
|
@@ -311,7 +311,7 @@ class _RedisState:
|
|
|
311
311
|
termination_protection: Optional[pulumi.Input[bool]] = None):
|
|
312
312
|
"""
|
|
313
313
|
Input properties used for looking up and filtering Redis resources.
|
|
314
|
-
:param pulumi.Input[str] additional_disk_space:
|
|
314
|
+
:param pulumi.Input[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 with no HA capabilities.
|
|
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['RedisComponentArgs']]] 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 _RedisState:
|
|
|
404
404
|
@pulumi.getter(name="additionalDiskSpace")
|
|
405
405
|
def additional_disk_space(self) -> Optional[pulumi.Input[str]]:
|
|
406
406
|
"""
|
|
407
|
-
|
|
407
|
+
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
408
408
|
"""
|
|
409
409
|
return pulumi.get(self, "additional_disk_space")
|
|
410
410
|
|
|
@@ -792,7 +792,7 @@ class Redis(pulumi.CustomResource):
|
|
|
792
792
|
|
|
793
793
|
:param str resource_name: The name of the resource.
|
|
794
794
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
795
|
-
:param pulumi.Input[str] additional_disk_space:
|
|
795
|
+
:param pulumi.Input[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 with no HA capabilities.
|
|
796
796
|
: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).
|
|
797
797
|
: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.
|
|
798
798
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
@@ -966,7 +966,7 @@ class Redis(pulumi.CustomResource):
|
|
|
966
966
|
:param str resource_name: The unique name of the resulting resource.
|
|
967
967
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
968
968
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
969
|
-
:param pulumi.Input[str] additional_disk_space:
|
|
969
|
+
:param pulumi.Input[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 with no HA capabilities.
|
|
970
970
|
: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).
|
|
971
971
|
:param pulumi.Input[Sequence[pulumi.Input[Union['RedisComponentArgs', 'RedisComponentArgsDict']]]] components: Service component information objects
|
|
972
972
|
: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.
|
|
@@ -1033,7 +1033,7 @@ class Redis(pulumi.CustomResource):
|
|
|
1033
1033
|
@pulumi.getter(name="additionalDiskSpace")
|
|
1034
1034
|
def additional_disk_space(self) -> pulumi.Output[Optional[str]]:
|
|
1035
1035
|
"""
|
|
1036
|
-
|
|
1036
|
+
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
1037
1037
|
"""
|
|
1038
1038
|
return pulumi.get(self, "additional_disk_space")
|
|
1039
1039
|
|
|
@@ -37,7 +37,7 @@ class ServiceIntegrationArgs:
|
|
|
37
37
|
source_service_name: Optional[pulumi.Input[str]] = None):
|
|
38
38
|
"""
|
|
39
39
|
The set of arguments for constructing a ServiceIntegration resource.
|
|
40
|
-
:param pulumi.Input[str] integration_type: Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosstore`, `vector`, `vmalert`
|
|
40
|
+
:param pulumi.Input[str] integration_type: Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_distributed_query`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosstore`, `vector`, `vmalert`
|
|
41
41
|
:param pulumi.Input[str] project: Project the integration belongs to.
|
|
42
42
|
:param pulumi.Input['ServiceIntegrationClickhouseKafkaUserConfigArgs'] clickhouse_kafka_user_config: ClickhouseKafka user configurable settings
|
|
43
43
|
:param pulumi.Input['ServiceIntegrationClickhousePostgresqlUserConfigArgs'] clickhouse_postgresql_user_config: ClickhousePostgresql user configurable settings
|
|
@@ -98,7 +98,7 @@ class ServiceIntegrationArgs:
|
|
|
98
98
|
@pulumi.getter(name="integrationType")
|
|
99
99
|
def integration_type(self) -> pulumi.Input[str]:
|
|
100
100
|
"""
|
|
101
|
-
Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosstore`, `vector`, `vmalert`
|
|
101
|
+
Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_distributed_query`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosstore`, `vector`, `vmalert`
|
|
102
102
|
"""
|
|
103
103
|
return pulumi.get(self, "integration_type")
|
|
104
104
|
|
|
@@ -358,7 +358,7 @@ class _ServiceIntegrationState:
|
|
|
358
358
|
:param pulumi.Input['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs'] external_elasticsearch_logs_user_config: ExternalElasticsearchLogs user configurable settings
|
|
359
359
|
:param pulumi.Input['ServiceIntegrationExternalOpensearchLogsUserConfigArgs'] external_opensearch_logs_user_config: ExternalOpensearchLogs user configurable settings
|
|
360
360
|
:param pulumi.Input[str] integration_id: The ID of the Aiven service integration.
|
|
361
|
-
:param pulumi.Input[str] integration_type: Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosstore`, `vector`, `vmalert`
|
|
361
|
+
:param pulumi.Input[str] integration_type: Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_distributed_query`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosstore`, `vector`, `vmalert`
|
|
362
362
|
:param pulumi.Input['ServiceIntegrationKafkaConnectUserConfigArgs'] kafka_connect_user_config: KafkaConnect user configurable settings
|
|
363
363
|
:param pulumi.Input['ServiceIntegrationKafkaLogsUserConfigArgs'] kafka_logs_user_config: KafkaLogs user configurable settings
|
|
364
364
|
:param pulumi.Input['ServiceIntegrationKafkaMirrormakerUserConfigArgs'] kafka_mirrormaker_user_config: KafkaMirrormaker user configurable settings
|
|
@@ -534,7 +534,7 @@ class _ServiceIntegrationState:
|
|
|
534
534
|
@pulumi.getter(name="integrationType")
|
|
535
535
|
def integration_type(self) -> Optional[pulumi.Input[str]]:
|
|
536
536
|
"""
|
|
537
|
-
Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosstore`, `vector`, `vmalert`
|
|
537
|
+
Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_distributed_query`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosstore`, `vector`, `vmalert`
|
|
538
538
|
"""
|
|
539
539
|
return pulumi.get(self, "integration_type")
|
|
540
540
|
|
|
@@ -716,7 +716,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
716
716
|
:param pulumi.Input[Union['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs', 'ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgsDict']] external_aws_cloudwatch_metrics_user_config: ExternalAwsCloudwatchMetrics user configurable settings
|
|
717
717
|
:param pulumi.Input[Union['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs', 'ServiceIntegrationExternalElasticsearchLogsUserConfigArgsDict']] external_elasticsearch_logs_user_config: ExternalElasticsearchLogs user configurable settings
|
|
718
718
|
:param pulumi.Input[Union['ServiceIntegrationExternalOpensearchLogsUserConfigArgs', 'ServiceIntegrationExternalOpensearchLogsUserConfigArgsDict']] external_opensearch_logs_user_config: ExternalOpensearchLogs user configurable settings
|
|
719
|
-
:param pulumi.Input[str] integration_type: Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosstore`, `vector`, `vmalert`
|
|
719
|
+
:param pulumi.Input[str] integration_type: Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_distributed_query`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosstore`, `vector`, `vmalert`
|
|
720
720
|
:param pulumi.Input[Union['ServiceIntegrationKafkaConnectUserConfigArgs', 'ServiceIntegrationKafkaConnectUserConfigArgsDict']] kafka_connect_user_config: KafkaConnect user configurable settings
|
|
721
721
|
:param pulumi.Input[Union['ServiceIntegrationKafkaLogsUserConfigArgs', 'ServiceIntegrationKafkaLogsUserConfigArgsDict']] kafka_logs_user_config: KafkaLogs user configurable settings
|
|
722
722
|
:param pulumi.Input[Union['ServiceIntegrationKafkaMirrormakerUserConfigArgs', 'ServiceIntegrationKafkaMirrormakerUserConfigArgsDict']] kafka_mirrormaker_user_config: KafkaMirrormaker user configurable settings
|
|
@@ -876,7 +876,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
876
876
|
:param pulumi.Input[Union['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs', 'ServiceIntegrationExternalElasticsearchLogsUserConfigArgsDict']] external_elasticsearch_logs_user_config: ExternalElasticsearchLogs user configurable settings
|
|
877
877
|
:param pulumi.Input[Union['ServiceIntegrationExternalOpensearchLogsUserConfigArgs', 'ServiceIntegrationExternalOpensearchLogsUserConfigArgsDict']] external_opensearch_logs_user_config: ExternalOpensearchLogs user configurable settings
|
|
878
878
|
:param pulumi.Input[str] integration_id: The ID of the Aiven service integration.
|
|
879
|
-
:param pulumi.Input[str] integration_type: Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosstore`, `vector`, `vmalert`
|
|
879
|
+
:param pulumi.Input[str] integration_type: Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_distributed_query`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosstore`, `vector`, `vmalert`
|
|
880
880
|
:param pulumi.Input[Union['ServiceIntegrationKafkaConnectUserConfigArgs', 'ServiceIntegrationKafkaConnectUserConfigArgsDict']] kafka_connect_user_config: KafkaConnect user configurable settings
|
|
881
881
|
:param pulumi.Input[Union['ServiceIntegrationKafkaLogsUserConfigArgs', 'ServiceIntegrationKafkaLogsUserConfigArgsDict']] kafka_logs_user_config: KafkaLogs user configurable settings
|
|
882
882
|
:param pulumi.Input[Union['ServiceIntegrationKafkaMirrormakerUserConfigArgs', 'ServiceIntegrationKafkaMirrormakerUserConfigArgsDict']] kafka_mirrormaker_user_config: KafkaMirrormaker user configurable settings
|
|
@@ -997,7 +997,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
997
997
|
@pulumi.getter(name="integrationType")
|
|
998
998
|
def integration_type(self) -> pulumi.Output[str]:
|
|
999
999
|
"""
|
|
1000
|
-
Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosstore`, `vector`, `vmalert`
|
|
1000
|
+
Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_distributed_query`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosstore`, `vector`, `vmalert`
|
|
1001
1001
|
"""
|
|
1002
1002
|
return pulumi.get(self, "integration_type")
|
|
1003
1003
|
|
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: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
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
|
+
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
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: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
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
|
+
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
408
408
|
"""
|
|
409
409
|
return pulumi.get(self, "additional_disk_space")
|
|
410
410
|
|
|
@@ -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: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
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.
|
|
@@ -918,7 +918,7 @@ 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: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
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
923
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ThanosComponentArgs', 'ThanosComponentArgsDict']]]] 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.
|
|
@@ -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
|
+
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
989
989
|
"""
|
|
990
990
|
return pulumi.get(self, "additional_disk_space")
|
|
991
991
|
|
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: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
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
|
+
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
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: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
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
|
+
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
408
408
|
"""
|
|
409
409
|
return pulumi.get(self, "additional_disk_space")
|
|
410
410
|
|
|
@@ -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: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
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.
|
|
@@ -962,7 +962,7 @@ 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: Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
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
967
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ValkeyComponentArgs', 'ValkeyComponentArgsDict']]]] 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.
|
|
@@ -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
|
+
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
1033
1033
|
"""
|
|
1034
1034
|
return pulumi.get(self, "additional_disk_space")
|
|
1035
1035
|
|
{pulumi_aiven-6.22.0a1724217730.dist-info → pulumi_aiven-6.22.0a1724238465.dist-info}/RECORD
RENAMED
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
pulumi_aiven/__init__.py,sha256=PaaxSOu_GAnHh4HRpEShJP9mCMv9wP97wJlMracO_Ko,18538
|
|
2
|
-
pulumi_aiven/_inputs.py,sha256=
|
|
2
|
+
pulumi_aiven/_inputs.py,sha256=qtQdkp1YDzKlv5fqL-KETeHuIvaoZQmCl3erZ1W6nk0,1193918
|
|
3
3
|
pulumi_aiven/_utilities.py,sha256=aNnnaO6zRha3FhNHonuabR4fJLWGXANtK5dlh1Mz95k,10506
|
|
4
4
|
pulumi_aiven/account.py,sha256=MlCmPhnrhzt9_f2Elgjvm-4ZVPhFXz6eQ3DMJ5zoQZE,16851
|
|
5
5
|
pulumi_aiven/account_authentication.py,sha256=f-WGSeET1vkjqDJ56lcmpjqIfbW8-AyajBgiGJF8PZY,37575
|
|
6
6
|
pulumi_aiven/account_team.py,sha256=2nXHXk27PG3ngyxFOtNqPmR9GNFdK8-cgRsFBq3do9w,12927
|
|
7
7
|
pulumi_aiven/account_team_member.py,sha256=Iiu6_KEoV8aHg-yn9FhHbaRonJhvpBQp-F0vMfy5xgA,18599
|
|
8
|
-
pulumi_aiven/account_team_project.py,sha256=
|
|
8
|
+
pulumi_aiven/account_team_project.py,sha256=uriaPXbUoFU2D7HIx2IsQGdB9ohTgopKMuVeC5gG978,15091
|
|
9
9
|
pulumi_aiven/aws_privatelink.py,sha256=unh4v3-UrdUTwOyYJeVl79bsbqfxfbMpA0iw6H1zwhY,15431
|
|
10
10
|
pulumi_aiven/aws_vpc_peering_connection.py,sha256=ERXQgMhkWVrwSJQAA_5940SeW_u1s0NlmiXt2pskfkI,18444
|
|
11
11
|
pulumi_aiven/azure_privatelink.py,sha256=fnW3eM-N2Og8IhfOgYbtaeo9PEFtnnoQ4utMEm_QdM4,17982
|
|
12
12
|
pulumi_aiven/azure_privatelink_connection_approval.py,sha256=PypS2BeXPJXkp1L2qjiE70CI55F1RkzfRDl022y-luk,18830
|
|
13
13
|
pulumi_aiven/azure_vpc_peering_connection.py,sha256=mdpra_XePbvRDNs6A8jI0Gg55ONt3qL2_sZAV0zxqcU,25208
|
|
14
14
|
pulumi_aiven/billing_group.py,sha256=618QcUhxrSf6eahAcjspSpFYXQgMSCZ5vdXMrXwjNV0,37303
|
|
15
|
-
pulumi_aiven/cassandra.py,sha256=
|
|
15
|
+
pulumi_aiven/cassandra.py,sha256=v1VyXvFMzZVL5ERwjyPG4osAMN6BlwmbCOveTuvu6iM,81291
|
|
16
16
|
pulumi_aiven/cassandra_user.py,sha256=oD7ArA3pybc68ND_tQL4lG3YxVk37OSkpnp-c2-2MCs,18922
|
|
17
|
-
pulumi_aiven/clickhouse.py,sha256=
|
|
17
|
+
pulumi_aiven/clickhouse.py,sha256=1LI2uLAFGt4fYPYlLHt4P3v61CQF_XA1DORCxC1d9Xw,81361
|
|
18
18
|
pulumi_aiven/clickhouse_database.py,sha256=UBr3JvlL7z-dzR3SoYgsWnf-Ybdvvj6hxL_ygdOVJoc,15550
|
|
19
19
|
pulumi_aiven/clickhouse_grant.py,sha256=d_Y0tluiujPl5oM8C_aQK-G9LuqHtHhoHjUr8FAg4do,25348
|
|
20
20
|
pulumi_aiven/clickhouse_role.py,sha256=i9O92BTA6m1EmuJwSI8mCzyIlSt-xpGBiUzm-Rur9ko,12487
|
|
21
21
|
pulumi_aiven/clickhouse_user.py,sha256=P1oJSHEcosqc-5dn9yF8ppR-zHLyXQimnawk-iZyRyc,15787
|
|
22
22
|
pulumi_aiven/connection_pool.py,sha256=3Vd_cbCNIZSSxP2ztuk_zm4CagEAYudGVKYmqCM6W1o,25462
|
|
23
|
-
pulumi_aiven/dragonfly.py,sha256
|
|
24
|
-
pulumi_aiven/flink.py,sha256=
|
|
23
|
+
pulumi_aiven/dragonfly.py,sha256=-HTha9v7d4ZWXd_YP8u2O2uiFg-U7b1RHzGBPPOXeVw,81077
|
|
24
|
+
pulumi_aiven/flink.py,sha256=43zth3wBPlMttwmqbM4vOf68JlHSLVJcpU7ylIpnJcE,80305
|
|
25
25
|
pulumi_aiven/flink_application.py,sha256=ZMN-NMsCGgx1C-RvwvVybuNu5-k1KLfMZwVg305ZDjY,17604
|
|
26
26
|
pulumi_aiven/flink_application_deployment.py,sha256=kJtKNGavTqEJQqnGv8PCaY1mDpDCMJKytjUx2HYvST4,26276
|
|
27
27
|
pulumi_aiven/flink_application_version.py,sha256=nkN6GujMoREZW5IcOTgzS4lZKd89bWis3YlGRE_UghU,34128
|
|
@@ -32,47 +32,47 @@ pulumi_aiven/get_account.py,sha256=1IRpzwGrU2kq2JfeoJ3Gj2zKdE0DrZ_G-9sJLJlsz_c,6
|
|
|
32
32
|
pulumi_aiven/get_account_authentication.py,sha256=ygLucZMU0giXVuBPJULj7-q7uRp_q70yWJZ_pgPPm4I,12740
|
|
33
33
|
pulumi_aiven/get_account_team.py,sha256=QG9wGFNo_ZYCrEO_g3A66rGBAHST5iWq2jTFVuukSCs,4834
|
|
34
34
|
pulumi_aiven/get_account_team_member.py,sha256=AkIrkJ8jknk4BxSk2_6Aj8hV5ri23E1JVinZDeKEOKQ,7108
|
|
35
|
-
pulumi_aiven/get_account_team_project.py,sha256=
|
|
35
|
+
pulumi_aiven/get_account_team_project.py,sha256=h9GJSIWWsTBTxtuA2YpG1yiV9VtwT3hyYl0Ar-yMfck,5050
|
|
36
36
|
pulumi_aiven/get_aws_privatelink.py,sha256=EOeWG7uUUDQgf0IJWjX4naX29C7B0TKUMuOlmMeyChw,6585
|
|
37
37
|
pulumi_aiven/get_aws_vpc_peering_connection.py,sha256=LHtcxLnGhZKhFNRJTZePGplGVp3iI-tP4bSSg1WF-14,8867
|
|
38
38
|
pulumi_aiven/get_azure_privatelink.py,sha256=LQgpG0bCm9jk744TX2n4KS530PW5I9Dh1bmDO3jMgss,7755
|
|
39
39
|
pulumi_aiven/get_azure_vpc_peering_connection.py,sha256=aWaydHrSr3vjpenWsuHWnsn9neY-EX-C2fxqGAWzcwA,11684
|
|
40
40
|
pulumi_aiven/get_billing_group.py,sha256=ztNtROFBAjtl-P_7lIF_44ycSSZyfRPN5VTHs9Yb39A,10909
|
|
41
|
-
pulumi_aiven/get_cassanda.py,sha256=
|
|
42
|
-
pulumi_aiven/get_cassandra.py,sha256=
|
|
41
|
+
pulumi_aiven/get_cassanda.py,sha256=lhz9TJ44xHneTokL1m-yVJIIJWlMZhhSP2DzQRZ9co8,23108
|
|
42
|
+
pulumi_aiven/get_cassandra.py,sha256=xzCMZnJBp56opP9wEul4OgyQPw-jJ1myCRyxtzXixQg,22777
|
|
43
43
|
pulumi_aiven/get_cassandra_user.py,sha256=grVk-DzxtyiVj5CneY5mCQ8bB27H4bLAIdUdGwwiVuA,8124
|
|
44
|
-
pulumi_aiven/get_clickhouse.py,sha256=
|
|
44
|
+
pulumi_aiven/get_clickhouse.py,sha256=JqyLpg4fzt2dOH7rRpxHm7c2sq6gu5UeJJTGB7b6zC0,22823
|
|
45
45
|
pulumi_aiven/get_clickhouse_database.py,sha256=3-a7h3JOaIB9FgFU10-2pZTe_Jf79A-S7C3HYuESf6A,6550
|
|
46
46
|
pulumi_aiven/get_clickhouse_user.py,sha256=Im8GpQBh3yowS3m_ULVc3LnychSG-FXuTSjesRnL_8Q,7206
|
|
47
47
|
pulumi_aiven/get_connection_pool.py,sha256=qqx9K8wn74DcWbCPoNZkGVaXSUE9STjNkXP2mEHcvGA,8984
|
|
48
|
-
pulumi_aiven/get_dragonfly.py,sha256
|
|
49
|
-
pulumi_aiven/get_flink.py,sha256=
|
|
48
|
+
pulumi_aiven/get_dragonfly.py,sha256=-aLNq7rH5Mi2o6lZO_pNBM9jzMJOqhUpT34HlhFK5kA,22795
|
|
49
|
+
pulumi_aiven/get_flink.py,sha256=sNqzK-lWl4wRaHwJ1xYyF7rTMR_CF3go7xF0w8ey6m0,22545
|
|
50
50
|
pulumi_aiven/get_flink_application.py,sha256=6DeaE1HQbXHcwt1Rw8I_fBaj6ia1QRo_YBcx3wo_sLM,8212
|
|
51
51
|
pulumi_aiven/get_flink_application_version.py,sha256=uyGs1YxOBa5T3iM20KjLUe7ceDUHAG2PeNjG_H1r1YM,11070
|
|
52
52
|
pulumi_aiven/get_gcp_privatelink.py,sha256=B0_jQTTtZNGaJmhdJyUyqvRhuOF2EgUtAivb-yfVD_k,6601
|
|
53
53
|
pulumi_aiven/get_gcp_vpc_peering_connection.py,sha256=5j195Zriun91TKu4WQCf3WNknWCZ3kkF3GuIf5QpHWk,7122
|
|
54
|
-
pulumi_aiven/get_grafana.py,sha256=
|
|
54
|
+
pulumi_aiven/get_grafana.py,sha256=lL_qPqWFBDhLMkUCnV4xgYj6RJwFFXpHXFmgzT7-Hgs,22635
|
|
55
55
|
pulumi_aiven/get_influx_db.py,sha256=eo_2CHe3FlcRIMfN_xikFxmdPhJuSpgNI6YDxjzp-Fw,15756
|
|
56
56
|
pulumi_aiven/get_influxdb_database.py,sha256=3fwwAHiy_2s1dmI6BOyFLjz-oBcutoxgXHMYgBfRy_Y,4504
|
|
57
57
|
pulumi_aiven/get_influxdb_user.py,sha256=3PQ9lTmaIzX9-KduzIGuQKzvF2eSaqYLxEVYhc9dFS0,5320
|
|
58
|
-
pulumi_aiven/get_kafka.py,sha256=
|
|
58
|
+
pulumi_aiven/get_kafka.py,sha256=hJdyIoh3fBrkdWIOop0z0qWofWwmRVk1nM0Dglz9J1M,23583
|
|
59
59
|
pulumi_aiven/get_kafka_acl.py,sha256=lx0RCpBHYhxt3xO2plF1sWVD_YdDCTDfL2AvlT8CFfo,8303
|
|
60
|
-
pulumi_aiven/get_kafka_connect.py,sha256=
|
|
60
|
+
pulumi_aiven/get_kafka_connect.py,sha256=_rEDTgLZnYOz3x9HR0wM-QgWdhgYL1EEJ7EFWUFOf1w,22441
|
|
61
61
|
pulumi_aiven/get_kafka_connector.py,sha256=ni-Yv-iiYZTP4H07V7eAqDsRjg-H_xfsSVxZieVJec0,10188
|
|
62
|
-
pulumi_aiven/get_kafka_mirror_maker.py,sha256=
|
|
62
|
+
pulumi_aiven/get_kafka_mirror_maker.py,sha256=G_5BuBpnZ_W3pwRhID6RVcedNt3NrKvkalOQtfzKy8g,22616
|
|
63
63
|
pulumi_aiven/get_kafka_schema.py,sha256=ttWJGihZ6o3SVEUxV1kPyZuQeOhu6YNtVx4wWn6l7BA,8212
|
|
64
64
|
pulumi_aiven/get_kafka_schema_configuration.py,sha256=dgmGtRQUOUl-hAxn9jJyHvpyeg4-lajbXMCwdElvEAU,8253
|
|
65
65
|
pulumi_aiven/get_kafka_schema_registry_acl.py,sha256=2HWu-4qpxia3UIizSnVIEE5IJzvszn2JDxsYYy2kM44,8459
|
|
66
66
|
pulumi_aiven/get_kafka_topic.py,sha256=xF6_KZIgOKITYizLjqro4-Bpla2FCmIpLFTRA3z5MNI,8430
|
|
67
67
|
pulumi_aiven/get_kafka_user.py,sha256=BhDSOQKkJv_WhEQ5nhVLaFhTzysTUvbZqZmUe6-KXzc,7939
|
|
68
|
-
pulumi_aiven/get_m3_aggregator.py,sha256=
|
|
69
|
-
pulumi_aiven/get_m3_db.py,sha256=
|
|
68
|
+
pulumi_aiven/get_m3_aggregator.py,sha256=KFUOOYaYn9Ygby5UXDCoZByHDG9-7izA7q5OmQUeCQE,22950
|
|
69
|
+
pulumi_aiven/get_m3_db.py,sha256=vcnoTjK9Ul_VjnYzbeNizP2QmsEkoj3FVZI_izPFOIs,22457
|
|
70
70
|
pulumi_aiven/get_m3db_user.py,sha256=AX7fioJ-ErVg_qk-kDWlQurD8q5MffNLLhhttmomXac,6865
|
|
71
71
|
pulumi_aiven/get_mirror_maker_replication_flow.py,sha256=yMdNw1xcqg0Bie2rR6W21dEGpOQhogwuLtHt7k3jFas,15742
|
|
72
|
-
pulumi_aiven/get_my_sql.py,sha256=
|
|
72
|
+
pulumi_aiven/get_my_sql.py,sha256=YlPaofg_hoUp7J8enTK-ZtLvmHnbIF6OtJ_3v04durk,22541
|
|
73
73
|
pulumi_aiven/get_mysql_database.py,sha256=1rryMxbdYRBK3ItPNYKe91eFxUZKxxvHl3LJ7m5_nrw,6647
|
|
74
|
-
pulumi_aiven/get_mysql_user.py,sha256=
|
|
75
|
-
pulumi_aiven/get_open_search.py,sha256=
|
|
74
|
+
pulumi_aiven/get_mysql_user.py,sha256=gTTpale8uWigGZvkrfmprvWO7tE6LRBqkncPTFsoaEE,8541
|
|
75
|
+
pulumi_aiven/get_open_search.py,sha256=XO48efQPAnMW6X25xHhB9aCxHxuRzSYP7X04_wejnYo,22847
|
|
76
76
|
pulumi_aiven/get_open_search_acl_config.py,sha256=zsBIEfvwAMukiLjnzsvKaFwSERfwnBgy_l1h1EGeeOo,6475
|
|
77
77
|
pulumi_aiven/get_open_search_acl_rule.py,sha256=ALOv6HiP9C_pynlN0-kgQPh642HeccfuSES2_DMu5ps,8407
|
|
78
78
|
pulumi_aiven/get_opensearch_security_plugin_config.py,sha256=FdUNjCJduz412aQE85-cnXU4Ya2NwQOil1hEVThfnxM,7739
|
|
@@ -82,43 +82,43 @@ pulumi_aiven/get_organization_application_user.py,sha256=5rcRhoN0MxaH8zgpb42h4nc
|
|
|
82
82
|
pulumi_aiven/get_organization_user.py,sha256=1hdtZ9xCzN9ci-yM7xKGiEfEYtgYhxYJuRncX4fxnhM,5050
|
|
83
83
|
pulumi_aiven/get_organization_user_group.py,sha256=jFvrv0G0CnTENs0YSLFrPotJW-1RQJ0IC5AdTVvNR3E,6462
|
|
84
84
|
pulumi_aiven/get_organizational_unit.py,sha256=wuiMG9iefxZluA84PqT9iwArghn7JcH1PdF12jei8uE,4697
|
|
85
|
-
pulumi_aiven/get_pg.py,sha256=
|
|
86
|
-
pulumi_aiven/get_pg_database.py,sha256=
|
|
87
|
-
pulumi_aiven/get_pg_user.py,sha256=
|
|
85
|
+
pulumi_aiven/get_pg.py,sha256=c8dETOVr0Oc64Y4eyMRzFwYzXNaoXsT0A-Oy_mySbQU,22384
|
|
86
|
+
pulumi_aiven/get_pg_database.py,sha256=6pn1VfvHydsxDKghxjq6C1_WRAh-IVTsRX_bAvKaikw,7754
|
|
87
|
+
pulumi_aiven/get_pg_user.py,sha256=WODxpoaJW-H5EsXL7yLWr8H5W_WlxfJpsXek1xT9edQ,8535
|
|
88
88
|
pulumi_aiven/get_project.py,sha256=BMI-RAjRUc-KASrMgXxHcdtzGORQy5uxFgedoXD3m_Q,12306
|
|
89
|
-
pulumi_aiven/get_project_user.py,sha256=
|
|
90
|
-
pulumi_aiven/get_project_vpc.py,sha256=
|
|
91
|
-
pulumi_aiven/get_redis.py,sha256=
|
|
89
|
+
pulumi_aiven/get_project_user.py,sha256=QO8JUYTSNHGd-1UUfnFdIC-nlOpkNiZdXuuNlWJ4VXg,5600
|
|
90
|
+
pulumi_aiven/get_project_vpc.py,sha256=dtBlsCZ9jLw_XkpVkNdrgjakB4pcKrLoz_3Tji-y_go,6327
|
|
91
|
+
pulumi_aiven/get_redis.py,sha256=BlRGJe1VxvHHQdHZjw9J8i0zoxEISEXRIv4q9mIZJSI,22508
|
|
92
92
|
pulumi_aiven/get_redis_user.py,sha256=tSFTVOj-u1uUbNLsw66Bg79_QerWBcWZi3RFiaM91eE,9769
|
|
93
93
|
pulumi_aiven/get_service_component.py,sha256=ej2tl74FPoQfgdI3KYQABT_b1b9advsU_z23yLpJsto,10367
|
|
94
|
-
pulumi_aiven/get_service_integration.py,sha256=
|
|
94
|
+
pulumi_aiven/get_service_integration.py,sha256=GxWG1J6xwZ9MZWbO96Eqd9s_XomLqfsGjByJZkZ85-Q,21790
|
|
95
95
|
pulumi_aiven/get_service_integration_endpoint.py,sha256=NptyCHZAmQVpUMLFohCXarpM9-pb0-D-_HqTW6rlExs,17283
|
|
96
|
-
pulumi_aiven/get_thanos.py,sha256=
|
|
96
|
+
pulumi_aiven/get_thanos.py,sha256=B9xMA5OHAGq23D3pEuyV447qGetBWnmbQuSjCL-Ph6U,22459
|
|
97
97
|
pulumi_aiven/get_transit_gateway_vpc_attachment.py,sha256=Tck_Lmq87WZOxA2iUt2Iom7lM4lCxYyXipZ34cJ3iZM,9147
|
|
98
|
-
pulumi_aiven/get_valkey.py,sha256=
|
|
98
|
+
pulumi_aiven/get_valkey.py,sha256=jyZ4oFkd-4kEjryawlO6t1U-0to-USt9HxnuglmrO3g,22900
|
|
99
99
|
pulumi_aiven/get_valkey_user.py,sha256=qthhEULJpTkbtPp4AM7E3qctLwzlewI_LqBuHMuCqVg,9759
|
|
100
|
-
pulumi_aiven/grafana.py,sha256=
|
|
101
|
-
pulumi_aiven/influx_db.py,sha256=
|
|
100
|
+
pulumi_aiven/grafana.py,sha256=3QOX7bqfjGuD6n_GYite5548qyt8q1ES1B14r__xGsY,80691
|
|
101
|
+
pulumi_aiven/influx_db.py,sha256=eJfthY-pgjpjWwXIyUezz-7JYrLGtZBrIwOsmEI3jsA,81862
|
|
102
102
|
pulumi_aiven/influxdb_database.py,sha256=-W78tVLUInwbQS0iHcBC5uToGVOQykTl3WlmO8HAUBQ,14040
|
|
103
103
|
pulumi_aiven/influxdb_user.py,sha256=SptXu0v0R8S_pFs-veNOZkeIvTrCWnCsAZMHb0Z3rjY,18226
|
|
104
|
-
pulumi_aiven/kafka.py,sha256=
|
|
104
|
+
pulumi_aiven/kafka.py,sha256=W1X4IXY_Z_mkL33ESPCrTb_MSG6Z65JV6NpdmvFPFoE,86333
|
|
105
105
|
pulumi_aiven/kafka_acl.py,sha256=GAECksDAXZzdBQ7MCk-FIskfUxRSED4mopLocBPJSY8,18756
|
|
106
|
-
pulumi_aiven/kafka_connect.py,sha256=
|
|
106
|
+
pulumi_aiven/kafka_connect.py,sha256=qFtxM4hdPqeDCE_qkBlQRiZMhFyifWQ95L32QEGQYEk,82736
|
|
107
107
|
pulumi_aiven/kafka_connector.py,sha256=JL0PlIr03i0jB9MvIPU8LY2vYYqcJVMMzf0hLFkmwsk,24876
|
|
108
|
-
pulumi_aiven/kafka_mirror_maker.py,sha256=
|
|
108
|
+
pulumi_aiven/kafka_mirror_maker.py,sha256=x9UXVQpzwOm9m-rpO_P75yzyEGt2rLiDR80D9PIx27c,80320
|
|
109
109
|
pulumi_aiven/kafka_schema.py,sha256=dzVrDdWK7QzIlVTSKrRpemuYo0SmDeuygkiVHRWlnnc,22597
|
|
110
110
|
pulumi_aiven/kafka_schema_configuration.py,sha256=kJVMjKWs19pf0m16wtUnTboIkHj5-5Mqo7yvD6qHUwk,14026
|
|
111
111
|
pulumi_aiven/kafka_schema_registry_acl.py,sha256=Odnd3RSN7eXVoKrJ5njdgj-qVF-NlrI1CFmAJE59L0M,19449
|
|
112
112
|
pulumi_aiven/kafka_topic.py,sha256=wz-J_oExYO9-NZaE5Edm0yjdwn9p_KuJCuBm7_PhP4g,23770
|
|
113
113
|
pulumi_aiven/kafka_user.py,sha256=xWV2GjfyYS1awT_5ujnylgBaMf8zCVioW6Bvs05fVLY,18390
|
|
114
|
-
pulumi_aiven/m3_aggregator.py,sha256=
|
|
115
|
-
pulumi_aiven/m3_db.py,sha256=
|
|
114
|
+
pulumi_aiven/m3_aggregator.py,sha256=gpkk7rYLW_ok6W8tHCLHMAv6NdyyWMtfYJa_nwK4tGk,81861
|
|
115
|
+
pulumi_aiven/m3_db.py,sha256=mzsVHY4IygMUB-LrEE_xbtrMjs_qE_foIHDlQTjAORg,80056
|
|
116
116
|
pulumi_aiven/m3db_user.py,sha256=5svsu5nO-CwdR3Cp-OHej55L19fERWCjMFe3BUi9Zbg,16224
|
|
117
117
|
pulumi_aiven/mirror_maker_replication_flow.py,sha256=v-WC_KemMR7TlHOo_-ibMwP03oLvR4UQXPSHW9Q6UeI,50955
|
|
118
|
-
pulumi_aiven/my_sql.py,sha256
|
|
118
|
+
pulumi_aiven/my_sql.py,sha256=jd--FHpZYKdek0FXa1w8VUYjU4AjrQ2ktKiz9_e_xXM,80746
|
|
119
119
|
pulumi_aiven/mysql_database.py,sha256=V-PIDNBgrVHMCko7rVqi57vvoIjL8304E2RgawjrgHE,14754
|
|
120
|
-
pulumi_aiven/mysql_user.py,sha256=
|
|
121
|
-
pulumi_aiven/open_search.py,sha256=
|
|
120
|
+
pulumi_aiven/mysql_user.py,sha256=1SIVVPp_sm-bqi6uJUAkze-HeQUy5d1LjKWU35mVV9w,21121
|
|
121
|
+
pulumi_aiven/open_search.py,sha256=nM_5coK4q6VRgSiBq2rfIC5dVBQbGImx1ZmHtEkcYtg,82318
|
|
122
122
|
pulumi_aiven/open_search_acl_config.py,sha256=t5lPy7nN2_08a9LK-4H-hwNS1PpS8aRoujLAoEbT_-o,17912
|
|
123
123
|
pulumi_aiven/open_search_acl_rule.py,sha256=_8D_sLAiM29SNMMjl1fLUzae8tgNQhLPmWaJAX_LwMs,21934
|
|
124
124
|
pulumi_aiven/opensearch_security_plugin_config.py,sha256=HpnFd2__mtiAwwOh9PFboST9zs8tRWruKvl_PFEaQKs,18636
|
|
@@ -131,29 +131,29 @@ pulumi_aiven/organization_user.py,sha256=eJ59ukayuIBnmYl08YyF_GJBDC8pjFpuBtsCkw6
|
|
|
131
131
|
pulumi_aiven/organization_user_group.py,sha256=VIG187GzPkUjZpbu42Y1sDNr57KoKMdXr3TeckArwJs,14658
|
|
132
132
|
pulumi_aiven/organization_user_group_member.py,sha256=Wu0IdVIKC-s-12hqx0vb4_3PhsdHlV6QBLXE3VB-0Jk,14610
|
|
133
133
|
pulumi_aiven/organizational_unit.py,sha256=HxSsz1TNJvhrtb1NPUfdA_V1fYiWCftoqJakJnBP8uU,11465
|
|
134
|
-
pulumi_aiven/outputs.py,sha256=
|
|
135
|
-
pulumi_aiven/pg.py,sha256=
|
|
136
|
-
pulumi_aiven/pg_database.py,sha256=
|
|
137
|
-
pulumi_aiven/pg_user.py,sha256=
|
|
134
|
+
pulumi_aiven/outputs.py,sha256=LveMMQOEunXReB0Xh-lltB63UPUveInFrWlKgxJFp_A,1963005
|
|
135
|
+
pulumi_aiven/pg.py,sha256=JluviyjnMHIfHYPnkX4m4dR7Jiuc1xvUy0TuX7xlpKM,78390
|
|
136
|
+
pulumi_aiven/pg_database.py,sha256=L61L8af8YTLIDR23AmtrkZwc0mtrigweRpYvjqJel-Y,19979
|
|
137
|
+
pulumi_aiven/pg_user.py,sha256=FoWQkDjKfs_wIpYnx_8ZXuMzJD2RgsewX_OxpOxUxXQ,20617
|
|
138
138
|
pulumi_aiven/project.py,sha256=V97vBWX7CScWthB52QruGXXXb8W_bduMhDLSdrPvnGc,45405
|
|
139
|
-
pulumi_aiven/project_user.py,sha256=
|
|
140
|
-
pulumi_aiven/project_vpc.py,sha256=
|
|
139
|
+
pulumi_aiven/project_user.py,sha256=JPRFqgng2mQU1fO_1_tcY0MIjd3Yx64FTA48srX-O2U,13273
|
|
140
|
+
pulumi_aiven/project_vpc.py,sha256=Hsi_hf5hS-mOkE_HIiyV2VU4qhafCcW5kOHvdsMvZH8,13908
|
|
141
141
|
pulumi_aiven/provider.py,sha256=8Nv5JAKLMaDCG8iqDCiMTBS5DYK8bh5Fvv0Pl6_5LK0,4881
|
|
142
|
-
pulumi_aiven/pulumi-plugin.json,sha256=
|
|
142
|
+
pulumi_aiven/pulumi-plugin.json,sha256=PnbO8XCZcF3HBUfrDF3ryrOW2BfM-AOShVLknGgW8k8,82
|
|
143
143
|
pulumi_aiven/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
144
|
-
pulumi_aiven/redis.py,sha256=
|
|
144
|
+
pulumi_aiven/redis.py,sha256=yeADGS2jcMOLeZJnMkeQBmUcsY_h3eoLUw4jN4g4nLc,80291
|
|
145
145
|
pulumi_aiven/redis_user.py,sha256=jGHT0lw0egvRigZIBlokBIE6-_c8sbjhFM2bJLoaGHg,29184
|
|
146
|
-
pulumi_aiven/service_integration.py,sha256=
|
|
146
|
+
pulumi_aiven/service_integration.py,sha256=gOWahoG21HFs2Fsvn-gG8uTiDcscVXu_ZLYZkoMDWfY,72155
|
|
147
147
|
pulumi_aiven/service_integration_endpoint.py,sha256=UAQwjN5zuQzqqwnYS8VsIWLxc-ef3tcBWIL4RxAaTrM,63609
|
|
148
148
|
pulumi_aiven/static_ip.py,sha256=gtPEBjinCRn1W_Eth41uMApeqQ1kN8jQFt9xFmHrcTw,13926
|
|
149
|
-
pulumi_aiven/thanos.py,sha256=
|
|
149
|
+
pulumi_aiven/thanos.py,sha256=dffIfLA8g21dxOByzSXs95WPHwK73plUbVMXzBzA-dk,79540
|
|
150
150
|
pulumi_aiven/transit_gateway_vpc_attachment.py,sha256=pINRMv0Kd7eLcR81gUZbxp3I5atzGm1EWum36d1jN4s,21907
|
|
151
|
-
pulumi_aiven/valkey.py,sha256=
|
|
151
|
+
pulumi_aiven/valkey.py,sha256=bwtLeRJRI4lynn5SYYyKzDWUjRBB-rzsNF8mNvoNrZ8,80630
|
|
152
152
|
pulumi_aiven/valkey_user.py,sha256=smI-xf7tp7fELqzEELJMO8bbmIK7YchTz9j1mLqR0ig,28872
|
|
153
153
|
pulumi_aiven/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
154
154
|
pulumi_aiven/config/__init__.pyi,sha256=i0kRcMqRhHZqXZfs-7cXU-bEhaP2QAJDGjuUhIMDgqY,465
|
|
155
155
|
pulumi_aiven/config/vars.py,sha256=hQgM94csEU3YnUsOUTPc-JvxssBTpi2DURZx6QWdLUk,658
|
|
156
|
-
pulumi_aiven-6.22.
|
|
157
|
-
pulumi_aiven-6.22.
|
|
158
|
-
pulumi_aiven-6.22.
|
|
159
|
-
pulumi_aiven-6.22.
|
|
156
|
+
pulumi_aiven-6.22.0a1724238465.dist-info/METADATA,sha256=56dw2-Vm2Nms_fDx_VHGsuXa-CwAUO9PRteBGolEFho,2532
|
|
157
|
+
pulumi_aiven-6.22.0a1724238465.dist-info/WHEEL,sha256=Mdi9PDNwEZptOjTlUcAth7XJDFtKrHYaQMPulZeBCiQ,91
|
|
158
|
+
pulumi_aiven-6.22.0a1724238465.dist-info/top_level.txt,sha256=4rjz_Hec4Y2PFX4LhJ-JcnMU5H7z-y7r1yiK_xEduWU,13
|
|
159
|
+
pulumi_aiven-6.22.0a1724238465.dist-info/RECORD,,
|
|
File without changes
|
{pulumi_aiven-6.22.0a1724217730.dist-info → pulumi_aiven-6.22.0a1724238465.dist-info}/top_level.txt
RENAMED
|
File without changes
|