pulumi-aiven 6.40.0a1750223346__py3-none-any.whl → 6.41.0a1752729091__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.0a1750223346.dist-info → pulumi_aiven-6.41.0a1752729091.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.40.0a1750223346.dist-info → pulumi_aiven-6.41.0a1752729091.dist-info}/RECORD +47 -47
- {pulumi_aiven-6.40.0a1750223346.dist-info → pulumi_aiven-6.41.0a1752729091.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.40.0a1750223346.dist-info → pulumi_aiven-6.41.0a1752729091.dist-info}/top_level.txt +0 -0
|
@@ -230,7 +230,7 @@ class GetKafkaMirrorMakerResult:
|
|
|
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
|
|
|
@@ -241,7 +241,7 @@ class GetM3AggregatorResult:
|
|
|
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_m3_db.py
CHANGED
|
@@ -241,7 +241,7 @@ class GetM3DbResult:
|
|
|
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_my_sql.py
CHANGED
|
@@ -241,7 +241,7 @@ class GetMySqlResult:
|
|
|
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_open_search.py
CHANGED
|
@@ -241,7 +241,7 @@ class GetOpenSearchResult:
|
|
|
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
|
|
|
@@ -29,16 +29,13 @@ class GetOrganizationBillingGroupResult:
|
|
|
29
29
|
"""
|
|
30
30
|
A collection of values returned by getOrganizationBillingGroup.
|
|
31
31
|
"""
|
|
32
|
-
def __init__(__self__, billing_address_id=None, billing_contact_emails=None,
|
|
32
|
+
def __init__(__self__, billing_address_id=None, billing_contact_emails=None, billing_emails=None, billing_group_id=None, billing_group_name=None, currency=None, custom_invoice_text=None, id=None, organization_id=None, payment_method_id=None, shipping_address_id=None, timeouts=None, vat_id=None):
|
|
33
33
|
if billing_address_id and not isinstance(billing_address_id, str):
|
|
34
34
|
raise TypeError("Expected argument 'billing_address_id' to be a str")
|
|
35
35
|
pulumi.set(__self__, "billing_address_id", billing_address_id)
|
|
36
36
|
if billing_contact_emails and not isinstance(billing_contact_emails, list):
|
|
37
37
|
raise TypeError("Expected argument 'billing_contact_emails' to be a list")
|
|
38
38
|
pulumi.set(__self__, "billing_contact_emails", billing_contact_emails)
|
|
39
|
-
if billing_currency and not isinstance(billing_currency, str):
|
|
40
|
-
raise TypeError("Expected argument 'billing_currency' to be a str")
|
|
41
|
-
pulumi.set(__self__, "billing_currency", billing_currency)
|
|
42
39
|
if billing_emails and not isinstance(billing_emails, list):
|
|
43
40
|
raise TypeError("Expected argument 'billing_emails' to be a list")
|
|
44
41
|
pulumi.set(__self__, "billing_emails", billing_emails)
|
|
@@ -48,6 +45,9 @@ class GetOrganizationBillingGroupResult:
|
|
|
48
45
|
if billing_group_name and not isinstance(billing_group_name, str):
|
|
49
46
|
raise TypeError("Expected argument 'billing_group_name' to be a str")
|
|
50
47
|
pulumi.set(__self__, "billing_group_name", billing_group_name)
|
|
48
|
+
if currency and not isinstance(currency, str):
|
|
49
|
+
raise TypeError("Expected argument 'currency' to be a str")
|
|
50
|
+
pulumi.set(__self__, "currency", currency)
|
|
51
51
|
if custom_invoice_text and not isinstance(custom_invoice_text, str):
|
|
52
52
|
raise TypeError("Expected argument 'custom_invoice_text' to be a str")
|
|
53
53
|
pulumi.set(__self__, "custom_invoice_text", custom_invoice_text)
|
|
@@ -86,14 +86,6 @@ class GetOrganizationBillingGroupResult:
|
|
|
86
86
|
"""
|
|
87
87
|
return pulumi.get(self, "billing_contact_emails")
|
|
88
88
|
|
|
89
|
-
@property
|
|
90
|
-
@pulumi.getter(name="billingCurrency")
|
|
91
|
-
def billing_currency(self) -> builtins.str:
|
|
92
|
-
"""
|
|
93
|
-
Acceptable currencies for a billing group. The possible values are `AUD`, `CAD`, `CHF`, `DKK`, `EUR`, `GBP`, `JPY`, `NOK`, `NZD`, `SEK`, `SGD` and `USD`.
|
|
94
|
-
"""
|
|
95
|
-
return pulumi.get(self, "billing_currency")
|
|
96
|
-
|
|
97
89
|
@property
|
|
98
90
|
@pulumi.getter(name="billingEmails")
|
|
99
91
|
def billing_emails(self) -> Sequence[builtins.str]:
|
|
@@ -118,6 +110,14 @@ class GetOrganizationBillingGroupResult:
|
|
|
118
110
|
"""
|
|
119
111
|
return pulumi.get(self, "billing_group_name")
|
|
120
112
|
|
|
113
|
+
@property
|
|
114
|
+
@pulumi.getter
|
|
115
|
+
def currency(self) -> builtins.str:
|
|
116
|
+
"""
|
|
117
|
+
Acceptable currencies for a billing group. The possible values are `AUD`, `CAD`, `CHF`, `DKK`, `EUR`, `GBP`, `JPY`, `NOK`, `NZD`, `SEK`, `SGD` and `USD`.
|
|
118
|
+
"""
|
|
119
|
+
return pulumi.get(self, "currency")
|
|
120
|
+
|
|
121
121
|
@property
|
|
122
122
|
@pulumi.getter(name="customInvoiceText")
|
|
123
123
|
def custom_invoice_text(self) -> builtins.str:
|
|
@@ -180,10 +180,10 @@ class AwaitableGetOrganizationBillingGroupResult(GetOrganizationBillingGroupResu
|
|
|
180
180
|
return GetOrganizationBillingGroupResult(
|
|
181
181
|
billing_address_id=self.billing_address_id,
|
|
182
182
|
billing_contact_emails=self.billing_contact_emails,
|
|
183
|
-
billing_currency=self.billing_currency,
|
|
184
183
|
billing_emails=self.billing_emails,
|
|
185
184
|
billing_group_id=self.billing_group_id,
|
|
186
185
|
billing_group_name=self.billing_group_name,
|
|
186
|
+
currency=self.currency,
|
|
187
187
|
custom_invoice_text=self.custom_invoice_text,
|
|
188
188
|
id=self.id,
|
|
189
189
|
organization_id=self.organization_id,
|
|
@@ -217,10 +217,10 @@ def get_organization_billing_group(billing_group_id: Optional[builtins.str] = No
|
|
|
217
217
|
return AwaitableGetOrganizationBillingGroupResult(
|
|
218
218
|
billing_address_id=pulumi.get(__ret__, 'billing_address_id'),
|
|
219
219
|
billing_contact_emails=pulumi.get(__ret__, 'billing_contact_emails'),
|
|
220
|
-
billing_currency=pulumi.get(__ret__, 'billing_currency'),
|
|
221
220
|
billing_emails=pulumi.get(__ret__, 'billing_emails'),
|
|
222
221
|
billing_group_id=pulumi.get(__ret__, 'billing_group_id'),
|
|
223
222
|
billing_group_name=pulumi.get(__ret__, 'billing_group_name'),
|
|
223
|
+
currency=pulumi.get(__ret__, 'currency'),
|
|
224
224
|
custom_invoice_text=pulumi.get(__ret__, 'custom_invoice_text'),
|
|
225
225
|
id=pulumi.get(__ret__, 'id'),
|
|
226
226
|
organization_id=pulumi.get(__ret__, 'organization_id'),
|
|
@@ -251,10 +251,10 @@ def get_organization_billing_group_output(billing_group_id: Optional[pulumi.Inpu
|
|
|
251
251
|
return __ret__.apply(lambda __response__: GetOrganizationBillingGroupResult(
|
|
252
252
|
billing_address_id=pulumi.get(__response__, 'billing_address_id'),
|
|
253
253
|
billing_contact_emails=pulumi.get(__response__, 'billing_contact_emails'),
|
|
254
|
-
billing_currency=pulumi.get(__response__, 'billing_currency'),
|
|
255
254
|
billing_emails=pulumi.get(__response__, 'billing_emails'),
|
|
256
255
|
billing_group_id=pulumi.get(__response__, 'billing_group_id'),
|
|
257
256
|
billing_group_name=pulumi.get(__response__, 'billing_group_name'),
|
|
257
|
+
currency=pulumi.get(__response__, 'currency'),
|
|
258
258
|
custom_invoice_text=pulumi.get(__response__, 'custom_invoice_text'),
|
|
259
259
|
id=pulumi.get(__response__, 'id'),
|
|
260
260
|
organization_id=pulumi.get(__response__, 'organization_id'),
|
pulumi_aiven/get_pg.py
CHANGED
|
@@ -241,7 +241,7 @@ class GetPgResult:
|
|
|
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_redis.py
CHANGED
|
@@ -225,7 +225,7 @@ class GetRedisResult:
|
|
|
225
225
|
@pulumi.getter(name="projectVpcId")
|
|
226
226
|
def project_vpc_id(self) -> builtins.str:
|
|
227
227
|
"""
|
|
228
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
228
|
+
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.
|
|
229
229
|
"""
|
|
230
230
|
return pulumi.get(self, "project_vpc_id")
|
|
231
231
|
|
pulumi_aiven/get_thanos.py
CHANGED
|
@@ -225,7 +225,7 @@ class GetThanosResult:
|
|
|
225
225
|
@pulumi.getter(name="projectVpcId")
|
|
226
226
|
def project_vpc_id(self) -> builtins.str:
|
|
227
227
|
"""
|
|
228
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
228
|
+
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.
|
|
229
229
|
"""
|
|
230
230
|
return pulumi.get(self, "project_vpc_id")
|
|
231
231
|
|
pulumi_aiven/get_valkey.py
CHANGED
|
@@ -225,7 +225,7 @@ class GetValkeyResult:
|
|
|
225
225
|
@pulumi.getter(name="projectVpcId")
|
|
226
226
|
def project_vpc_id(self) -> builtins.str:
|
|
227
227
|
"""
|
|
228
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
228
|
+
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.
|
|
229
229
|
"""
|
|
230
230
|
return pulumi.get(self, "project_vpc_id")
|
|
231
231
|
|
pulumi_aiven/grafana.py
CHANGED
|
@@ -49,7 +49,7 @@ class GrafanaArgs:
|
|
|
49
49
|
:param pulumi.Input['GrafanaGrafanaUserConfigArgs'] grafana_user_config: Grafana user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
50
50
|
:param pulumi.Input[builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
51
51
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
52
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
52
|
+
: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.
|
|
53
53
|
:param pulumi.Input[Sequence[pulumi.Input['GrafanaServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
54
54
|
: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.
|
|
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
|
|
@@ -204,7 +204,7 @@ class GrafanaArgs:
|
|
|
204
204
|
@pulumi.getter(name="projectVpcId")
|
|
205
205
|
def project_vpc_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
206
206
|
"""
|
|
207
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
207
|
+
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.
|
|
208
208
|
"""
|
|
209
209
|
return pulumi.get(self, "project_vpc_id")
|
|
210
210
|
|
|
@@ -332,7 +332,7 @@ class _GrafanaState:
|
|
|
332
332
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
333
333
|
: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).
|
|
334
334
|
: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.
|
|
335
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
335
|
+
: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.
|
|
336
336
|
:param pulumi.Input[builtins.str] service_host: The hostname of the service.
|
|
337
337
|
:param pulumi.Input[Sequence[pulumi.Input['GrafanaServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
338
338
|
: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.
|
|
@@ -583,7 +583,7 @@ class _GrafanaState:
|
|
|
583
583
|
@pulumi.getter(name="projectVpcId")
|
|
584
584
|
def project_vpc_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
585
585
|
"""
|
|
586
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
586
|
+
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.
|
|
587
587
|
"""
|
|
588
588
|
return pulumi.get(self, "project_vpc_id")
|
|
589
589
|
|
|
@@ -809,7 +809,7 @@ class Grafana(pulumi.CustomResource):
|
|
|
809
809
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
810
810
|
: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).
|
|
811
811
|
: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.
|
|
812
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
812
|
+
: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.
|
|
813
813
|
:param pulumi.Input[Sequence[pulumi.Input[Union['GrafanaServiceIntegrationArgs', 'GrafanaServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
814
814
|
: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.
|
|
815
815
|
: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
|
|
@@ -986,7 +986,7 @@ class Grafana(pulumi.CustomResource):
|
|
|
986
986
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
987
987
|
: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).
|
|
988
988
|
: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.
|
|
989
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
989
|
+
: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.
|
|
990
990
|
:param pulumi.Input[builtins.str] service_host: The hostname of the service.
|
|
991
991
|
:param pulumi.Input[Sequence[pulumi.Input[Union['GrafanaServiceIntegrationArgs', 'GrafanaServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
992
992
|
: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.
|
|
@@ -1150,9 +1150,9 @@ class Grafana(pulumi.CustomResource):
|
|
|
1150
1150
|
|
|
1151
1151
|
@property
|
|
1152
1152
|
@pulumi.getter(name="projectVpcId")
|
|
1153
|
-
def project_vpc_id(self) -> pulumi.Output[builtins.str]:
|
|
1153
|
+
def project_vpc_id(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
1154
1154
|
"""
|
|
1155
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
1155
|
+
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.
|
|
1156
1156
|
"""
|
|
1157
1157
|
return pulumi.get(self, "project_vpc_id")
|
|
1158
1158
|
|
pulumi_aiven/influx_db.py
CHANGED
|
@@ -68,10 +68,11 @@ class InfluxDbArgs:
|
|
|
68
68
|
:param pulumi.Input[Sequence[pulumi.Input['InfluxDbInfluxdbArgs']]] influxdbs: InfluxDB server provided values
|
|
69
69
|
:param pulumi.Input[builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
70
70
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
71
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
72
|
-
value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and
|
|
73
|
-
as the service itself.
|
|
74
|
-
servers so the operation can take significant amount of time to complete if the service has a lot of
|
|
71
|
+
: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,
|
|
72
|
+
the value should be given as a reference to set up dependencies correctly, and the VPC must be in the same cloud and
|
|
73
|
+
region as the service itself. The service can be freely moved to and from VPC after creation, but doing so triggers
|
|
74
|
+
migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of
|
|
75
|
+
data.
|
|
75
76
|
:param pulumi.Input[Sequence[pulumi.Input['InfluxDbServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
76
77
|
: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
|
|
77
78
|
static ip resource is in the 'assigned' state it cannot be unbound from the node again
|
|
@@ -258,10 +259,11 @@ class InfluxDbArgs:
|
|
|
258
259
|
@pulumi.getter(name="projectVpcId")
|
|
259
260
|
def project_vpc_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
260
261
|
"""
|
|
261
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
262
|
-
value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and
|
|
263
|
-
as the service itself.
|
|
264
|
-
servers so the operation can take significant amount of time to complete if the service has a lot of
|
|
262
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. When set,
|
|
263
|
+
the value should be given as a reference to set up dependencies correctly, and the VPC must be in the same cloud and
|
|
264
|
+
region as the service itself. The service can be freely moved to and from VPC after creation, but doing so triggers
|
|
265
|
+
migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of
|
|
266
|
+
data.
|
|
265
267
|
"""
|
|
266
268
|
return pulumi.get(self, "project_vpc_id")
|
|
267
269
|
|
|
@@ -400,10 +402,11 @@ class _InfluxDbState:
|
|
|
400
402
|
options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
401
403
|
: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
|
|
402
404
|
reference. Changing this property forces recreation of the resource.
|
|
403
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
404
|
-
value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and
|
|
405
|
-
as the service itself.
|
|
406
|
-
servers so the operation can take significant amount of time to complete if the service has a lot of
|
|
405
|
+
: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,
|
|
406
|
+
the value should be given as a reference to set up dependencies correctly, and the VPC must be in the same cloud and
|
|
407
|
+
region as the service itself. The service can be freely moved to and from VPC after creation, but doing so triggers
|
|
408
|
+
migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of
|
|
409
|
+
data.
|
|
407
410
|
:param pulumi.Input[builtins.str] service_host: The hostname of the service.
|
|
408
411
|
:param pulumi.Input[Sequence[pulumi.Input['InfluxDbServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
409
412
|
: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
|
|
@@ -678,10 +681,11 @@ class _InfluxDbState:
|
|
|
678
681
|
@pulumi.getter(name="projectVpcId")
|
|
679
682
|
def project_vpc_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
680
683
|
"""
|
|
681
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
682
|
-
value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and
|
|
683
|
-
as the service itself.
|
|
684
|
-
servers so the operation can take significant amount of time to complete if the service has a lot of
|
|
684
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. When set,
|
|
685
|
+
the value should be given as a reference to set up dependencies correctly, and the VPC must be in the same cloud and
|
|
686
|
+
region as the service itself. The service can be freely moved to and from VPC after creation, but doing so triggers
|
|
687
|
+
migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of
|
|
688
|
+
data.
|
|
685
689
|
"""
|
|
686
690
|
return pulumi.get(self, "project_vpc_id")
|
|
687
691
|
|
|
@@ -901,10 +905,11 @@ class InfluxDb(pulumi.CustomResource):
|
|
|
901
905
|
options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
902
906
|
: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
|
|
903
907
|
reference. Changing this property forces recreation of the resource.
|
|
904
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
905
|
-
value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and
|
|
906
|
-
as the service itself.
|
|
907
|
-
servers so the operation can take significant amount of time to complete if the service has a lot of
|
|
908
|
+
: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,
|
|
909
|
+
the value should be given as a reference to set up dependencies correctly, and the VPC must be in the same cloud and
|
|
910
|
+
region as the service itself. The service can be freely moved to and from VPC after creation, but doing so triggers
|
|
911
|
+
migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of
|
|
912
|
+
data.
|
|
908
913
|
:param pulumi.Input[Sequence[pulumi.Input[Union['InfluxDbServiceIntegrationArgs', 'InfluxDbServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
909
914
|
: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
|
|
910
915
|
service so name should be picked based on intended service usage rather than current attributes.
|
|
@@ -1079,10 +1084,11 @@ class InfluxDb(pulumi.CustomResource):
|
|
|
1079
1084
|
options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
1080
1085
|
: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
|
|
1081
1086
|
reference. Changing this property forces recreation of the resource.
|
|
1082
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
1083
|
-
value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and
|
|
1084
|
-
as the service itself.
|
|
1085
|
-
servers so the operation can take significant amount of time to complete if the service has a lot of
|
|
1087
|
+
: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,
|
|
1088
|
+
the value should be given as a reference to set up dependencies correctly, and the VPC must be in the same cloud and
|
|
1089
|
+
region as the service itself. The service can be freely moved to and from VPC after creation, but doing so triggers
|
|
1090
|
+
migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of
|
|
1091
|
+
data.
|
|
1086
1092
|
:param pulumi.Input[builtins.str] service_host: The hostname of the service.
|
|
1087
1093
|
:param pulumi.Input[Sequence[pulumi.Input[Union['InfluxDbServiceIntegrationArgs', 'InfluxDbServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
1088
1094
|
: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
|
|
@@ -1270,12 +1276,13 @@ class InfluxDb(pulumi.CustomResource):
|
|
|
1270
1276
|
|
|
1271
1277
|
@property
|
|
1272
1278
|
@pulumi.getter(name="projectVpcId")
|
|
1273
|
-
def project_vpc_id(self) -> pulumi.Output[builtins.str]:
|
|
1279
|
+
def project_vpc_id(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
1274
1280
|
"""
|
|
1275
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
1276
|
-
value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and
|
|
1277
|
-
as the service itself.
|
|
1278
|
-
servers so the operation can take significant amount of time to complete if the service has a lot of
|
|
1281
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. When set,
|
|
1282
|
+
the value should be given as a reference to set up dependencies correctly, and the VPC must be in the same cloud and
|
|
1283
|
+
region as the service itself. The service can be freely moved to and from VPC after creation, but doing so triggers
|
|
1284
|
+
migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of
|
|
1285
|
+
data.
|
|
1279
1286
|
"""
|
|
1280
1287
|
return pulumi.get(self, "project_vpc_id")
|
|
1281
1288
|
|
pulumi_aiven/kafka.py
CHANGED
|
@@ -54,7 +54,7 @@ class KafkaArgs:
|
|
|
54
54
|
:param pulumi.Input[builtins.bool] karapace: Switch the service to use [Karapace](https://aiven.io/docs/products/kafka/karapace) for schema registry and REST proxy.
|
|
55
55
|
:param pulumi.Input[builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
56
56
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
57
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
57
|
+
: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.
|
|
58
58
|
:param pulumi.Input[Sequence[pulumi.Input['KafkaServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
59
59
|
: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
|
|
60
60
|
:param pulumi.Input[Sequence[pulumi.Input['KafkaTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
@@ -251,7 +251,7 @@ class KafkaArgs:
|
|
|
251
251
|
@pulumi.getter(name="projectVpcId")
|
|
252
252
|
def project_vpc_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
253
253
|
"""
|
|
254
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
254
|
+
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.
|
|
255
255
|
"""
|
|
256
256
|
return pulumi.get(self, "project_vpc_id")
|
|
257
257
|
|
|
@@ -371,7 +371,7 @@ class _KafkaState:
|
|
|
371
371
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
372
372
|
: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).
|
|
373
373
|
: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.
|
|
374
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
374
|
+
: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.
|
|
375
375
|
:param pulumi.Input[builtins.str] service_host: The hostname of the service.
|
|
376
376
|
:param pulumi.Input[Sequence[pulumi.Input['KafkaServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
377
377
|
: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.
|
|
@@ -654,7 +654,7 @@ class _KafkaState:
|
|
|
654
654
|
@pulumi.getter(name="projectVpcId")
|
|
655
655
|
def project_vpc_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
656
656
|
"""
|
|
657
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
657
|
+
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.
|
|
658
658
|
"""
|
|
659
659
|
return pulumi.get(self, "project_vpc_id")
|
|
660
660
|
|
|
@@ -892,7 +892,7 @@ class Kafka(pulumi.CustomResource):
|
|
|
892
892
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
893
893
|
: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).
|
|
894
894
|
: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.
|
|
895
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
895
|
+
: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.
|
|
896
896
|
:param pulumi.Input[Sequence[pulumi.Input[Union['KafkaServiceIntegrationArgs', 'KafkaServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
897
897
|
: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.
|
|
898
898
|
: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
|
|
@@ -1087,7 +1087,7 @@ class Kafka(pulumi.CustomResource):
|
|
|
1087
1087
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
1088
1088
|
: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).
|
|
1089
1089
|
: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.
|
|
1090
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
1090
|
+
: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.
|
|
1091
1091
|
:param pulumi.Input[builtins.str] service_host: The hostname of the service.
|
|
1092
1092
|
:param pulumi.Input[Sequence[pulumi.Input[Union['KafkaServiceIntegrationArgs', 'KafkaServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
1093
1093
|
: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.
|
|
@@ -1270,9 +1270,9 @@ class Kafka(pulumi.CustomResource):
|
|
|
1270
1270
|
|
|
1271
1271
|
@property
|
|
1272
1272
|
@pulumi.getter(name="projectVpcId")
|
|
1273
|
-
def project_vpc_id(self) -> pulumi.Output[builtins.str]:
|
|
1273
|
+
def project_vpc_id(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
1274
1274
|
"""
|
|
1275
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
1275
|
+
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.
|
|
1276
1276
|
"""
|
|
1277
1277
|
return pulumi.get(self, "project_vpc_id")
|
|
1278
1278
|
|
pulumi_aiven/kafka_connect.py
CHANGED
|
@@ -48,7 +48,7 @@ class KafkaConnectArgs:
|
|
|
48
48
|
:param pulumi.Input['KafkaConnectKafkaConnectUserConfigArgs'] kafka_connect_user_config: KafkaConnect user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
49
49
|
:param pulumi.Input[builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
50
50
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
51
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
51
|
+
: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.
|
|
52
52
|
:param pulumi.Input[Sequence[pulumi.Input['KafkaConnectServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
53
53
|
: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
|
|
54
54
|
:param pulumi.Input[Sequence[pulumi.Input['KafkaConnectTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
@@ -199,7 +199,7 @@ class KafkaConnectArgs:
|
|
|
199
199
|
@pulumi.getter(name="projectVpcId")
|
|
200
200
|
def project_vpc_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
201
201
|
"""
|
|
202
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
202
|
+
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.
|
|
203
203
|
"""
|
|
204
204
|
return pulumi.get(self, "project_vpc_id")
|
|
205
205
|
|
|
@@ -313,7 +313,7 @@ class _KafkaConnectState:
|
|
|
313
313
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
314
314
|
: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).
|
|
315
315
|
: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.
|
|
316
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
316
|
+
: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.
|
|
317
317
|
:param pulumi.Input[builtins.str] service_host: The hostname of the service.
|
|
318
318
|
:param pulumi.Input[Sequence[pulumi.Input['KafkaConnectServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
319
319
|
: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.
|
|
@@ -550,7 +550,7 @@ class _KafkaConnectState:
|
|
|
550
550
|
@pulumi.getter(name="projectVpcId")
|
|
551
551
|
def project_vpc_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
552
552
|
"""
|
|
553
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
553
|
+
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.
|
|
554
554
|
"""
|
|
555
555
|
return pulumi.get(self, "project_vpc_id")
|
|
556
556
|
|
|
@@ -802,7 +802,7 @@ class KafkaConnect(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['KafkaConnectServiceIntegrationArgs', 'KafkaConnectServiceIntegrationArgsDict']]]] 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
|
|
@@ -1005,7 +1005,7 @@ class KafkaConnect(pulumi.CustomResource):
|
|
|
1005
1005
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
1006
1006
|
: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).
|
|
1007
1007
|
: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.
|
|
1008
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
1008
|
+
: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.
|
|
1009
1009
|
:param pulumi.Input[builtins.str] service_host: The hostname of the service.
|
|
1010
1010
|
:param pulumi.Input[Sequence[pulumi.Input[Union['KafkaConnectServiceIntegrationArgs', 'KafkaConnectServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
1011
1011
|
: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.
|
|
@@ -1160,9 +1160,9 @@ class KafkaConnect(pulumi.CustomResource):
|
|
|
1160
1160
|
|
|
1161
1161
|
@property
|
|
1162
1162
|
@pulumi.getter(name="projectVpcId")
|
|
1163
|
-
def project_vpc_id(self) -> pulumi.Output[builtins.str]:
|
|
1163
|
+
def project_vpc_id(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
1164
1164
|
"""
|
|
1165
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
1165
|
+
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.
|
|
1166
1166
|
"""
|
|
1167
1167
|
return pulumi.get(self, "project_vpc_id")
|
|
1168
1168
|
|