pulumi-aiven 6.34.0a1739423224__py3-none-any.whl → 6.34.0a1739596048__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 +37 -33
- pulumi_aiven/account.py +6 -2
- pulumi_aiven/account_authentication.py +4 -2
- pulumi_aiven/account_team.py +2 -6
- pulumi_aiven/account_team_member.py +10 -6
- pulumi_aiven/account_team_project.py +10 -6
- pulumi_aiven/cassandra.py +14 -0
- pulumi_aiven/cassandra_user.py +14 -0
- pulumi_aiven/get_account.py +8 -0
- pulumi_aiven/get_account_authentication.py +8 -0
- pulumi_aiven/get_account_team.py +22 -0
- pulumi_aiven/get_account_team_member.py +22 -0
- pulumi_aiven/get_account_team_project.py +22 -0
- pulumi_aiven/get_cassanda.py +14 -0
- pulumi_aiven/get_cassandra.py +14 -0
- pulumi_aiven/get_cassandra_user.py +14 -0
- pulumi_aiven/get_m3_db.py +12 -0
- pulumi_aiven/get_m3db_user.py +12 -0
- pulumi_aiven/get_my_sql.py +7 -7
- pulumi_aiven/get_mysql_database.py +11 -11
- pulumi_aiven/get_mysql_user.py +15 -15
- pulumi_aiven/get_organization_user.py +2 -4
- pulumi_aiven/get_project_user.py +8 -0
- pulumi_aiven/get_redis.py +16 -0
- pulumi_aiven/get_redis_user.py +16 -0
- pulumi_aiven/m3_db.py +2 -2
- pulumi_aiven/m3db_user.py +2 -2
- pulumi_aiven/my_sql.py +17 -17
- pulumi_aiven/mysql_database.py +19 -19
- pulumi_aiven/mysql_user.py +38 -38
- pulumi_aiven/outputs.py +46 -44
- pulumi_aiven/project_user.py +8 -0
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/redis.py +2 -2
- pulumi_aiven/redis_user.py +2 -2
- {pulumi_aiven-6.34.0a1739423224.dist-info → pulumi_aiven-6.34.0a1739596048.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.34.0a1739423224.dist-info → pulumi_aiven-6.34.0a1739596048.dist-info}/RECORD +39 -39
- {pulumi_aiven-6.34.0a1739423224.dist-info → pulumi_aiven-6.34.0a1739596048.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.34.0a1739423224.dist-info → pulumi_aiven-6.34.0a1739596048.dist-info}/top_level.txt +0 -0
pulumi_aiven/get_cassandra.py
CHANGED
|
@@ -392,6 +392,13 @@ def get_cassandra(project: Optional[str] = None,
|
|
|
392
392
|
"""
|
|
393
393
|
Gets information about an Aiven for Apache Cassandra® service.
|
|
394
394
|
|
|
395
|
+
!> **End of life notice**
|
|
396
|
+
Aiven for Apache Cassandra® is entering its [end-of-life cycle](https://aiven.io/docs/platform/reference/end-of-life).
|
|
397
|
+
From **November 30, 2025**, it will not be possible to start a new Cassandra service, but existing services will continue to operate until end of life.
|
|
398
|
+
From **December 31, 2025**, all active Aiven for Apache Cassandra services are powered off and deleted, making data from these services inaccessible.
|
|
399
|
+
To ensure uninterrupted service, complete your migration out of Aiven for Apache Cassandra
|
|
400
|
+
before December 31, 2025. For further assistance, contact your account team.
|
|
401
|
+
|
|
395
402
|
## Example Usage
|
|
396
403
|
|
|
397
404
|
```python
|
|
@@ -448,6 +455,13 @@ def get_cassandra_output(project: Optional[pulumi.Input[str]] = None,
|
|
|
448
455
|
"""
|
|
449
456
|
Gets information about an Aiven for Apache Cassandra® service.
|
|
450
457
|
|
|
458
|
+
!> **End of life notice**
|
|
459
|
+
Aiven for Apache Cassandra® is entering its [end-of-life cycle](https://aiven.io/docs/platform/reference/end-of-life).
|
|
460
|
+
From **November 30, 2025**, it will not be possible to start a new Cassandra service, but existing services will continue to operate until end of life.
|
|
461
|
+
From **December 31, 2025**, all active Aiven for Apache Cassandra services are powered off and deleted, making data from these services inaccessible.
|
|
462
|
+
To ensure uninterrupted service, complete your migration out of Aiven for Apache Cassandra
|
|
463
|
+
before December 31, 2025. For further assistance, contact your account team.
|
|
464
|
+
|
|
451
465
|
## Example Usage
|
|
452
466
|
|
|
453
467
|
```python
|
|
@@ -140,6 +140,13 @@ def get_cassandra_user(project: Optional[str] = None,
|
|
|
140
140
|
"""
|
|
141
141
|
Gets information about an Aiven for Apache Cassandra® service user.
|
|
142
142
|
|
|
143
|
+
!> **End of life notice**
|
|
144
|
+
Aiven for Apache Cassandra® is entering its [end-of-life cycle](https://aiven.io/docs/platform/reference/end-of-life).
|
|
145
|
+
From **November 30, 2025**, it will not be possible to start a new Cassandra service, but existing services will continue to operate until end of life.
|
|
146
|
+
From **December 31, 2025**, all active Aiven for Apache Cassandra services are powered off and deleted, making data from these services inaccessible.
|
|
147
|
+
To ensure uninterrupted service, complete your migration out of Aiven for Apache Cassandra
|
|
148
|
+
before December 31, 2025. For further assistance, contact your account team.
|
|
149
|
+
|
|
143
150
|
## Example Usage
|
|
144
151
|
|
|
145
152
|
```python
|
|
@@ -179,6 +186,13 @@ def get_cassandra_user_output(project: Optional[pulumi.Input[str]] = None,
|
|
|
179
186
|
"""
|
|
180
187
|
Gets information about an Aiven for Apache Cassandra® service user.
|
|
181
188
|
|
|
189
|
+
!> **End of life notice**
|
|
190
|
+
Aiven for Apache Cassandra® is entering its [end-of-life cycle](https://aiven.io/docs/platform/reference/end-of-life).
|
|
191
|
+
From **November 30, 2025**, it will not be possible to start a new Cassandra service, but existing services will continue to operate until end of life.
|
|
192
|
+
From **December 31, 2025**, all active Aiven for Apache Cassandra services are powered off and deleted, making data from these services inaccessible.
|
|
193
|
+
To ensure uninterrupted service, complete your migration out of Aiven for Apache Cassandra
|
|
194
|
+
before December 31, 2025. For further assistance, contact your account team.
|
|
195
|
+
|
|
182
196
|
## Example Usage
|
|
183
197
|
|
|
184
198
|
```python
|
pulumi_aiven/get_m3_db.py
CHANGED
|
@@ -392,6 +392,12 @@ def get_m3_db(project: Optional[str] = None,
|
|
|
392
392
|
"""
|
|
393
393
|
Gets information about an Aiven for M3DB service.
|
|
394
394
|
|
|
395
|
+
!> **End of life notice**
|
|
396
|
+
**After 30 April 2025** all running Aiven for M3 services will be powered off and deleted, making data from these services inaccessible.
|
|
397
|
+
You cannot create M3DB services in Aiven projects that didn't have M3DB services before.
|
|
398
|
+
To avoid interruptions to your service, migrate to Aiven for Thanos Metrics
|
|
399
|
+
before the end of life date.
|
|
400
|
+
|
|
395
401
|
## Example Usage
|
|
396
402
|
|
|
397
403
|
```python
|
|
@@ -448,6 +454,12 @@ def get_m3_db_output(project: Optional[pulumi.Input[str]] = None,
|
|
|
448
454
|
"""
|
|
449
455
|
Gets information about an Aiven for M3DB service.
|
|
450
456
|
|
|
457
|
+
!> **End of life notice**
|
|
458
|
+
**After 30 April 2025** all running Aiven for M3 services will be powered off and deleted, making data from these services inaccessible.
|
|
459
|
+
You cannot create M3DB services in Aiven projects that didn't have M3DB services before.
|
|
460
|
+
To avoid interruptions to your service, migrate to Aiven for Thanos Metrics
|
|
461
|
+
before the end of life date.
|
|
462
|
+
|
|
451
463
|
## Example Usage
|
|
452
464
|
|
|
453
465
|
```python
|
pulumi_aiven/get_m3db_user.py
CHANGED
|
@@ -116,6 +116,12 @@ def get_m3db_user(project: Optional[str] = None,
|
|
|
116
116
|
"""
|
|
117
117
|
Gets information about an Aiven for M3DB service user.
|
|
118
118
|
|
|
119
|
+
!> **End of life notice**
|
|
120
|
+
**After 30 April 2025** all running Aiven for M3 services will be powered off and deleted, making data from these services inaccessible.
|
|
121
|
+
You cannot create M3DB services in Aiven projects that didn't have M3DB services before.
|
|
122
|
+
To avoid interruptions to your service, migrate to Aiven for Thanos Metrics
|
|
123
|
+
before the end of life date.
|
|
124
|
+
|
|
119
125
|
## Example Usage
|
|
120
126
|
|
|
121
127
|
```python
|
|
@@ -153,6 +159,12 @@ def get_m3db_user_output(project: Optional[pulumi.Input[str]] = None,
|
|
|
153
159
|
"""
|
|
154
160
|
Gets information about an Aiven for M3DB service user.
|
|
155
161
|
|
|
162
|
+
!> **End of life notice**
|
|
163
|
+
**After 30 April 2025** all running Aiven for M3 services will be powered off and deleted, making data from these services inaccessible.
|
|
164
|
+
You cannot create M3DB services in Aiven projects that didn't have M3DB services before.
|
|
165
|
+
To avoid interruptions to your service, migrate to Aiven for Thanos Metrics
|
|
166
|
+
before the end of life date.
|
|
167
|
+
|
|
156
168
|
## Example Usage
|
|
157
169
|
|
|
158
170
|
```python
|
pulumi_aiven/get_my_sql.py
CHANGED
|
@@ -216,7 +216,7 @@ class GetMySqlResult:
|
|
|
216
216
|
@pulumi.getter
|
|
217
217
|
def mysqls(self) -> Sequence['outputs.GetMySqlMysqlResult']:
|
|
218
218
|
"""
|
|
219
|
-
MySQL
|
|
219
|
+
MySQL server-provided values.
|
|
220
220
|
"""
|
|
221
221
|
return pulumi.get(self, "mysqls")
|
|
222
222
|
|
|
@@ -390,7 +390,7 @@ def get_my_sql(project: Optional[str] = None,
|
|
|
390
390
|
service_name: Optional[str] = None,
|
|
391
391
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetMySqlResult:
|
|
392
392
|
"""
|
|
393
|
-
|
|
393
|
+
Gets information about an Aiven for MySQL® service.
|
|
394
394
|
|
|
395
395
|
## Example Usage
|
|
396
396
|
|
|
@@ -398,8 +398,8 @@ def get_my_sql(project: Optional[str] = None,
|
|
|
398
398
|
import pulumi
|
|
399
399
|
import pulumi_aiven as aiven
|
|
400
400
|
|
|
401
|
-
|
|
402
|
-
service_name="
|
|
401
|
+
example_mysql = aiven.get_my_sql(project=example_project["project"],
|
|
402
|
+
service_name="example-mysql")
|
|
403
403
|
```
|
|
404
404
|
|
|
405
405
|
|
|
@@ -446,7 +446,7 @@ def get_my_sql_output(project: Optional[pulumi.Input[str]] = None,
|
|
|
446
446
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
447
447
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetMySqlResult]:
|
|
448
448
|
"""
|
|
449
|
-
|
|
449
|
+
Gets information about an Aiven for MySQL® service.
|
|
450
450
|
|
|
451
451
|
## Example Usage
|
|
452
452
|
|
|
@@ -454,8 +454,8 @@ def get_my_sql_output(project: Optional[pulumi.Input[str]] = None,
|
|
|
454
454
|
import pulumi
|
|
455
455
|
import pulumi_aiven as aiven
|
|
456
456
|
|
|
457
|
-
|
|
458
|
-
service_name="
|
|
457
|
+
example_mysql = aiven.get_my_sql(project=example_project["project"],
|
|
458
|
+
service_name="example-mysql")
|
|
459
459
|
```
|
|
460
460
|
|
|
461
461
|
|
|
@@ -47,7 +47,7 @@ class GetMysqlDatabaseResult:
|
|
|
47
47
|
@pulumi.getter(name="databaseName")
|
|
48
48
|
def database_name(self) -> str:
|
|
49
49
|
"""
|
|
50
|
-
The name of the
|
|
50
|
+
The name of the database. Changing this property forces recreation of the resource.
|
|
51
51
|
"""
|
|
52
52
|
return pulumi.get(self, "database_name")
|
|
53
53
|
|
|
@@ -99,7 +99,7 @@ def get_mysql_database(database_name: Optional[str] = None,
|
|
|
99
99
|
service_name: Optional[str] = None,
|
|
100
100
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetMysqlDatabaseResult:
|
|
101
101
|
"""
|
|
102
|
-
|
|
102
|
+
Gets information about an Aiven for MySQL® database.
|
|
103
103
|
|
|
104
104
|
## Example Usage
|
|
105
105
|
|
|
@@ -107,13 +107,13 @@ def get_mysql_database(database_name: Optional[str] = None,
|
|
|
107
107
|
import pulumi
|
|
108
108
|
import pulumi_aiven as aiven
|
|
109
109
|
|
|
110
|
-
|
|
111
|
-
service_name=
|
|
112
|
-
database_name="
|
|
110
|
+
example_database = aiven.get_mysql_database(project=example_project["project"],
|
|
111
|
+
service_name=example_mysql["serviceName"],
|
|
112
|
+
database_name="example-database")
|
|
113
113
|
```
|
|
114
114
|
|
|
115
115
|
|
|
116
|
-
:param str database_name: The name of the
|
|
116
|
+
:param str database_name: The name of the database. Changing this property forces recreation of the resource.
|
|
117
117
|
:param 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.
|
|
118
118
|
:param str service_name: The name of the service that 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.
|
|
119
119
|
"""
|
|
@@ -135,7 +135,7 @@ def get_mysql_database_output(database_name: Optional[pulumi.Input[str]] = None,
|
|
|
135
135
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
136
136
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetMysqlDatabaseResult]:
|
|
137
137
|
"""
|
|
138
|
-
|
|
138
|
+
Gets information about an Aiven for MySQL® database.
|
|
139
139
|
|
|
140
140
|
## Example Usage
|
|
141
141
|
|
|
@@ -143,13 +143,13 @@ def get_mysql_database_output(database_name: Optional[pulumi.Input[str]] = None,
|
|
|
143
143
|
import pulumi
|
|
144
144
|
import pulumi_aiven as aiven
|
|
145
145
|
|
|
146
|
-
|
|
147
|
-
service_name=
|
|
148
|
-
database_name="
|
|
146
|
+
example_database = aiven.get_mysql_database(project=example_project["project"],
|
|
147
|
+
service_name=example_mysql["serviceName"],
|
|
148
|
+
database_name="example-database")
|
|
149
149
|
```
|
|
150
150
|
|
|
151
151
|
|
|
152
|
-
:param str database_name: The name of the
|
|
152
|
+
:param str database_name: The name of the database. Changing this property forces recreation of the resource.
|
|
153
153
|
:param 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.
|
|
154
154
|
:param str service_name: The name of the service that 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.
|
|
155
155
|
"""
|
pulumi_aiven/get_mysql_user.py
CHANGED
|
@@ -59,7 +59,7 @@ class GetMysqlUserResult:
|
|
|
59
59
|
@pulumi.getter(name="accessCert")
|
|
60
60
|
def access_cert(self) -> str:
|
|
61
61
|
"""
|
|
62
|
-
Access certificate for the user
|
|
62
|
+
Access certificate for the user.
|
|
63
63
|
"""
|
|
64
64
|
return pulumi.get(self, "access_cert")
|
|
65
65
|
|
|
@@ -67,7 +67,7 @@ class GetMysqlUserResult:
|
|
|
67
67
|
@pulumi.getter(name="accessKey")
|
|
68
68
|
def access_key(self) -> str:
|
|
69
69
|
"""
|
|
70
|
-
Access certificate key for the user
|
|
70
|
+
Access certificate key for the user.
|
|
71
71
|
"""
|
|
72
72
|
return pulumi.get(self, "access_key")
|
|
73
73
|
|
|
@@ -91,7 +91,7 @@ class GetMysqlUserResult:
|
|
|
91
91
|
@pulumi.getter
|
|
92
92
|
def password(self) -> str:
|
|
93
93
|
"""
|
|
94
|
-
The password of the MySQL
|
|
94
|
+
The password of the MySQL service user.
|
|
95
95
|
"""
|
|
96
96
|
return pulumi.get(self, "password")
|
|
97
97
|
|
|
@@ -115,7 +115,7 @@ class GetMysqlUserResult:
|
|
|
115
115
|
@pulumi.getter
|
|
116
116
|
def type(self) -> str:
|
|
117
117
|
"""
|
|
118
|
-
|
|
118
|
+
User account type, such as primary or regular account.
|
|
119
119
|
"""
|
|
120
120
|
return pulumi.get(self, "type")
|
|
121
121
|
|
|
@@ -123,7 +123,7 @@ class GetMysqlUserResult:
|
|
|
123
123
|
@pulumi.getter
|
|
124
124
|
def username(self) -> str:
|
|
125
125
|
"""
|
|
126
|
-
The
|
|
126
|
+
The name of the MySQL service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
127
127
|
"""
|
|
128
128
|
return pulumi.get(self, "username")
|
|
129
129
|
|
|
@@ -150,7 +150,7 @@ def get_mysql_user(project: Optional[str] = None,
|
|
|
150
150
|
username: Optional[str] = None,
|
|
151
151
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetMysqlUserResult:
|
|
152
152
|
"""
|
|
153
|
-
|
|
153
|
+
Gets information about an Aiven for MySQL® service user.
|
|
154
154
|
|
|
155
155
|
## Example Usage
|
|
156
156
|
|
|
@@ -158,15 +158,15 @@ def get_mysql_user(project: Optional[str] = None,
|
|
|
158
158
|
import pulumi
|
|
159
159
|
import pulumi_aiven as aiven
|
|
160
160
|
|
|
161
|
-
|
|
162
|
-
project="
|
|
163
|
-
username="
|
|
161
|
+
example_mysql_user = aiven.get_mysql_user(service_name=example_mysql["serviceName"],
|
|
162
|
+
project=example_project["project"],
|
|
163
|
+
username="example-mysql-user")
|
|
164
164
|
```
|
|
165
165
|
|
|
166
166
|
|
|
167
167
|
:param 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.
|
|
168
168
|
:param str service_name: The name of the service that 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.
|
|
169
|
-
:param str username: The
|
|
169
|
+
:param str username: The name of the MySQL service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
170
170
|
"""
|
|
171
171
|
__args__ = dict()
|
|
172
172
|
__args__['project'] = project
|
|
@@ -190,7 +190,7 @@ def get_mysql_user_output(project: Optional[pulumi.Input[str]] = None,
|
|
|
190
190
|
username: Optional[pulumi.Input[str]] = None,
|
|
191
191
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetMysqlUserResult]:
|
|
192
192
|
"""
|
|
193
|
-
|
|
193
|
+
Gets information about an Aiven for MySQL® service user.
|
|
194
194
|
|
|
195
195
|
## Example Usage
|
|
196
196
|
|
|
@@ -198,15 +198,15 @@ def get_mysql_user_output(project: Optional[pulumi.Input[str]] = None,
|
|
|
198
198
|
import pulumi
|
|
199
199
|
import pulumi_aiven as aiven
|
|
200
200
|
|
|
201
|
-
|
|
202
|
-
project="
|
|
203
|
-
username="
|
|
201
|
+
example_mysql_user = aiven.get_mysql_user(service_name=example_mysql["serviceName"],
|
|
202
|
+
project=example_project["project"],
|
|
203
|
+
username="example-mysql-user")
|
|
204
204
|
```
|
|
205
205
|
|
|
206
206
|
|
|
207
207
|
:param 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.
|
|
208
208
|
:param str service_name: The name of the service that 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.
|
|
209
|
-
:param str username: The
|
|
209
|
+
:param str username: The name of the MySQL service user. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
210
210
|
"""
|
|
211
211
|
__args__ = dict()
|
|
212
212
|
__args__['project'] = project
|
|
@@ -102,8 +102,7 @@ def get_organization_user(organization_id: Optional[str] = None,
|
|
|
102
102
|
user_id: Optional[str] = None,
|
|
103
103
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetOrganizationUserResult:
|
|
104
104
|
"""
|
|
105
|
-
|
|
106
|
-
|
|
105
|
+
Use this data source to access information about an existing resource.
|
|
107
106
|
|
|
108
107
|
:param str organization_id: The unique organization ID.
|
|
109
108
|
:param str user_email: This is a user email address
|
|
@@ -127,8 +126,7 @@ def get_organization_user_output(organization_id: Optional[pulumi.Input[str]] =
|
|
|
127
126
|
user_id: Optional[pulumi.Input[Optional[str]]] = None,
|
|
128
127
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetOrganizationUserResult]:
|
|
129
128
|
"""
|
|
130
|
-
|
|
131
|
-
|
|
129
|
+
Use this data source to access information about an existing resource.
|
|
132
130
|
|
|
133
131
|
:param str organization_id: The unique organization ID.
|
|
134
132
|
:param str user_email: This is a user email address
|
pulumi_aiven/get_project_user.py
CHANGED
|
@@ -103,6 +103,10 @@ def get_project_user(email: Optional[str] = None,
|
|
|
103
103
|
"""
|
|
104
104
|
The Project User data source provides information about the existing Aiven Project User.
|
|
105
105
|
|
|
106
|
+
> **This resource is deprecated**.
|
|
107
|
+
|
|
108
|
+
Use `OrganizationPermission` instead.
|
|
109
|
+
|
|
106
110
|
## Example Usage
|
|
107
111
|
|
|
108
112
|
```python
|
|
@@ -135,6 +139,10 @@ def get_project_user_output(email: Optional[pulumi.Input[str]] = None,
|
|
|
135
139
|
"""
|
|
136
140
|
The Project User data source provides information about the existing Aiven Project User.
|
|
137
141
|
|
|
142
|
+
> **This resource is deprecated**.
|
|
143
|
+
|
|
144
|
+
Use `OrganizationPermission` instead.
|
|
145
|
+
|
|
138
146
|
## Example Usage
|
|
139
147
|
|
|
140
148
|
```python
|
pulumi_aiven/get_redis.py
CHANGED
|
@@ -392,6 +392,14 @@ def get_redis(project: Optional[str] = None,
|
|
|
392
392
|
"""
|
|
393
393
|
The Redis data source provides information about the existing Aiven Redis service.
|
|
394
394
|
|
|
395
|
+
!> **End of life notice**
|
|
396
|
+
In March 2024, a new licensing model was announced for Redis® that impacts the Aiven for Caching offering (formerly Aiven for Redis®).
|
|
397
|
+
Aiven for Caching is entering its end-of-life cycle to comply with Redis's copyright and license agreements.
|
|
398
|
+
From **February 15th, 2025**, it will not be possible to start a new Aiven for Caching service, but existing services up until version 7.2 will still be available until end of life.
|
|
399
|
+
From **March 31st, 2025**, Aiven for Caching will no longer be available and all existing services will be migrated to Aiven for Valkey™.
|
|
400
|
+
You can [upgrade to Valkey for free](https://aiven.io/docs/products/caching/howto/upgrade-aiven-for-caching-to-valkey) before then
|
|
401
|
+
and update your existing `Redis` resources.
|
|
402
|
+
|
|
395
403
|
## Example Usage
|
|
396
404
|
|
|
397
405
|
```python
|
|
@@ -448,6 +456,14 @@ def get_redis_output(project: Optional[pulumi.Input[str]] = None,
|
|
|
448
456
|
"""
|
|
449
457
|
The Redis data source provides information about the existing Aiven Redis service.
|
|
450
458
|
|
|
459
|
+
!> **End of life notice**
|
|
460
|
+
In March 2024, a new licensing model was announced for Redis® that impacts the Aiven for Caching offering (formerly Aiven for Redis®).
|
|
461
|
+
Aiven for Caching is entering its end-of-life cycle to comply with Redis's copyright and license agreements.
|
|
462
|
+
From **February 15th, 2025**, it will not be possible to start a new Aiven for Caching service, but existing services up until version 7.2 will still be available until end of life.
|
|
463
|
+
From **March 31st, 2025**, Aiven for Caching will no longer be available and all existing services will be migrated to Aiven for Valkey™.
|
|
464
|
+
You can [upgrade to Valkey for free](https://aiven.io/docs/products/caching/howto/upgrade-aiven-for-caching-to-valkey) before then
|
|
465
|
+
and update your existing `Redis` resources.
|
|
466
|
+
|
|
451
467
|
## Example Usage
|
|
452
468
|
|
|
453
469
|
```python
|
pulumi_aiven/get_redis_user.py
CHANGED
|
@@ -164,6 +164,14 @@ def get_redis_user(project: Optional[str] = None,
|
|
|
164
164
|
"""
|
|
165
165
|
The Redis User data source provides information about the existing Aiven Redis User.
|
|
166
166
|
|
|
167
|
+
!> **End of life notice**
|
|
168
|
+
In March 2024, a new licensing model was announced for Redis® that impacts the Aiven for Caching offering (formerly Aiven for Redis®).
|
|
169
|
+
Aiven for Caching is entering its end-of-life cycle to comply with Redis's copyright and license agreements.
|
|
170
|
+
From **February 15th, 2025**, it will not be possible to start a new Aiven for Caching service, but existing services up until version 7.2 will still be available until end of life.
|
|
171
|
+
From **March 31st, 2025**, Aiven for Caching will no longer be available and all existing services will be migrated to Aiven for Valkey™.
|
|
172
|
+
You can [upgrade to Valkey for free](https://aiven.io/docs/products/caching/howto/upgrade-aiven-for-caching-to-valkey) before then
|
|
173
|
+
and update your existing `Redis` resources.
|
|
174
|
+
|
|
167
175
|
## Example Usage
|
|
168
176
|
|
|
169
177
|
```python
|
|
@@ -205,6 +213,14 @@ def get_redis_user_output(project: Optional[pulumi.Input[str]] = None,
|
|
|
205
213
|
"""
|
|
206
214
|
The Redis User data source provides information about the existing Aiven Redis User.
|
|
207
215
|
|
|
216
|
+
!> **End of life notice**
|
|
217
|
+
In March 2024, a new licensing model was announced for Redis® that impacts the Aiven for Caching offering (formerly Aiven for Redis®).
|
|
218
|
+
Aiven for Caching is entering its end-of-life cycle to comply with Redis's copyright and license agreements.
|
|
219
|
+
From **February 15th, 2025**, it will not be possible to start a new Aiven for Caching service, but existing services up until version 7.2 will still be available until end of life.
|
|
220
|
+
From **March 31st, 2025**, Aiven for Caching will no longer be available and all existing services will be migrated to Aiven for Valkey™.
|
|
221
|
+
You can [upgrade to Valkey for free](https://aiven.io/docs/products/caching/howto/upgrade-aiven-for-caching-to-valkey) before then
|
|
222
|
+
and update your existing `Redis` resources.
|
|
223
|
+
|
|
208
224
|
## Example Usage
|
|
209
225
|
|
|
210
226
|
```python
|
pulumi_aiven/m3_db.py
CHANGED
|
@@ -772,7 +772,7 @@ class M3Db(pulumi.CustomResource):
|
|
|
772
772
|
"""
|
|
773
773
|
Creates and manages an [Aiven for M3](https://aiven.io/docs/products/m3db) service.
|
|
774
774
|
|
|
775
|
-
|
|
775
|
+
!> **End of life notice**
|
|
776
776
|
**After 30 April 2025** all running Aiven for M3 services will be powered off and deleted, making data from these services inaccessible.
|
|
777
777
|
You cannot create M3DB services in Aiven projects that didn't have M3DB services before.
|
|
778
778
|
To avoid interruptions to your service, migrate to Aiven for Thanos Metrics
|
|
@@ -834,7 +834,7 @@ class M3Db(pulumi.CustomResource):
|
|
|
834
834
|
"""
|
|
835
835
|
Creates and manages an [Aiven for M3](https://aiven.io/docs/products/m3db) service.
|
|
836
836
|
|
|
837
|
-
|
|
837
|
+
!> **End of life notice**
|
|
838
838
|
**After 30 April 2025** all running Aiven for M3 services will be powered off and deleted, making data from these services inaccessible.
|
|
839
839
|
You cannot create M3DB services in Aiven projects that didn't have M3DB services before.
|
|
840
840
|
To avoid interruptions to your service, migrate to Aiven for Thanos Metrics
|
pulumi_aiven/m3db_user.py
CHANGED
|
@@ -186,7 +186,7 @@ class M3dbUser(pulumi.CustomResource):
|
|
|
186
186
|
"""
|
|
187
187
|
Creates and manages an Aiven for M3 service user.
|
|
188
188
|
|
|
189
|
-
|
|
189
|
+
!> **End of life notice**
|
|
190
190
|
**After 30 April 2025** all running Aiven for M3 services will be powered off and deleted, making data from these services inaccessible.
|
|
191
191
|
You cannot create M3DB services in Aiven projects that didn't have M3DB services before.
|
|
192
192
|
To avoid interruptions to your service, migrate to Aiven for Thanos Metrics
|
|
@@ -227,7 +227,7 @@ class M3dbUser(pulumi.CustomResource):
|
|
|
227
227
|
"""
|
|
228
228
|
Creates and manages an Aiven for M3 service user.
|
|
229
229
|
|
|
230
|
-
|
|
230
|
+
!> **End of life notice**
|
|
231
231
|
**After 30 April 2025** all running Aiven for M3 services will be powered off and deleted, making data from these services inaccessible.
|
|
232
232
|
You cannot create M3DB services in Aiven projects that didn't have M3DB services before.
|
|
233
233
|
To avoid interruptions to your service, migrate to Aiven for Thanos Metrics
|
pulumi_aiven/my_sql.py
CHANGED
|
@@ -47,7 +47,7 @@ class MySqlArgs:
|
|
|
47
47
|
:param pulumi.Input[str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
48
48
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
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
|
-
:param pulumi.Input['MySqlMysqlArgs'] mysql: MySQL
|
|
50
|
+
:param pulumi.Input['MySqlMysqlArgs'] mysql: MySQL server-provided values.
|
|
51
51
|
:param pulumi.Input['MySqlMysqlUserConfigArgs'] mysql_user_config: Mysql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
52
52
|
: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.
|
|
53
53
|
:param pulumi.Input[Sequence[pulumi.Input['MySqlServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
@@ -190,7 +190,7 @@ class MySqlArgs:
|
|
|
190
190
|
@pulumi.getter
|
|
191
191
|
def mysql(self) -> Optional[pulumi.Input['MySqlMysqlArgs']]:
|
|
192
192
|
"""
|
|
193
|
-
MySQL
|
|
193
|
+
MySQL server-provided values.
|
|
194
194
|
"""
|
|
195
195
|
return pulumi.get(self, "mysql")
|
|
196
196
|
|
|
@@ -326,7 +326,7 @@ class _MySqlState:
|
|
|
326
326
|
:param pulumi.Input[str] disk_space_used: Disk space that service is currently using
|
|
327
327
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
328
328
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
329
|
-
:param pulumi.Input['MySqlMysqlArgs'] mysql: MySQL
|
|
329
|
+
:param pulumi.Input['MySqlMysqlArgs'] mysql: MySQL server-provided values.
|
|
330
330
|
:param pulumi.Input['MySqlMysqlUserConfigArgs'] mysql_user_config: Mysql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
331
331
|
: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).
|
|
332
332
|
: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.
|
|
@@ -534,7 +534,7 @@ class _MySqlState:
|
|
|
534
534
|
@pulumi.getter
|
|
535
535
|
def mysql(self) -> Optional[pulumi.Input['MySqlMysqlArgs']]:
|
|
536
536
|
"""
|
|
537
|
-
MySQL
|
|
537
|
+
MySQL server-provided values.
|
|
538
538
|
"""
|
|
539
539
|
return pulumi.get(self, "mysql")
|
|
540
540
|
|
|
@@ -770,7 +770,7 @@ class MySql(pulumi.CustomResource):
|
|
|
770
770
|
termination_protection: Optional[pulumi.Input[bool]] = None,
|
|
771
771
|
__props__=None):
|
|
772
772
|
"""
|
|
773
|
-
|
|
773
|
+
Creates and manages an [Aiven for MySQL®](https://aiven.io/docs/products/mysql) service.
|
|
774
774
|
|
|
775
775
|
## Example Usage
|
|
776
776
|
|
|
@@ -778,11 +778,11 @@ class MySql(pulumi.CustomResource):
|
|
|
778
778
|
import pulumi
|
|
779
779
|
import pulumi_aiven as aiven
|
|
780
780
|
|
|
781
|
-
|
|
782
|
-
project=
|
|
781
|
+
example_mysql = aiven.MySql("example_mysql",
|
|
782
|
+
project=example_project["project"],
|
|
783
783
|
cloud_name="google-europe-west1",
|
|
784
784
|
plan="business-4",
|
|
785
|
-
service_name="
|
|
785
|
+
service_name="example-mysql",
|
|
786
786
|
maintenance_window_dow="monday",
|
|
787
787
|
maintenance_window_time="10:00:00",
|
|
788
788
|
mysql_user_config={
|
|
@@ -800,7 +800,7 @@ class MySql(pulumi.CustomResource):
|
|
|
800
800
|
## Import
|
|
801
801
|
|
|
802
802
|
```sh
|
|
803
|
-
$ pulumi import aiven:index/mySql:MySql
|
|
803
|
+
$ pulumi import aiven:index/mySql:MySql example_mysql PROJECT/SERVICE_NAME
|
|
804
804
|
```
|
|
805
805
|
|
|
806
806
|
:param str resource_name: The name of the resource.
|
|
@@ -810,7 +810,7 @@ class MySql(pulumi.CustomResource):
|
|
|
810
810
|
:param pulumi.Input[str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
|
|
811
811
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
812
812
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
813
|
-
:param pulumi.Input[Union['MySqlMysqlArgs', 'MySqlMysqlArgsDict']] mysql: MySQL
|
|
813
|
+
:param pulumi.Input[Union['MySqlMysqlArgs', 'MySqlMysqlArgsDict']] mysql: MySQL server-provided values.
|
|
814
814
|
:param pulumi.Input[Union['MySqlMysqlUserConfigArgs', 'MySqlMysqlUserConfigArgsDict']] mysql_user_config: Mysql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
815
815
|
: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).
|
|
816
816
|
: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.
|
|
@@ -829,7 +829,7 @@ class MySql(pulumi.CustomResource):
|
|
|
829
829
|
args: MySqlArgs,
|
|
830
830
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
831
831
|
"""
|
|
832
|
-
|
|
832
|
+
Creates and manages an [Aiven for MySQL®](https://aiven.io/docs/products/mysql) service.
|
|
833
833
|
|
|
834
834
|
## Example Usage
|
|
835
835
|
|
|
@@ -837,11 +837,11 @@ class MySql(pulumi.CustomResource):
|
|
|
837
837
|
import pulumi
|
|
838
838
|
import pulumi_aiven as aiven
|
|
839
839
|
|
|
840
|
-
|
|
841
|
-
project=
|
|
840
|
+
example_mysql = aiven.MySql("example_mysql",
|
|
841
|
+
project=example_project["project"],
|
|
842
842
|
cloud_name="google-europe-west1",
|
|
843
843
|
plan="business-4",
|
|
844
|
-
service_name="
|
|
844
|
+
service_name="example-mysql",
|
|
845
845
|
maintenance_window_dow="monday",
|
|
846
846
|
maintenance_window_time="10:00:00",
|
|
847
847
|
mysql_user_config={
|
|
@@ -859,7 +859,7 @@ class MySql(pulumi.CustomResource):
|
|
|
859
859
|
## Import
|
|
860
860
|
|
|
861
861
|
```sh
|
|
862
|
-
$ pulumi import aiven:index/mySql:MySql
|
|
862
|
+
$ pulumi import aiven:index/mySql:MySql example_mysql PROJECT/SERVICE_NAME
|
|
863
863
|
```
|
|
864
864
|
|
|
865
865
|
:param str resource_name: The name of the resource.
|
|
@@ -993,7 +993,7 @@ class MySql(pulumi.CustomResource):
|
|
|
993
993
|
:param pulumi.Input[str] disk_space_used: Disk space that service is currently using
|
|
994
994
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
995
995
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
996
|
-
:param pulumi.Input[Union['MySqlMysqlArgs', 'MySqlMysqlArgsDict']] mysql: MySQL
|
|
996
|
+
:param pulumi.Input[Union['MySqlMysqlArgs', 'MySqlMysqlArgsDict']] mysql: MySQL server-provided values.
|
|
997
997
|
:param pulumi.Input[Union['MySqlMysqlUserConfigArgs', 'MySqlMysqlUserConfigArgsDict']] mysql_user_config: Mysql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
998
998
|
: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).
|
|
999
999
|
: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.
|
|
@@ -1132,7 +1132,7 @@ class MySql(pulumi.CustomResource):
|
|
|
1132
1132
|
@pulumi.getter
|
|
1133
1133
|
def mysql(self) -> pulumi.Output['outputs.MySqlMysql']:
|
|
1134
1134
|
"""
|
|
1135
|
-
MySQL
|
|
1135
|
+
MySQL server-provided values.
|
|
1136
1136
|
"""
|
|
1137
1137
|
return pulumi.get(self, "mysql")
|
|
1138
1138
|
|