pulumi-aiven 6.40.0a1750136897__py3-none-any.whl → 6.40.0a1750736392__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 +322 -28
- pulumi_aiven/alloydbomni.py +8 -8
- pulumi_aiven/cassandra.py +8 -8
- pulumi_aiven/clickhouse.py +8 -8
- pulumi_aiven/clickhouse_database.py +0 -10
- pulumi_aiven/clickhouse_grant.py +0 -16
- pulumi_aiven/dragonfly.py +8 -8
- pulumi_aiven/flink.py +8 -8
- pulumi_aiven/get_alloydbomni.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_open_search.py +1 -1
- pulumi_aiven/get_organization_billing_group.py +15 -15
- pulumi_aiven/get_pg.py +1 -1
- pulumi_aiven/get_redis.py +1 -1
- pulumi_aiven/get_thanos.py +1 -1
- pulumi_aiven/get_valkey.py +1 -1
- pulumi_aiven/grafana.py +8 -8
- pulumi_aiven/influx_db.py +36 -29
- pulumi_aiven/kafka.py +8 -8
- pulumi_aiven/kafka_connect.py +8 -8
- pulumi_aiven/kafka_mirror_maker.py +8 -8
- pulumi_aiven/m3_aggregator.py +8 -8
- pulumi_aiven/m3_db.py +8 -8
- pulumi_aiven/my_sql.py +8 -8
- pulumi_aiven/open_search.py +8 -8
- pulumi_aiven/organization_billing_group.py +41 -41
- pulumi_aiven/outputs.py +433 -23
- pulumi_aiven/pg.py +8 -8
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/redis.py +8 -8
- pulumi_aiven/thanos.py +8 -8
- pulumi_aiven/valkey.py +8 -8
- {pulumi_aiven-6.40.0a1750136897.dist-info → pulumi_aiven-6.40.0a1750736392.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.40.0a1750136897.dist-info → pulumi_aiven-6.40.0a1750736392.dist-info}/RECORD +47 -47
- {pulumi_aiven-6.40.0a1750136897.dist-info → pulumi_aiven-6.40.0a1750736392.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.40.0a1750136897.dist-info → pulumi_aiven-6.40.0a1750736392.dist-info}/top_level.txt +0 -0
pulumi_aiven/alloydbomni.py
CHANGED
|
@@ -51,7 +51,7 @@ class AlloydbomniArgs:
|
|
|
51
51
|
:param pulumi.Input[builtins.str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
52
52
|
:param pulumi.Input[builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
53
53
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
54
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
54
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
55
55
|
:param pulumi.Input[builtins.str] service_account_credentials: Your [Google service account key](https://cloud.google.com/iam/docs/service-account-creds#key-types) in JSON format.
|
|
56
56
|
:param pulumi.Input[Sequence[pulumi.Input['AlloydbomniServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
57
57
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] static_ips: Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
|
|
@@ -219,7 +219,7 @@ class AlloydbomniArgs:
|
|
|
219
219
|
@pulumi.getter(name="projectVpcId")
|
|
220
220
|
def project_vpc_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
221
221
|
"""
|
|
222
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
222
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
223
223
|
"""
|
|
224
224
|
return pulumi.get(self, "project_vpc_id")
|
|
225
225
|
|
|
@@ -348,7 +348,7 @@ class _AlloydbomniState:
|
|
|
348
348
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
349
349
|
:param pulumi.Input[builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
350
350
|
:param pulumi.Input[builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
351
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
351
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
352
352
|
:param pulumi.Input[builtins.str] service_account_credentials: Your [Google service account key](https://cloud.google.com/iam/docs/service-account-creds#key-types) in JSON format.
|
|
353
353
|
:param pulumi.Input[builtins.str] service_host: The hostname of the service.
|
|
354
354
|
:param pulumi.Input[Sequence[pulumi.Input['AlloydbomniServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
@@ -602,7 +602,7 @@ class _AlloydbomniState:
|
|
|
602
602
|
@pulumi.getter(name="projectVpcId")
|
|
603
603
|
def project_vpc_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
604
604
|
"""
|
|
605
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
605
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
606
606
|
"""
|
|
607
607
|
return pulumi.get(self, "project_vpc_id")
|
|
608
608
|
|
|
@@ -852,7 +852,7 @@ class Alloydbomni(pulumi.CustomResource):
|
|
|
852
852
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
853
853
|
:param pulumi.Input[builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
854
854
|
:param pulumi.Input[builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
855
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
855
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
856
856
|
:param pulumi.Input[builtins.str] service_account_credentials: Your [Google service account key](https://cloud.google.com/iam/docs/service-account-creds#key-types) in JSON format.
|
|
857
857
|
:param pulumi.Input[Sequence[pulumi.Input[Union['AlloydbomniServiceIntegrationArgs', 'AlloydbomniServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
858
858
|
:param pulumi.Input[builtins.str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
@@ -1046,7 +1046,7 @@ class Alloydbomni(pulumi.CustomResource):
|
|
|
1046
1046
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
1047
1047
|
:param pulumi.Input[builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
1048
1048
|
:param pulumi.Input[builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
1049
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
1049
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
1050
1050
|
:param pulumi.Input[builtins.str] service_account_credentials: Your [Google service account key](https://cloud.google.com/iam/docs/service-account-creds#key-types) in JSON format.
|
|
1051
1051
|
:param pulumi.Input[builtins.str] service_host: The hostname of the service.
|
|
1052
1052
|
:param pulumi.Input[Sequence[pulumi.Input[Union['AlloydbomniServiceIntegrationArgs', 'AlloydbomniServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
@@ -1212,9 +1212,9 @@ class Alloydbomni(pulumi.CustomResource):
|
|
|
1212
1212
|
|
|
1213
1213
|
@property
|
|
1214
1214
|
@pulumi.getter(name="projectVpcId")
|
|
1215
|
-
def project_vpc_id(self) -> pulumi.Output[builtins.str]:
|
|
1215
|
+
def project_vpc_id(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
1216
1216
|
"""
|
|
1217
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
1217
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
1218
1218
|
"""
|
|
1219
1219
|
return pulumi.get(self, "project_vpc_id")
|
|
1220
1220
|
|
pulumi_aiven/cassandra.py
CHANGED
|
@@ -50,7 +50,7 @@ class CassandraArgs:
|
|
|
50
50
|
:param pulumi.Input[builtins.str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
51
51
|
:param pulumi.Input[builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
52
52
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
53
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
53
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
54
54
|
:param pulumi.Input[Sequence[pulumi.Input['CassandraServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
55
55
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] static_ips: Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
|
|
56
56
|
:param pulumi.Input[Sequence[pulumi.Input['CassandraTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
@@ -215,7 +215,7 @@ class CassandraArgs:
|
|
|
215
215
|
@pulumi.getter(name="projectVpcId")
|
|
216
216
|
def project_vpc_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
217
217
|
"""
|
|
218
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
218
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
219
219
|
"""
|
|
220
220
|
return pulumi.get(self, "project_vpc_id")
|
|
221
221
|
|
|
@@ -331,7 +331,7 @@ class _CassandraState:
|
|
|
331
331
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
332
332
|
:param pulumi.Input[builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
333
333
|
:param pulumi.Input[builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
334
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
334
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
335
335
|
:param pulumi.Input[builtins.str] service_host: The hostname of the service.
|
|
336
336
|
:param pulumi.Input[Sequence[pulumi.Input['CassandraServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
337
337
|
:param pulumi.Input[builtins.str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
@@ -582,7 +582,7 @@ class _CassandraState:
|
|
|
582
582
|
@pulumi.getter(name="projectVpcId")
|
|
583
583
|
def project_vpc_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
584
584
|
"""
|
|
585
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
585
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
586
586
|
"""
|
|
587
587
|
return pulumi.get(self, "project_vpc_id")
|
|
588
588
|
|
|
@@ -815,7 +815,7 @@ class Cassandra(pulumi.CustomResource):
|
|
|
815
815
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
816
816
|
:param pulumi.Input[builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
817
817
|
:param pulumi.Input[builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
818
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
818
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
819
819
|
:param pulumi.Input[Sequence[pulumi.Input[Union['CassandraServiceIntegrationArgs', 'CassandraServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
820
820
|
:param pulumi.Input[builtins.str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
821
821
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] static_ips: Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
|
|
@@ -1001,7 +1001,7 @@ class Cassandra(pulumi.CustomResource):
|
|
|
1001
1001
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
1002
1002
|
:param pulumi.Input[builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
1003
1003
|
:param pulumi.Input[builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
1004
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
1004
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
1005
1005
|
:param pulumi.Input[builtins.str] service_host: The hostname of the service.
|
|
1006
1006
|
:param pulumi.Input[Sequence[pulumi.Input[Union['CassandraServiceIntegrationArgs', 'CassandraServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
1007
1007
|
:param pulumi.Input[builtins.str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
@@ -1165,9 +1165,9 @@ class Cassandra(pulumi.CustomResource):
|
|
|
1165
1165
|
|
|
1166
1166
|
@property
|
|
1167
1167
|
@pulumi.getter(name="projectVpcId")
|
|
1168
|
-
def project_vpc_id(self) -> pulumi.Output[builtins.str]:
|
|
1168
|
+
def project_vpc_id(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
1169
1169
|
"""
|
|
1170
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
1170
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
1171
1171
|
"""
|
|
1172
1172
|
return pulumi.get(self, "project_vpc_id")
|
|
1173
1173
|
|
pulumi_aiven/clickhouse.py
CHANGED
|
@@ -50,7 +50,7 @@ class ClickhouseArgs:
|
|
|
50
50
|
:param pulumi.Input[builtins.str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
51
51
|
:param pulumi.Input[builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
52
52
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
53
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
53
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
54
54
|
:param pulumi.Input[Sequence[pulumi.Input['ClickhouseServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
55
55
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] static_ips: Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
|
|
56
56
|
:param pulumi.Input[Sequence[pulumi.Input['ClickhouseTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
@@ -215,7 +215,7 @@ class ClickhouseArgs:
|
|
|
215
215
|
@pulumi.getter(name="projectVpcId")
|
|
216
216
|
def project_vpc_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
217
217
|
"""
|
|
218
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
218
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
219
219
|
"""
|
|
220
220
|
return pulumi.get(self, "project_vpc_id")
|
|
221
221
|
|
|
@@ -331,7 +331,7 @@ class _ClickhouseState:
|
|
|
331
331
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
332
332
|
:param pulumi.Input[builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
333
333
|
:param pulumi.Input[builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
334
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
334
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
335
335
|
:param pulumi.Input[builtins.str] service_host: The hostname of the service.
|
|
336
336
|
:param pulumi.Input[Sequence[pulumi.Input['ClickhouseServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
337
337
|
:param pulumi.Input[builtins.str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
@@ -582,7 +582,7 @@ class _ClickhouseState:
|
|
|
582
582
|
@pulumi.getter(name="projectVpcId")
|
|
583
583
|
def project_vpc_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
584
584
|
"""
|
|
585
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
585
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
586
586
|
"""
|
|
587
587
|
return pulumi.get(self, "project_vpc_id")
|
|
588
588
|
|
|
@@ -802,7 +802,7 @@ class Clickhouse(pulumi.CustomResource):
|
|
|
802
802
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
803
803
|
:param pulumi.Input[builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
804
804
|
:param pulumi.Input[builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
805
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
805
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
806
806
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ClickhouseServiceIntegrationArgs', 'ClickhouseServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
807
807
|
:param pulumi.Input[builtins.str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
808
808
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] static_ips: Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
|
|
@@ -975,7 +975,7 @@ class Clickhouse(pulumi.CustomResource):
|
|
|
975
975
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
976
976
|
:param pulumi.Input[builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
977
977
|
:param pulumi.Input[builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
978
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
978
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
979
979
|
:param pulumi.Input[builtins.str] service_host: The hostname of the service.
|
|
980
980
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ClickhouseServiceIntegrationArgs', 'ClickhouseServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
981
981
|
:param pulumi.Input[builtins.str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
@@ -1139,9 +1139,9 @@ class Clickhouse(pulumi.CustomResource):
|
|
|
1139
1139
|
|
|
1140
1140
|
@property
|
|
1141
1141
|
@pulumi.getter(name="projectVpcId")
|
|
1142
|
-
def project_vpc_id(self) -> pulumi.Output[builtins.str]:
|
|
1142
|
+
def project_vpc_id(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
1143
1143
|
"""
|
|
1144
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
1144
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
1145
1145
|
"""
|
|
1146
1146
|
return pulumi.get(self, "project_vpc_id")
|
|
1147
1147
|
|
|
@@ -163,11 +163,6 @@ class ClickhouseDatabase(pulumi.CustomResource):
|
|
|
163
163
|
termination_protection: Optional[pulumi.Input[builtins.bool]] = None,
|
|
164
164
|
__props__=None):
|
|
165
165
|
"""
|
|
166
|
-
Creates and manages an Aiven for ClickHouse® database.
|
|
167
|
-
|
|
168
|
-
> Tables cannot be created using Aiven Operator. To create a table,
|
|
169
|
-
use the [Aiven Console or CLI](https://aiven.io/docs/products/clickhouse/howto/manage-databases-tables#create-a-table).
|
|
170
|
-
|
|
171
166
|
## Example Usage
|
|
172
167
|
|
|
173
168
|
```python
|
|
@@ -206,11 +201,6 @@ class ClickhouseDatabase(pulumi.CustomResource):
|
|
|
206
201
|
args: ClickhouseDatabaseArgs,
|
|
207
202
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
208
203
|
"""
|
|
209
|
-
Creates and manages an Aiven for ClickHouse® database.
|
|
210
|
-
|
|
211
|
-
> Tables cannot be created using Aiven Operator. To create a table,
|
|
212
|
-
use the [Aiven Console or CLI](https://aiven.io/docs/products/clickhouse/howto/manage-databases-tables#create-a-table).
|
|
213
|
-
|
|
214
204
|
## Example Usage
|
|
215
205
|
|
|
216
206
|
```python
|
pulumi_aiven/clickhouse_grant.py
CHANGED
|
@@ -239,14 +239,6 @@ class ClickhouseGrant(pulumi.CustomResource):
|
|
|
239
239
|
user: Optional[pulumi.Input[builtins.str]] = None,
|
|
240
240
|
__props__=None):
|
|
241
241
|
"""
|
|
242
|
-
Creates and manages ClickHouse grants to give users and roles privileges to a ClickHouse service.
|
|
243
|
-
|
|
244
|
-
**Note:**
|
|
245
|
-
* Users cannot have the same name as roles.
|
|
246
|
-
* Global privileges cannot be granted on the database level. To grant global privileges, use `database="*"`.
|
|
247
|
-
* To grant a privilege on all tables of a database, omit the table and only keep the database. Don't use `table="*"`.
|
|
248
|
-
* Changes first revoke all grants and then reissue the remaining grants for convergence.
|
|
249
|
-
|
|
250
242
|
## Example Usage
|
|
251
243
|
|
|
252
244
|
```python
|
|
@@ -317,14 +309,6 @@ class ClickhouseGrant(pulumi.CustomResource):
|
|
|
317
309
|
args: ClickhouseGrantArgs,
|
|
318
310
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
319
311
|
"""
|
|
320
|
-
Creates and manages ClickHouse grants to give users and roles privileges to a ClickHouse service.
|
|
321
|
-
|
|
322
|
-
**Note:**
|
|
323
|
-
* Users cannot have the same name as roles.
|
|
324
|
-
* Global privileges cannot be granted on the database level. To grant global privileges, use `database="*"`.
|
|
325
|
-
* To grant a privilege on all tables of a database, omit the table and only keep the database. Don't use `table="*"`.
|
|
326
|
-
* Changes first revoke all grants and then reissue the remaining grants for convergence.
|
|
327
|
-
|
|
328
312
|
## Example Usage
|
|
329
313
|
|
|
330
314
|
```python
|
pulumi_aiven/dragonfly.py
CHANGED
|
@@ -50,7 +50,7 @@ class DragonflyArgs:
|
|
|
50
50
|
:param pulumi.Input['DragonflyDragonflyUserConfigArgs'] dragonfly_user_config: Dragonfly user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
51
51
|
:param pulumi.Input[builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
52
52
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
53
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
53
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
54
54
|
:param pulumi.Input[Sequence[pulumi.Input['DragonflyServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
55
55
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] static_ips: Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
|
|
56
56
|
:param pulumi.Input[Sequence[pulumi.Input['DragonflyTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
@@ -215,7 +215,7 @@ class DragonflyArgs:
|
|
|
215
215
|
@pulumi.getter(name="projectVpcId")
|
|
216
216
|
def project_vpc_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
217
217
|
"""
|
|
218
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
218
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
219
219
|
"""
|
|
220
220
|
return pulumi.get(self, "project_vpc_id")
|
|
221
221
|
|
|
@@ -331,7 +331,7 @@ class _DragonflyState:
|
|
|
331
331
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
332
332
|
:param pulumi.Input[builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
333
333
|
:param pulumi.Input[builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
334
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
334
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
335
335
|
:param pulumi.Input[builtins.str] service_host: The hostname of the service.
|
|
336
336
|
:param pulumi.Input[Sequence[pulumi.Input['DragonflyServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
337
337
|
:param pulumi.Input[builtins.str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
@@ -582,7 +582,7 @@ class _DragonflyState:
|
|
|
582
582
|
@pulumi.getter(name="projectVpcId")
|
|
583
583
|
def project_vpc_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
584
584
|
"""
|
|
585
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
585
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
586
586
|
"""
|
|
587
587
|
return pulumi.get(self, "project_vpc_id")
|
|
588
588
|
|
|
@@ -803,7 +803,7 @@ class Dragonfly(pulumi.CustomResource):
|
|
|
803
803
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
804
804
|
:param pulumi.Input[builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
805
805
|
:param pulumi.Input[builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
806
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
806
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
807
807
|
:param pulumi.Input[Sequence[pulumi.Input[Union['DragonflyServiceIntegrationArgs', 'DragonflyServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
808
808
|
:param pulumi.Input[builtins.str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
809
809
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] static_ips: Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
|
|
@@ -977,7 +977,7 @@ class Dragonfly(pulumi.CustomResource):
|
|
|
977
977
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
978
978
|
:param pulumi.Input[builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
979
979
|
:param pulumi.Input[builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
980
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
980
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
981
981
|
:param pulumi.Input[builtins.str] service_host: The hostname of the service.
|
|
982
982
|
:param pulumi.Input[Sequence[pulumi.Input[Union['DragonflyServiceIntegrationArgs', 'DragonflyServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
983
983
|
:param pulumi.Input[builtins.str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
@@ -1141,9 +1141,9 @@ class Dragonfly(pulumi.CustomResource):
|
|
|
1141
1141
|
|
|
1142
1142
|
@property
|
|
1143
1143
|
@pulumi.getter(name="projectVpcId")
|
|
1144
|
-
def project_vpc_id(self) -> pulumi.Output[builtins.str]:
|
|
1144
|
+
def project_vpc_id(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
1145
1145
|
"""
|
|
1146
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
1146
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
1147
1147
|
"""
|
|
1148
1148
|
return pulumi.get(self, "project_vpc_id")
|
|
1149
1149
|
|
pulumi_aiven/flink.py
CHANGED
|
@@ -50,7 +50,7 @@ class FlinkArgs:
|
|
|
50
50
|
:param pulumi.Input['FlinkFlinkUserConfigArgs'] flink_user_config: Flink user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
51
51
|
:param pulumi.Input[builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
52
52
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
53
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
53
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
54
54
|
:param pulumi.Input[Sequence[pulumi.Input['FlinkServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
55
55
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] static_ips: Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
|
|
56
56
|
:param pulumi.Input[Sequence[pulumi.Input['FlinkTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
@@ -215,7 +215,7 @@ class FlinkArgs:
|
|
|
215
215
|
@pulumi.getter(name="projectVpcId")
|
|
216
216
|
def project_vpc_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
217
217
|
"""
|
|
218
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
218
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
219
219
|
"""
|
|
220
220
|
return pulumi.get(self, "project_vpc_id")
|
|
221
221
|
|
|
@@ -331,7 +331,7 @@ class _FlinkState:
|
|
|
331
331
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
332
332
|
:param pulumi.Input[builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
333
333
|
:param pulumi.Input[builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
334
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
334
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
335
335
|
:param pulumi.Input[builtins.str] service_host: The hostname of the service.
|
|
336
336
|
:param pulumi.Input[Sequence[pulumi.Input['FlinkServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
337
337
|
:param pulumi.Input[builtins.str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
@@ -582,7 +582,7 @@ class _FlinkState:
|
|
|
582
582
|
@pulumi.getter(name="projectVpcId")
|
|
583
583
|
def project_vpc_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
584
584
|
"""
|
|
585
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
585
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
586
586
|
"""
|
|
587
587
|
return pulumi.get(self, "project_vpc_id")
|
|
588
588
|
|
|
@@ -805,7 +805,7 @@ class Flink(pulumi.CustomResource):
|
|
|
805
805
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
806
806
|
:param pulumi.Input[builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
807
807
|
:param pulumi.Input[builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
808
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
808
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
809
809
|
:param pulumi.Input[Sequence[pulumi.Input[Union['FlinkServiceIntegrationArgs', 'FlinkServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
810
810
|
:param pulumi.Input[builtins.str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
811
811
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] static_ips: Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
|
|
@@ -981,7 +981,7 @@ class Flink(pulumi.CustomResource):
|
|
|
981
981
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
982
982
|
:param pulumi.Input[builtins.str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
983
983
|
:param pulumi.Input[builtins.str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
984
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
984
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
985
985
|
:param pulumi.Input[builtins.str] service_host: The hostname of the service.
|
|
986
986
|
:param pulumi.Input[Sequence[pulumi.Input[Union['FlinkServiceIntegrationArgs', 'FlinkServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
987
987
|
:param pulumi.Input[builtins.str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
@@ -1145,9 +1145,9 @@ class Flink(pulumi.CustomResource):
|
|
|
1145
1145
|
|
|
1146
1146
|
@property
|
|
1147
1147
|
@pulumi.getter(name="projectVpcId")
|
|
1148
|
-
def project_vpc_id(self) -> pulumi.Output[builtins.str]:
|
|
1148
|
+
def project_vpc_id(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
1149
1149
|
"""
|
|
1150
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
1150
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
1151
1151
|
"""
|
|
1152
1152
|
return pulumi.get(self, "project_vpc_id")
|
|
1153
1153
|
|
pulumi_aiven/get_alloydbomni.py
CHANGED
|
@@ -244,7 +244,7 @@ class GetAlloydbomniResult:
|
|
|
244
244
|
@pulumi.getter(name="projectVpcId")
|
|
245
245
|
def project_vpc_id(self) -> builtins.str:
|
|
246
246
|
"""
|
|
247
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
247
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
248
248
|
"""
|
|
249
249
|
return pulumi.get(self, "project_vpc_id")
|
|
250
250
|
|
pulumi_aiven/get_cassanda.py
CHANGED
|
@@ -243,7 +243,7 @@ class GetCassandaResult:
|
|
|
243
243
|
@pulumi.getter(name="projectVpcId")
|
|
244
244
|
def project_vpc_id(self) -> builtins.str:
|
|
245
245
|
"""
|
|
246
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
246
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
247
247
|
"""
|
|
248
248
|
return pulumi.get(self, "project_vpc_id")
|
|
249
249
|
|
pulumi_aiven/get_cassandra.py
CHANGED
|
@@ -241,7 +241,7 @@ class GetCassandraResult:
|
|
|
241
241
|
@pulumi.getter(name="projectVpcId")
|
|
242
242
|
def project_vpc_id(self) -> builtins.str:
|
|
243
243
|
"""
|
|
244
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
244
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
245
245
|
"""
|
|
246
246
|
return pulumi.get(self, "project_vpc_id")
|
|
247
247
|
|
pulumi_aiven/get_clickhouse.py
CHANGED
|
@@ -241,7 +241,7 @@ class GetClickhouseResult:
|
|
|
241
241
|
@pulumi.getter(name="projectVpcId")
|
|
242
242
|
def project_vpc_id(self) -> builtins.str:
|
|
243
243
|
"""
|
|
244
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
244
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
245
245
|
"""
|
|
246
246
|
return pulumi.get(self, "project_vpc_id")
|
|
247
247
|
|
pulumi_aiven/get_dragonfly.py
CHANGED
|
@@ -241,7 +241,7 @@ class GetDragonflyResult:
|
|
|
241
241
|
@pulumi.getter(name="projectVpcId")
|
|
242
242
|
def project_vpc_id(self) -> builtins.str:
|
|
243
243
|
"""
|
|
244
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
244
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
245
245
|
"""
|
|
246
246
|
return pulumi.get(self, "project_vpc_id")
|
|
247
247
|
|
pulumi_aiven/get_flink.py
CHANGED
|
@@ -241,7 +241,7 @@ class GetFlinkResult:
|
|
|
241
241
|
@pulumi.getter(name="projectVpcId")
|
|
242
242
|
def project_vpc_id(self) -> builtins.str:
|
|
243
243
|
"""
|
|
244
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
244
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
245
245
|
"""
|
|
246
246
|
return pulumi.get(self, "project_vpc_id")
|
|
247
247
|
|
pulumi_aiven/get_grafana.py
CHANGED
|
@@ -241,7 +241,7 @@ class GetGrafanaResult:
|
|
|
241
241
|
@pulumi.getter(name="projectVpcId")
|
|
242
242
|
def project_vpc_id(self) -> builtins.str:
|
|
243
243
|
"""
|
|
244
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
244
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
245
245
|
"""
|
|
246
246
|
return pulumi.get(self, "project_vpc_id")
|
|
247
247
|
|
pulumi_aiven/get_kafka.py
CHANGED
|
@@ -263,7 +263,7 @@ class GetKafkaResult:
|
|
|
263
263
|
@pulumi.getter(name="projectVpcId")
|
|
264
264
|
def project_vpc_id(self) -> builtins.str:
|
|
265
265
|
"""
|
|
266
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
266
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
267
267
|
"""
|
|
268
268
|
return pulumi.get(self, "project_vpc_id")
|
|
269
269
|
|
|
@@ -230,7 +230,7 @@ class GetKafkaConnectResult:
|
|
|
230
230
|
@pulumi.getter(name="projectVpcId")
|
|
231
231
|
def project_vpc_id(self) -> builtins.str:
|
|
232
232
|
"""
|
|
233
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
233
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
234
234
|
"""
|
|
235
235
|
return pulumi.get(self, "project_vpc_id")
|
|
236
236
|
|