pulumi-aiven 6.28.0a1731647682__py3-none-any.whl → 6.28.0a1731670317__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 +635 -203
- pulumi_aiven/account_team_project.py +7 -7
- pulumi_aiven/cassandra.py +8 -8
- pulumi_aiven/clickhouse.py +8 -8
- pulumi_aiven/dragonfly.py +8 -8
- pulumi_aiven/flink.py +8 -8
- pulumi_aiven/get_account_team_project.py +1 -1
- pulumi_aiven/get_cassanda.py +1 -1
- pulumi_aiven/get_cassandra.py +1 -1
- pulumi_aiven/get_clickhouse.py +1 -1
- pulumi_aiven/get_dragonfly.py +1 -1
- pulumi_aiven/get_flink.py +1 -1
- pulumi_aiven/get_grafana.py +1 -1
- pulumi_aiven/get_kafka.py +1 -1
- pulumi_aiven/get_kafka_connect.py +1 -1
- pulumi_aiven/get_kafka_mirror_maker.py +1 -1
- pulumi_aiven/get_m3_aggregator.py +1 -1
- pulumi_aiven/get_m3_db.py +1 -1
- pulumi_aiven/get_mirror_maker_replication_flow.py +1 -1
- pulumi_aiven/get_my_sql.py +1 -1
- pulumi_aiven/get_open_search.py +1 -1
- pulumi_aiven/get_pg.py +1 -1
- pulumi_aiven/get_project_user.py +1 -1
- pulumi_aiven/get_redis.py +1 -1
- pulumi_aiven/get_service_component.py +9 -9
- pulumi_aiven/get_service_integration.py +17 -17
- pulumi_aiven/get_service_integration_endpoint.py +59 -31
- 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 +15 -8
- 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/mirror_maker_replication_flow.py +7 -7
- pulumi_aiven/my_sql.py +8 -8
- pulumi_aiven/open_search.py +8 -8
- pulumi_aiven/organization_group_project.py +17 -9
- pulumi_aiven/organization_permission.py +49 -49
- pulumi_aiven/outputs.py +883 -263
- pulumi_aiven/pg.py +8 -8
- pulumi_aiven/project_user.py +15 -7
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/redis.py +8 -8
- pulumi_aiven/service_integration.py +139 -123
- pulumi_aiven/service_integration_endpoint.py +302 -140
- pulumi_aiven/thanos.py +8 -8
- pulumi_aiven/valkey.py +8 -8
- {pulumi_aiven-6.28.0a1731647682.dist-info → pulumi_aiven-6.28.0a1731670317.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.28.0a1731647682.dist-info → pulumi_aiven-6.28.0a1731670317.dist-info}/RECORD +54 -54
- {pulumi_aiven-6.28.0a1731647682.dist-info → pulumi_aiven-6.28.0a1731670317.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.28.0a1731647682.dist-info → pulumi_aiven-6.28.0a1731670317.dist-info}/top_level.txt +0 -0
pulumi_aiven/pg.py
CHANGED
|
@@ -47,7 +47,7 @@ class PgArgs:
|
|
|
47
47
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
48
48
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
49
49
|
:param pulumi.Input['PgPgArgs'] pg: Values provided by the PostgreSQL server.
|
|
50
|
-
:param pulumi.Input['PgPgUserConfigArgs'] pg_user_config: Pg user configurable settings
|
|
50
|
+
:param pulumi.Input['PgPgUserConfigArgs'] pg_user_config: Pg 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[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
52
52
|
:param pulumi.Input[Sequence[pulumi.Input['PgServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
53
53
|
:param pulumi.Input[str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
@@ -191,7 +191,7 @@ class PgArgs:
|
|
|
191
191
|
@pulumi.getter(name="pgUserConfig")
|
|
192
192
|
def pg_user_config(self) -> Optional[pulumi.Input['PgPgUserConfigArgs']]:
|
|
193
193
|
"""
|
|
194
|
-
Pg user configurable settings
|
|
194
|
+
Pg user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
195
195
|
"""
|
|
196
196
|
return pulumi.get(self, "pg_user_config")
|
|
197
197
|
|
|
@@ -328,7 +328,7 @@ class _PgState:
|
|
|
328
328
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
329
329
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
330
330
|
:param pulumi.Input['PgPgArgs'] pg: Values provided by the PostgreSQL server.
|
|
331
|
-
:param pulumi.Input['PgPgUserConfigArgs'] pg_user_config: Pg user configurable settings
|
|
331
|
+
:param pulumi.Input['PgPgUserConfigArgs'] pg_user_config: Pg user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
332
332
|
:param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
333
333
|
:param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
334
334
|
:param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
@@ -547,7 +547,7 @@ class _PgState:
|
|
|
547
547
|
@pulumi.getter(name="pgUserConfig")
|
|
548
548
|
def pg_user_config(self) -> Optional[pulumi.Input['PgPgUserConfigArgs']]:
|
|
549
549
|
"""
|
|
550
|
-
Pg user configurable settings
|
|
550
|
+
Pg user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
551
551
|
"""
|
|
552
552
|
return pulumi.get(self, "pg_user_config")
|
|
553
553
|
|
|
@@ -787,7 +787,7 @@ class Pg(pulumi.CustomResource):
|
|
|
787
787
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
788
788
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
789
789
|
:param pulumi.Input[Union['PgPgArgs', 'PgPgArgsDict']] pg: Values provided by the PostgreSQL server.
|
|
790
|
-
:param pulumi.Input[Union['PgPgUserConfigArgs', 'PgPgUserConfigArgsDict']] pg_user_config: Pg user configurable settings
|
|
790
|
+
:param pulumi.Input[Union['PgPgUserConfigArgs', 'PgPgUserConfigArgsDict']] pg_user_config: Pg user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
791
791
|
:param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
792
792
|
:param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
793
793
|
:param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
@@ -943,7 +943,7 @@ class Pg(pulumi.CustomResource):
|
|
|
943
943
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
944
944
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
945
945
|
:param pulumi.Input[Union['PgPgArgs', 'PgPgArgsDict']] pg: Values provided by the PostgreSQL server.
|
|
946
|
-
:param pulumi.Input[Union['PgPgUserConfigArgs', 'PgPgUserConfigArgsDict']] pg_user_config: Pg user configurable settings
|
|
946
|
+
:param pulumi.Input[Union['PgPgUserConfigArgs', 'PgPgUserConfigArgsDict']] pg_user_config: Pg user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
947
947
|
:param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
948
948
|
:param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
949
949
|
:param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
@@ -997,7 +997,7 @@ class Pg(pulumi.CustomResource):
|
|
|
997
997
|
|
|
998
998
|
@property
|
|
999
999
|
@pulumi.getter(name="additionalDiskSpace")
|
|
1000
|
-
def additional_disk_space(self) -> pulumi.Output[
|
|
1000
|
+
def additional_disk_space(self) -> pulumi.Output[str]:
|
|
1001
1001
|
"""
|
|
1002
1002
|
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
1003
1003
|
"""
|
|
@@ -1089,7 +1089,7 @@ class Pg(pulumi.CustomResource):
|
|
|
1089
1089
|
@pulumi.getter(name="pgUserConfig")
|
|
1090
1090
|
def pg_user_config(self) -> pulumi.Output[Optional['outputs.PgPgUserConfig']]:
|
|
1091
1091
|
"""
|
|
1092
|
-
Pg user configurable settings
|
|
1092
|
+
Pg user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1093
1093
|
"""
|
|
1094
1094
|
return pulumi.get(self, "pg_user_config")
|
|
1095
1095
|
|
pulumi_aiven/project_user.py
CHANGED
|
@@ -25,7 +25,7 @@ class ProjectUserArgs:
|
|
|
25
25
|
"""
|
|
26
26
|
The set of arguments for constructing a ProjectUser resource.
|
|
27
27
|
:param pulumi.Input[str] email: Email address of the user in lowercase. Changing this property forces recreation of the resource.
|
|
28
|
-
:param pulumi.Input[str] member_type: Project membership type. The possible values are `admin`, `developer`, `operator`, `project:permissions:read`, `read_only`
|
|
28
|
+
:param pulumi.Input[str] member_type: Project membership type. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:billing:read`, `organization:billing:write`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization:network:read`, `organization:network:write`, `organization:permissions:read`, `organization:permissions:write`, `organization:projects:read`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
|
|
29
29
|
:param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
30
30
|
"""
|
|
31
31
|
pulumi.set(__self__, "email", email)
|
|
@@ -48,7 +48,7 @@ class ProjectUserArgs:
|
|
|
48
48
|
@pulumi.getter(name="memberType")
|
|
49
49
|
def member_type(self) -> pulumi.Input[str]:
|
|
50
50
|
"""
|
|
51
|
-
Project membership type. The possible values are `admin`, `developer`, `operator`, `project:permissions:read`, `read_only`
|
|
51
|
+
Project membership type. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:billing:read`, `organization:billing:write`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization:network:read`, `organization:network:write`, `organization:permissions:read`, `organization:permissions:write`, `organization:projects:read`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
|
|
52
52
|
"""
|
|
53
53
|
return pulumi.get(self, "member_type")
|
|
54
54
|
|
|
@@ -80,7 +80,7 @@ class _ProjectUserState:
|
|
|
80
80
|
Input properties used for looking up and filtering ProjectUser resources.
|
|
81
81
|
:param pulumi.Input[bool] accepted: Whether the user has accepted the request to join the project. Users get an invite and become project members after accepting the invite.
|
|
82
82
|
:param pulumi.Input[str] email: Email address of the user in lowercase. Changing this property forces recreation of the resource.
|
|
83
|
-
:param pulumi.Input[str] member_type: Project membership type. The possible values are `admin`, `developer`, `operator`, `project:permissions:read`, `read_only`
|
|
83
|
+
:param pulumi.Input[str] member_type: Project membership type. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:billing:read`, `organization:billing:write`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization:network:read`, `organization:network:write`, `organization:permissions:read`, `organization:permissions:write`, `organization:projects:read`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
|
|
84
84
|
:param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
85
85
|
"""
|
|
86
86
|
if accepted is not None:
|
|
@@ -120,7 +120,7 @@ class _ProjectUserState:
|
|
|
120
120
|
@pulumi.getter(name="memberType")
|
|
121
121
|
def member_type(self) -> Optional[pulumi.Input[str]]:
|
|
122
122
|
"""
|
|
123
|
-
Project membership type. The possible values are `admin`, `developer`, `operator`, `project:permissions:read`, `read_only`
|
|
123
|
+
Project membership type. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:billing:read`, `organization:billing:write`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization:network:read`, `organization:network:write`, `organization:permissions:read`, `organization:permissions:write`, `organization:projects:read`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
|
|
124
124
|
"""
|
|
125
125
|
return pulumi.get(self, "member_type")
|
|
126
126
|
|
|
@@ -153,6 +153,10 @@ class ProjectUser(pulumi.CustomResource):
|
|
|
153
153
|
"""
|
|
154
154
|
Creates and manages an Aiven project member.
|
|
155
155
|
|
|
156
|
+
**This resource is deprecated.** Use `OrganizationPermission` and
|
|
157
|
+
migrate existing ProjectUser resources
|
|
158
|
+
to the new resource.
|
|
159
|
+
|
|
156
160
|
## Example Usage
|
|
157
161
|
|
|
158
162
|
```python
|
|
@@ -174,7 +178,7 @@ class ProjectUser(pulumi.CustomResource):
|
|
|
174
178
|
:param str resource_name: The name of the resource.
|
|
175
179
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
176
180
|
:param pulumi.Input[str] email: Email address of the user in lowercase. Changing this property forces recreation of the resource.
|
|
177
|
-
:param pulumi.Input[str] member_type: Project membership type. The possible values are `admin`, `developer`, `operator`, `project:permissions:read`, `read_only`
|
|
181
|
+
:param pulumi.Input[str] member_type: Project membership type. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:billing:read`, `organization:billing:write`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization:network:read`, `organization:network:write`, `organization:permissions:read`, `organization:permissions:write`, `organization:projects:read`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
|
|
178
182
|
:param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
179
183
|
"""
|
|
180
184
|
...
|
|
@@ -186,6 +190,10 @@ class ProjectUser(pulumi.CustomResource):
|
|
|
186
190
|
"""
|
|
187
191
|
Creates and manages an Aiven project member.
|
|
188
192
|
|
|
193
|
+
**This resource is deprecated.** Use `OrganizationPermission` and
|
|
194
|
+
migrate existing ProjectUser resources
|
|
195
|
+
to the new resource.
|
|
196
|
+
|
|
189
197
|
## Example Usage
|
|
190
198
|
|
|
191
199
|
```python
|
|
@@ -264,7 +272,7 @@ class ProjectUser(pulumi.CustomResource):
|
|
|
264
272
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
265
273
|
:param pulumi.Input[bool] accepted: Whether the user has accepted the request to join the project. Users get an invite and become project members after accepting the invite.
|
|
266
274
|
:param pulumi.Input[str] email: Email address of the user in lowercase. Changing this property forces recreation of the resource.
|
|
267
|
-
:param pulumi.Input[str] member_type: Project membership type. The possible values are `admin`, `developer`, `operator`, `project:permissions:read`, `read_only`
|
|
275
|
+
:param pulumi.Input[str] member_type: Project membership type. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:billing:read`, `organization:billing:write`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization:network:read`, `organization:network:write`, `organization:permissions:read`, `organization:permissions:write`, `organization:projects:read`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
|
|
268
276
|
:param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
269
277
|
"""
|
|
270
278
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
@@ -297,7 +305,7 @@ class ProjectUser(pulumi.CustomResource):
|
|
|
297
305
|
@pulumi.getter(name="memberType")
|
|
298
306
|
def member_type(self) -> pulumi.Output[str]:
|
|
299
307
|
"""
|
|
300
|
-
Project membership type. The possible values are `admin`, `developer`, `operator`, `project:permissions:read`, `read_only`
|
|
308
|
+
Project membership type. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:billing:read`, `organization:billing:write`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization:network:read`, `organization:network:write`, `organization:permissions:read`, `organization:permissions:write`, `organization:projects:read`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
|
|
301
309
|
"""
|
|
302
310
|
return pulumi.get(self, "member_type")
|
|
303
311
|
|
pulumi_aiven/pulumi-plugin.json
CHANGED
pulumi_aiven/redis.py
CHANGED
|
@@ -49,7 +49,7 @@ class RedisArgs:
|
|
|
49
49
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
50
50
|
:param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
51
51
|
:param pulumi.Input['RedisRedisArgs'] redis: Redis server provided values
|
|
52
|
-
:param pulumi.Input['RedisRedisUserConfigArgs'] redis_user_config: Redis user configurable settings
|
|
52
|
+
:param pulumi.Input['RedisRedisUserConfigArgs'] redis_user_config: Redis user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
53
53
|
:param pulumi.Input[Sequence[pulumi.Input['RedisServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
54
54
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips: Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
|
|
55
55
|
:param pulumi.Input[Sequence[pulumi.Input['RedisTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
@@ -214,7 +214,7 @@ class RedisArgs:
|
|
|
214
214
|
@pulumi.getter(name="redisUserConfig")
|
|
215
215
|
def redis_user_config(self) -> Optional[pulumi.Input['RedisRedisUserConfigArgs']]:
|
|
216
216
|
"""
|
|
217
|
-
Redis user configurable settings
|
|
217
|
+
Redis user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
218
218
|
"""
|
|
219
219
|
return pulumi.get(self, "redis_user_config")
|
|
220
220
|
|
|
@@ -330,7 +330,7 @@ class _RedisState:
|
|
|
330
330
|
:param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
331
331
|
:param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
332
332
|
:param pulumi.Input['RedisRedisArgs'] redis: Redis server provided values
|
|
333
|
-
:param pulumi.Input['RedisRedisUserConfigArgs'] redis_user_config: Redis user configurable settings
|
|
333
|
+
:param pulumi.Input['RedisRedisUserConfigArgs'] redis_user_config: Redis user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
334
334
|
:param pulumi.Input[str] service_host: The hostname of the service.
|
|
335
335
|
:param pulumi.Input[Sequence[pulumi.Input['RedisServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
336
336
|
:param pulumi.Input[str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
@@ -582,7 +582,7 @@ class _RedisState:
|
|
|
582
582
|
@pulumi.getter(name="redisUserConfig")
|
|
583
583
|
def redis_user_config(self) -> Optional[pulumi.Input['RedisRedisUserConfigArgs']]:
|
|
584
584
|
"""
|
|
585
|
-
Redis user configurable settings
|
|
585
|
+
Redis user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
586
586
|
"""
|
|
587
587
|
return pulumi.get(self, "redis_user_config")
|
|
588
588
|
|
|
@@ -810,7 +810,7 @@ class Redis(pulumi.CustomResource):
|
|
|
810
810
|
:param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
811
811
|
:param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
812
812
|
:param pulumi.Input[Union['RedisRedisArgs', 'RedisRedisArgsDict']] redis: Redis server provided values
|
|
813
|
-
:param pulumi.Input[Union['RedisRedisUserConfigArgs', 'RedisRedisUserConfigArgsDict']] redis_user_config: Redis user configurable settings
|
|
813
|
+
:param pulumi.Input[Union['RedisRedisUserConfigArgs', 'RedisRedisUserConfigArgsDict']] redis_user_config: Redis user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
814
814
|
:param pulumi.Input[Sequence[pulumi.Input[Union['RedisServiceIntegrationArgs', 'RedisServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
815
815
|
:param pulumi.Input[str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
816
816
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips: Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
|
|
@@ -989,7 +989,7 @@ class Redis(pulumi.CustomResource):
|
|
|
989
989
|
:param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
990
990
|
:param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
|
|
991
991
|
:param pulumi.Input[Union['RedisRedisArgs', 'RedisRedisArgsDict']] redis: Redis server provided values
|
|
992
|
-
:param pulumi.Input[Union['RedisRedisUserConfigArgs', 'RedisRedisUserConfigArgsDict']] redis_user_config: Redis user configurable settings
|
|
992
|
+
:param pulumi.Input[Union['RedisRedisUserConfigArgs', 'RedisRedisUserConfigArgsDict']] redis_user_config: Redis user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
993
993
|
:param pulumi.Input[str] service_host: The hostname of the service.
|
|
994
994
|
:param pulumi.Input[Sequence[pulumi.Input[Union['RedisServiceIntegrationArgs', 'RedisServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
995
995
|
:param pulumi.Input[str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
@@ -1040,7 +1040,7 @@ class Redis(pulumi.CustomResource):
|
|
|
1040
1040
|
|
|
1041
1041
|
@property
|
|
1042
1042
|
@pulumi.getter(name="additionalDiskSpace")
|
|
1043
|
-
def additional_disk_space(self) -> pulumi.Output[
|
|
1043
|
+
def additional_disk_space(self) -> pulumi.Output[str]:
|
|
1044
1044
|
"""
|
|
1045
1045
|
Add [disk storage](https://aiven.io/docs/platform/howto/add-storage-space) in increments of 30 GiB to scale your service. The maximum value depends on the service type and cloud provider. Removing additional storage causes the service nodes to go through a rolling restart and there might be a short downtime for services with no HA capabilities.
|
|
1046
1046
|
"""
|
|
@@ -1156,7 +1156,7 @@ class Redis(pulumi.CustomResource):
|
|
|
1156
1156
|
@pulumi.getter(name="redisUserConfig")
|
|
1157
1157
|
def redis_user_config(self) -> pulumi.Output[Optional['outputs.RedisRedisUserConfig']]:
|
|
1158
1158
|
"""
|
|
1159
|
-
Redis user configurable settings
|
|
1159
|
+
Redis user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1160
1160
|
"""
|
|
1161
1161
|
return pulumi.get(self, "redis_user_config")
|
|
1162
1162
|
|