pulumi-aiven 6.26.0a1728105262__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.0a1728105262.dist-info → pulumi_aiven-6.26.0a1728566627.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.26.0a1728105262.dist-info → pulumi_aiven-6.26.0a1728566627.dist-info}/RECORD +35 -34
- {pulumi_aiven-6.26.0a1728105262.dist-info → pulumi_aiven-6.26.0a1728566627.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.26.0a1728105262.dist-info → pulumi_aiven-6.26.0a1728566627.dist-info}/top_level.txt +0 -0
pulumi_aiven/__init__.py
CHANGED
|
@@ -50,6 +50,7 @@ from .get_clickhouse_database import *
|
|
|
50
50
|
from .get_clickhouse_user import *
|
|
51
51
|
from .get_connection_pool import *
|
|
52
52
|
from .get_dragonfly import *
|
|
53
|
+
from .get_external_identity import *
|
|
53
54
|
from .get_flink import *
|
|
54
55
|
from .get_flink_application import *
|
|
55
56
|
from .get_flink_application_version import *
|
pulumi_aiven/_inputs.py
CHANGED
|
@@ -51,6 +51,7 @@ __all__ = [
|
|
|
51
51
|
'FlinkFlinkUserConfigArgs',
|
|
52
52
|
'FlinkFlinkUserConfigIpFilterObjectArgs',
|
|
53
53
|
'FlinkFlinkUserConfigPrivatelinkAccessArgs',
|
|
54
|
+
'FlinkFlinkUserConfigPublicAccessArgs',
|
|
54
55
|
'FlinkServiceIntegrationArgs',
|
|
55
56
|
'FlinkTagArgs',
|
|
56
57
|
'FlinkTechEmailArgs',
|
|
@@ -114,6 +115,7 @@ __all__ = [
|
|
|
114
115
|
'KafkaKafkaUserConfigPrivatelinkAccessArgs',
|
|
115
116
|
'KafkaKafkaUserConfigPublicAccessArgs',
|
|
116
117
|
'KafkaKafkaUserConfigSchemaRegistryConfigArgs',
|
|
118
|
+
'KafkaKafkaUserConfigSingleZoneArgs',
|
|
117
119
|
'KafkaKafkaUserConfigTieredStorageArgs',
|
|
118
120
|
'KafkaKafkaUserConfigTieredStorageLocalCacheArgs',
|
|
119
121
|
'KafkaMirrorMakerComponentArgs',
|
|
@@ -257,6 +259,7 @@ __all__ = [
|
|
|
257
259
|
'ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigExtraMetricArgs',
|
|
258
260
|
'ServiceIntegrationExternalElasticsearchLogsUserConfigArgs',
|
|
259
261
|
'ServiceIntegrationExternalOpensearchLogsUserConfigArgs',
|
|
262
|
+
'ServiceIntegrationFlinkExternalPostgresqlUserConfigArgs',
|
|
260
263
|
'ServiceIntegrationKafkaConnectUserConfigArgs',
|
|
261
264
|
'ServiceIntegrationKafkaConnectUserConfigKafkaConnectArgs',
|
|
262
265
|
'ServiceIntegrationKafkaLogsUserConfigArgs',
|
|
@@ -1110,6 +1113,7 @@ class ClickhouseClickhouseUserConfigArgs:
|
|
|
1110
1113
|
privatelink_access: Optional[pulumi.Input['ClickhouseClickhouseUserConfigPrivatelinkAccessArgs']] = None,
|
|
1111
1114
|
project_to_fork_from: Optional[pulumi.Input[str]] = None,
|
|
1112
1115
|
public_access: Optional[pulumi.Input['ClickhouseClickhouseUserConfigPublicAccessArgs']] = None,
|
|
1116
|
+
recovery_basebackup_name: Optional[pulumi.Input[str]] = None,
|
|
1113
1117
|
service_log: Optional[pulumi.Input[bool]] = None,
|
|
1114
1118
|
service_to_fork_from: Optional[pulumi.Input[str]] = None,
|
|
1115
1119
|
static_ips: Optional[pulumi.Input[bool]] = None):
|
|
@@ -1122,6 +1126,7 @@ class ClickhouseClickhouseUserConfigArgs:
|
|
|
1122
1126
|
:param pulumi.Input['ClickhouseClickhouseUserConfigPrivatelinkAccessArgs'] privatelink_access: Allow access to selected service components through Privatelink
|
|
1123
1127
|
:param pulumi.Input[str] project_to_fork_from: Name of another project to fork a service from. This has effect only when a new service is being created. Example: `anotherprojectname`.
|
|
1124
1128
|
:param pulumi.Input['ClickhouseClickhouseUserConfigPublicAccessArgs'] public_access: Allow access to selected service ports from the public Internet
|
|
1129
|
+
:param pulumi.Input[str] recovery_basebackup_name: Name of the basebackup to restore in forked service. Example: `backup-20191112t091354293891z`.
|
|
1125
1130
|
:param pulumi.Input[bool] service_log: Store logs for the service so that they are available in the HTTP API and console.
|
|
1126
1131
|
:param pulumi.Input[str] service_to_fork_from: Name of another service to fork from. This has effect only when a new service is being created. Example: `anotherservicename`.
|
|
1127
1132
|
:param pulumi.Input[bool] static_ips: Use static public IP addresses.
|
|
@@ -1148,6 +1153,8 @@ class ClickhouseClickhouseUserConfigArgs:
|
|
|
1148
1153
|
pulumi.set(__self__, "project_to_fork_from", project_to_fork_from)
|
|
1149
1154
|
if public_access is not None:
|
|
1150
1155
|
pulumi.set(__self__, "public_access", public_access)
|
|
1156
|
+
if recovery_basebackup_name is not None:
|
|
1157
|
+
pulumi.set(__self__, "recovery_basebackup_name", recovery_basebackup_name)
|
|
1151
1158
|
if service_log is not None:
|
|
1152
1159
|
pulumi.set(__self__, "service_log", service_log)
|
|
1153
1160
|
if service_to_fork_from is not None:
|
|
@@ -1253,6 +1260,18 @@ class ClickhouseClickhouseUserConfigArgs:
|
|
|
1253
1260
|
def public_access(self, value: Optional[pulumi.Input['ClickhouseClickhouseUserConfigPublicAccessArgs']]):
|
|
1254
1261
|
pulumi.set(self, "public_access", value)
|
|
1255
1262
|
|
|
1263
|
+
@property
|
|
1264
|
+
@pulumi.getter(name="recoveryBasebackupName")
|
|
1265
|
+
def recovery_basebackup_name(self) -> Optional[pulumi.Input[str]]:
|
|
1266
|
+
"""
|
|
1267
|
+
Name of the basebackup to restore in forked service. Example: `backup-20191112t091354293891z`.
|
|
1268
|
+
"""
|
|
1269
|
+
return pulumi.get(self, "recovery_basebackup_name")
|
|
1270
|
+
|
|
1271
|
+
@recovery_basebackup_name.setter
|
|
1272
|
+
def recovery_basebackup_name(self, value: Optional[pulumi.Input[str]]):
|
|
1273
|
+
pulumi.set(self, "recovery_basebackup_name", value)
|
|
1274
|
+
|
|
1256
1275
|
@property
|
|
1257
1276
|
@pulumi.getter(name="serviceLog")
|
|
1258
1277
|
def service_log(self) -> Optional[pulumi.Input[bool]]:
|
|
@@ -2981,7 +3000,10 @@ class FlinkFlinkUserConfigArgs:
|
|
|
2981
3000
|
ip_filter_strings: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
2982
3001
|
ip_filters: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
2983
3002
|
number_of_task_slots: Optional[pulumi.Input[int]] = None,
|
|
3003
|
+
pekko_ask_timeout_s: Optional[pulumi.Input[int]] = None,
|
|
3004
|
+
pekko_framesize_b: Optional[pulumi.Input[int]] = None,
|
|
2984
3005
|
privatelink_access: Optional[pulumi.Input['FlinkFlinkUserConfigPrivatelinkAccessArgs']] = None,
|
|
3006
|
+
public_access: Optional[pulumi.Input['FlinkFlinkUserConfigPublicAccessArgs']] = None,
|
|
2985
3007
|
service_log: Optional[pulumi.Input[bool]] = None,
|
|
2986
3008
|
static_ips: Optional[pulumi.Input[bool]] = None):
|
|
2987
3009
|
"""
|
|
@@ -2991,7 +3013,10 @@ class FlinkFlinkUserConfigArgs:
|
|
|
2991
3013
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
|
|
2992
3014
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filters: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
|
|
2993
3015
|
:param pulumi.Input[int] number_of_task_slots: Task slots per node. For a 3 node plan, total number of task slots is 3x this value. Example: `1`.
|
|
3016
|
+
:param pulumi.Input[int] pekko_ask_timeout_s: Timeout in seconds used for all futures and blocking Pekko requests. Example: `10`.
|
|
3017
|
+
:param pulumi.Input[int] pekko_framesize_b: Maximum size in bytes for messages exchanged between the JobManager and the TaskManagers. Example: `10485760`.
|
|
2994
3018
|
:param pulumi.Input['FlinkFlinkUserConfigPrivatelinkAccessArgs'] privatelink_access: Allow access to selected service components through Privatelink
|
|
3019
|
+
:param pulumi.Input['FlinkFlinkUserConfigPublicAccessArgs'] public_access: Allow access to selected service ports from the public Internet
|
|
2995
3020
|
:param pulumi.Input[bool] service_log: Store logs for the service so that they are available in the HTTP API and console.
|
|
2996
3021
|
:param pulumi.Input[bool] static_ips: Use static public IP addresses.
|
|
2997
3022
|
"""
|
|
@@ -3013,8 +3038,14 @@ class FlinkFlinkUserConfigArgs:
|
|
|
3013
3038
|
pulumi.set(__self__, "ip_filters", ip_filters)
|
|
3014
3039
|
if number_of_task_slots is not None:
|
|
3015
3040
|
pulumi.set(__self__, "number_of_task_slots", number_of_task_slots)
|
|
3041
|
+
if pekko_ask_timeout_s is not None:
|
|
3042
|
+
pulumi.set(__self__, "pekko_ask_timeout_s", pekko_ask_timeout_s)
|
|
3043
|
+
if pekko_framesize_b is not None:
|
|
3044
|
+
pulumi.set(__self__, "pekko_framesize_b", pekko_framesize_b)
|
|
3016
3045
|
if privatelink_access is not None:
|
|
3017
3046
|
pulumi.set(__self__, "privatelink_access", privatelink_access)
|
|
3047
|
+
if public_access is not None:
|
|
3048
|
+
pulumi.set(__self__, "public_access", public_access)
|
|
3018
3049
|
if service_log is not None:
|
|
3019
3050
|
pulumi.set(__self__, "service_log", service_log)
|
|
3020
3051
|
if static_ips is not None:
|
|
@@ -3094,6 +3125,30 @@ class FlinkFlinkUserConfigArgs:
|
|
|
3094
3125
|
def number_of_task_slots(self, value: Optional[pulumi.Input[int]]):
|
|
3095
3126
|
pulumi.set(self, "number_of_task_slots", value)
|
|
3096
3127
|
|
|
3128
|
+
@property
|
|
3129
|
+
@pulumi.getter(name="pekkoAskTimeoutS")
|
|
3130
|
+
def pekko_ask_timeout_s(self) -> Optional[pulumi.Input[int]]:
|
|
3131
|
+
"""
|
|
3132
|
+
Timeout in seconds used for all futures and blocking Pekko requests. Example: `10`.
|
|
3133
|
+
"""
|
|
3134
|
+
return pulumi.get(self, "pekko_ask_timeout_s")
|
|
3135
|
+
|
|
3136
|
+
@pekko_ask_timeout_s.setter
|
|
3137
|
+
def pekko_ask_timeout_s(self, value: Optional[pulumi.Input[int]]):
|
|
3138
|
+
pulumi.set(self, "pekko_ask_timeout_s", value)
|
|
3139
|
+
|
|
3140
|
+
@property
|
|
3141
|
+
@pulumi.getter(name="pekkoFramesizeB")
|
|
3142
|
+
def pekko_framesize_b(self) -> Optional[pulumi.Input[int]]:
|
|
3143
|
+
"""
|
|
3144
|
+
Maximum size in bytes for messages exchanged between the JobManager and the TaskManagers. Example: `10485760`.
|
|
3145
|
+
"""
|
|
3146
|
+
return pulumi.get(self, "pekko_framesize_b")
|
|
3147
|
+
|
|
3148
|
+
@pekko_framesize_b.setter
|
|
3149
|
+
def pekko_framesize_b(self, value: Optional[pulumi.Input[int]]):
|
|
3150
|
+
pulumi.set(self, "pekko_framesize_b", value)
|
|
3151
|
+
|
|
3097
3152
|
@property
|
|
3098
3153
|
@pulumi.getter(name="privatelinkAccess")
|
|
3099
3154
|
def privatelink_access(self) -> Optional[pulumi.Input['FlinkFlinkUserConfigPrivatelinkAccessArgs']]:
|
|
@@ -3106,6 +3161,18 @@ class FlinkFlinkUserConfigArgs:
|
|
|
3106
3161
|
def privatelink_access(self, value: Optional[pulumi.Input['FlinkFlinkUserConfigPrivatelinkAccessArgs']]):
|
|
3107
3162
|
pulumi.set(self, "privatelink_access", value)
|
|
3108
3163
|
|
|
3164
|
+
@property
|
|
3165
|
+
@pulumi.getter(name="publicAccess")
|
|
3166
|
+
def public_access(self) -> Optional[pulumi.Input['FlinkFlinkUserConfigPublicAccessArgs']]:
|
|
3167
|
+
"""
|
|
3168
|
+
Allow access to selected service ports from the public Internet
|
|
3169
|
+
"""
|
|
3170
|
+
return pulumi.get(self, "public_access")
|
|
3171
|
+
|
|
3172
|
+
@public_access.setter
|
|
3173
|
+
def public_access(self, value: Optional[pulumi.Input['FlinkFlinkUserConfigPublicAccessArgs']]):
|
|
3174
|
+
pulumi.set(self, "public_access", value)
|
|
3175
|
+
|
|
3109
3176
|
@property
|
|
3110
3177
|
@pulumi.getter(name="serviceLog")
|
|
3111
3178
|
def service_log(self) -> Optional[pulumi.Input[bool]]:
|
|
@@ -3208,6 +3275,29 @@ class FlinkFlinkUserConfigPrivatelinkAccessArgs:
|
|
|
3208
3275
|
pulumi.set(self, "prometheus", value)
|
|
3209
3276
|
|
|
3210
3277
|
|
|
3278
|
+
@pulumi.input_type
|
|
3279
|
+
class FlinkFlinkUserConfigPublicAccessArgs:
|
|
3280
|
+
def __init__(__self__, *,
|
|
3281
|
+
flink: Optional[pulumi.Input[bool]] = None):
|
|
3282
|
+
"""
|
|
3283
|
+
:param pulumi.Input[bool] flink: Allow clients to connect to flink from the public internet for service nodes that are in a project VPC or another type of private network.
|
|
3284
|
+
"""
|
|
3285
|
+
if flink is not None:
|
|
3286
|
+
pulumi.set(__self__, "flink", flink)
|
|
3287
|
+
|
|
3288
|
+
@property
|
|
3289
|
+
@pulumi.getter
|
|
3290
|
+
def flink(self) -> Optional[pulumi.Input[bool]]:
|
|
3291
|
+
"""
|
|
3292
|
+
Allow clients to connect to flink from the public internet for service nodes that are in a project VPC or another type of private network.
|
|
3293
|
+
"""
|
|
3294
|
+
return pulumi.get(self, "flink")
|
|
3295
|
+
|
|
3296
|
+
@flink.setter
|
|
3297
|
+
def flink(self, value: Optional[pulumi.Input[bool]]):
|
|
3298
|
+
pulumi.set(self, "flink", value)
|
|
3299
|
+
|
|
3300
|
+
|
|
3211
3301
|
@pulumi.input_type
|
|
3212
3302
|
class FlinkServiceIntegrationArgs:
|
|
3213
3303
|
def __init__(__self__, *,
|
|
@@ -7439,6 +7529,7 @@ class KafkaKafkaUserConfigArgs:
|
|
|
7439
7529
|
schema_registry: Optional[pulumi.Input[bool]] = None,
|
|
7440
7530
|
schema_registry_config: Optional[pulumi.Input['KafkaKafkaUserConfigSchemaRegistryConfigArgs']] = None,
|
|
7441
7531
|
service_log: Optional[pulumi.Input[bool]] = None,
|
|
7532
|
+
single_zone: Optional[pulumi.Input['KafkaKafkaUserConfigSingleZoneArgs']] = None,
|
|
7442
7533
|
static_ips: Optional[pulumi.Input[bool]] = None,
|
|
7443
7534
|
tiered_storage: Optional[pulumi.Input['KafkaKafkaUserConfigTieredStorageArgs']] = None):
|
|
7444
7535
|
"""
|
|
@@ -7465,6 +7556,7 @@ class KafkaKafkaUserConfigArgs:
|
|
|
7465
7556
|
:param pulumi.Input[bool] schema_registry: Enable Schema-Registry service. Default: `false`.
|
|
7466
7557
|
:param pulumi.Input['KafkaKafkaUserConfigSchemaRegistryConfigArgs'] schema_registry_config: Schema Registry configuration
|
|
7467
7558
|
:param pulumi.Input[bool] service_log: Store logs for the service so that they are available in the HTTP API and console.
|
|
7559
|
+
:param pulumi.Input['KafkaKafkaUserConfigSingleZoneArgs'] single_zone: Single-zone configuration
|
|
7468
7560
|
:param pulumi.Input[bool] static_ips: Use static public IP addresses.
|
|
7469
7561
|
:param pulumi.Input['KafkaKafkaUserConfigTieredStorageArgs'] tiered_storage: Tiered storage configuration
|
|
7470
7562
|
"""
|
|
@@ -7522,6 +7614,8 @@ class KafkaKafkaUserConfigArgs:
|
|
|
7522
7614
|
pulumi.set(__self__, "schema_registry_config", schema_registry_config)
|
|
7523
7615
|
if service_log is not None:
|
|
7524
7616
|
pulumi.set(__self__, "service_log", service_log)
|
|
7617
|
+
if single_zone is not None:
|
|
7618
|
+
pulumi.set(__self__, "single_zone", single_zone)
|
|
7525
7619
|
if static_ips is not None:
|
|
7526
7620
|
pulumi.set(__self__, "static_ips", static_ips)
|
|
7527
7621
|
if tiered_storage is not None:
|
|
@@ -7814,6 +7908,18 @@ class KafkaKafkaUserConfigArgs:
|
|
|
7814
7908
|
def service_log(self, value: Optional[pulumi.Input[bool]]):
|
|
7815
7909
|
pulumi.set(self, "service_log", value)
|
|
7816
7910
|
|
|
7911
|
+
@property
|
|
7912
|
+
@pulumi.getter(name="singleZone")
|
|
7913
|
+
def single_zone(self) -> Optional[pulumi.Input['KafkaKafkaUserConfigSingleZoneArgs']]:
|
|
7914
|
+
"""
|
|
7915
|
+
Single-zone configuration
|
|
7916
|
+
"""
|
|
7917
|
+
return pulumi.get(self, "single_zone")
|
|
7918
|
+
|
|
7919
|
+
@single_zone.setter
|
|
7920
|
+
def single_zone(self, value: Optional[pulumi.Input['KafkaKafkaUserConfigSingleZoneArgs']]):
|
|
7921
|
+
pulumi.set(self, "single_zone", value)
|
|
7922
|
+
|
|
7817
7923
|
@property
|
|
7818
7924
|
@pulumi.getter(name="staticIps")
|
|
7819
7925
|
def static_ips(self) -> Optional[pulumi.Input[bool]]:
|
|
@@ -9723,6 +9829,29 @@ class KafkaKafkaUserConfigSchemaRegistryConfigArgs:
|
|
|
9723
9829
|
pulumi.set(self, "topic_name", value)
|
|
9724
9830
|
|
|
9725
9831
|
|
|
9832
|
+
@pulumi.input_type
|
|
9833
|
+
class KafkaKafkaUserConfigSingleZoneArgs:
|
|
9834
|
+
def __init__(__self__, *,
|
|
9835
|
+
enabled: Optional[pulumi.Input[bool]] = None):
|
|
9836
|
+
"""
|
|
9837
|
+
:param pulumi.Input[bool] enabled: Whether to allocate nodes on the same Availability Zone or spread across zones available. By default service nodes are spread across different AZs. The single AZ support is best-effort and may temporarily allocate nodes in different AZs e.g. in case of capacity limitations in one AZ.
|
|
9838
|
+
"""
|
|
9839
|
+
if enabled is not None:
|
|
9840
|
+
pulumi.set(__self__, "enabled", enabled)
|
|
9841
|
+
|
|
9842
|
+
@property
|
|
9843
|
+
@pulumi.getter
|
|
9844
|
+
def enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
9845
|
+
"""
|
|
9846
|
+
Whether to allocate nodes on the same Availability Zone or spread across zones available. By default service nodes are spread across different AZs. The single AZ support is best-effort and may temporarily allocate nodes in different AZs e.g. in case of capacity limitations in one AZ.
|
|
9847
|
+
"""
|
|
9848
|
+
return pulumi.get(self, "enabled")
|
|
9849
|
+
|
|
9850
|
+
@enabled.setter
|
|
9851
|
+
def enabled(self, value: Optional[pulumi.Input[bool]]):
|
|
9852
|
+
pulumi.set(self, "enabled", value)
|
|
9853
|
+
|
|
9854
|
+
|
|
9726
9855
|
@pulumi.input_type
|
|
9727
9856
|
class KafkaKafkaUserConfigTieredStorageArgs:
|
|
9728
9857
|
def __init__(__self__, *,
|
|
@@ -13636,6 +13765,7 @@ class MySqlMysqlUserConfigMysqlArgs:
|
|
|
13636
13765
|
innodb_write_io_threads: Optional[pulumi.Input[int]] = None,
|
|
13637
13766
|
interactive_timeout: Optional[pulumi.Input[int]] = None,
|
|
13638
13767
|
internal_tmp_mem_storage_engine: Optional[pulumi.Input[str]] = None,
|
|
13768
|
+
log_output: Optional[pulumi.Input[str]] = None,
|
|
13639
13769
|
long_query_time: Optional[pulumi.Input[float]] = None,
|
|
13640
13770
|
max_allowed_packet: Optional[pulumi.Input[int]] = None,
|
|
13641
13771
|
max_heap_table_size: Optional[pulumi.Input[int]] = None,
|
|
@@ -13667,13 +13797,14 @@ class MySqlMysqlUserConfigMysqlArgs:
|
|
|
13667
13797
|
:param pulumi.Input[int] innodb_write_io_threads: The number of I/O threads for write operations in InnoDB. Default is 4. Changing this parameter will lead to a restart of the MySQL service. Example: `10`.
|
|
13668
13798
|
:param pulumi.Input[int] interactive_timeout: The number of seconds the server waits for activity on an interactive connection before closing it. Example: `3600`.
|
|
13669
13799
|
:param pulumi.Input[str] internal_tmp_mem_storage_engine: Enum: `TempTable`, `MEMORY`. The storage engine for in-memory internal temporary tables.
|
|
13670
|
-
:param pulumi.Input[
|
|
13800
|
+
:param pulumi.Input[str] log_output: Enum: `INSIGHTS`, `NONE`, `TABLE`, `INSIGHTS,TABLE`. The slow log output destination when slow*query*log is ON. To enable MySQL AI Insights, choose INSIGHTS. To use MySQL AI Insights and the mysql.slow*log table at the same time, choose INSIGHTS,TABLE. To only use the mysql.slow*log table, choose TABLE. To silence slow logs, choose NONE.
|
|
13801
|
+
:param pulumi.Input[float] long_query_time: The slow*query*logs work as SQL statements that take more than long*query*time seconds to execute. Example: `10`.
|
|
13671
13802
|
:param pulumi.Input[int] max_allowed_packet: Size of the largest message in bytes that can be received by the server. Default is 67108864 (64M). Example: `67108864`.
|
|
13672
13803
|
:param pulumi.Input[int] max_heap_table_size: Limits the size of internal in-memory tables. Also set tmp*table*size. Default is 16777216 (16M). Example: `16777216`.
|
|
13673
13804
|
:param pulumi.Input[int] net_buffer_length: Start sizes of connection buffer and result buffer. Default is 16384 (16K). Changing this parameter will lead to a restart of the MySQL service. Example: `16384`.
|
|
13674
13805
|
:param pulumi.Input[int] net_read_timeout: The number of seconds to wait for more data from a connection before aborting the read. Example: `30`.
|
|
13675
13806
|
:param pulumi.Input[int] net_write_timeout: The number of seconds to wait for a block to be written to a connection before aborting the write. Example: `30`.
|
|
13676
|
-
:param pulumi.Input[bool] slow_query_log: Slow query log enables capturing of slow queries. Setting slow*query*log to false also truncates the mysql.slow_log table.
|
|
13807
|
+
:param pulumi.Input[bool] slow_query_log: Slow query log enables capturing of slow queries. Setting slow*query*log to false also truncates the mysql.slow_log table.
|
|
13677
13808
|
:param pulumi.Input[int] sort_buffer_size: Sort buffer size in bytes for ORDER BY optimization. Default is 262144 (256K). Example: `262144`.
|
|
13678
13809
|
:param pulumi.Input[str] sql_mode: Global SQL mode. Set to empty to use MySQL server defaults. When creating a new service and not setting this field Aiven default SQL mode (strict, SQL standard compliant) will be assigned. Example: `ANSI,TRADITIONAL`.
|
|
13679
13810
|
:param pulumi.Input[bool] sql_require_primary_key: Require primary key to be defined for new tables or old tables modified with ALTER TABLE and fail if missing. It is recommended to always have primary keys because various functionality may break if any large table is missing them.
|
|
@@ -13716,6 +13847,8 @@ class MySqlMysqlUserConfigMysqlArgs:
|
|
|
13716
13847
|
pulumi.set(__self__, "interactive_timeout", interactive_timeout)
|
|
13717
13848
|
if internal_tmp_mem_storage_engine is not None:
|
|
13718
13849
|
pulumi.set(__self__, "internal_tmp_mem_storage_engine", internal_tmp_mem_storage_engine)
|
|
13850
|
+
if log_output is not None:
|
|
13851
|
+
pulumi.set(__self__, "log_output", log_output)
|
|
13719
13852
|
if long_query_time is not None:
|
|
13720
13853
|
pulumi.set(__self__, "long_query_time", long_query_time)
|
|
13721
13854
|
if max_allowed_packet is not None:
|
|
@@ -13957,11 +14090,23 @@ class MySqlMysqlUserConfigMysqlArgs:
|
|
|
13957
14090
|
def internal_tmp_mem_storage_engine(self, value: Optional[pulumi.Input[str]]):
|
|
13958
14091
|
pulumi.set(self, "internal_tmp_mem_storage_engine", value)
|
|
13959
14092
|
|
|
14093
|
+
@property
|
|
14094
|
+
@pulumi.getter(name="logOutput")
|
|
14095
|
+
def log_output(self) -> Optional[pulumi.Input[str]]:
|
|
14096
|
+
"""
|
|
14097
|
+
Enum: `INSIGHTS`, `NONE`, `TABLE`, `INSIGHTS,TABLE`. The slow log output destination when slow*query*log is ON. To enable MySQL AI Insights, choose INSIGHTS. To use MySQL AI Insights and the mysql.slow*log table at the same time, choose INSIGHTS,TABLE. To only use the mysql.slow*log table, choose TABLE. To silence slow logs, choose NONE.
|
|
14098
|
+
"""
|
|
14099
|
+
return pulumi.get(self, "log_output")
|
|
14100
|
+
|
|
14101
|
+
@log_output.setter
|
|
14102
|
+
def log_output(self, value: Optional[pulumi.Input[str]]):
|
|
14103
|
+
pulumi.set(self, "log_output", value)
|
|
14104
|
+
|
|
13960
14105
|
@property
|
|
13961
14106
|
@pulumi.getter(name="longQueryTime")
|
|
13962
14107
|
def long_query_time(self) -> Optional[pulumi.Input[float]]:
|
|
13963
14108
|
"""
|
|
13964
|
-
The slow*query*logs work as SQL statements that take more than long*query*time seconds to execute.
|
|
14109
|
+
The slow*query*logs work as SQL statements that take more than long*query*time seconds to execute. Example: `10`.
|
|
13965
14110
|
"""
|
|
13966
14111
|
return pulumi.get(self, "long_query_time")
|
|
13967
14112
|
|
|
@@ -14033,7 +14178,7 @@ class MySqlMysqlUserConfigMysqlArgs:
|
|
|
14033
14178
|
@pulumi.getter(name="slowQueryLog")
|
|
14034
14179
|
def slow_query_log(self) -> Optional[pulumi.Input[bool]]:
|
|
14035
14180
|
"""
|
|
14036
|
-
Slow query log enables capturing of slow queries. Setting slow*query*log to false also truncates the mysql.slow_log table.
|
|
14181
|
+
Slow query log enables capturing of slow queries. Setting slow*query*log to false also truncates the mysql.slow_log table.
|
|
14037
14182
|
"""
|
|
14038
14183
|
return pulumi.get(self, "slow_query_log")
|
|
14039
14184
|
|
|
@@ -14621,8 +14766,10 @@ class OpenSearchOpensearchUserConfigArgs:
|
|
|
14621
14766
|
static_ips: Optional[pulumi.Input[bool]] = None):
|
|
14622
14767
|
"""
|
|
14623
14768
|
:param pulumi.Input[str] additional_backup_regions: Additional Cloud Regions for Backup Replication.
|
|
14769
|
+
:param pulumi.Input['OpenSearchOpensearchUserConfigAzureMigrationArgs'] azure_migration: Azure migration settings
|
|
14624
14770
|
:param pulumi.Input[str] custom_domain: Serve the web frontend using a custom CNAME pointing to the Aiven DNS name. Example: `grafana.example.org`.
|
|
14625
14771
|
:param pulumi.Input[bool] disable_replication_factor_adjustment: Disable automatic replication factor adjustment for multi-node services. By default, Aiven ensures all indexes are replicated at least to two nodes. Note: Due to potential data loss in case of losing a service node, this setting can no longer be activated.
|
|
14772
|
+
:param pulumi.Input['OpenSearchOpensearchUserConfigGcsMigrationArgs'] gcs_migration: Google Cloud Storage migration settings
|
|
14626
14773
|
:param pulumi.Input[Sequence[pulumi.Input['OpenSearchOpensearchUserConfigIndexPatternArgs']]] index_patterns: Index patterns
|
|
14627
14774
|
:param pulumi.Input['OpenSearchOpensearchUserConfigIndexRollupArgs'] index_rollup: Index rollup settings
|
|
14628
14775
|
:param pulumi.Input['OpenSearchOpensearchUserConfigIndexTemplateArgs'] index_template: Template settings for all new indexes
|
|
@@ -14640,6 +14787,7 @@ class OpenSearchOpensearchUserConfigArgs:
|
|
|
14640
14787
|
:param pulumi.Input[str] project_to_fork_from: Name of another project to fork a service from. This has effect only when a new service is being created. Example: `anotherprojectname`.
|
|
14641
14788
|
:param pulumi.Input['OpenSearchOpensearchUserConfigPublicAccessArgs'] public_access: Allow access to selected service ports from the public Internet
|
|
14642
14789
|
:param pulumi.Input[str] recovery_basebackup_name: Name of the basebackup to restore in forked service. Example: `backup-20191112t091354293891z`.
|
|
14790
|
+
:param pulumi.Input['OpenSearchOpensearchUserConfigS3MigrationArgs'] s3_migration: AWS S3 / AWS S3 compatible migration settings
|
|
14643
14791
|
:param pulumi.Input['OpenSearchOpensearchUserConfigSamlArgs'] saml: OpenSearch SAML configuration
|
|
14644
14792
|
:param pulumi.Input[bool] service_log: Store logs for the service so that they are available in the HTTP API and console.
|
|
14645
14793
|
:param pulumi.Input[str] service_to_fork_from: Name of another service to fork from. This has effect only when a new service is being created. Example: `anotherservicename`.
|
|
@@ -14718,6 +14866,9 @@ class OpenSearchOpensearchUserConfigArgs:
|
|
|
14718
14866
|
@property
|
|
14719
14867
|
@pulumi.getter(name="azureMigration")
|
|
14720
14868
|
def azure_migration(self) -> Optional[pulumi.Input['OpenSearchOpensearchUserConfigAzureMigrationArgs']]:
|
|
14869
|
+
"""
|
|
14870
|
+
Azure migration settings
|
|
14871
|
+
"""
|
|
14721
14872
|
return pulumi.get(self, "azure_migration")
|
|
14722
14873
|
|
|
14723
14874
|
@azure_migration.setter
|
|
@@ -14751,6 +14902,9 @@ class OpenSearchOpensearchUserConfigArgs:
|
|
|
14751
14902
|
@property
|
|
14752
14903
|
@pulumi.getter(name="gcsMigration")
|
|
14753
14904
|
def gcs_migration(self) -> Optional[pulumi.Input['OpenSearchOpensearchUserConfigGcsMigrationArgs']]:
|
|
14905
|
+
"""
|
|
14906
|
+
Google Cloud Storage migration settings
|
|
14907
|
+
"""
|
|
14754
14908
|
return pulumi.get(self, "gcs_migration")
|
|
14755
14909
|
|
|
14756
14910
|
@gcs_migration.setter
|
|
@@ -14965,6 +15119,9 @@ class OpenSearchOpensearchUserConfigArgs:
|
|
|
14965
15119
|
@property
|
|
14966
15120
|
@pulumi.getter(name="s3Migration")
|
|
14967
15121
|
def s3_migration(self) -> Optional[pulumi.Input['OpenSearchOpensearchUserConfigS3MigrationArgs']]:
|
|
15122
|
+
"""
|
|
15123
|
+
AWS S3 / AWS S3 compatible migration settings
|
|
15124
|
+
"""
|
|
14968
15125
|
return pulumi.get(self, "s3_migration")
|
|
14969
15126
|
|
|
14970
15127
|
@s3_migration.setter
|
|
@@ -17388,7 +17545,7 @@ class OrganizationPermissionPermissionArgs:
|
|
|
17388
17545
|
create_time: Optional[pulumi.Input[str]] = None,
|
|
17389
17546
|
update_time: Optional[pulumi.Input[str]] = None):
|
|
17390
17547
|
"""
|
|
17391
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] permissions: List of permissions. The possible values are `admin`, `developer`, `operator` and `read_only`.
|
|
17548
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] permissions: List of permissions. The possible values are `admin`, `developer`, `operator`, `project:permissions:read` and `read_only`.
|
|
17392
17549
|
:param pulumi.Input[str] principal_id: ID of the user or group.
|
|
17393
17550
|
:param pulumi.Input[str] principal_type: The type of principal. The possible values are `user` and `user_group`.
|
|
17394
17551
|
:param pulumi.Input[str] create_time: Time created.
|
|
@@ -17406,7 +17563,7 @@ class OrganizationPermissionPermissionArgs:
|
|
|
17406
17563
|
@pulumi.getter
|
|
17407
17564
|
def permissions(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
|
|
17408
17565
|
"""
|
|
17409
|
-
List of permissions. The possible values are `admin`, `developer`, `operator` and `read_only`.
|
|
17566
|
+
List of permissions. The possible values are `admin`, `developer`, `operator`, `project:permissions:read` and `read_only`.
|
|
17410
17567
|
"""
|
|
17411
17568
|
return pulumi.get(self, "permissions")
|
|
17412
17569
|
|
|
@@ -23889,6 +24046,29 @@ class ServiceIntegrationExternalOpensearchLogsUserConfigArgs:
|
|
|
23889
24046
|
pulumi.set(self, "selected_log_fields", value)
|
|
23890
24047
|
|
|
23891
24048
|
|
|
24049
|
+
@pulumi.input_type
|
|
24050
|
+
class ServiceIntegrationFlinkExternalPostgresqlUserConfigArgs:
|
|
24051
|
+
def __init__(__self__, *,
|
|
24052
|
+
stringtype: Optional[pulumi.Input[str]] = None):
|
|
24053
|
+
"""
|
|
24054
|
+
:param pulumi.Input[str] stringtype: Enum: `unspecified`. If stringtype is set to unspecified, parameters will be sent to the server as untyped values.
|
|
24055
|
+
"""
|
|
24056
|
+
if stringtype is not None:
|
|
24057
|
+
pulumi.set(__self__, "stringtype", stringtype)
|
|
24058
|
+
|
|
24059
|
+
@property
|
|
24060
|
+
@pulumi.getter
|
|
24061
|
+
def stringtype(self) -> Optional[pulumi.Input[str]]:
|
|
24062
|
+
"""
|
|
24063
|
+
Enum: `unspecified`. If stringtype is set to unspecified, parameters will be sent to the server as untyped values.
|
|
24064
|
+
"""
|
|
24065
|
+
return pulumi.get(self, "stringtype")
|
|
24066
|
+
|
|
24067
|
+
@stringtype.setter
|
|
24068
|
+
def stringtype(self, value: Optional[pulumi.Input[str]]):
|
|
24069
|
+
pulumi.set(self, "stringtype", value)
|
|
24070
|
+
|
|
24071
|
+
|
|
23892
24072
|
@pulumi.input_type
|
|
23893
24073
|
class ServiceIntegrationKafkaConnectUserConfigArgs:
|
|
23894
24074
|
def __init__(__self__, *,
|
|
@@ -25104,31 +25284,20 @@ class ThanosThanosArgs:
|
|
|
25104
25284
|
def __init__(__self__, *,
|
|
25105
25285
|
query_frontend_uri: Optional[pulumi.Input[str]] = None,
|
|
25106
25286
|
query_uri: Optional[pulumi.Input[str]] = None,
|
|
25107
|
-
receiver_ingesting_remote_write_uri: Optional[pulumi.Input[str]] = None,
|
|
25108
25287
|
receiver_remote_write_uri: Optional[pulumi.Input[str]] = None,
|
|
25109
|
-
store_uri: Optional[pulumi.Input[str]] = None,
|
|
25110
25288
|
uris: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
25111
25289
|
"""
|
|
25112
25290
|
:param pulumi.Input[str] query_frontend_uri: Query frontend URI.
|
|
25113
25291
|
:param pulumi.Input[str] query_uri: Query URI.
|
|
25114
|
-
:param pulumi.Input[str] receiver_ingesting_remote_write_uri: Receiver ingesting remote write URI.
|
|
25115
25292
|
:param pulumi.Input[str] receiver_remote_write_uri: Receiver remote write URI.
|
|
25116
|
-
:param pulumi.Input[str] store_uri: Store URI.
|
|
25117
25293
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] uris: Thanos server URIs.
|
|
25118
25294
|
"""
|
|
25119
25295
|
if query_frontend_uri is not None:
|
|
25120
25296
|
pulumi.set(__self__, "query_frontend_uri", query_frontend_uri)
|
|
25121
25297
|
if query_uri is not None:
|
|
25122
25298
|
pulumi.set(__self__, "query_uri", query_uri)
|
|
25123
|
-
if receiver_ingesting_remote_write_uri is not None:
|
|
25124
|
-
pulumi.set(__self__, "receiver_ingesting_remote_write_uri", receiver_ingesting_remote_write_uri)
|
|
25125
25299
|
if receiver_remote_write_uri is not None:
|
|
25126
25300
|
pulumi.set(__self__, "receiver_remote_write_uri", receiver_remote_write_uri)
|
|
25127
|
-
if store_uri is not None:
|
|
25128
|
-
warnings.warn("""This field was added by mistake and has never worked. It will be removed in future versions.""", DeprecationWarning)
|
|
25129
|
-
pulumi.log.warn("""store_uri is deprecated: This field was added by mistake and has never worked. It will be removed in future versions.""")
|
|
25130
|
-
if store_uri is not None:
|
|
25131
|
-
pulumi.set(__self__, "store_uri", store_uri)
|
|
25132
25301
|
if uris is not None:
|
|
25133
25302
|
pulumi.set(__self__, "uris", uris)
|
|
25134
25303
|
|
|
@@ -25156,18 +25325,6 @@ class ThanosThanosArgs:
|
|
|
25156
25325
|
def query_uri(self, value: Optional[pulumi.Input[str]]):
|
|
25157
25326
|
pulumi.set(self, "query_uri", value)
|
|
25158
25327
|
|
|
25159
|
-
@property
|
|
25160
|
-
@pulumi.getter(name="receiverIngestingRemoteWriteUri")
|
|
25161
|
-
def receiver_ingesting_remote_write_uri(self) -> Optional[pulumi.Input[str]]:
|
|
25162
|
-
"""
|
|
25163
|
-
Receiver ingesting remote write URI.
|
|
25164
|
-
"""
|
|
25165
|
-
return pulumi.get(self, "receiver_ingesting_remote_write_uri")
|
|
25166
|
-
|
|
25167
|
-
@receiver_ingesting_remote_write_uri.setter
|
|
25168
|
-
def receiver_ingesting_remote_write_uri(self, value: Optional[pulumi.Input[str]]):
|
|
25169
|
-
pulumi.set(self, "receiver_ingesting_remote_write_uri", value)
|
|
25170
|
-
|
|
25171
25328
|
@property
|
|
25172
25329
|
@pulumi.getter(name="receiverRemoteWriteUri")
|
|
25173
25330
|
def receiver_remote_write_uri(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -25180,19 +25337,6 @@ class ThanosThanosArgs:
|
|
|
25180
25337
|
def receiver_remote_write_uri(self, value: Optional[pulumi.Input[str]]):
|
|
25181
25338
|
pulumi.set(self, "receiver_remote_write_uri", value)
|
|
25182
25339
|
|
|
25183
|
-
@property
|
|
25184
|
-
@pulumi.getter(name="storeUri")
|
|
25185
|
-
@_utilities.deprecated("""This field was added by mistake and has never worked. It will be removed in future versions.""")
|
|
25186
|
-
def store_uri(self) -> Optional[pulumi.Input[str]]:
|
|
25187
|
-
"""
|
|
25188
|
-
Store URI.
|
|
25189
|
-
"""
|
|
25190
|
-
return pulumi.get(self, "store_uri")
|
|
25191
|
-
|
|
25192
|
-
@store_uri.setter
|
|
25193
|
-
def store_uri(self, value: Optional[pulumi.Input[str]]):
|
|
25194
|
-
pulumi.set(self, "store_uri", value)
|
|
25195
|
-
|
|
25196
25340
|
@property
|
|
25197
25341
|
@pulumi.getter
|
|
25198
25342
|
def uris(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
@@ -25462,6 +25606,7 @@ class ThanosThanosUserConfigPublicAccessArgs:
|
|
|
25462
25606
|
query_frontend: Optional[pulumi.Input[bool]] = None,
|
|
25463
25607
|
receiver_ingesting: Optional[pulumi.Input[bool]] = None,
|
|
25464
25608
|
receiver_routing: Optional[pulumi.Input[bool]] = None,
|
|
25609
|
+
ruler: Optional[pulumi.Input[bool]] = None,
|
|
25465
25610
|
store: Optional[pulumi.Input[bool]] = None):
|
|
25466
25611
|
"""
|
|
25467
25612
|
:param pulumi.Input[bool] compactor: Allow clients to connect to compactor from the public internet for service nodes that are in a project VPC or another type of private network.
|
|
@@ -25469,6 +25614,7 @@ class ThanosThanosUserConfigPublicAccessArgs:
|
|
|
25469
25614
|
:param pulumi.Input[bool] query_frontend: Allow clients to connect to query_frontend from the public internet for service nodes that are in a project VPC or another type of private network.
|
|
25470
25615
|
:param pulumi.Input[bool] receiver_ingesting: Allow clients to connect to receiver_ingesting from the public internet for service nodes that are in a project VPC or another type of private network.
|
|
25471
25616
|
:param pulumi.Input[bool] receiver_routing: Allow clients to connect to receiver_routing from the public internet for service nodes that are in a project VPC or another type of private network.
|
|
25617
|
+
:param pulumi.Input[bool] ruler: Allow clients to connect to ruler from the public internet for service nodes that are in a project VPC or another type of private network.
|
|
25472
25618
|
:param pulumi.Input[bool] store: Allow clients to connect to store from the public internet for service nodes that are in a project VPC or another type of private network.
|
|
25473
25619
|
"""
|
|
25474
25620
|
if compactor is not None:
|
|
@@ -25481,6 +25627,8 @@ class ThanosThanosUserConfigPublicAccessArgs:
|
|
|
25481
25627
|
pulumi.set(__self__, "receiver_ingesting", receiver_ingesting)
|
|
25482
25628
|
if receiver_routing is not None:
|
|
25483
25629
|
pulumi.set(__self__, "receiver_routing", receiver_routing)
|
|
25630
|
+
if ruler is not None:
|
|
25631
|
+
pulumi.set(__self__, "ruler", ruler)
|
|
25484
25632
|
if store is not None:
|
|
25485
25633
|
pulumi.set(__self__, "store", store)
|
|
25486
25634
|
|
|
@@ -25544,6 +25692,18 @@ class ThanosThanosUserConfigPublicAccessArgs:
|
|
|
25544
25692
|
def receiver_routing(self, value: Optional[pulumi.Input[bool]]):
|
|
25545
25693
|
pulumi.set(self, "receiver_routing", value)
|
|
25546
25694
|
|
|
25695
|
+
@property
|
|
25696
|
+
@pulumi.getter
|
|
25697
|
+
def ruler(self) -> Optional[pulumi.Input[bool]]:
|
|
25698
|
+
"""
|
|
25699
|
+
Allow clients to connect to ruler from the public internet for service nodes that are in a project VPC or another type of private network.
|
|
25700
|
+
"""
|
|
25701
|
+
return pulumi.get(self, "ruler")
|
|
25702
|
+
|
|
25703
|
+
@ruler.setter
|
|
25704
|
+
def ruler(self, value: Optional[pulumi.Input[bool]]):
|
|
25705
|
+
pulumi.set(self, "ruler", value)
|
|
25706
|
+
|
|
25547
25707
|
@property
|
|
25548
25708
|
@pulumi.getter
|
|
25549
25709
|
def store(self) -> Optional[pulumi.Input[bool]]:
|
|
@@ -23,7 +23,7 @@ class AccountTeamProjectArgs:
|
|
|
23
23
|
:param pulumi.Input[str] account_id: The unique account id
|
|
24
24
|
:param pulumi.Input[str] team_id: An account team id
|
|
25
25
|
:param pulumi.Input[str] project_name: The name of an already existing project
|
|
26
|
-
:param pulumi.Input[str] team_type: The Account team project type. The possible values are `admin`, `operator`, `developer` and `
|
|
26
|
+
:param pulumi.Input[str] team_type: The Account team project type. The possible values are `admin`, `operator`, `developer`, `read_only` and `project:permissions:read`.
|
|
27
27
|
"""
|
|
28
28
|
pulumi.set(__self__, "account_id", account_id)
|
|
29
29
|
pulumi.set(__self__, "team_id", team_id)
|
|
@@ -72,7 +72,7 @@ class AccountTeamProjectArgs:
|
|
|
72
72
|
@pulumi.getter(name="teamType")
|
|
73
73
|
def team_type(self) -> Optional[pulumi.Input[str]]:
|
|
74
74
|
"""
|
|
75
|
-
The Account team project type. The possible values are `admin`, `operator`, `developer` and `
|
|
75
|
+
The Account team project type. The possible values are `admin`, `operator`, `developer`, `read_only` and `project:permissions:read`.
|
|
76
76
|
"""
|
|
77
77
|
return pulumi.get(self, "team_type")
|
|
78
78
|
|
|
@@ -93,7 +93,7 @@ class _AccountTeamProjectState:
|
|
|
93
93
|
:param pulumi.Input[str] account_id: The unique account id
|
|
94
94
|
:param pulumi.Input[str] project_name: The name of an already existing project
|
|
95
95
|
:param pulumi.Input[str] team_id: An account team id
|
|
96
|
-
:param pulumi.Input[str] team_type: The Account team project type. The possible values are `admin`, `operator`, `developer` and `
|
|
96
|
+
:param pulumi.Input[str] team_type: The Account team project type. The possible values are `admin`, `operator`, `developer`, `read_only` and `project:permissions:read`.
|
|
97
97
|
"""
|
|
98
98
|
if account_id is not None:
|
|
99
99
|
pulumi.set(__self__, "account_id", account_id)
|
|
@@ -144,7 +144,7 @@ class _AccountTeamProjectState:
|
|
|
144
144
|
@pulumi.getter(name="teamType")
|
|
145
145
|
def team_type(self) -> Optional[pulumi.Input[str]]:
|
|
146
146
|
"""
|
|
147
|
-
The Account team project type. The possible values are `admin`, `operator`, `developer` and `
|
|
147
|
+
The Account team project type. The possible values are `admin`, `operator`, `developer`, `read_only` and `project:permissions:read`.
|
|
148
148
|
"""
|
|
149
149
|
return pulumi.get(self, "team_type")
|
|
150
150
|
|
|
@@ -205,7 +205,7 @@ class AccountTeamProject(pulumi.CustomResource):
|
|
|
205
205
|
:param pulumi.Input[str] account_id: The unique account id
|
|
206
206
|
:param pulumi.Input[str] project_name: The name of an already existing project
|
|
207
207
|
:param pulumi.Input[str] team_id: An account team id
|
|
208
|
-
:param pulumi.Input[str] team_type: The Account team project type. The possible values are `admin`, `operator`, `developer` and `
|
|
208
|
+
:param pulumi.Input[str] team_type: The Account team project type. The possible values are `admin`, `operator`, `developer`, `read_only` and `project:permissions:read`.
|
|
209
209
|
"""
|
|
210
210
|
...
|
|
211
211
|
@overload
|
|
@@ -310,7 +310,7 @@ class AccountTeamProject(pulumi.CustomResource):
|
|
|
310
310
|
:param pulumi.Input[str] account_id: The unique account id
|
|
311
311
|
:param pulumi.Input[str] project_name: The name of an already existing project
|
|
312
312
|
:param pulumi.Input[str] team_id: An account team id
|
|
313
|
-
:param pulumi.Input[str] team_type: The Account team project type. The possible values are `admin`, `operator`, `developer` and `
|
|
313
|
+
:param pulumi.Input[str] team_type: The Account team project type. The possible values are `admin`, `operator`, `developer`, `read_only` and `project:permissions:read`.
|
|
314
314
|
"""
|
|
315
315
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
316
316
|
|
|
@@ -350,7 +350,7 @@ class AccountTeamProject(pulumi.CustomResource):
|
|
|
350
350
|
@pulumi.getter(name="teamType")
|
|
351
351
|
def team_type(self) -> pulumi.Output[Optional[str]]:
|
|
352
352
|
"""
|
|
353
|
-
The Account team project type. The possible values are `admin`, `operator`, `developer` and `
|
|
353
|
+
The Account team project type. The possible values are `admin`, `operator`, `developer`, `read_only` and `project:permissions:read`.
|
|
354
354
|
"""
|
|
355
355
|
return pulumi.get(self, "team_type")
|
|
356
356
|
|
pulumi_aiven/cassandra.py
CHANGED
|
@@ -361,6 +361,9 @@ class _CassandraState:
|
|
|
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 _CassandraState:
|
|
|
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
|
|
@@ -1104,6 +1108,7 @@ class Cassandra(pulumi.CustomResource):
|
|
|
1104
1108
|
|
|
1105
1109
|
@property
|
|
1106
1110
|
@pulumi.getter(name="diskSpaceUsed")
|
|
1111
|
+
@_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.""")
|
|
1107
1112
|
def disk_space_used(self) -> pulumi.Output[str]:
|
|
1108
1113
|
"""
|
|
1109
1114
|
Disk space that service is currently using
|
|
@@ -1144,7 +1149,7 @@ class Cassandra(pulumi.CustomResource):
|
|
|
1144
1149
|
|
|
1145
1150
|
@property
|
|
1146
1151
|
@pulumi.getter(name="projectVpcId")
|
|
1147
|
-
def project_vpc_id(self) -> pulumi.Output[
|
|
1152
|
+
def project_vpc_id(self) -> pulumi.Output[str]:
|
|
1148
1153
|
"""
|
|
1149
1154
|
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.
|
|
1150
1155
|
"""
|
|
@@ -1160,7 +1165,7 @@ class Cassandra(pulumi.CustomResource):
|
|
|
1160
1165
|
|
|
1161
1166
|
@property
|
|
1162
1167
|
@pulumi.getter(name="serviceIntegrations")
|
|
1163
|
-
def service_integrations(self) -> pulumi.Output[
|
|
1168
|
+
def service_integrations(self) -> pulumi.Output[Sequence['outputs.CassandraServiceIntegration']]:
|
|
1164
1169
|
"""
|
|
1165
1170
|
Service integrations to specify when creating a service. Not applied after initial service creation
|
|
1166
1171
|
"""
|