pulumi-aiven 6.26.0__py3-none-any.whl → 6.26.0a1727869711__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 +0 -1
- pulumi_aiven/_inputs.py +42 -202
- pulumi_aiven/account_team_project.py +7 -7
- pulumi_aiven/cassandra.py +2 -7
- pulumi_aiven/clickhouse.py +1 -6
- pulumi_aiven/dragonfly.py +2 -7
- pulumi_aiven/flink.py +2 -7
- pulumi_aiven/get_account_team_project.py +1 -1
- pulumi_aiven/get_project_user.py +1 -1
- pulumi_aiven/get_service_integration.py +4 -17
- pulumi_aiven/get_thanos.py +6 -0
- pulumi_aiven/grafana.py +2 -7
- pulumi_aiven/influx_db.py +2 -7
- pulumi_aiven/kafka.py +2 -7
- pulumi_aiven/kafka_connect.py +2 -7
- pulumi_aiven/kafka_mirror_maker.py +2 -7
- pulumi_aiven/m3_aggregator.py +2 -7
- pulumi_aiven/m3_db.py +2 -7
- pulumi_aiven/my_sql.py +2 -7
- pulumi_aiven/open_search.py +2 -7
- pulumi_aiven/organization_group_project.py +7 -7
- pulumi_aiven/outputs.py +62 -334
- pulumi_aiven/pg.py +2 -7
- pulumi_aiven/project_user.py +7 -7
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/redis.py +2 -7
- pulumi_aiven/service_integration.py +7 -54
- pulumi_aiven/static_ip.py +2 -2
- pulumi_aiven/thanos.py +8 -7
- pulumi_aiven/valkey.py +2 -7
- {pulumi_aiven-6.26.0.dist-info → pulumi_aiven-6.26.0a1727869711.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.26.0.dist-info → pulumi_aiven-6.26.0a1727869711.dist-info}/RECORD +34 -35
- pulumi_aiven/get_external_identity.py +0 -146
- {pulumi_aiven-6.26.0.dist-info → pulumi_aiven-6.26.0a1727869711.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.26.0.dist-info → pulumi_aiven-6.26.0a1727869711.dist-info}/top_level.txt +0 -0
pulumi_aiven/open_search.py
CHANGED
|
@@ -357,9 +357,6 @@ 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.""")
|
|
363
360
|
if disk_space_used is not None:
|
|
364
361
|
pulumi.set(__self__, "disk_space_used", disk_space_used)
|
|
365
362
|
if maintenance_window_dow is not None:
|
|
@@ -490,7 +487,6 @@ class _OpenSearchState:
|
|
|
490
487
|
|
|
491
488
|
@property
|
|
492
489
|
@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.""")
|
|
494
490
|
def disk_space_used(self) -> Optional[pulumi.Input[str]]:
|
|
495
491
|
"""
|
|
496
492
|
Disk space that service is currently using
|
|
@@ -1102,7 +1098,6 @@ class OpenSearch(pulumi.CustomResource):
|
|
|
1102
1098
|
|
|
1103
1099
|
@property
|
|
1104
1100
|
@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.""")
|
|
1106
1101
|
def disk_space_used(self) -> pulumi.Output[str]:
|
|
1107
1102
|
"""
|
|
1108
1103
|
Disk space that service is currently using
|
|
@@ -1159,7 +1154,7 @@ class OpenSearch(pulumi.CustomResource):
|
|
|
1159
1154
|
|
|
1160
1155
|
@property
|
|
1161
1156
|
@pulumi.getter(name="projectVpcId")
|
|
1162
|
-
def project_vpc_id(self) -> pulumi.Output[str]:
|
|
1157
|
+
def project_vpc_id(self) -> pulumi.Output[Optional[str]]:
|
|
1163
1158
|
"""
|
|
1164
1159
|
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.
|
|
1165
1160
|
"""
|
|
@@ -1175,7 +1170,7 @@ class OpenSearch(pulumi.CustomResource):
|
|
|
1175
1170
|
|
|
1176
1171
|
@property
|
|
1177
1172
|
@pulumi.getter(name="serviceIntegrations")
|
|
1178
|
-
def service_integrations(self) -> pulumi.Output[Sequence['outputs.OpenSearchServiceIntegration']]:
|
|
1173
|
+
def service_integrations(self) -> pulumi.Output[Optional[Sequence['outputs.OpenSearchServiceIntegration']]]:
|
|
1179
1174
|
"""
|
|
1180
1175
|
Service integrations to specify when creating a service. Not applied after initial service creation
|
|
1181
1176
|
"""
|
|
@@ -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
|
|
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 `read_only`.
|
|
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
|
|
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 `read_only`.
|
|
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
|
|
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 `read_only`.
|
|
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
|
|
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 `read_only`.
|
|
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
|
|
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 `read_only`.
|
|
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
|
|
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 `read_only`.
|
|
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
|
|
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 `read_only`.
|
|
329
329
|
"""
|
|
330
330
|
return pulumi.get(self, "role")
|
|
331
331
|
|