pulumi-aiven 6.17.0a1716959607__py3-none-any.whl → 6.17.1__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-aiven might be problematic. Click here for more details.
- pulumi_aiven/_inputs.py +30 -174
- pulumi_aiven/get_mirror_maker_replication_flow.py +14 -1
- pulumi_aiven/get_organization_application_user.py +15 -8
- pulumi_aiven/mirror_maker_replication_flow.py +47 -0
- pulumi_aiven/organization_application_user.py +52 -45
- pulumi_aiven/organization_application_user_token.py +15 -51
- pulumi_aiven/outputs.py +62 -174
- pulumi_aiven/pulumi-plugin.json +1 -1
- {pulumi_aiven-6.17.0a1716959607.dist-info → pulumi_aiven-6.17.1.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.17.0a1716959607.dist-info → pulumi_aiven-6.17.1.dist-info}/RECORD +12 -12
- {pulumi_aiven-6.17.0a1716959607.dist-info → pulumi_aiven-6.17.1.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.17.0a1716959607.dist-info → pulumi_aiven-6.17.1.dist-info}/top_level.txt +0 -0
pulumi_aiven/_inputs.py
CHANGED
|
@@ -178,8 +178,6 @@ __all__ = [
|
|
|
178
178
|
'OpenSearchServiceIntegrationArgs',
|
|
179
179
|
'OpenSearchTagArgs',
|
|
180
180
|
'OpenSearchTechEmailArgs',
|
|
181
|
-
'OrganizationApplicationUserTimeoutsArgs',
|
|
182
|
-
'OrganizationApplicationUserTokenTimeoutsArgs',
|
|
183
181
|
'OrganizationGroupProjectTimeoutsArgs',
|
|
184
182
|
'OrganizationTimeoutsArgs',
|
|
185
183
|
'OrganizationUserGroupMemberTimeoutsArgs',
|
|
@@ -391,7 +389,7 @@ class CassandraCassandraUserConfigArgs:
|
|
|
391
389
|
:param pulumi.Input[int] backup_hour: The hour of day (in UTC) when backup for the service is started. New backup is only started if previous backup has already completed.
|
|
392
390
|
:param pulumi.Input[int] backup_minute: The minute of an hour when backup for the service is started. New backup is only started if previous backup has already completed.
|
|
393
391
|
:param pulumi.Input['CassandraCassandraUserConfigCassandraArgs'] cassandra: Cassandra configuration values
|
|
394
|
-
:param pulumi.Input[str] cassandra_version: Enum: `3`, `4`, `4.1
|
|
392
|
+
:param pulumi.Input[str] cassandra_version: Enum: `3`, `4`, `4.1`, and newer. Cassandra version.
|
|
395
393
|
:param pulumi.Input[Sequence[pulumi.Input['CassandraCassandraUserConfigIpFilterObjectArgs']]] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
|
|
396
394
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
397
395
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filters: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
@@ -498,7 +496,7 @@ class CassandraCassandraUserConfigArgs:
|
|
|
498
496
|
@pulumi.getter(name="cassandraVersion")
|
|
499
497
|
def cassandra_version(self) -> Optional[pulumi.Input[str]]:
|
|
500
498
|
"""
|
|
501
|
-
Enum: `3`, `4`, `4.1
|
|
499
|
+
Enum: `3`, `4`, `4.1`, and newer. Cassandra version.
|
|
502
500
|
"""
|
|
503
501
|
return pulumi.get(self, "cassandra_version")
|
|
504
502
|
|
|
@@ -2047,7 +2045,7 @@ class DragonflyDragonflyUserConfigArgs:
|
|
|
2047
2045
|
static_ips: Optional[pulumi.Input[bool]] = None):
|
|
2048
2046
|
"""
|
|
2049
2047
|
:param pulumi.Input[bool] cache_mode: Evict entries when getting close to maxmemory limit. The default value is `false`.
|
|
2050
|
-
:param pulumi.Input[str] dragonfly_persistence: Enum: `off`, `rdb`. When persistence is 'rdb', Dragonfly does RDB dumps
|
|
2048
|
+
:param pulumi.Input[str] dragonfly_persistence: Enum: `off`, `rdb`, `dfs`. When persistence is 'rdb' or 'dfs', Dragonfly does RDB or DFS dumps every 10 minutes. Dumps are done according to the backup schedule for backup purposes. When persistence is 'off', no RDB/DFS dumps or backups are done, so data can be lost at any moment if the service is restarted for any reason, or if the service is powered off. Also, the service can't be forked.
|
|
2051
2049
|
:param pulumi.Input[bool] dragonfly_ssl: Require SSL to access Dragonfly. The default value is `true`.
|
|
2052
2050
|
:param pulumi.Input[Sequence[pulumi.Input['DragonflyDragonflyUserConfigIpFilterObjectArgs']]] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
|
|
2053
2051
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
@@ -2112,7 +2110,7 @@ class DragonflyDragonflyUserConfigArgs:
|
|
|
2112
2110
|
@pulumi.getter(name="dragonflyPersistence")
|
|
2113
2111
|
def dragonfly_persistence(self) -> Optional[pulumi.Input[str]]:
|
|
2114
2112
|
"""
|
|
2115
|
-
Enum: `off`, `rdb`. When persistence is 'rdb', Dragonfly does RDB dumps
|
|
2113
|
+
Enum: `off`, `rdb`, `dfs`. When persistence is 'rdb' or 'dfs', Dragonfly does RDB or DFS dumps every 10 minutes. Dumps are done according to the backup schedule for backup purposes. When persistence is 'off', no RDB/DFS dumps or backups are done, so data can be lost at any moment if the service is restarted for any reason, or if the service is powered off. Also, the service can't be forked.
|
|
2116
2114
|
"""
|
|
2117
2115
|
return pulumi.get(self, "dragonfly_persistence")
|
|
2118
2116
|
|
|
@@ -2912,7 +2910,7 @@ class FlinkFlinkUserConfigArgs:
|
|
|
2912
2910
|
static_ips: Optional[pulumi.Input[bool]] = None):
|
|
2913
2911
|
"""
|
|
2914
2912
|
:param pulumi.Input[str] additional_backup_regions: Additional Cloud Regions for Backup Replication.
|
|
2915
|
-
:param pulumi.Input[str] flink_version: Enum: `1.16
|
|
2913
|
+
:param pulumi.Input[str] flink_version: Enum: `1.16`, `1.19`, and newer. Flink major version.
|
|
2916
2914
|
:param pulumi.Input[Sequence[pulumi.Input['FlinkFlinkUserConfigIpFilterObjectArgs']]] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
|
|
2917
2915
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
2918
2916
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filters: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
@@ -2965,7 +2963,7 @@ class FlinkFlinkUserConfigArgs:
|
|
|
2965
2963
|
@pulumi.getter(name="flinkVersion")
|
|
2966
2964
|
def flink_version(self) -> Optional[pulumi.Input[str]]:
|
|
2967
2965
|
"""
|
|
2968
|
-
Enum: `1.16
|
|
2966
|
+
Enum: `1.16`, `1.19`, and newer. Flink major version.
|
|
2969
2967
|
"""
|
|
2970
2968
|
return pulumi.get(self, "flink_version")
|
|
2971
2969
|
|
|
@@ -7139,7 +7137,7 @@ class KafkaKafkaUserConfigArgs:
|
|
|
7139
7137
|
:param pulumi.Input[bool] kafka_rest: Enable Kafka-REST service. The default value is `false`.
|
|
7140
7138
|
:param pulumi.Input[bool] kafka_rest_authorization: Enable authorization in Kafka-REST service.
|
|
7141
7139
|
:param pulumi.Input['KafkaKafkaUserConfigKafkaRestConfigArgs'] kafka_rest_config: Kafka REST configuration
|
|
7142
|
-
:param pulumi.Input[str] kafka_version: Enum: `3.1`, `3.2`, `3.3`, `3.4`, `3.5`, `3.6`, `3.7
|
|
7140
|
+
:param pulumi.Input[str] kafka_version: Enum: `3.1`, `3.2`, `3.3`, `3.4`, `3.5`, `3.6`, `3.7`, and newer. Kafka major version.
|
|
7143
7141
|
:param pulumi.Input['KafkaKafkaUserConfigPrivateAccessArgs'] private_access: Allow access to selected service ports from private networks
|
|
7144
7142
|
:param pulumi.Input['KafkaKafkaUserConfigPrivatelinkAccessArgs'] privatelink_access: Allow access to selected service components through Privatelink
|
|
7145
7143
|
:param pulumi.Input['KafkaKafkaUserConfigPublicAccessArgs'] public_access: Allow access to selected service ports from the public Internet
|
|
@@ -7366,7 +7364,7 @@ class KafkaKafkaUserConfigArgs:
|
|
|
7366
7364
|
@pulumi.getter(name="kafkaVersion")
|
|
7367
7365
|
def kafka_version(self) -> Optional[pulumi.Input[str]]:
|
|
7368
7366
|
"""
|
|
7369
|
-
Enum: `3.1`, `3.2`, `3.3`, `3.4`, `3.5`, `3.6`, `3.7
|
|
7367
|
+
Enum: `3.1`, `3.2`, `3.3`, `3.4`, `3.5`, `3.6`, `3.7`, and newer. Kafka major version.
|
|
7370
7368
|
"""
|
|
7371
7369
|
return pulumi.get(self, "kafka_version")
|
|
7372
7370
|
|
|
@@ -10495,8 +10493,8 @@ class M3AggregatorM3aggregatorUserConfigArgs:
|
|
|
10495
10493
|
:param pulumi.Input[Sequence[pulumi.Input['M3AggregatorM3aggregatorUserConfigIpFilterObjectArgs']]] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'
|
|
10496
10494
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
10497
10495
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filters: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
10498
|
-
:param pulumi.Input[str] m3_version: Enum: `1.1`, `1.2`, `1.5
|
|
10499
|
-
:param pulumi.Input[str] m3aggregator_version: Enum: `1.1`, `1.2`, `1.5
|
|
10496
|
+
:param pulumi.Input[str] m3_version: Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (deprecated, use m3aggregator_version).
|
|
10497
|
+
:param pulumi.Input[str] m3aggregator_version: Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (the minimum compatible version).
|
|
10500
10498
|
:param pulumi.Input[bool] service_log: Store logs for the service so that they are available in the HTTP API and console.
|
|
10501
10499
|
:param pulumi.Input[bool] static_ips: Use static public IP addresses.
|
|
10502
10500
|
"""
|
|
@@ -10575,7 +10573,7 @@ class M3AggregatorM3aggregatorUserConfigArgs:
|
|
|
10575
10573
|
@pulumi.getter(name="m3Version")
|
|
10576
10574
|
def m3_version(self) -> Optional[pulumi.Input[str]]:
|
|
10577
10575
|
"""
|
|
10578
|
-
Enum: `1.1`, `1.2`, `1.5
|
|
10576
|
+
Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (deprecated, use m3aggregator_version).
|
|
10579
10577
|
"""
|
|
10580
10578
|
return pulumi.get(self, "m3_version")
|
|
10581
10579
|
|
|
@@ -10587,7 +10585,7 @@ class M3AggregatorM3aggregatorUserConfigArgs:
|
|
|
10587
10585
|
@pulumi.getter(name="m3aggregatorVersion")
|
|
10588
10586
|
def m3aggregator_version(self) -> Optional[pulumi.Input[str]]:
|
|
10589
10587
|
"""
|
|
10590
|
-
Enum: `1.1`, `1.2`, `1.5
|
|
10588
|
+
Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (the minimum compatible version).
|
|
10591
10589
|
"""
|
|
10592
10590
|
return pulumi.get(self, "m3aggregator_version")
|
|
10593
10591
|
|
|
@@ -11021,9 +11019,9 @@ class M3DbM3dbUserConfigArgs:
|
|
|
11021
11019
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filters: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
11022
11020
|
:param pulumi.Input['M3DbM3dbUserConfigLimitsArgs'] limits: M3 limits
|
|
11023
11021
|
:param pulumi.Input['M3DbM3dbUserConfigM3Args'] m3: M3 specific configuration options
|
|
11024
|
-
:param pulumi.Input[str] m3_version: Enum: `1.1`, `1.2`, `1.5
|
|
11022
|
+
:param pulumi.Input[str] m3_version: Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (deprecated, use m3db_version).
|
|
11025
11023
|
:param pulumi.Input[bool] m3coordinator_enable_graphite_carbon_ingest: Enables access to Graphite Carbon plaintext metrics ingestion. It can be enabled only for services inside VPCs. The metrics are written to aggregated namespaces only.
|
|
11026
|
-
:param pulumi.Input[str] m3db_version: Enum: `1.1`, `1.2`, `1.5
|
|
11024
|
+
:param pulumi.Input[str] m3db_version: Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (the minimum compatible version).
|
|
11027
11025
|
:param pulumi.Input[Sequence[pulumi.Input['M3DbM3dbUserConfigNamespaceArgs']]] namespaces: List of M3 namespaces
|
|
11028
11026
|
:param pulumi.Input['M3DbM3dbUserConfigPrivateAccessArgs'] private_access: Allow access to selected service ports from private networks
|
|
11029
11027
|
: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.
|
|
@@ -11164,7 +11162,7 @@ class M3DbM3dbUserConfigArgs:
|
|
|
11164
11162
|
@pulumi.getter(name="m3Version")
|
|
11165
11163
|
def m3_version(self) -> Optional[pulumi.Input[str]]:
|
|
11166
11164
|
"""
|
|
11167
|
-
Enum: `1.1`, `1.2`, `1.5
|
|
11165
|
+
Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (deprecated, use m3db_version).
|
|
11168
11166
|
"""
|
|
11169
11167
|
return pulumi.get(self, "m3_version")
|
|
11170
11168
|
|
|
@@ -11188,7 +11186,7 @@ class M3DbM3dbUserConfigArgs:
|
|
|
11188
11186
|
@pulumi.getter(name="m3dbVersion")
|
|
11189
11187
|
def m3db_version(self) -> Optional[pulumi.Input[str]]:
|
|
11190
11188
|
"""
|
|
11191
|
-
Enum: `1.1`, `1.2`, `1.5
|
|
11189
|
+
Enum: `1.1`, `1.2`, `1.5`, and newer. M3 major version (the minimum compatible version).
|
|
11192
11190
|
"""
|
|
11193
11191
|
return pulumi.get(self, "m3db_version")
|
|
11194
11192
|
|
|
@@ -12446,7 +12444,7 @@ class MySqlMysqlUserConfigArgs:
|
|
|
12446
12444
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filters: Allow incoming connections from CIDR address block, e.g. '10.20.0.0/16'.
|
|
12447
12445
|
:param pulumi.Input['MySqlMysqlUserConfigMigrationArgs'] migration: Migrate data from existing server
|
|
12448
12446
|
:param pulumi.Input['MySqlMysqlUserConfigMysqlArgs'] mysql: mysql.conf configuration values
|
|
12449
|
-
:param pulumi.Input[str] mysql_version: Enum: `8
|
|
12447
|
+
:param pulumi.Input[str] mysql_version: Enum: `8`, and newer. MySQL major version.
|
|
12450
12448
|
:param pulumi.Input['MySqlMysqlUserConfigPrivateAccessArgs'] private_access: Allow access to selected service ports from private networks
|
|
12451
12449
|
:param pulumi.Input['MySqlMysqlUserConfigPrivatelinkAccessArgs'] privatelink_access: Allow access to selected service components through Privatelink
|
|
12452
12450
|
: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.
|
|
@@ -12639,7 +12637,7 @@ class MySqlMysqlUserConfigArgs:
|
|
|
12639
12637
|
@pulumi.getter(name="mysqlVersion")
|
|
12640
12638
|
def mysql_version(self) -> Optional[pulumi.Input[str]]:
|
|
12641
12639
|
"""
|
|
12642
|
-
Enum: `8
|
|
12640
|
+
Enum: `8`, and newer. MySQL major version.
|
|
12643
12641
|
"""
|
|
12644
12642
|
return pulumi.get(self, "mysql_version")
|
|
12645
12643
|
|
|
@@ -13925,7 +13923,7 @@ class OpenSearchOpensearchUserConfigArgs:
|
|
|
13925
13923
|
:param pulumi.Input['OpenSearchOpensearchUserConfigOpenidArgs'] openid: OpenSearch OpenID Connect Configuration
|
|
13926
13924
|
:param pulumi.Input['OpenSearchOpensearchUserConfigOpensearchArgs'] opensearch: OpenSearch settings
|
|
13927
13925
|
:param pulumi.Input['OpenSearchOpensearchUserConfigOpensearchDashboardsArgs'] opensearch_dashboards: OpenSearch Dashboards settings
|
|
13928
|
-
:param pulumi.Input[str] opensearch_version: Enum: `1`, `2
|
|
13926
|
+
:param pulumi.Input[str] opensearch_version: Enum: `1`, `2`, and newer. OpenSearch major version.
|
|
13929
13927
|
:param pulumi.Input['OpenSearchOpensearchUserConfigPrivateAccessArgs'] private_access: Allow access to selected service ports from private networks
|
|
13930
13928
|
:param pulumi.Input['OpenSearchOpensearchUserConfigPrivatelinkAccessArgs'] privatelink_access: Allow access to selected service components through Privatelink
|
|
13931
13929
|
: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.
|
|
@@ -14149,7 +14147,7 @@ class OpenSearchOpensearchUserConfigArgs:
|
|
|
14149
14147
|
@pulumi.getter(name="opensearchVersion")
|
|
14150
14148
|
def opensearch_version(self) -> Optional[pulumi.Input[str]]:
|
|
14151
14149
|
"""
|
|
14152
|
-
Enum: `1`, `2
|
|
14150
|
+
Enum: `1`, `2`, and newer. OpenSearch major version.
|
|
14153
14151
|
"""
|
|
14154
14152
|
return pulumi.get(self, "opensearch_version")
|
|
14155
14153
|
|
|
@@ -15974,148 +15972,6 @@ class OpenSearchTechEmailArgs:
|
|
|
15974
15972
|
pulumi.set(self, "email", value)
|
|
15975
15973
|
|
|
15976
15974
|
|
|
15977
|
-
@pulumi.input_type
|
|
15978
|
-
class OrganizationApplicationUserTimeoutsArgs:
|
|
15979
|
-
def __init__(__self__, *,
|
|
15980
|
-
create: Optional[pulumi.Input[str]] = None,
|
|
15981
|
-
delete: Optional[pulumi.Input[str]] = None,
|
|
15982
|
-
read: Optional[pulumi.Input[str]] = None,
|
|
15983
|
-
update: Optional[pulumi.Input[str]] = None):
|
|
15984
|
-
"""
|
|
15985
|
-
:param pulumi.Input[str] create: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
15986
|
-
:param pulumi.Input[str] delete: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
15987
|
-
:param pulumi.Input[str] read: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
|
|
15988
|
-
:param pulumi.Input[str] update: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
15989
|
-
"""
|
|
15990
|
-
if create is not None:
|
|
15991
|
-
pulumi.set(__self__, "create", create)
|
|
15992
|
-
if delete is not None:
|
|
15993
|
-
pulumi.set(__self__, "delete", delete)
|
|
15994
|
-
if read is not None:
|
|
15995
|
-
pulumi.set(__self__, "read", read)
|
|
15996
|
-
if update is not None:
|
|
15997
|
-
pulumi.set(__self__, "update", update)
|
|
15998
|
-
|
|
15999
|
-
@property
|
|
16000
|
-
@pulumi.getter
|
|
16001
|
-
def create(self) -> Optional[pulumi.Input[str]]:
|
|
16002
|
-
"""
|
|
16003
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
16004
|
-
"""
|
|
16005
|
-
return pulumi.get(self, "create")
|
|
16006
|
-
|
|
16007
|
-
@create.setter
|
|
16008
|
-
def create(self, value: Optional[pulumi.Input[str]]):
|
|
16009
|
-
pulumi.set(self, "create", value)
|
|
16010
|
-
|
|
16011
|
-
@property
|
|
16012
|
-
@pulumi.getter
|
|
16013
|
-
def delete(self) -> Optional[pulumi.Input[str]]:
|
|
16014
|
-
"""
|
|
16015
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
16016
|
-
"""
|
|
16017
|
-
return pulumi.get(self, "delete")
|
|
16018
|
-
|
|
16019
|
-
@delete.setter
|
|
16020
|
-
def delete(self, value: Optional[pulumi.Input[str]]):
|
|
16021
|
-
pulumi.set(self, "delete", value)
|
|
16022
|
-
|
|
16023
|
-
@property
|
|
16024
|
-
@pulumi.getter
|
|
16025
|
-
def read(self) -> Optional[pulumi.Input[str]]:
|
|
16026
|
-
"""
|
|
16027
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
|
|
16028
|
-
"""
|
|
16029
|
-
return pulumi.get(self, "read")
|
|
16030
|
-
|
|
16031
|
-
@read.setter
|
|
16032
|
-
def read(self, value: Optional[pulumi.Input[str]]):
|
|
16033
|
-
pulumi.set(self, "read", value)
|
|
16034
|
-
|
|
16035
|
-
@property
|
|
16036
|
-
@pulumi.getter
|
|
16037
|
-
def update(self) -> Optional[pulumi.Input[str]]:
|
|
16038
|
-
"""
|
|
16039
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
16040
|
-
"""
|
|
16041
|
-
return pulumi.get(self, "update")
|
|
16042
|
-
|
|
16043
|
-
@update.setter
|
|
16044
|
-
def update(self, value: Optional[pulumi.Input[str]]):
|
|
16045
|
-
pulumi.set(self, "update", value)
|
|
16046
|
-
|
|
16047
|
-
|
|
16048
|
-
@pulumi.input_type
|
|
16049
|
-
class OrganizationApplicationUserTokenTimeoutsArgs:
|
|
16050
|
-
def __init__(__self__, *,
|
|
16051
|
-
create: Optional[pulumi.Input[str]] = None,
|
|
16052
|
-
delete: Optional[pulumi.Input[str]] = None,
|
|
16053
|
-
read: Optional[pulumi.Input[str]] = None,
|
|
16054
|
-
update: Optional[pulumi.Input[str]] = None):
|
|
16055
|
-
"""
|
|
16056
|
-
:param pulumi.Input[str] create: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
16057
|
-
:param pulumi.Input[str] delete: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
16058
|
-
:param pulumi.Input[str] read: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
|
|
16059
|
-
:param pulumi.Input[str] update: A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
16060
|
-
"""
|
|
16061
|
-
if create is not None:
|
|
16062
|
-
pulumi.set(__self__, "create", create)
|
|
16063
|
-
if delete is not None:
|
|
16064
|
-
pulumi.set(__self__, "delete", delete)
|
|
16065
|
-
if read is not None:
|
|
16066
|
-
pulumi.set(__self__, "read", read)
|
|
16067
|
-
if update is not None:
|
|
16068
|
-
pulumi.set(__self__, "update", update)
|
|
16069
|
-
|
|
16070
|
-
@property
|
|
16071
|
-
@pulumi.getter
|
|
16072
|
-
def create(self) -> Optional[pulumi.Input[str]]:
|
|
16073
|
-
"""
|
|
16074
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
16075
|
-
"""
|
|
16076
|
-
return pulumi.get(self, "create")
|
|
16077
|
-
|
|
16078
|
-
@create.setter
|
|
16079
|
-
def create(self, value: Optional[pulumi.Input[str]]):
|
|
16080
|
-
pulumi.set(self, "create", value)
|
|
16081
|
-
|
|
16082
|
-
@property
|
|
16083
|
-
@pulumi.getter
|
|
16084
|
-
def delete(self) -> Optional[pulumi.Input[str]]:
|
|
16085
|
-
"""
|
|
16086
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Setting a timeout for a Delete operation is only applicable if changes are saved into state before the destroy operation occurs.
|
|
16087
|
-
"""
|
|
16088
|
-
return pulumi.get(self, "delete")
|
|
16089
|
-
|
|
16090
|
-
@delete.setter
|
|
16091
|
-
def delete(self, value: Optional[pulumi.Input[str]]):
|
|
16092
|
-
pulumi.set(self, "delete", value)
|
|
16093
|
-
|
|
16094
|
-
@property
|
|
16095
|
-
@pulumi.getter
|
|
16096
|
-
def read(self) -> Optional[pulumi.Input[str]]:
|
|
16097
|
-
"""
|
|
16098
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours). Read operations occur during any refresh or planning operation when refresh is enabled.
|
|
16099
|
-
"""
|
|
16100
|
-
return pulumi.get(self, "read")
|
|
16101
|
-
|
|
16102
|
-
@read.setter
|
|
16103
|
-
def read(self, value: Optional[pulumi.Input[str]]):
|
|
16104
|
-
pulumi.set(self, "read", value)
|
|
16105
|
-
|
|
16106
|
-
@property
|
|
16107
|
-
@pulumi.getter
|
|
16108
|
-
def update(self) -> Optional[pulumi.Input[str]]:
|
|
16109
|
-
"""
|
|
16110
|
-
A string that can be [parsed as a duration](https://pkg.go.dev/time#ParseDuration) consisting of numbers and unit suffixes, such as "30s" or "2h45m". Valid time units are "s" (seconds), "m" (minutes), "h" (hours).
|
|
16111
|
-
"""
|
|
16112
|
-
return pulumi.get(self, "update")
|
|
16113
|
-
|
|
16114
|
-
@update.setter
|
|
16115
|
-
def update(self, value: Optional[pulumi.Input[str]]):
|
|
16116
|
-
pulumi.set(self, "update", value)
|
|
16117
|
-
|
|
16118
|
-
|
|
16119
15975
|
@pulumi.input_type
|
|
16120
15976
|
class OrganizationGroupProjectTimeoutsArgs:
|
|
16121
15977
|
def __init__(__self__, *,
|
|
@@ -16849,7 +16705,7 @@ class PgPgUserConfigArgs:
|
|
|
16849
16705
|
:param pulumi.Input[bool] pg_read_replica: Should the service which is being forked be a read replica (deprecated, use read_replica service integration instead).
|
|
16850
16706
|
:param pulumi.Input[str] pg_service_to_fork_from: Name of the PG Service from which to fork (deprecated, use service*to*fork_from). This has effect only when a new service is being created.
|
|
16851
16707
|
:param pulumi.Input[bool] pg_stat_monitor_enable: Enable the pg*stat*monitor extension. Enabling this extension will cause the cluster to be restarted.When this extension is enabled, pg*stat*statements results for utility commands are unreliable. The default value is `false`.
|
|
16852
|
-
:param pulumi.Input[str] pg_version: Enum: `10`, `11`, `12`, `13`, `14`, `15`, `16
|
|
16708
|
+
:param pulumi.Input[str] pg_version: Enum: `10`, `11`, `12`, `13`, `14`, `15`, `16`, and newer. PostgreSQL major version.
|
|
16853
16709
|
:param pulumi.Input['PgPgUserConfigPgauditArgs'] pgaudit: System-wide settings for the pgaudit extension
|
|
16854
16710
|
:param pulumi.Input['PgPgUserConfigPgbouncerArgs'] pgbouncer: PGBouncer connection pooling settings
|
|
16855
16711
|
:param pulumi.Input['PgPgUserConfigPglookoutArgs'] pglookout: System-wide settings for pglookout
|
|
@@ -17128,7 +16984,7 @@ class PgPgUserConfigArgs:
|
|
|
17128
16984
|
@pulumi.getter(name="pgVersion")
|
|
17129
16985
|
def pg_version(self) -> Optional[pulumi.Input[str]]:
|
|
17130
16986
|
"""
|
|
17131
|
-
Enum: `10`, `11`, `12`, `13`, `14`, `15`, `16
|
|
16987
|
+
Enum: `10`, `11`, `12`, `13`, `14`, `15`, `16`, and newer. PostgreSQL major version.
|
|
17132
16988
|
"""
|
|
17133
16989
|
return pulumi.get(self, "pg_version")
|
|
17134
16990
|
|
|
@@ -17572,7 +17428,7 @@ class PgPgUserConfigPgArgs:
|
|
|
17572
17428
|
:param pulumi.Input[bool] jit: Controls system-wide use of Just-in-Time Compilation (JIT).
|
|
17573
17429
|
:param pulumi.Input[int] log_autovacuum_min_duration: Causes each action executed by autovacuum to be logged if it ran for at least the specified number of milliseconds. Setting this to zero logs all autovacuum actions. Minus-one (the default) disables logging autovacuum actions.
|
|
17574
17430
|
:param pulumi.Input[str] log_error_verbosity: Enum: `TERSE`, `DEFAULT`, `VERBOSE`. Controls the amount of detail written in the server log for each message that is logged.
|
|
17575
|
-
:param pulumi.Input[str] log_line_prefix: Enum: `'pid=%p,user=%u,db=%d,app=%a,client=%h '`, `'%t [%p]: [%l-1] user=%u,db=%d,app=%a,client=%h '`, `'%m [%p] %q[user=%u,db=%d,app=%a] '`. Choose from one of the available log
|
|
17431
|
+
:param pulumi.Input[str] log_line_prefix: Enum: `'pid=%p,user=%u,db=%d,app=%a,client=%h '`, `'%t [%p]: [%l-1] user=%u,db=%d,app=%a,client=%h '`, `'%m [%p] %q[user=%u,db=%d,app=%a] '`. Choose from one of the available log formats.
|
|
17576
17432
|
:param pulumi.Input[int] log_min_duration_statement: Log statements that take more than this number of milliseconds to run, -1 disables.
|
|
17577
17433
|
:param pulumi.Input[int] log_temp_files: Log statements for each temporary file created larger than this number of kilobytes, -1 disables.
|
|
17578
17434
|
:param pulumi.Input[int] max_files_per_process: PostgreSQL maximum number of files that can be open per process.
|
|
@@ -17934,7 +17790,7 @@ class PgPgUserConfigPgArgs:
|
|
|
17934
17790
|
@pulumi.getter(name="logLinePrefix")
|
|
17935
17791
|
def log_line_prefix(self) -> Optional[pulumi.Input[str]]:
|
|
17936
17792
|
"""
|
|
17937
|
-
Enum: `'pid=%p,user=%u,db=%d,app=%a,client=%h '`, `'%t [%p]: [%l-1] user=%u,db=%d,app=%a,client=%h '`, `'%m [%p] %q[user=%u,db=%d,app=%a] '`. Choose from one of the available log
|
|
17793
|
+
Enum: `'pid=%p,user=%u,db=%d,app=%a,client=%h '`, `'%t [%p]: [%l-1] user=%u,db=%d,app=%a,client=%h '`, `'%m [%p] %q[user=%u,db=%d,app=%a] '`. Choose from one of the available log formats.
|
|
17938
17794
|
"""
|
|
17939
17795
|
return pulumi.get(self, "log_line_prefix")
|
|
17940
17796
|
|
|
@@ -19386,11 +19242,11 @@ class RedisRedisUserConfigArgs:
|
|
|
19386
19242
|
:param pulumi.Input[str] redis_maxmemory_policy: Enum: `noeviction`, `allkeys-lru`, `volatile-lru`, `allkeys-random`, `volatile-random`, `volatile-ttl`, `volatile-lfu`, `allkeys-lfu`. Redis maxmemory-policy. The default value is `noeviction`.
|
|
19387
19243
|
:param pulumi.Input[str] redis_notify_keyspace_events: Set notify-keyspace-events option.
|
|
19388
19244
|
:param pulumi.Input[int] redis_number_of_databases: Set number of Redis databases. Changing this will cause a restart of the Redis service.
|
|
19389
|
-
:param pulumi.Input[str] redis_persistence: Enum: `off`, `rdb`. When persistence is 'rdb', Redis does RDB dumps each 10 minutes if any key is changed. Also RDB dumps are done according to backup schedule for backup purposes. When persistence is 'off', no RDB dumps
|
|
19245
|
+
:param pulumi.Input[str] redis_persistence: Enum: `off`, `rdb`. When persistence is 'rdb', Redis does RDB dumps each 10 minutes if any key is changed. Also RDB dumps are done according to the backup schedule for backup purposes. When persistence is 'off', no RDB dumps or backups are done, so data can be lost at any moment if the service is restarted for any reason, or if the service is powered off. Also, the service can't be forked.
|
|
19390
19246
|
:param pulumi.Input[int] redis_pubsub_client_output_buffer_limit: Set output buffer limit for pub / sub clients in MB. The value is the hard limit, the soft limit is 1/4 of the hard limit. When setting the limit, be mindful of the available memory in the selected service plan.
|
|
19391
19247
|
:param pulumi.Input[bool] redis_ssl: Require SSL to access Redis. The default value is `true`.
|
|
19392
19248
|
:param pulumi.Input[int] redis_timeout: Redis idle connection timeout in seconds. The default value is `300`.
|
|
19393
|
-
:param pulumi.Input[str] redis_version: Enum: `7.0
|
|
19249
|
+
:param pulumi.Input[str] redis_version: Enum: `7.0`, and newer. Redis major version.
|
|
19394
19250
|
:param pulumi.Input[bool] service_log: Store logs for the service so that they are available in the HTTP API and console.
|
|
19395
19251
|
: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.
|
|
19396
19252
|
:param pulumi.Input[bool] static_ips: Use static public IP addresses.
|
|
@@ -19660,7 +19516,7 @@ class RedisRedisUserConfigArgs:
|
|
|
19660
19516
|
@pulumi.getter(name="redisPersistence")
|
|
19661
19517
|
def redis_persistence(self) -> Optional[pulumi.Input[str]]:
|
|
19662
19518
|
"""
|
|
19663
|
-
Enum: `off`, `rdb`. When persistence is 'rdb', Redis does RDB dumps each 10 minutes if any key is changed. Also RDB dumps are done according to backup schedule for backup purposes. When persistence is 'off', no RDB dumps
|
|
19519
|
+
Enum: `off`, `rdb`. When persistence is 'rdb', Redis does RDB dumps each 10 minutes if any key is changed. Also RDB dumps are done according to the backup schedule for backup purposes. When persistence is 'off', no RDB dumps or backups are done, so data can be lost at any moment if the service is restarted for any reason, or if the service is powered off. Also, the service can't be forked.
|
|
19664
19520
|
"""
|
|
19665
19521
|
return pulumi.get(self, "redis_persistence")
|
|
19666
19522
|
|
|
@@ -19708,7 +19564,7 @@ class RedisRedisUserConfigArgs:
|
|
|
19708
19564
|
@pulumi.getter(name="redisVersion")
|
|
19709
19565
|
def redis_version(self) -> Optional[pulumi.Input[str]]:
|
|
19710
19566
|
"""
|
|
19711
|
-
Enum: `7.0
|
|
19567
|
+
Enum: `7.0`, and newer. Redis major version.
|
|
19712
19568
|
"""
|
|
19713
19569
|
return pulumi.get(self, "redis_version")
|
|
19714
19570
|
|
|
@@ -21292,7 +21148,7 @@ class ServiceIntegrationEndpointExternalKafkaUserConfigArgs:
|
|
|
21292
21148
|
:param pulumi.Input[str] ssl_ca_cert: PEM-encoded CA certificate.
|
|
21293
21149
|
:param pulumi.Input[str] ssl_client_cert: PEM-encoded client certificate.
|
|
21294
21150
|
:param pulumi.Input[str] ssl_client_key: PEM-encoded client key.
|
|
21295
|
-
:param pulumi.Input[str] ssl_endpoint_identification_algorithm: Enum: `https
|
|
21151
|
+
:param pulumi.Input[str] ssl_endpoint_identification_algorithm: Enum: `https`. The endpoint identification algorithm to validate server hostname using server certificate.
|
|
21296
21152
|
"""
|
|
21297
21153
|
pulumi.set(__self__, "bootstrap_servers", bootstrap_servers)
|
|
21298
21154
|
pulumi.set(__self__, "security_protocol", security_protocol)
|
|
@@ -21411,7 +21267,7 @@ class ServiceIntegrationEndpointExternalKafkaUserConfigArgs:
|
|
|
21411
21267
|
@pulumi.getter(name="sslEndpointIdentificationAlgorithm")
|
|
21412
21268
|
def ssl_endpoint_identification_algorithm(self) -> Optional[pulumi.Input[str]]:
|
|
21413
21269
|
"""
|
|
21414
|
-
Enum: `https
|
|
21270
|
+
Enum: `https`. The endpoint identification algorithm to validate server hostname using server certificate.
|
|
21415
21271
|
"""
|
|
21416
21272
|
return pulumi.get(self, "ssl_endpoint_identification_algorithm")
|
|
21417
21273
|
|
|
@@ -21,7 +21,7 @@ class GetMirrorMakerReplicationFlowResult:
|
|
|
21
21
|
"""
|
|
22
22
|
A collection of values returned by getMirrorMakerReplicationFlow.
|
|
23
23
|
"""
|
|
24
|
-
def __init__(__self__, emit_backward_heartbeats_enabled=None, emit_heartbeats_enabled=None, enable=None, id=None, offset_syncs_topic_location=None, project=None, replication_policy_class=None, service_name=None, source_cluster=None, sync_group_offsets_enabled=None, sync_group_offsets_interval_seconds=None, target_cluster=None, topics=None, topics_blacklists=None):
|
|
24
|
+
def __init__(__self__, emit_backward_heartbeats_enabled=None, emit_heartbeats_enabled=None, enable=None, id=None, offset_syncs_topic_location=None, project=None, replication_factor=None, replication_policy_class=None, service_name=None, source_cluster=None, sync_group_offsets_enabled=None, sync_group_offsets_interval_seconds=None, target_cluster=None, topics=None, topics_blacklists=None):
|
|
25
25
|
if emit_backward_heartbeats_enabled and not isinstance(emit_backward_heartbeats_enabled, bool):
|
|
26
26
|
raise TypeError("Expected argument 'emit_backward_heartbeats_enabled' to be a bool")
|
|
27
27
|
pulumi.set(__self__, "emit_backward_heartbeats_enabled", emit_backward_heartbeats_enabled)
|
|
@@ -40,6 +40,9 @@ class GetMirrorMakerReplicationFlowResult:
|
|
|
40
40
|
if project and not isinstance(project, str):
|
|
41
41
|
raise TypeError("Expected argument 'project' to be a str")
|
|
42
42
|
pulumi.set(__self__, "project", project)
|
|
43
|
+
if replication_factor and not isinstance(replication_factor, int):
|
|
44
|
+
raise TypeError("Expected argument 'replication_factor' to be a int")
|
|
45
|
+
pulumi.set(__self__, "replication_factor", replication_factor)
|
|
43
46
|
if replication_policy_class and not isinstance(replication_policy_class, str):
|
|
44
47
|
raise TypeError("Expected argument 'replication_policy_class' to be a str")
|
|
45
48
|
pulumi.set(__self__, "replication_policy_class", replication_policy_class)
|
|
@@ -113,6 +116,14 @@ class GetMirrorMakerReplicationFlowResult:
|
|
|
113
116
|
"""
|
|
114
117
|
return pulumi.get(self, "project")
|
|
115
118
|
|
|
119
|
+
@property
|
|
120
|
+
@pulumi.getter(name="replicationFactor")
|
|
121
|
+
def replication_factor(self) -> int:
|
|
122
|
+
"""
|
|
123
|
+
Replication factor, `>= 1`.
|
|
124
|
+
"""
|
|
125
|
+
return pulumi.get(self, "replication_factor")
|
|
126
|
+
|
|
116
127
|
@property
|
|
117
128
|
@pulumi.getter(name="replicationPolicyClass")
|
|
118
129
|
def replication_policy_class(self) -> str:
|
|
@@ -190,6 +201,7 @@ class AwaitableGetMirrorMakerReplicationFlowResult(GetMirrorMakerReplicationFlow
|
|
|
190
201
|
id=self.id,
|
|
191
202
|
offset_syncs_topic_location=self.offset_syncs_topic_location,
|
|
192
203
|
project=self.project,
|
|
204
|
+
replication_factor=self.replication_factor,
|
|
193
205
|
replication_policy_class=self.replication_policy_class,
|
|
194
206
|
service_name=self.service_name,
|
|
195
207
|
source_cluster=self.source_cluster,
|
|
@@ -241,6 +253,7 @@ def get_mirror_maker_replication_flow(project: Optional[str] = None,
|
|
|
241
253
|
id=pulumi.get(__ret__, 'id'),
|
|
242
254
|
offset_syncs_topic_location=pulumi.get(__ret__, 'offset_syncs_topic_location'),
|
|
243
255
|
project=pulumi.get(__ret__, 'project'),
|
|
256
|
+
replication_factor=pulumi.get(__ret__, 'replication_factor'),
|
|
244
257
|
replication_policy_class=pulumi.get(__ret__, 'replication_policy_class'),
|
|
245
258
|
service_name=pulumi.get(__ret__, 'service_name'),
|
|
246
259
|
source_cluster=pulumi.get(__ret__, 'source_cluster'),
|
|
@@ -21,13 +21,16 @@ class GetOrganizationApplicationUserResult:
|
|
|
21
21
|
"""
|
|
22
22
|
A collection of values returned by getOrganizationApplicationUser.
|
|
23
23
|
"""
|
|
24
|
-
def __init__(__self__, email=None, id=None, name=None, organization_id=None, user_id=None):
|
|
24
|
+
def __init__(__self__, email=None, id=None, is_super_admin=None, name=None, organization_id=None, user_id=None):
|
|
25
25
|
if email and not isinstance(email, str):
|
|
26
26
|
raise TypeError("Expected argument 'email' to be a str")
|
|
27
27
|
pulumi.set(__self__, "email", email)
|
|
28
28
|
if id and not isinstance(id, str):
|
|
29
29
|
raise TypeError("Expected argument 'id' to be a str")
|
|
30
30
|
pulumi.set(__self__, "id", id)
|
|
31
|
+
if is_super_admin and not isinstance(is_super_admin, bool):
|
|
32
|
+
raise TypeError("Expected argument 'is_super_admin' to be a bool")
|
|
33
|
+
pulumi.set(__self__, "is_super_admin", is_super_admin)
|
|
31
34
|
if name and not isinstance(name, str):
|
|
32
35
|
raise TypeError("Expected argument 'name' to be a str")
|
|
33
36
|
pulumi.set(__self__, "name", name)
|
|
@@ -42,7 +45,7 @@ class GetOrganizationApplicationUserResult:
|
|
|
42
45
|
@pulumi.getter
|
|
43
46
|
def email(self) -> str:
|
|
44
47
|
"""
|
|
45
|
-
|
|
48
|
+
An email address automatically generated by Aiven to help identify the application user. No notifications are sent to this email.
|
|
46
49
|
"""
|
|
47
50
|
return pulumi.get(self, "email")
|
|
48
51
|
|
|
@@ -54,6 +57,14 @@ class GetOrganizationApplicationUserResult:
|
|
|
54
57
|
"""
|
|
55
58
|
return pulumi.get(self, "id")
|
|
56
59
|
|
|
60
|
+
@property
|
|
61
|
+
@pulumi.getter(name="isSuperAdmin")
|
|
62
|
+
def is_super_admin(self) -> bool:
|
|
63
|
+
"""
|
|
64
|
+
Makes the application user a super admin. The super admin role has full access to an organization, its billing and settings, and all its organizational units, projects, and services.
|
|
65
|
+
"""
|
|
66
|
+
return pulumi.get(self, "is_super_admin")
|
|
67
|
+
|
|
57
68
|
@property
|
|
58
69
|
@pulumi.getter
|
|
59
70
|
def name(self) -> str:
|
|
@@ -87,6 +98,7 @@ class AwaitableGetOrganizationApplicationUserResult(GetOrganizationApplicationUs
|
|
|
87
98
|
return GetOrganizationApplicationUserResult(
|
|
88
99
|
email=self.email,
|
|
89
100
|
id=self.id,
|
|
101
|
+
is_super_admin=self.is_super_admin,
|
|
90
102
|
name=self.name,
|
|
91
103
|
organization_id=self.organization_id,
|
|
92
104
|
user_id=self.user_id)
|
|
@@ -98,9 +110,6 @@ def get_organization_application_user(organization_id: Optional[str] = None,
|
|
|
98
110
|
"""
|
|
99
111
|
Gets information about an application user.
|
|
100
112
|
|
|
101
|
-
**This data source is in the limited availability stage and may change without notice.** To enable this feature, contact the sales team. After it's enabled, set
|
|
102
|
-
the `PROVIDER_AIVEN_ENABLE_BETA` environment variable to use the data source.
|
|
103
|
-
|
|
104
113
|
## Example Usage
|
|
105
114
|
|
|
106
115
|
```python
|
|
@@ -124,6 +133,7 @@ def get_organization_application_user(organization_id: Optional[str] = None,
|
|
|
124
133
|
return AwaitableGetOrganizationApplicationUserResult(
|
|
125
134
|
email=pulumi.get(__ret__, 'email'),
|
|
126
135
|
id=pulumi.get(__ret__, 'id'),
|
|
136
|
+
is_super_admin=pulumi.get(__ret__, 'is_super_admin'),
|
|
127
137
|
name=pulumi.get(__ret__, 'name'),
|
|
128
138
|
organization_id=pulumi.get(__ret__, 'organization_id'),
|
|
129
139
|
user_id=pulumi.get(__ret__, 'user_id'))
|
|
@@ -136,9 +146,6 @@ def get_organization_application_user_output(organization_id: Optional[pulumi.In
|
|
|
136
146
|
"""
|
|
137
147
|
Gets information about an application user.
|
|
138
148
|
|
|
139
|
-
**This data source is in the limited availability stage and may change without notice.** To enable this feature, contact the sales team. After it's enabled, set
|
|
140
|
-
the `PROVIDER_AIVEN_ENABLE_BETA` environment variable to use the data source.
|
|
141
|
-
|
|
142
149
|
## Example Usage
|
|
143
150
|
|
|
144
151
|
```python
|