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/clickhouse.py
CHANGED
|
@@ -361,6 +361,9 @@ class _ClickhouseState:
|
|
|
361
361
|
pulumi.set(__self__, "disk_space_default", disk_space_default)
|
|
362
362
|
if disk_space_step is not None:
|
|
363
363
|
pulumi.set(__self__, "disk_space_step", disk_space_step)
|
|
364
|
+
if disk_space_used is not None:
|
|
365
|
+
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)
|
|
366
|
+
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.""")
|
|
364
367
|
if disk_space_used is not None:
|
|
365
368
|
pulumi.set(__self__, "disk_space_used", disk_space_used)
|
|
366
369
|
if maintenance_window_dow is not None:
|
|
@@ -511,6 +514,7 @@ class _ClickhouseState:
|
|
|
511
514
|
|
|
512
515
|
@property
|
|
513
516
|
@pulumi.getter(name="diskSpaceUsed")
|
|
517
|
+
@_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.""")
|
|
514
518
|
def disk_space_used(self) -> Optional[pulumi.Input[str]]:
|
|
515
519
|
"""
|
|
516
520
|
Disk space that service is currently using
|
|
@@ -1092,6 +1096,7 @@ class Clickhouse(pulumi.CustomResource):
|
|
|
1092
1096
|
|
|
1093
1097
|
@property
|
|
1094
1098
|
@pulumi.getter(name="diskSpaceUsed")
|
|
1099
|
+
@_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.""")
|
|
1095
1100
|
def disk_space_used(self) -> pulumi.Output[str]:
|
|
1096
1101
|
"""
|
|
1097
1102
|
Disk space that service is currently using
|
|
@@ -1132,7 +1137,7 @@ class Clickhouse(pulumi.CustomResource):
|
|
|
1132
1137
|
|
|
1133
1138
|
@property
|
|
1134
1139
|
@pulumi.getter(name="projectVpcId")
|
|
1135
|
-
def project_vpc_id(self) -> pulumi.Output[
|
|
1140
|
+
def project_vpc_id(self) -> pulumi.Output[str]:
|
|
1136
1141
|
"""
|
|
1137
1142
|
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.
|
|
1138
1143
|
"""
|
pulumi_aiven/dragonfly.py
CHANGED
|
@@ -357,6 +357,9 @@ class _DragonflyState:
|
|
|
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 dragonfly is not None:
|
|
@@ -487,6 +490,7 @@ class _DragonflyState:
|
|
|
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
|
|
@@ -1078,6 +1082,7 @@ class Dragonfly(pulumi.CustomResource):
|
|
|
1078
1082
|
|
|
1079
1083
|
@property
|
|
1080
1084
|
@pulumi.getter(name="diskSpaceUsed")
|
|
1085
|
+
@_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.""")
|
|
1081
1086
|
def disk_space_used(self) -> pulumi.Output[str]:
|
|
1082
1087
|
"""
|
|
1083
1088
|
Disk space that service is currently using
|
|
@@ -1134,7 +1139,7 @@ class Dragonfly(pulumi.CustomResource):
|
|
|
1134
1139
|
|
|
1135
1140
|
@property
|
|
1136
1141
|
@pulumi.getter(name="projectVpcId")
|
|
1137
|
-
def project_vpc_id(self) -> pulumi.Output[
|
|
1142
|
+
def project_vpc_id(self) -> pulumi.Output[str]:
|
|
1138
1143
|
"""
|
|
1139
1144
|
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.
|
|
1140
1145
|
"""
|
|
@@ -1150,7 +1155,7 @@ class Dragonfly(pulumi.CustomResource):
|
|
|
1150
1155
|
|
|
1151
1156
|
@property
|
|
1152
1157
|
@pulumi.getter(name="serviceIntegrations")
|
|
1153
|
-
def service_integrations(self) -> pulumi.Output[
|
|
1158
|
+
def service_integrations(self) -> pulumi.Output[Sequence['outputs.DragonflyServiceIntegration']]:
|
|
1154
1159
|
"""
|
|
1155
1160
|
Service integrations to specify when creating a service. Not applied after initial service creation
|
|
1156
1161
|
"""
|
pulumi_aiven/flink.py
CHANGED
|
@@ -357,6 +357,9 @@ class _FlinkState:
|
|
|
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 flink is not None:
|
|
@@ -487,6 +490,7 @@ class _FlinkState:
|
|
|
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 Flink(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 Flink(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 Flink(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.FlinkServiceIntegration']]:
|
|
1158
1163
|
"""
|
|
1159
1164
|
Service integrations to specify when creating a service. Not applied after initial service creation
|
|
1160
1165
|
"""
|
|
@@ -74,7 +74,7 @@ class GetAccountTeamProjectResult:
|
|
|
74
74
|
@pulumi.getter(name="teamType")
|
|
75
75
|
def team_type(self) -> str:
|
|
76
76
|
"""
|
|
77
|
-
The Account team project type. The possible values are `admin`, `operator`, `developer` and `
|
|
77
|
+
The Account team project type. The possible values are `admin`, `operator`, `developer`, `read_only` and `project:permissions:read`.
|
|
78
78
|
"""
|
|
79
79
|
return pulumi.get(self, "team_type")
|
|
80
80
|
|
|
@@ -0,0 +1,146 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by the Pulumi Terraform Bridge (tfgen) Tool. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import pulumi
|
|
8
|
+
import pulumi.runtime
|
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
10
|
+
from . import _utilities
|
|
11
|
+
|
|
12
|
+
__all__ = [
|
|
13
|
+
'GetExternalIdentityResult',
|
|
14
|
+
'AwaitableGetExternalIdentityResult',
|
|
15
|
+
'get_external_identity',
|
|
16
|
+
'get_external_identity_output',
|
|
17
|
+
]
|
|
18
|
+
|
|
19
|
+
@pulumi.output_type
|
|
20
|
+
class GetExternalIdentityResult:
|
|
21
|
+
"""
|
|
22
|
+
A collection of values returned by getExternalIdentity.
|
|
23
|
+
"""
|
|
24
|
+
def __init__(__self__, external_service_name=None, external_user_id=None, id=None, internal_user_id=None, organization_id=None):
|
|
25
|
+
if external_service_name and not isinstance(external_service_name, str):
|
|
26
|
+
raise TypeError("Expected argument 'external_service_name' to be a str")
|
|
27
|
+
pulumi.set(__self__, "external_service_name", external_service_name)
|
|
28
|
+
if external_user_id and not isinstance(external_user_id, str):
|
|
29
|
+
raise TypeError("Expected argument 'external_user_id' to be a str")
|
|
30
|
+
pulumi.set(__self__, "external_user_id", external_user_id)
|
|
31
|
+
if id and not isinstance(id, str):
|
|
32
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
33
|
+
pulumi.set(__self__, "id", id)
|
|
34
|
+
if internal_user_id and not isinstance(internal_user_id, str):
|
|
35
|
+
raise TypeError("Expected argument 'internal_user_id' to be a str")
|
|
36
|
+
pulumi.set(__self__, "internal_user_id", internal_user_id)
|
|
37
|
+
if organization_id and not isinstance(organization_id, str):
|
|
38
|
+
raise TypeError("Expected argument 'organization_id' to be a str")
|
|
39
|
+
pulumi.set(__self__, "organization_id", organization_id)
|
|
40
|
+
|
|
41
|
+
@property
|
|
42
|
+
@pulumi.getter(name="externalServiceName")
|
|
43
|
+
def external_service_name(self) -> str:
|
|
44
|
+
"""
|
|
45
|
+
The name of the external service. The possible values are `github`.
|
|
46
|
+
"""
|
|
47
|
+
return pulumi.get(self, "external_service_name")
|
|
48
|
+
|
|
49
|
+
@property
|
|
50
|
+
@pulumi.getter(name="externalUserId")
|
|
51
|
+
def external_user_id(self) -> str:
|
|
52
|
+
"""
|
|
53
|
+
The user's ID on the external service.
|
|
54
|
+
"""
|
|
55
|
+
return pulumi.get(self, "external_user_id")
|
|
56
|
+
|
|
57
|
+
@property
|
|
58
|
+
@pulumi.getter
|
|
59
|
+
def id(self) -> str:
|
|
60
|
+
"""
|
|
61
|
+
The provider-assigned unique ID for this managed resource.
|
|
62
|
+
"""
|
|
63
|
+
return pulumi.get(self, "id")
|
|
64
|
+
|
|
65
|
+
@property
|
|
66
|
+
@pulumi.getter(name="internalUserId")
|
|
67
|
+
def internal_user_id(self) -> str:
|
|
68
|
+
"""
|
|
69
|
+
The Aiven user ID.
|
|
70
|
+
"""
|
|
71
|
+
return pulumi.get(self, "internal_user_id")
|
|
72
|
+
|
|
73
|
+
@property
|
|
74
|
+
@pulumi.getter(name="organizationId")
|
|
75
|
+
def organization_id(self) -> str:
|
|
76
|
+
"""
|
|
77
|
+
The ID of the Aiven organization that the user is part of.
|
|
78
|
+
"""
|
|
79
|
+
return pulumi.get(self, "organization_id")
|
|
80
|
+
|
|
81
|
+
|
|
82
|
+
class AwaitableGetExternalIdentityResult(GetExternalIdentityResult):
|
|
83
|
+
# pylint: disable=using-constant-test
|
|
84
|
+
def __await__(self):
|
|
85
|
+
if False:
|
|
86
|
+
yield self
|
|
87
|
+
return GetExternalIdentityResult(
|
|
88
|
+
external_service_name=self.external_service_name,
|
|
89
|
+
external_user_id=self.external_user_id,
|
|
90
|
+
id=self.id,
|
|
91
|
+
internal_user_id=self.internal_user_id,
|
|
92
|
+
organization_id=self.organization_id)
|
|
93
|
+
|
|
94
|
+
|
|
95
|
+
def get_external_identity(external_service_name: Optional[str] = None,
|
|
96
|
+
external_user_id: Optional[str] = None,
|
|
97
|
+
internal_user_id: Optional[str] = None,
|
|
98
|
+
organization_id: Optional[str] = None,
|
|
99
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetExternalIdentityResult:
|
|
100
|
+
"""
|
|
101
|
+
Maps an external service user to an Aiven user.
|
|
102
|
+
|
|
103
|
+
**This resource is in the beta stage and may change without notice.** Set
|
|
104
|
+
the `PROVIDER_AIVEN_ENABLE_BETA` environment variable to use the resource.
|
|
105
|
+
|
|
106
|
+
|
|
107
|
+
:param str external_service_name: The name of the external service. The possible values are `github`.
|
|
108
|
+
:param str external_user_id: The user's ID on the external service.
|
|
109
|
+
:param str internal_user_id: The Aiven user ID.
|
|
110
|
+
:param str organization_id: The ID of the Aiven organization that the user is part of.
|
|
111
|
+
"""
|
|
112
|
+
__args__ = dict()
|
|
113
|
+
__args__['externalServiceName'] = external_service_name
|
|
114
|
+
__args__['externalUserId'] = external_user_id
|
|
115
|
+
__args__['internalUserId'] = internal_user_id
|
|
116
|
+
__args__['organizationId'] = organization_id
|
|
117
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
118
|
+
__ret__ = pulumi.runtime.invoke('aiven:index/getExternalIdentity:getExternalIdentity', __args__, opts=opts, typ=GetExternalIdentityResult).value
|
|
119
|
+
|
|
120
|
+
return AwaitableGetExternalIdentityResult(
|
|
121
|
+
external_service_name=pulumi.get(__ret__, 'external_service_name'),
|
|
122
|
+
external_user_id=pulumi.get(__ret__, 'external_user_id'),
|
|
123
|
+
id=pulumi.get(__ret__, 'id'),
|
|
124
|
+
internal_user_id=pulumi.get(__ret__, 'internal_user_id'),
|
|
125
|
+
organization_id=pulumi.get(__ret__, 'organization_id'))
|
|
126
|
+
|
|
127
|
+
|
|
128
|
+
@_utilities.lift_output_func(get_external_identity)
|
|
129
|
+
def get_external_identity_output(external_service_name: Optional[pulumi.Input[str]] = None,
|
|
130
|
+
external_user_id: Optional[pulumi.Input[str]] = None,
|
|
131
|
+
internal_user_id: Optional[pulumi.Input[str]] = None,
|
|
132
|
+
organization_id: Optional[pulumi.Input[str]] = None,
|
|
133
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetExternalIdentityResult]:
|
|
134
|
+
"""
|
|
135
|
+
Maps an external service user to an Aiven user.
|
|
136
|
+
|
|
137
|
+
**This resource is in the beta stage and may change without notice.** Set
|
|
138
|
+
the `PROVIDER_AIVEN_ENABLE_BETA` environment variable to use the resource.
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
:param str external_service_name: The name of the external service. The possible values are `github`.
|
|
142
|
+
:param str external_user_id: The user's ID on the external service.
|
|
143
|
+
:param str internal_user_id: The Aiven user ID.
|
|
144
|
+
:param str organization_id: The ID of the Aiven organization that the user is part of.
|
|
145
|
+
"""
|
|
146
|
+
...
|
pulumi_aiven/get_project_user.py
CHANGED
|
@@ -66,7 +66,7 @@ class GetProjectUserResult:
|
|
|
66
66
|
@pulumi.getter(name="memberType")
|
|
67
67
|
def member_type(self) -> str:
|
|
68
68
|
"""
|
|
69
|
-
Project membership type. The possible values are `admin`, `developer`, `operator` and `read_only`.
|
|
69
|
+
Project membership type. The possible values are `admin`, `developer`, `operator`, `project:permissions:read` and `read_only`.
|
|
70
70
|
"""
|
|
71
71
|
return pulumi.get(self, "member_type")
|
|
72
72
|
|
|
@@ -22,7 +22,7 @@ class GetServiceIntegrationResult:
|
|
|
22
22
|
"""
|
|
23
23
|
A collection of values returned by getServiceIntegration.
|
|
24
24
|
"""
|
|
25
|
-
def __init__(__self__, clickhouse_kafka_user_configs=None, clickhouse_postgresql_user_configs=None, datadog_user_configs=None, destination_endpoint_id=None, destination_service_name=None, external_aws_cloudwatch_logs_user_configs=None, external_aws_cloudwatch_metrics_user_configs=None, external_elasticsearch_logs_user_configs=None, external_opensearch_logs_user_configs=None, id=None, integration_id=None, integration_type=None, kafka_connect_user_configs=None, kafka_logs_user_configs=None, kafka_mirrormaker_user_configs=None, logs_user_configs=None, metrics_user_configs=None, project=None, prometheus_user_configs=None, source_endpoint_id=None, source_service_name=None):
|
|
25
|
+
def __init__(__self__, clickhouse_kafka_user_configs=None, clickhouse_postgresql_user_configs=None, datadog_user_configs=None, destination_endpoint_id=None, destination_service_name=None, external_aws_cloudwatch_logs_user_configs=None, external_aws_cloudwatch_metrics_user_configs=None, external_elasticsearch_logs_user_configs=None, external_opensearch_logs_user_configs=None, flink_external_postgresql_user_configs=None, id=None, integration_id=None, integration_type=None, kafka_connect_user_configs=None, kafka_logs_user_configs=None, kafka_mirrormaker_user_configs=None, logs_user_configs=None, metrics_user_configs=None, project=None, prometheus_user_configs=None, source_endpoint_id=None, source_service_name=None):
|
|
26
26
|
if clickhouse_kafka_user_configs and not isinstance(clickhouse_kafka_user_configs, list):
|
|
27
27
|
raise TypeError("Expected argument 'clickhouse_kafka_user_configs' to be a list")
|
|
28
28
|
pulumi.set(__self__, "clickhouse_kafka_user_configs", clickhouse_kafka_user_configs)
|
|
@@ -50,6 +50,9 @@ class GetServiceIntegrationResult:
|
|
|
50
50
|
if external_opensearch_logs_user_configs and not isinstance(external_opensearch_logs_user_configs, list):
|
|
51
51
|
raise TypeError("Expected argument 'external_opensearch_logs_user_configs' to be a list")
|
|
52
52
|
pulumi.set(__self__, "external_opensearch_logs_user_configs", external_opensearch_logs_user_configs)
|
|
53
|
+
if flink_external_postgresql_user_configs and not isinstance(flink_external_postgresql_user_configs, list):
|
|
54
|
+
raise TypeError("Expected argument 'flink_external_postgresql_user_configs' to be a list")
|
|
55
|
+
pulumi.set(__self__, "flink_external_postgresql_user_configs", flink_external_postgresql_user_configs)
|
|
53
56
|
if id and not isinstance(id, str):
|
|
54
57
|
raise TypeError("Expected argument 'id' to be a str")
|
|
55
58
|
pulumi.set(__self__, "id", id)
|
|
@@ -159,6 +162,14 @@ class GetServiceIntegrationResult:
|
|
|
159
162
|
"""
|
|
160
163
|
return pulumi.get(self, "external_opensearch_logs_user_configs")
|
|
161
164
|
|
|
165
|
+
@property
|
|
166
|
+
@pulumi.getter(name="flinkExternalPostgresqlUserConfigs")
|
|
167
|
+
def flink_external_postgresql_user_configs(self) -> Sequence['outputs.GetServiceIntegrationFlinkExternalPostgresqlUserConfigResult']:
|
|
168
|
+
"""
|
|
169
|
+
FlinkExternalPostgresql user configurable settings
|
|
170
|
+
"""
|
|
171
|
+
return pulumi.get(self, "flink_external_postgresql_user_configs")
|
|
172
|
+
|
|
162
173
|
@property
|
|
163
174
|
@pulumi.getter
|
|
164
175
|
def id(self) -> str:
|
|
@@ -179,7 +190,7 @@ class GetServiceIntegrationResult:
|
|
|
179
190
|
@pulumi.getter(name="integrationType")
|
|
180
191
|
def integration_type(self) -> str:
|
|
181
192
|
"""
|
|
182
|
-
Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_distributed_query`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosstore`, `vector`, `vmalert`
|
|
193
|
+
Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `disaster_recovery`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_distributed_query`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosruler`, `thanosstore`, `vector`, `vmalert`
|
|
183
194
|
"""
|
|
184
195
|
return pulumi.get(self, "integration_type")
|
|
185
196
|
|
|
@@ -271,6 +282,7 @@ class AwaitableGetServiceIntegrationResult(GetServiceIntegrationResult):
|
|
|
271
282
|
external_aws_cloudwatch_metrics_user_configs=self.external_aws_cloudwatch_metrics_user_configs,
|
|
272
283
|
external_elasticsearch_logs_user_configs=self.external_elasticsearch_logs_user_configs,
|
|
273
284
|
external_opensearch_logs_user_configs=self.external_opensearch_logs_user_configs,
|
|
285
|
+
flink_external_postgresql_user_configs=self.flink_external_postgresql_user_configs,
|
|
274
286
|
id=self.id,
|
|
275
287
|
integration_id=self.integration_id,
|
|
276
288
|
integration_type=self.integration_type,
|
|
@@ -307,7 +319,7 @@ def get_service_integration(destination_service_name: Optional[str] = None,
|
|
|
307
319
|
|
|
308
320
|
|
|
309
321
|
:param str destination_service_name: Destination service for the integration.
|
|
310
|
-
:param str integration_type: Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_distributed_query`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosstore`, `vector`, `vmalert`
|
|
322
|
+
:param str integration_type: Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `disaster_recovery`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_distributed_query`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosruler`, `thanosstore`, `vector`, `vmalert`
|
|
311
323
|
:param str project: Project the integration belongs to.
|
|
312
324
|
:param str source_service_name: Source service for the integration (if any)
|
|
313
325
|
"""
|
|
@@ -329,6 +341,7 @@ def get_service_integration(destination_service_name: Optional[str] = None,
|
|
|
329
341
|
external_aws_cloudwatch_metrics_user_configs=pulumi.get(__ret__, 'external_aws_cloudwatch_metrics_user_configs'),
|
|
330
342
|
external_elasticsearch_logs_user_configs=pulumi.get(__ret__, 'external_elasticsearch_logs_user_configs'),
|
|
331
343
|
external_opensearch_logs_user_configs=pulumi.get(__ret__, 'external_opensearch_logs_user_configs'),
|
|
344
|
+
flink_external_postgresql_user_configs=pulumi.get(__ret__, 'flink_external_postgresql_user_configs'),
|
|
332
345
|
id=pulumi.get(__ret__, 'id'),
|
|
333
346
|
integration_id=pulumi.get(__ret__, 'integration_id'),
|
|
334
347
|
integration_type=pulumi.get(__ret__, 'integration_type'),
|
|
@@ -366,7 +379,7 @@ def get_service_integration_output(destination_service_name: Optional[pulumi.Inp
|
|
|
366
379
|
|
|
367
380
|
|
|
368
381
|
:param str destination_service_name: Destination service for the integration.
|
|
369
|
-
:param str integration_type: Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_distributed_query`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosstore`, `vector`, `vmalert`
|
|
382
|
+
:param str integration_type: Type of the service integration. Possible values: `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `disaster_recovery`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_distributed_query`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosruler`, `thanosstore`, `vector`, `vmalert`
|
|
370
383
|
:param str project: Project the integration belongs to.
|
|
371
384
|
:param str source_service_name: Source service for the integration (if any)
|
|
372
385
|
"""
|
pulumi_aiven/get_thanos.py
CHANGED
|
@@ -387,9 +387,6 @@ def get_thanos(project: Optional[str] = None,
|
|
|
387
387
|
"""
|
|
388
388
|
Gets information about an Aiven for Thanos® service.
|
|
389
389
|
|
|
390
|
-
**This resource is in the beta stage and may change without notice.** Set
|
|
391
|
-
the `PROVIDER_AIVEN_ENABLE_BETA` environment variable to use the resource.
|
|
392
|
-
|
|
393
390
|
|
|
394
391
|
: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.
|
|
395
392
|
:param 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.
|
|
@@ -439,9 +436,6 @@ def get_thanos_output(project: Optional[pulumi.Input[str]] = None,
|
|
|
439
436
|
"""
|
|
440
437
|
Gets information about an Aiven for Thanos® service.
|
|
441
438
|
|
|
442
|
-
**This resource is in the beta stage and may change without notice.** Set
|
|
443
|
-
the `PROVIDER_AIVEN_ENABLE_BETA` environment variable to use the resource.
|
|
444
|
-
|
|
445
439
|
|
|
446
440
|
: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.
|
|
447
441
|
:param 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.
|
pulumi_aiven/grafana.py
CHANGED
|
@@ -358,6 +358,9 @@ class _GrafanaState:
|
|
|
358
358
|
pulumi.set(__self__, "disk_space_default", disk_space_default)
|
|
359
359
|
if disk_space_step is not None:
|
|
360
360
|
pulumi.set(__self__, "disk_space_step", disk_space_step)
|
|
361
|
+
if disk_space_used is not None:
|
|
362
|
+
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)
|
|
363
|
+
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.""")
|
|
361
364
|
if disk_space_used is not None:
|
|
362
365
|
pulumi.set(__self__, "disk_space_used", disk_space_used)
|
|
363
366
|
if grafana is not None:
|
|
@@ -488,6 +491,7 @@ class _GrafanaState:
|
|
|
488
491
|
|
|
489
492
|
@property
|
|
490
493
|
@pulumi.getter(name="diskSpaceUsed")
|
|
494
|
+
@_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.""")
|
|
491
495
|
def disk_space_used(self) -> Optional[pulumi.Input[str]]:
|
|
492
496
|
"""
|
|
493
497
|
Disk space that service is currently using
|
|
@@ -1087,6 +1091,7 @@ class Grafana(pulumi.CustomResource):
|
|
|
1087
1091
|
|
|
1088
1092
|
@property
|
|
1089
1093
|
@pulumi.getter(name="diskSpaceUsed")
|
|
1094
|
+
@_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.""")
|
|
1090
1095
|
def disk_space_used(self) -> pulumi.Output[str]:
|
|
1091
1096
|
"""
|
|
1092
1097
|
Disk space that service is currently using
|
|
@@ -1143,7 +1148,7 @@ class Grafana(pulumi.CustomResource):
|
|
|
1143
1148
|
|
|
1144
1149
|
@property
|
|
1145
1150
|
@pulumi.getter(name="projectVpcId")
|
|
1146
|
-
def project_vpc_id(self) -> pulumi.Output[
|
|
1151
|
+
def project_vpc_id(self) -> pulumi.Output[str]:
|
|
1147
1152
|
"""
|
|
1148
1153
|
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.
|
|
1149
1154
|
"""
|
|
@@ -1159,7 +1164,7 @@ class Grafana(pulumi.CustomResource):
|
|
|
1159
1164
|
|
|
1160
1165
|
@property
|
|
1161
1166
|
@pulumi.getter(name="serviceIntegrations")
|
|
1162
|
-
def service_integrations(self) -> pulumi.Output[
|
|
1167
|
+
def service_integrations(self) -> pulumi.Output[Sequence['outputs.GrafanaServiceIntegration']]:
|
|
1163
1168
|
"""
|
|
1164
1169
|
Service integrations to specify when creating a service. Not applied after initial service creation
|
|
1165
1170
|
"""
|
pulumi_aiven/influx_db.py
CHANGED
|
@@ -425,6 +425,9 @@ class _InfluxDbState:
|
|
|
425
425
|
pulumi.set(__self__, "disk_space_default", disk_space_default)
|
|
426
426
|
if disk_space_step is not None:
|
|
427
427
|
pulumi.set(__self__, "disk_space_step", disk_space_step)
|
|
428
|
+
if disk_space_used is not None:
|
|
429
|
+
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)
|
|
430
|
+
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.""")
|
|
428
431
|
if disk_space_used is not None:
|
|
429
432
|
pulumi.set(__self__, "disk_space_used", disk_space_used)
|
|
430
433
|
if influxdb_user_config is not None:
|
|
@@ -565,6 +568,7 @@ class _InfluxDbState:
|
|
|
565
568
|
|
|
566
569
|
@property
|
|
567
570
|
@pulumi.getter(name="diskSpaceUsed")
|
|
571
|
+
@_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.""")
|
|
568
572
|
def disk_space_used(self) -> Optional[pulumi.Input[str]]:
|
|
569
573
|
"""
|
|
570
574
|
Disk space that service is currently using
|
|
@@ -1180,6 +1184,7 @@ class InfluxDb(pulumi.CustomResource):
|
|
|
1180
1184
|
|
|
1181
1185
|
@property
|
|
1182
1186
|
@pulumi.getter(name="diskSpaceUsed")
|
|
1187
|
+
@_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.""")
|
|
1183
1188
|
def disk_space_used(self) -> pulumi.Output[str]:
|
|
1184
1189
|
"""
|
|
1185
1190
|
Disk space that service is currently using
|
|
@@ -1242,7 +1247,7 @@ class InfluxDb(pulumi.CustomResource):
|
|
|
1242
1247
|
|
|
1243
1248
|
@property
|
|
1244
1249
|
@pulumi.getter(name="projectVpcId")
|
|
1245
|
-
def project_vpc_id(self) -> pulumi.Output[
|
|
1250
|
+
def project_vpc_id(self) -> pulumi.Output[str]:
|
|
1246
1251
|
"""
|
|
1247
1252
|
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
|
|
1248
1253
|
value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region
|
|
@@ -1261,7 +1266,7 @@ class InfluxDb(pulumi.CustomResource):
|
|
|
1261
1266
|
|
|
1262
1267
|
@property
|
|
1263
1268
|
@pulumi.getter(name="serviceIntegrations")
|
|
1264
|
-
def service_integrations(self) -> pulumi.Output[
|
|
1269
|
+
def service_integrations(self) -> pulumi.Output[Sequence['outputs.InfluxDbServiceIntegration']]:
|
|
1265
1270
|
"""
|
|
1266
1271
|
Service integrations to specify when creating a service. Not applied after initial service creation
|
|
1267
1272
|
"""
|
pulumi_aiven/kafka.py
CHANGED
|
@@ -399,6 +399,9 @@ class _KafkaState:
|
|
|
399
399
|
pulumi.set(__self__, "disk_space_default", disk_space_default)
|
|
400
400
|
if disk_space_step is not None:
|
|
401
401
|
pulumi.set(__self__, "disk_space_step", disk_space_step)
|
|
402
|
+
if disk_space_used is not None:
|
|
403
|
+
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)
|
|
404
|
+
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.""")
|
|
402
405
|
if disk_space_used is not None:
|
|
403
406
|
pulumi.set(__self__, "disk_space_used", disk_space_used)
|
|
404
407
|
if kafka_user_config is not None:
|
|
@@ -546,6 +549,7 @@ class _KafkaState:
|
|
|
546
549
|
|
|
547
550
|
@property
|
|
548
551
|
@pulumi.getter(name="diskSpaceUsed")
|
|
552
|
+
@_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.""")
|
|
549
553
|
def disk_space_used(self) -> Optional[pulumi.Input[str]]:
|
|
550
554
|
"""
|
|
551
555
|
Disk space that service is currently using
|
|
@@ -1198,6 +1202,7 @@ class Kafka(pulumi.CustomResource):
|
|
|
1198
1202
|
|
|
1199
1203
|
@property
|
|
1200
1204
|
@pulumi.getter(name="diskSpaceUsed")
|
|
1205
|
+
@_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.""")
|
|
1201
1206
|
def disk_space_used(self) -> pulumi.Output[str]:
|
|
1202
1207
|
"""
|
|
1203
1208
|
Disk space that service is currently using
|
|
@@ -1263,7 +1268,7 @@ class Kafka(pulumi.CustomResource):
|
|
|
1263
1268
|
|
|
1264
1269
|
@property
|
|
1265
1270
|
@pulumi.getter(name="projectVpcId")
|
|
1266
|
-
def project_vpc_id(self) -> pulumi.Output[
|
|
1271
|
+
def project_vpc_id(self) -> pulumi.Output[str]:
|
|
1267
1272
|
"""
|
|
1268
1273
|
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.
|
|
1269
1274
|
"""
|
|
@@ -1279,7 +1284,7 @@ class Kafka(pulumi.CustomResource):
|
|
|
1279
1284
|
|
|
1280
1285
|
@property
|
|
1281
1286
|
@pulumi.getter(name="serviceIntegrations")
|
|
1282
|
-
def service_integrations(self) -> pulumi.Output[
|
|
1287
|
+
def service_integrations(self) -> pulumi.Output[Sequence['outputs.KafkaServiceIntegration']]:
|
|
1283
1288
|
"""
|
|
1284
1289
|
Service integrations to specify when creating a service. Not applied after initial service creation
|
|
1285
1290
|
"""
|
pulumi_aiven/kafka_connect.py
CHANGED
|
@@ -339,6 +339,9 @@ class _KafkaConnectState:
|
|
|
339
339
|
pulumi.set(__self__, "disk_space_default", disk_space_default)
|
|
340
340
|
if disk_space_step is not None:
|
|
341
341
|
pulumi.set(__self__, "disk_space_step", disk_space_step)
|
|
342
|
+
if disk_space_used is not None:
|
|
343
|
+
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)
|
|
344
|
+
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.""")
|
|
342
345
|
if disk_space_used is not None:
|
|
343
346
|
pulumi.set(__self__, "disk_space_used", disk_space_used)
|
|
344
347
|
if kafka_connect_user_config is not None:
|
|
@@ -467,6 +470,7 @@ class _KafkaConnectState:
|
|
|
467
470
|
|
|
468
471
|
@property
|
|
469
472
|
@pulumi.getter(name="diskSpaceUsed")
|
|
473
|
+
@_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.""")
|
|
470
474
|
def disk_space_used(self) -> Optional[pulumi.Input[str]]:
|
|
471
475
|
"""
|
|
472
476
|
Disk space that service is currently using
|
|
@@ -1105,6 +1109,7 @@ class KafkaConnect(pulumi.CustomResource):
|
|
|
1105
1109
|
|
|
1106
1110
|
@property
|
|
1107
1111
|
@pulumi.getter(name="diskSpaceUsed")
|
|
1112
|
+
@_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.""")
|
|
1108
1113
|
def disk_space_used(self) -> pulumi.Output[str]:
|
|
1109
1114
|
"""
|
|
1110
1115
|
Disk space that service is currently using
|
|
@@ -1153,7 +1158,7 @@ class KafkaConnect(pulumi.CustomResource):
|
|
|
1153
1158
|
|
|
1154
1159
|
@property
|
|
1155
1160
|
@pulumi.getter(name="projectVpcId")
|
|
1156
|
-
def project_vpc_id(self) -> pulumi.Output[
|
|
1161
|
+
def project_vpc_id(self) -> pulumi.Output[str]:
|
|
1157
1162
|
"""
|
|
1158
1163
|
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.
|
|
1159
1164
|
"""
|
|
@@ -1169,7 +1174,7 @@ class KafkaConnect(pulumi.CustomResource):
|
|
|
1169
1174
|
|
|
1170
1175
|
@property
|
|
1171
1176
|
@pulumi.getter(name="serviceIntegrations")
|
|
1172
|
-
def service_integrations(self) -> pulumi.Output[
|
|
1177
|
+
def service_integrations(self) -> pulumi.Output[Sequence['outputs.KafkaConnectServiceIntegration']]:
|
|
1173
1178
|
"""
|
|
1174
1179
|
Service integrations to specify when creating a service. Not applied after initial service creation
|
|
1175
1180
|
"""
|
|
@@ -339,6 +339,9 @@ class _KafkaMirrorMakerState:
|
|
|
339
339
|
pulumi.set(__self__, "disk_space_default", disk_space_default)
|
|
340
340
|
if disk_space_step is not None:
|
|
341
341
|
pulumi.set(__self__, "disk_space_step", disk_space_step)
|
|
342
|
+
if disk_space_used is not None:
|
|
343
|
+
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)
|
|
344
|
+
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.""")
|
|
342
345
|
if disk_space_used is not None:
|
|
343
346
|
pulumi.set(__self__, "disk_space_used", disk_space_used)
|
|
344
347
|
if kafka_mirrormaker_user_config is not None:
|
|
@@ -467,6 +470,7 @@ class _KafkaMirrorMakerState:
|
|
|
467
470
|
|
|
468
471
|
@property
|
|
469
472
|
@pulumi.getter(name="diskSpaceUsed")
|
|
473
|
+
@_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.""")
|
|
470
474
|
def disk_space_used(self) -> Optional[pulumi.Input[str]]:
|
|
471
475
|
"""
|
|
472
476
|
Disk space that service is currently using
|
|
@@ -1049,6 +1053,7 @@ class KafkaMirrorMaker(pulumi.CustomResource):
|
|
|
1049
1053
|
|
|
1050
1054
|
@property
|
|
1051
1055
|
@pulumi.getter(name="diskSpaceUsed")
|
|
1056
|
+
@_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.""")
|
|
1052
1057
|
def disk_space_used(self) -> pulumi.Output[str]:
|
|
1053
1058
|
"""
|
|
1054
1059
|
Disk space that service is currently using
|
|
@@ -1097,7 +1102,7 @@ class KafkaMirrorMaker(pulumi.CustomResource):
|
|
|
1097
1102
|
|
|
1098
1103
|
@property
|
|
1099
1104
|
@pulumi.getter(name="projectVpcId")
|
|
1100
|
-
def project_vpc_id(self) -> pulumi.Output[
|
|
1105
|
+
def project_vpc_id(self) -> pulumi.Output[str]:
|
|
1101
1106
|
"""
|
|
1102
1107
|
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.
|
|
1103
1108
|
"""
|
|
@@ -1113,7 +1118,7 @@ class KafkaMirrorMaker(pulumi.CustomResource):
|
|
|
1113
1118
|
|
|
1114
1119
|
@property
|
|
1115
1120
|
@pulumi.getter(name="serviceIntegrations")
|
|
1116
|
-
def service_integrations(self) -> pulumi.Output[
|
|
1121
|
+
def service_integrations(self) -> pulumi.Output[Sequence['outputs.KafkaMirrorMakerServiceIntegration']]:
|
|
1117
1122
|
"""
|
|
1118
1123
|
Service integrations to specify when creating a service. Not applied after initial service creation
|
|
1119
1124
|
"""
|