pulumi-aiven 6.26.0a1728364446__py3-none-any.whl → 6.26.0a1728566627__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/__init__.py +1 -0
- pulumi_aiven/_inputs.py +202 -42
- pulumi_aiven/account_team_project.py +7 -7
- pulumi_aiven/cassandra.py +7 -2
- pulumi_aiven/clickhouse.py +6 -1
- pulumi_aiven/dragonfly.py +7 -2
- pulumi_aiven/flink.py +7 -2
- pulumi_aiven/get_account_team_project.py +1 -1
- pulumi_aiven/get_external_identity.py +146 -0
- pulumi_aiven/get_project_user.py +1 -1
- pulumi_aiven/get_service_integration.py +17 -4
- pulumi_aiven/get_thanos.py +0 -6
- pulumi_aiven/grafana.py +7 -2
- pulumi_aiven/influx_db.py +7 -2
- pulumi_aiven/kafka.py +7 -2
- pulumi_aiven/kafka_connect.py +7 -2
- pulumi_aiven/kafka_mirror_maker.py +7 -2
- pulumi_aiven/m3_aggregator.py +7 -2
- pulumi_aiven/m3_db.py +7 -2
- pulumi_aiven/my_sql.py +7 -2
- pulumi_aiven/open_search.py +7 -2
- pulumi_aiven/organization_group_project.py +7 -7
- pulumi_aiven/outputs.py +334 -62
- pulumi_aiven/pg.py +7 -2
- pulumi_aiven/project_user.py +7 -7
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/redis.py +7 -2
- pulumi_aiven/service_integration.py +54 -7
- pulumi_aiven/static_ip.py +2 -2
- pulumi_aiven/thanos.py +7 -8
- pulumi_aiven/valkey.py +7 -2
- {pulumi_aiven-6.26.0a1728364446.dist-info → pulumi_aiven-6.26.0a1728566627.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.26.0a1728364446.dist-info → pulumi_aiven-6.26.0a1728566627.dist-info}/RECORD +35 -34
- {pulumi_aiven-6.26.0a1728364446.dist-info → pulumi_aiven-6.26.0a1728566627.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.26.0a1728364446.dist-info → pulumi_aiven-6.26.0a1728566627.dist-info}/top_level.txt +0 -0
pulumi_aiven/m3_aggregator.py
CHANGED
|
@@ -357,6 +357,9 @@ class _M3AggregatorState:
|
|
|
357
357
|
pulumi.set(__self__, "disk_space_default", disk_space_default)
|
|
358
358
|
if disk_space_step is not None:
|
|
359
359
|
pulumi.set(__self__, "disk_space_step", disk_space_step)
|
|
360
|
+
if disk_space_used is not None:
|
|
361
|
+
warnings.warn("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""", DeprecationWarning)
|
|
362
|
+
pulumi.log.warn("""disk_space_used is deprecated: This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
360
363
|
if disk_space_used is not None:
|
|
361
364
|
pulumi.set(__self__, "disk_space_used", disk_space_used)
|
|
362
365
|
if m3aggregator is not None:
|
|
@@ -487,6 +490,7 @@ class _M3AggregatorState:
|
|
|
487
490
|
|
|
488
491
|
@property
|
|
489
492
|
@pulumi.getter(name="diskSpaceUsed")
|
|
493
|
+
@_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
490
494
|
def disk_space_used(self) -> Optional[pulumi.Input[str]]:
|
|
491
495
|
"""
|
|
492
496
|
Disk space that service is currently using
|
|
@@ -1082,6 +1086,7 @@ class M3Aggregator(pulumi.CustomResource):
|
|
|
1082
1086
|
|
|
1083
1087
|
@property
|
|
1084
1088
|
@pulumi.getter(name="diskSpaceUsed")
|
|
1089
|
+
@_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
1085
1090
|
def disk_space_used(self) -> pulumi.Output[str]:
|
|
1086
1091
|
"""
|
|
1087
1092
|
Disk space that service is currently using
|
|
@@ -1138,7 +1143,7 @@ class M3Aggregator(pulumi.CustomResource):
|
|
|
1138
1143
|
|
|
1139
1144
|
@property
|
|
1140
1145
|
@pulumi.getter(name="projectVpcId")
|
|
1141
|
-
def project_vpc_id(self) -> pulumi.Output[
|
|
1146
|
+
def project_vpc_id(self) -> pulumi.Output[str]:
|
|
1142
1147
|
"""
|
|
1143
1148
|
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.
|
|
1144
1149
|
"""
|
|
@@ -1154,7 +1159,7 @@ class M3Aggregator(pulumi.CustomResource):
|
|
|
1154
1159
|
|
|
1155
1160
|
@property
|
|
1156
1161
|
@pulumi.getter(name="serviceIntegrations")
|
|
1157
|
-
def service_integrations(self) -> pulumi.Output[
|
|
1162
|
+
def service_integrations(self) -> pulumi.Output[Sequence['outputs.M3AggregatorServiceIntegration']]:
|
|
1158
1163
|
"""
|
|
1159
1164
|
Service integrations to specify when creating a service. Not applied after initial service creation
|
|
1160
1165
|
"""
|
pulumi_aiven/m3_db.py
CHANGED
|
@@ -357,6 +357,9 @@ class _M3DbState:
|
|
|
357
357
|
pulumi.set(__self__, "disk_space_default", disk_space_default)
|
|
358
358
|
if disk_space_step is not None:
|
|
359
359
|
pulumi.set(__self__, "disk_space_step", disk_space_step)
|
|
360
|
+
if disk_space_used is not None:
|
|
361
|
+
warnings.warn("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""", DeprecationWarning)
|
|
362
|
+
pulumi.log.warn("""disk_space_used is deprecated: This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
360
363
|
if disk_space_used is not None:
|
|
361
364
|
pulumi.set(__self__, "disk_space_used", disk_space_used)
|
|
362
365
|
if m3db is not None:
|
|
@@ -487,6 +490,7 @@ class _M3DbState:
|
|
|
487
490
|
|
|
488
491
|
@property
|
|
489
492
|
@pulumi.getter(name="diskSpaceUsed")
|
|
493
|
+
@_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
490
494
|
def disk_space_used(self) -> Optional[pulumi.Input[str]]:
|
|
491
495
|
"""
|
|
492
496
|
Disk space that service is currently using
|
|
@@ -1090,6 +1094,7 @@ class M3Db(pulumi.CustomResource):
|
|
|
1090
1094
|
|
|
1091
1095
|
@property
|
|
1092
1096
|
@pulumi.getter(name="diskSpaceUsed")
|
|
1097
|
+
@_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
1093
1098
|
def disk_space_used(self) -> pulumi.Output[str]:
|
|
1094
1099
|
"""
|
|
1095
1100
|
Disk space that service is currently using
|
|
@@ -1146,7 +1151,7 @@ class M3Db(pulumi.CustomResource):
|
|
|
1146
1151
|
|
|
1147
1152
|
@property
|
|
1148
1153
|
@pulumi.getter(name="projectVpcId")
|
|
1149
|
-
def project_vpc_id(self) -> pulumi.Output[
|
|
1154
|
+
def project_vpc_id(self) -> pulumi.Output[str]:
|
|
1150
1155
|
"""
|
|
1151
1156
|
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.
|
|
1152
1157
|
"""
|
|
@@ -1162,7 +1167,7 @@ class M3Db(pulumi.CustomResource):
|
|
|
1162
1167
|
|
|
1163
1168
|
@property
|
|
1164
1169
|
@pulumi.getter(name="serviceIntegrations")
|
|
1165
|
-
def service_integrations(self) -> pulumi.Output[
|
|
1170
|
+
def service_integrations(self) -> pulumi.Output[Sequence['outputs.M3DbServiceIntegration']]:
|
|
1166
1171
|
"""
|
|
1167
1172
|
Service integrations to specify when creating a service. Not applied after initial service creation
|
|
1168
1173
|
"""
|
pulumi_aiven/my_sql.py
CHANGED
|
@@ -357,6 +357,9 @@ class _MySqlState:
|
|
|
357
357
|
pulumi.set(__self__, "disk_space_default", disk_space_default)
|
|
358
358
|
if disk_space_step is not None:
|
|
359
359
|
pulumi.set(__self__, "disk_space_step", disk_space_step)
|
|
360
|
+
if disk_space_used is not None:
|
|
361
|
+
warnings.warn("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""", DeprecationWarning)
|
|
362
|
+
pulumi.log.warn("""disk_space_used is deprecated: This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
360
363
|
if disk_space_used is not None:
|
|
361
364
|
pulumi.set(__self__, "disk_space_used", disk_space_used)
|
|
362
365
|
if maintenance_window_dow is not None:
|
|
@@ -487,6 +490,7 @@ class _MySqlState:
|
|
|
487
490
|
|
|
488
491
|
@property
|
|
489
492
|
@pulumi.getter(name="diskSpaceUsed")
|
|
493
|
+
@_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
490
494
|
def disk_space_used(self) -> Optional[pulumi.Input[str]]:
|
|
491
495
|
"""
|
|
492
496
|
Disk space that service is currently using
|
|
@@ -1096,6 +1100,7 @@ class MySql(pulumi.CustomResource):
|
|
|
1096
1100
|
|
|
1097
1101
|
@property
|
|
1098
1102
|
@pulumi.getter(name="diskSpaceUsed")
|
|
1103
|
+
@_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
1099
1104
|
def disk_space_used(self) -> pulumi.Output[str]:
|
|
1100
1105
|
"""
|
|
1101
1106
|
Disk space that service is currently using
|
|
@@ -1152,7 +1157,7 @@ class MySql(pulumi.CustomResource):
|
|
|
1152
1157
|
|
|
1153
1158
|
@property
|
|
1154
1159
|
@pulumi.getter(name="projectVpcId")
|
|
1155
|
-
def project_vpc_id(self) -> pulumi.Output[
|
|
1160
|
+
def project_vpc_id(self) -> pulumi.Output[str]:
|
|
1156
1161
|
"""
|
|
1157
1162
|
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.
|
|
1158
1163
|
"""
|
|
@@ -1168,7 +1173,7 @@ class MySql(pulumi.CustomResource):
|
|
|
1168
1173
|
|
|
1169
1174
|
@property
|
|
1170
1175
|
@pulumi.getter(name="serviceIntegrations")
|
|
1171
|
-
def service_integrations(self) -> pulumi.Output[
|
|
1176
|
+
def service_integrations(self) -> pulumi.Output[Sequence['outputs.MySqlServiceIntegration']]:
|
|
1172
1177
|
"""
|
|
1173
1178
|
Service integrations to specify when creating a service. Not applied after initial service creation
|
|
1174
1179
|
"""
|
pulumi_aiven/open_search.py
CHANGED
|
@@ -357,6 +357,9 @@ class _OpenSearchState:
|
|
|
357
357
|
pulumi.set(__self__, "disk_space_default", disk_space_default)
|
|
358
358
|
if disk_space_step is not None:
|
|
359
359
|
pulumi.set(__self__, "disk_space_step", disk_space_step)
|
|
360
|
+
if disk_space_used is not None:
|
|
361
|
+
warnings.warn("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""", DeprecationWarning)
|
|
362
|
+
pulumi.log.warn("""disk_space_used is deprecated: This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
360
363
|
if disk_space_used is not None:
|
|
361
364
|
pulumi.set(__self__, "disk_space_used", disk_space_used)
|
|
362
365
|
if maintenance_window_dow is not None:
|
|
@@ -487,6 +490,7 @@ class _OpenSearchState:
|
|
|
487
490
|
|
|
488
491
|
@property
|
|
489
492
|
@pulumi.getter(name="diskSpaceUsed")
|
|
493
|
+
@_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
490
494
|
def disk_space_used(self) -> Optional[pulumi.Input[str]]:
|
|
491
495
|
"""
|
|
492
496
|
Disk space that service is currently using
|
|
@@ -1098,6 +1102,7 @@ class OpenSearch(pulumi.CustomResource):
|
|
|
1098
1102
|
|
|
1099
1103
|
@property
|
|
1100
1104
|
@pulumi.getter(name="diskSpaceUsed")
|
|
1105
|
+
@_utilities.deprecated("""This will be removed in v5.0.0. Please use `additional_disk_space` to specify the space to be added to the default `disk_space` defined by the plan.""")
|
|
1101
1106
|
def disk_space_used(self) -> pulumi.Output[str]:
|
|
1102
1107
|
"""
|
|
1103
1108
|
Disk space that service is currently using
|
|
@@ -1154,7 +1159,7 @@ class OpenSearch(pulumi.CustomResource):
|
|
|
1154
1159
|
|
|
1155
1160
|
@property
|
|
1156
1161
|
@pulumi.getter(name="projectVpcId")
|
|
1157
|
-
def project_vpc_id(self) -> pulumi.Output[
|
|
1162
|
+
def project_vpc_id(self) -> pulumi.Output[str]:
|
|
1158
1163
|
"""
|
|
1159
1164
|
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.
|
|
1160
1165
|
"""
|
|
@@ -1170,7 +1175,7 @@ class OpenSearch(pulumi.CustomResource):
|
|
|
1170
1175
|
|
|
1171
1176
|
@property
|
|
1172
1177
|
@pulumi.getter(name="serviceIntegrations")
|
|
1173
|
-
def service_integrations(self) -> pulumi.Output[
|
|
1178
|
+
def service_integrations(self) -> pulumi.Output[Sequence['outputs.OpenSearchServiceIntegration']]:
|
|
1174
1179
|
"""
|
|
1175
1180
|
Service integrations to specify when creating a service. Not applied after initial service creation
|
|
1176
1181
|
"""
|
|
@@ -24,7 +24,7 @@ class OrganizationGroupProjectArgs:
|
|
|
24
24
|
The set of arguments for constructing a OrganizationGroupProject resource.
|
|
25
25
|
:param pulumi.Input[str] group_id: The ID of the user group.
|
|
26
26
|
:param pulumi.Input[str] project: The project that the users in the group are members of.
|
|
27
|
-
:param pulumi.Input[str] role: [Project-level role](https://aiven.io/docs/platform/reference/project-member-privileges) assigned to all users in the group. The possible values are `admin`, `operator`, `developer` and `
|
|
27
|
+
:param pulumi.Input[str] role: [Project-level role](https://aiven.io/docs/platform/reference/project-member-privileges) assigned to all users in the group. The possible values are `admin`, `operator`, `developer`, `read_only` and `project:permissions:read`.
|
|
28
28
|
"""
|
|
29
29
|
pulumi.set(__self__, "group_id", group_id)
|
|
30
30
|
pulumi.set(__self__, "project", project)
|
|
@@ -60,7 +60,7 @@ class OrganizationGroupProjectArgs:
|
|
|
60
60
|
@pulumi.getter
|
|
61
61
|
def role(self) -> pulumi.Input[str]:
|
|
62
62
|
"""
|
|
63
|
-
[Project-level role](https://aiven.io/docs/platform/reference/project-member-privileges) assigned to all users in the group. The possible values are `admin`, `operator`, `developer` and `
|
|
63
|
+
[Project-level role](https://aiven.io/docs/platform/reference/project-member-privileges) assigned to all users in the group. The possible values are `admin`, `operator`, `developer`, `read_only` and `project:permissions:read`.
|
|
64
64
|
"""
|
|
65
65
|
return pulumi.get(self, "role")
|
|
66
66
|
|
|
@@ -89,7 +89,7 @@ class _OrganizationGroupProjectState:
|
|
|
89
89
|
Input properties used for looking up and filtering OrganizationGroupProject resources.
|
|
90
90
|
:param pulumi.Input[str] group_id: The ID of the user group.
|
|
91
91
|
:param pulumi.Input[str] project: The project that the users in the group are members of.
|
|
92
|
-
:param pulumi.Input[str] role: [Project-level role](https://aiven.io/docs/platform/reference/project-member-privileges) assigned to all users in the group. The possible values are `admin`, `operator`, `developer` and `
|
|
92
|
+
:param pulumi.Input[str] role: [Project-level role](https://aiven.io/docs/platform/reference/project-member-privileges) assigned to all users in the group. The possible values are `admin`, `operator`, `developer`, `read_only` and `project:permissions:read`.
|
|
93
93
|
"""
|
|
94
94
|
if group_id is not None:
|
|
95
95
|
pulumi.set(__self__, "group_id", group_id)
|
|
@@ -128,7 +128,7 @@ class _OrganizationGroupProjectState:
|
|
|
128
128
|
@pulumi.getter
|
|
129
129
|
def role(self) -> Optional[pulumi.Input[str]]:
|
|
130
130
|
"""
|
|
131
|
-
[Project-level role](https://aiven.io/docs/platform/reference/project-member-privileges) assigned to all users in the group. The possible values are `admin`, `operator`, `developer` and `
|
|
131
|
+
[Project-level role](https://aiven.io/docs/platform/reference/project-member-privileges) assigned to all users in the group. The possible values are `admin`, `operator`, `developer`, `read_only` and `project:permissions:read`.
|
|
132
132
|
"""
|
|
133
133
|
return pulumi.get(self, "role")
|
|
134
134
|
|
|
@@ -192,7 +192,7 @@ class OrganizationGroupProject(pulumi.CustomResource):
|
|
|
192
192
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
193
193
|
:param pulumi.Input[str] group_id: The ID of the user group.
|
|
194
194
|
:param pulumi.Input[str] project: The project that the users in the group are members of.
|
|
195
|
-
:param pulumi.Input[str] role: [Project-level role](https://aiven.io/docs/platform/reference/project-member-privileges) assigned to all users in the group. The possible values are `admin`, `operator`, `developer` and `
|
|
195
|
+
:param pulumi.Input[str] role: [Project-level role](https://aiven.io/docs/platform/reference/project-member-privileges) assigned to all users in the group. The possible values are `admin`, `operator`, `developer`, `read_only` and `project:permissions:read`.
|
|
196
196
|
"""
|
|
197
197
|
...
|
|
198
198
|
@overload
|
|
@@ -293,7 +293,7 @@ class OrganizationGroupProject(pulumi.CustomResource):
|
|
|
293
293
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
294
294
|
:param pulumi.Input[str] group_id: The ID of the user group.
|
|
295
295
|
:param pulumi.Input[str] project: The project that the users in the group are members of.
|
|
296
|
-
:param pulumi.Input[str] role: [Project-level role](https://aiven.io/docs/platform/reference/project-member-privileges) assigned to all users in the group. The possible values are `admin`, `operator`, `developer` and `
|
|
296
|
+
:param pulumi.Input[str] role: [Project-level role](https://aiven.io/docs/platform/reference/project-member-privileges) assigned to all users in the group. The possible values are `admin`, `operator`, `developer`, `read_only` and `project:permissions:read`.
|
|
297
297
|
"""
|
|
298
298
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
299
299
|
|
|
@@ -325,7 +325,7 @@ class OrganizationGroupProject(pulumi.CustomResource):
|
|
|
325
325
|
@pulumi.getter
|
|
326
326
|
def role(self) -> pulumi.Output[str]:
|
|
327
327
|
"""
|
|
328
|
-
[Project-level role](https://aiven.io/docs/platform/reference/project-member-privileges) assigned to all users in the group. The possible values are `admin`, `operator`, `developer` and `
|
|
328
|
+
[Project-level role](https://aiven.io/docs/platform/reference/project-member-privileges) assigned to all users in the group. The possible values are `admin`, `operator`, `developer`, `read_only` and `project:permissions:read`.
|
|
329
329
|
"""
|
|
330
330
|
return pulumi.get(self, "role")
|
|
331
331
|
|