pulumi-aiven 6.36.0a1741493223__py3-none-any.whl → 6.36.0a1741836427__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.

Files changed (53) hide show
  1. pulumi_aiven/_inputs.py +214 -3
  2. pulumi_aiven/account_team_project.py +7 -7
  3. pulumi_aiven/alloydbomni.py +7 -7
  4. pulumi_aiven/cassandra.py +7 -7
  5. pulumi_aiven/clickhouse.py +7 -7
  6. pulumi_aiven/dragonfly.py +7 -7
  7. pulumi_aiven/flink.py +7 -7
  8. pulumi_aiven/get_account_team_project.py +1 -1
  9. pulumi_aiven/get_alloydbomni.py +1 -1
  10. pulumi_aiven/get_billing_group.py +21 -3
  11. pulumi_aiven/get_cassanda.py +1 -1
  12. pulumi_aiven/get_cassandra.py +1 -1
  13. pulumi_aiven/get_clickhouse.py +1 -1
  14. pulumi_aiven/get_dragonfly.py +1 -1
  15. pulumi_aiven/get_flink.py +1 -1
  16. pulumi_aiven/get_grafana.py +1 -1
  17. pulumi_aiven/get_kafka.py +1 -1
  18. pulumi_aiven/get_kafka_connect.py +1 -1
  19. pulumi_aiven/get_kafka_mirror_maker.py +1 -1
  20. pulumi_aiven/get_m3_aggregator.py +1 -1
  21. pulumi_aiven/get_m3_db.py +1 -1
  22. pulumi_aiven/get_my_sql.py +1 -1
  23. pulumi_aiven/get_open_search.py +1 -1
  24. pulumi_aiven/get_organization_application_user.py +1 -1
  25. pulumi_aiven/get_pg.py +1 -1
  26. pulumi_aiven/get_project_user.py +3 -3
  27. pulumi_aiven/get_redis.py +1 -1
  28. pulumi_aiven/get_thanos.py +1 -1
  29. pulumi_aiven/get_valkey.py +1 -1
  30. pulumi_aiven/grafana.py +7 -7
  31. pulumi_aiven/influx_db.py +42 -42
  32. pulumi_aiven/kafka.py +9 -9
  33. pulumi_aiven/kafka_connect.py +7 -7
  34. pulumi_aiven/kafka_mirror_maker.py +7 -7
  35. pulumi_aiven/m3_aggregator.py +7 -7
  36. pulumi_aiven/m3_db.py +7 -7
  37. pulumi_aiven/my_sql.py +7 -7
  38. pulumi_aiven/open_search.py +7 -7
  39. pulumi_aiven/organization_application_user.py +13 -15
  40. pulumi_aiven/organization_application_user_token.py +47 -0
  41. pulumi_aiven/organization_group_project.py +9 -9
  42. pulumi_aiven/organization_permission.py +16 -2
  43. pulumi_aiven/outputs.py +277 -2
  44. pulumi_aiven/pg.py +7 -7
  45. pulumi_aiven/project_user.py +9 -9
  46. pulumi_aiven/pulumi-plugin.json +1 -1
  47. pulumi_aiven/redis.py +7 -7
  48. pulumi_aiven/thanos.py +7 -7
  49. pulumi_aiven/valkey.py +7 -7
  50. {pulumi_aiven-6.36.0a1741493223.dist-info → pulumi_aiven-6.36.0a1741836427.dist-info}/METADATA +1 -1
  51. {pulumi_aiven-6.36.0a1741493223.dist-info → pulumi_aiven-6.36.0a1741836427.dist-info}/RECORD +53 -53
  52. {pulumi_aiven-6.36.0a1741493223.dist-info → pulumi_aiven-6.36.0a1741836427.dist-info}/WHEEL +1 -1
  53. {pulumi_aiven-6.36.0a1741493223.dist-info → pulumi_aiven-6.36.0a1741836427.dist-info}/top_level.txt +0 -0
pulumi_aiven/_inputs.py CHANGED
@@ -405,6 +405,8 @@ __all__ = [
405
405
  'OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogThresholdArgsDict',
406
406
  'OpenSearchOpensearchUserConfigOpensearchDashboardsArgs',
407
407
  'OpenSearchOpensearchUserConfigOpensearchDashboardsArgsDict',
408
+ 'OpenSearchOpensearchUserConfigOpensearchDiskWatermarksArgs',
409
+ 'OpenSearchOpensearchUserConfigOpensearchDiskWatermarksArgsDict',
408
410
  'OpenSearchOpensearchUserConfigOpensearchSearchBackpressureArgs',
409
411
  'OpenSearchOpensearchUserConfigOpensearchSearchBackpressureArgsDict',
410
412
  'OpenSearchOpensearchUserConfigOpensearchSearchBackpressureNodeDuressArgs',
@@ -15849,6 +15851,10 @@ if not MYPY:
15849
15851
  """
15850
15852
  If true the consumer's offset will be periodically committed to Kafka in the background. Default: `true`.
15851
15853
  """
15854
+ consumer_idle_disconnect_timeout: NotRequired[pulumi.Input[int]]
15855
+ """
15856
+ Specifies the maximum duration (in seconds) a client can remain idle before it is deleted. If a consumer is inactive, it will exit the consumer group, and its state will be discarded. A value of 0 (default) indicates that the consumer will not be disconnected automatically due to inactivity. Default: `0`.
15857
+ """
15852
15858
  consumer_request_max_bytes: NotRequired[pulumi.Input[int]]
15853
15859
  """
15854
15860
  Maximum number of bytes in unencoded message keys and values by a single request. Default: `67108864`.
@@ -15892,6 +15898,7 @@ elif False:
15892
15898
  class KafkaKafkaUserConfigKafkaRestConfigArgs:
15893
15899
  def __init__(__self__, *,
15894
15900
  consumer_enable_auto_commit: Optional[pulumi.Input[bool]] = None,
15901
+ consumer_idle_disconnect_timeout: Optional[pulumi.Input[int]] = None,
15895
15902
  consumer_request_max_bytes: Optional[pulumi.Input[int]] = None,
15896
15903
  consumer_request_timeout_ms: Optional[pulumi.Input[int]] = None,
15897
15904
  name_strategy: Optional[pulumi.Input[str]] = None,
@@ -15903,6 +15910,7 @@ class KafkaKafkaUserConfigKafkaRestConfigArgs:
15903
15910
  simpleconsumer_pool_size_max: Optional[pulumi.Input[int]] = None):
15904
15911
  """
15905
15912
  :param pulumi.Input[bool] consumer_enable_auto_commit: If true the consumer's offset will be periodically committed to Kafka in the background. Default: `true`.
15913
+ :param pulumi.Input[int] consumer_idle_disconnect_timeout: Specifies the maximum duration (in seconds) a client can remain idle before it is deleted. If a consumer is inactive, it will exit the consumer group, and its state will be discarded. A value of 0 (default) indicates that the consumer will not be disconnected automatically due to inactivity. Default: `0`.
15906
15914
  :param pulumi.Input[int] consumer_request_max_bytes: Maximum number of bytes in unencoded message keys and values by a single request. Default: `67108864`.
15907
15915
  :param pulumi.Input[int] consumer_request_timeout_ms: Enum: `1000`, `15000`, `30000`. The maximum total time to wait for messages for a request if the maximum number of messages has not yet been reached. Default: `1000`.
15908
15916
  :param pulumi.Input[str] name_strategy: Enum: `record_name`, `topic_name`, `topic_record_name`. Name strategy to use when selecting subject for storing schemas. Default: `topic_name`.
@@ -15915,6 +15923,8 @@ class KafkaKafkaUserConfigKafkaRestConfigArgs:
15915
15923
  """
15916
15924
  if consumer_enable_auto_commit is not None:
15917
15925
  pulumi.set(__self__, "consumer_enable_auto_commit", consumer_enable_auto_commit)
15926
+ if consumer_idle_disconnect_timeout is not None:
15927
+ pulumi.set(__self__, "consumer_idle_disconnect_timeout", consumer_idle_disconnect_timeout)
15918
15928
  if consumer_request_max_bytes is not None:
15919
15929
  pulumi.set(__self__, "consumer_request_max_bytes", consumer_request_max_bytes)
15920
15930
  if consumer_request_timeout_ms is not None:
@@ -15946,6 +15956,18 @@ class KafkaKafkaUserConfigKafkaRestConfigArgs:
15946
15956
  def consumer_enable_auto_commit(self, value: Optional[pulumi.Input[bool]]):
15947
15957
  pulumi.set(self, "consumer_enable_auto_commit", value)
15948
15958
 
15959
+ @property
15960
+ @pulumi.getter(name="consumerIdleDisconnectTimeout")
15961
+ def consumer_idle_disconnect_timeout(self) -> Optional[pulumi.Input[int]]:
15962
+ """
15963
+ Specifies the maximum duration (in seconds) a client can remain idle before it is deleted. If a consumer is inactive, it will exit the consumer group, and its state will be discarded. A value of 0 (default) indicates that the consumer will not be disconnected automatically due to inactivity. Default: `0`.
15964
+ """
15965
+ return pulumi.get(self, "consumer_idle_disconnect_timeout")
15966
+
15967
+ @consumer_idle_disconnect_timeout.setter
15968
+ def consumer_idle_disconnect_timeout(self, value: Optional[pulumi.Input[int]]):
15969
+ pulumi.set(self, "consumer_idle_disconnect_timeout", value)
15970
+
15949
15971
  @property
15950
15972
  @pulumi.getter(name="consumerRequestMaxBytes")
15951
15973
  def consumer_request_max_bytes(self) -> Optional[pulumi.Input[int]]:
@@ -23486,6 +23508,10 @@ if not MYPY:
23486
23508
  """
23487
23509
  Azure account secret key. One of key or sas_token should be specified.
23488
23510
  """
23511
+ readonly: NotRequired[pulumi.Input[bool]]
23512
+ """
23513
+ Whether the repository is read-only. Default: `false`.
23514
+ """
23489
23515
  restore_global_state: NotRequired[pulumi.Input[bool]]
23490
23516
  """
23491
23517
  If true, restore the cluster state. Defaults to false.
@@ -23510,6 +23536,7 @@ class OpenSearchOpensearchUserConfigAzureMigrationArgs:
23510
23536
  endpoint_suffix: Optional[pulumi.Input[str]] = None,
23511
23537
  include_aliases: Optional[pulumi.Input[bool]] = None,
23512
23538
  key: Optional[pulumi.Input[str]] = None,
23539
+ readonly: Optional[pulumi.Input[bool]] = None,
23513
23540
  restore_global_state: Optional[pulumi.Input[bool]] = None,
23514
23541
  sas_token: Optional[pulumi.Input[str]] = None):
23515
23542
  """
@@ -23523,6 +23550,7 @@ class OpenSearchOpensearchUserConfigAzureMigrationArgs:
23523
23550
  :param pulumi.Input[str] endpoint_suffix: Defines the DNS suffix for Azure Storage endpoints.
23524
23551
  :param pulumi.Input[bool] include_aliases: Whether to restore aliases alongside their associated indexes. Default is true.
23525
23552
  :param pulumi.Input[str] key: Azure account secret key. One of key or sas_token should be specified.
23553
+ :param pulumi.Input[bool] readonly: Whether the repository is read-only. Default: `false`.
23526
23554
  :param pulumi.Input[bool] restore_global_state: If true, restore the cluster state. Defaults to false.
23527
23555
  :param pulumi.Input[str] sas_token: A shared access signatures (SAS) token. One of key or sas_token should be specified.
23528
23556
  """
@@ -23541,6 +23569,8 @@ class OpenSearchOpensearchUserConfigAzureMigrationArgs:
23541
23569
  pulumi.set(__self__, "include_aliases", include_aliases)
23542
23570
  if key is not None:
23543
23571
  pulumi.set(__self__, "key", key)
23572
+ if readonly is not None:
23573
+ pulumi.set(__self__, "readonly", readonly)
23544
23574
  if restore_global_state is not None:
23545
23575
  pulumi.set(__self__, "restore_global_state", restore_global_state)
23546
23576
  if sas_token is not None:
@@ -23666,6 +23696,18 @@ class OpenSearchOpensearchUserConfigAzureMigrationArgs:
23666
23696
  def key(self, value: Optional[pulumi.Input[str]]):
23667
23697
  pulumi.set(self, "key", value)
23668
23698
 
23699
+ @property
23700
+ @pulumi.getter
23701
+ def readonly(self) -> Optional[pulumi.Input[bool]]:
23702
+ """
23703
+ Whether the repository is read-only. Default: `false`.
23704
+ """
23705
+ return pulumi.get(self, "readonly")
23706
+
23707
+ @readonly.setter
23708
+ def readonly(self, value: Optional[pulumi.Input[bool]]):
23709
+ pulumi.set(self, "readonly", value)
23710
+
23669
23711
  @property
23670
23712
  @pulumi.getter(name="restoreGlobalState")
23671
23713
  def restore_global_state(self) -> Optional[pulumi.Input[bool]]:
@@ -23725,6 +23767,10 @@ if not MYPY:
23725
23767
  """
23726
23768
  Whether to restore aliases alongside their associated indexes. Default is true.
23727
23769
  """
23770
+ readonly: NotRequired[pulumi.Input[bool]]
23771
+ """
23772
+ Whether the repository is read-only. Default: `false`.
23773
+ """
23728
23774
  restore_global_state: NotRequired[pulumi.Input[bool]]
23729
23775
  """
23730
23776
  If true, restore the cluster state. Defaults to false.
@@ -23743,6 +23789,7 @@ class OpenSearchOpensearchUserConfigGcsMigrationArgs:
23743
23789
  chunk_size: Optional[pulumi.Input[str]] = None,
23744
23790
  compress: Optional[pulumi.Input[bool]] = None,
23745
23791
  include_aliases: Optional[pulumi.Input[bool]] = None,
23792
+ readonly: Optional[pulumi.Input[bool]] = None,
23746
23793
  restore_global_state: Optional[pulumi.Input[bool]] = None):
23747
23794
  """
23748
23795
  :param pulumi.Input[str] base_path: The path to the repository data within its container. The value of this setting should not start or end with a /.
@@ -23753,6 +23800,7 @@ class OpenSearchOpensearchUserConfigGcsMigrationArgs:
23753
23800
  :param pulumi.Input[str] chunk_size: Big files can be broken down into chunks during snapshotting if needed. Should be the same as for the 3rd party repository.
23754
23801
  :param pulumi.Input[bool] compress: When set to true metadata files are stored in compressed format.
23755
23802
  :param pulumi.Input[bool] include_aliases: Whether to restore aliases alongside their associated indexes. Default is true.
23803
+ :param pulumi.Input[bool] readonly: Whether the repository is read-only. Default: `false`.
23756
23804
  :param pulumi.Input[bool] restore_global_state: If true, restore the cluster state. Defaults to false.
23757
23805
  """
23758
23806
  pulumi.set(__self__, "base_path", base_path)
@@ -23766,6 +23814,8 @@ class OpenSearchOpensearchUserConfigGcsMigrationArgs:
23766
23814
  pulumi.set(__self__, "compress", compress)
23767
23815
  if include_aliases is not None:
23768
23816
  pulumi.set(__self__, "include_aliases", include_aliases)
23817
+ if readonly is not None:
23818
+ pulumi.set(__self__, "readonly", readonly)
23769
23819
  if restore_global_state is not None:
23770
23820
  pulumi.set(__self__, "restore_global_state", restore_global_state)
23771
23821
 
@@ -23865,6 +23915,18 @@ class OpenSearchOpensearchUserConfigGcsMigrationArgs:
23865
23915
  def include_aliases(self, value: Optional[pulumi.Input[bool]]):
23866
23916
  pulumi.set(self, "include_aliases", value)
23867
23917
 
23918
+ @property
23919
+ @pulumi.getter
23920
+ def readonly(self) -> Optional[pulumi.Input[bool]]:
23921
+ """
23922
+ Whether the repository is read-only. Default: `false`.
23923
+ """
23924
+ return pulumi.get(self, "readonly")
23925
+
23926
+ @readonly.setter
23927
+ def readonly(self, value: Optional[pulumi.Input[bool]]):
23928
+ pulumi.set(self, "readonly", value)
23929
+
23868
23930
  @property
23869
23931
  @pulumi.getter(name="restoreGlobalState")
23870
23932
  def restore_global_state(self) -> Optional[pulumi.Input[bool]]:
@@ -24458,6 +24520,10 @@ if not MYPY:
24458
24520
  How many concurrent incoming/outgoing shard recoveries (normally replicas) are allowed to happen on a node. Defaults to node cpu count * 2.
24459
24521
  """
24460
24522
  cluster_search_request_slowlog: NotRequired[pulumi.Input['OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogArgsDict']]
24523
+ disk_watermarks: NotRequired[pulumi.Input['OpenSearchOpensearchUserConfigOpensearchDiskWatermarksArgsDict']]
24524
+ """
24525
+ Watermark settings
24526
+ """
24461
24527
  email_sender_name: NotRequired[pulumi.Input[str]]
24462
24528
  """
24463
24529
  Sender name placeholder to be used in Opensearch Dashboards and Opensearch keystore. Example: `alert-sender`.
@@ -24644,6 +24710,7 @@ class OpenSearchOpensearchUserConfigOpensearchArgs:
24644
24710
  cluster_routing_allocation_balance_prefer_primary: Optional[pulumi.Input[bool]] = None,
24645
24711
  cluster_routing_allocation_node_concurrent_recoveries: Optional[pulumi.Input[int]] = None,
24646
24712
  cluster_search_request_slowlog: Optional[pulumi.Input['OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogArgs']] = None,
24713
+ disk_watermarks: Optional[pulumi.Input['OpenSearchOpensearchUserConfigOpensearchDiskWatermarksArgs']] = None,
24647
24714
  email_sender_name: Optional[pulumi.Input[str]] = None,
24648
24715
  email_sender_password: Optional[pulumi.Input[str]] = None,
24649
24716
  email_sender_username: Optional[pulumi.Input[str]] = None,
@@ -24695,6 +24762,7 @@ class OpenSearchOpensearchUserConfigOpensearchArgs:
24695
24762
  :param pulumi.Input[int] cluster_max_shards_per_node: Controls the number of shards allowed in the cluster per data node. Example: `1000`.
24696
24763
  :param pulumi.Input[bool] cluster_routing_allocation_balance_prefer_primary: When set to true, OpenSearch attempts to evenly distribute the primary shards between the cluster nodes. Enabling this setting does not always guarantee an equal number of primary shards on each node, especially in the event of a failover. Changing this setting to false after it was set to true does not invoke redistribution of primary shards. Default is false. Default: `false`.
24697
24764
  :param pulumi.Input[int] cluster_routing_allocation_node_concurrent_recoveries: How many concurrent incoming/outgoing shard recoveries (normally replicas) are allowed to happen on a node. Defaults to node cpu count * 2.
24765
+ :param pulumi.Input['OpenSearchOpensearchUserConfigOpensearchDiskWatermarksArgs'] disk_watermarks: Watermark settings
24698
24766
  :param pulumi.Input[str] email_sender_name: Sender name placeholder to be used in Opensearch Dashboards and Opensearch keystore. Example: `alert-sender`.
24699
24767
  :param pulumi.Input[str] email_sender_password: Sender password for Opensearch alerts to authenticate with SMTP server. Example: `very-secure-mail-password`.
24700
24768
  :param pulumi.Input[str] email_sender_username: Sender username for Opensearch alerts. Example: `jane@example.com`.
@@ -24753,6 +24821,8 @@ class OpenSearchOpensearchUserConfigOpensearchArgs:
24753
24821
  pulumi.set(__self__, "cluster_routing_allocation_node_concurrent_recoveries", cluster_routing_allocation_node_concurrent_recoveries)
24754
24822
  if cluster_search_request_slowlog is not None:
24755
24823
  pulumi.set(__self__, "cluster_search_request_slowlog", cluster_search_request_slowlog)
24824
+ if disk_watermarks is not None:
24825
+ pulumi.set(__self__, "disk_watermarks", disk_watermarks)
24756
24826
  if email_sender_name is not None:
24757
24827
  pulumi.set(__self__, "email_sender_name", email_sender_name)
24758
24828
  if email_sender_password is not None:
@@ -24923,6 +24993,18 @@ class OpenSearchOpensearchUserConfigOpensearchArgs:
24923
24993
  def cluster_search_request_slowlog(self, value: Optional[pulumi.Input['OpenSearchOpensearchUserConfigOpensearchClusterSearchRequestSlowlogArgs']]):
24924
24994
  pulumi.set(self, "cluster_search_request_slowlog", value)
24925
24995
 
24996
+ @property
24997
+ @pulumi.getter(name="diskWatermarks")
24998
+ def disk_watermarks(self) -> Optional[pulumi.Input['OpenSearchOpensearchUserConfigOpensearchDiskWatermarksArgs']]:
24999
+ """
25000
+ Watermark settings
25001
+ """
25002
+ return pulumi.get(self, "disk_watermarks")
25003
+
25004
+ @disk_watermarks.setter
25005
+ def disk_watermarks(self, value: Optional[pulumi.Input['OpenSearchOpensearchUserConfigOpensearchDiskWatermarksArgs']]):
25006
+ pulumi.set(self, "disk_watermarks", value)
25007
+
24926
25008
  @property
24927
25009
  @pulumi.getter(name="emailSenderName")
24928
25010
  def email_sender_name(self) -> Optional[pulumi.Input[str]]:
@@ -26011,6 +26093,75 @@ class OpenSearchOpensearchUserConfigOpensearchDashboardsArgs:
26011
26093
  pulumi.set(self, "opensearch_request_timeout", value)
26012
26094
 
26013
26095
 
26096
+ if not MYPY:
26097
+ class OpenSearchOpensearchUserConfigOpensearchDiskWatermarksArgsDict(TypedDict):
26098
+ flood_stage: pulumi.Input[int]
26099
+ """
26100
+ The flood stage watermark for disk usage. Example: `95`.
26101
+ """
26102
+ high: pulumi.Input[int]
26103
+ """
26104
+ The high watermark for disk usage. Example: `90`.
26105
+ """
26106
+ low: pulumi.Input[int]
26107
+ """
26108
+ The low watermark for disk usage. Example: `85`.
26109
+ """
26110
+ elif False:
26111
+ OpenSearchOpensearchUserConfigOpensearchDiskWatermarksArgsDict: TypeAlias = Mapping[str, Any]
26112
+
26113
+ @pulumi.input_type
26114
+ class OpenSearchOpensearchUserConfigOpensearchDiskWatermarksArgs:
26115
+ def __init__(__self__, *,
26116
+ flood_stage: pulumi.Input[int],
26117
+ high: pulumi.Input[int],
26118
+ low: pulumi.Input[int]):
26119
+ """
26120
+ :param pulumi.Input[int] flood_stage: The flood stage watermark for disk usage. Example: `95`.
26121
+ :param pulumi.Input[int] high: The high watermark for disk usage. Example: `90`.
26122
+ :param pulumi.Input[int] low: The low watermark for disk usage. Example: `85`.
26123
+ """
26124
+ pulumi.set(__self__, "flood_stage", flood_stage)
26125
+ pulumi.set(__self__, "high", high)
26126
+ pulumi.set(__self__, "low", low)
26127
+
26128
+ @property
26129
+ @pulumi.getter(name="floodStage")
26130
+ def flood_stage(self) -> pulumi.Input[int]:
26131
+ """
26132
+ The flood stage watermark for disk usage. Example: `95`.
26133
+ """
26134
+ return pulumi.get(self, "flood_stage")
26135
+
26136
+ @flood_stage.setter
26137
+ def flood_stage(self, value: pulumi.Input[int]):
26138
+ pulumi.set(self, "flood_stage", value)
26139
+
26140
+ @property
26141
+ @pulumi.getter
26142
+ def high(self) -> pulumi.Input[int]:
26143
+ """
26144
+ The high watermark for disk usage. Example: `90`.
26145
+ """
26146
+ return pulumi.get(self, "high")
26147
+
26148
+ @high.setter
26149
+ def high(self, value: pulumi.Input[int]):
26150
+ pulumi.set(self, "high", value)
26151
+
26152
+ @property
26153
+ @pulumi.getter
26154
+ def low(self) -> pulumi.Input[int]:
26155
+ """
26156
+ The low watermark for disk usage. Example: `85`.
26157
+ """
26158
+ return pulumi.get(self, "low")
26159
+
26160
+ @low.setter
26161
+ def low(self, value: pulumi.Input[int]):
26162
+ pulumi.set(self, "low", value)
26163
+
26164
+
26014
26165
  if not MYPY:
26015
26166
  class OpenSearchOpensearchUserConfigOpensearchSearchBackpressureArgsDict(TypedDict):
26016
26167
  mode: NotRequired[pulumi.Input[str]]
@@ -27519,6 +27670,10 @@ if not MYPY:
27519
27670
  """
27520
27671
  Whether to restore aliases alongside their associated indexes. Default is true.
27521
27672
  """
27673
+ readonly: NotRequired[pulumi.Input[bool]]
27674
+ """
27675
+ Whether the repository is read-only. Default: `false`.
27676
+ """
27522
27677
  restore_global_state: NotRequired[pulumi.Input[bool]]
27523
27678
  """
27524
27679
  If true, restore the cluster state. Defaults to false.
@@ -27544,6 +27699,7 @@ class OpenSearchOpensearchUserConfigS3MigrationArgs:
27544
27699
  compress: Optional[pulumi.Input[bool]] = None,
27545
27700
  endpoint: Optional[pulumi.Input[str]] = None,
27546
27701
  include_aliases: Optional[pulumi.Input[bool]] = None,
27702
+ readonly: Optional[pulumi.Input[bool]] = None,
27547
27703
  restore_global_state: Optional[pulumi.Input[bool]] = None,
27548
27704
  server_side_encryption: Optional[pulumi.Input[bool]] = None):
27549
27705
  """
@@ -27558,6 +27714,7 @@ class OpenSearchOpensearchUserConfigS3MigrationArgs:
27558
27714
  :param pulumi.Input[bool] compress: When set to true metadata files are stored in compressed format.
27559
27715
  :param pulumi.Input[str] endpoint: The S3 service endpoint to connect to. If you are using an S3-compatible service then you should set this to the service’s endpoint.
27560
27716
  :param pulumi.Input[bool] include_aliases: Whether to restore aliases alongside their associated indexes. Default is true.
27717
+ :param pulumi.Input[bool] readonly: Whether the repository is read-only. Default: `false`.
27561
27718
  :param pulumi.Input[bool] restore_global_state: If true, restore the cluster state. Defaults to false.
27562
27719
  :param pulumi.Input[bool] server_side_encryption: When set to true files are encrypted on server side.
27563
27720
  """
@@ -27576,6 +27733,8 @@ class OpenSearchOpensearchUserConfigS3MigrationArgs:
27576
27733
  pulumi.set(__self__, "endpoint", endpoint)
27577
27734
  if include_aliases is not None:
27578
27735
  pulumi.set(__self__, "include_aliases", include_aliases)
27736
+ if readonly is not None:
27737
+ pulumi.set(__self__, "readonly", readonly)
27579
27738
  if restore_global_state is not None:
27580
27739
  pulumi.set(__self__, "restore_global_state", restore_global_state)
27581
27740
  if server_side_encryption is not None:
@@ -27713,6 +27872,18 @@ class OpenSearchOpensearchUserConfigS3MigrationArgs:
27713
27872
  def include_aliases(self, value: Optional[pulumi.Input[bool]]):
27714
27873
  pulumi.set(self, "include_aliases", value)
27715
27874
 
27875
+ @property
27876
+ @pulumi.getter
27877
+ def readonly(self) -> Optional[pulumi.Input[bool]]:
27878
+ """
27879
+ Whether the repository is read-only. Default: `false`.
27880
+ """
27881
+ return pulumi.get(self, "readonly")
27882
+
27883
+ @readonly.setter
27884
+ def readonly(self, value: Optional[pulumi.Input[bool]]):
27885
+ pulumi.set(self, "readonly", value)
27886
+
27716
27887
  @property
27717
27888
  @pulumi.getter(name="restoreGlobalState")
27718
27889
  def restore_global_state(self) -> Optional[pulumi.Input[bool]]:
@@ -28122,7 +28293,7 @@ if not MYPY:
28122
28293
  class OrganizationPermissionPermissionArgsDict(TypedDict):
28123
28294
  permissions: pulumi.Input[Sequence[pulumi.Input[str]]]
28124
28295
  """
28125
- List of [roles and permissions](https://aiven.io/docs/platform/concepts/permissions) to grant. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization:networking:read`, `organization:networking:write`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
28296
+ List of [roles and permissions](https://aiven.io/docs/platform/concepts/permissions) to grant. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:billing:read`, `organization:billing:write`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization:networking:read`, `organization:networking:write`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
28126
28297
  """
28127
28298
  principal_id: pulumi.Input[str]
28128
28299
  """
@@ -28152,7 +28323,7 @@ class OrganizationPermissionPermissionArgs:
28152
28323
  create_time: Optional[pulumi.Input[str]] = None,
28153
28324
  update_time: Optional[pulumi.Input[str]] = None):
28154
28325
  """
28155
- :param pulumi.Input[Sequence[pulumi.Input[str]]] permissions: List of [roles and permissions](https://aiven.io/docs/platform/concepts/permissions) to grant. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization:networking:read`, `organization:networking:write`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
28326
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] permissions: List of [roles and permissions](https://aiven.io/docs/platform/concepts/permissions) to grant. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:billing:read`, `organization:billing:write`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization:networking:read`, `organization:networking:write`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
28156
28327
  :param pulumi.Input[str] principal_id: ID of the user or group to grant permissions to. Only active users who have accepted an [invite](https://aiven.io/docs/platform/howto/manage-org-users) to join the organization can be granted permissions.
28157
28328
  :param pulumi.Input[str] principal_type: The type of principal. The possible values are `user` and `user_group`.
28158
28329
  :param pulumi.Input[str] create_time: Time created.
@@ -28170,7 +28341,7 @@ class OrganizationPermissionPermissionArgs:
28170
28341
  @pulumi.getter
28171
28342
  def permissions(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
28172
28343
  """
28173
- List of [roles and permissions](https://aiven.io/docs/platform/concepts/permissions) to grant. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization:networking:read`, `organization:networking:write`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
28344
+ List of [roles and permissions](https://aiven.io/docs/platform/concepts/permissions) to grant. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:billing:read`, `organization:billing:write`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization:networking:read`, `organization:networking:write`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
28174
28345
  """
28175
28346
  return pulumi.get(self, "permissions")
28176
28347
 
@@ -39752,6 +39923,10 @@ if not MYPY:
39752
39923
  """
39753
39924
  The minute of an hour when backup for the service is started. New backup is only started if previous backup has already completed. Example: `30`.
39754
39925
  """
39926
+ enable_ipv6: NotRequired[pulumi.Input[bool]]
39927
+ """
39928
+ Register AAAA DNS records for the service, and allow IPv6 packets to service ports.
39929
+ """
39755
39930
  frequent_snapshots: NotRequired[pulumi.Input[bool]]
39756
39931
  """
39757
39932
  When enabled, Valkey will create frequent local RDB snapshots. When disabled, Valkey will only take RDB snapshots when a backup is created, based on the backup schedule. This setting is ignored when `valkey_persistence` is set to `off`. Default: `true`.
@@ -39808,6 +39983,10 @@ if not MYPY:
39808
39983
  """
39809
39984
  Enum: `allchannels`, `resetchannels`. Determines default pub/sub channels' ACL for new users if ACL is not supplied. When this option is not defined, all_channels is assumed to keep backward compatibility. This option doesn't affect Valkey configuration acl-pubsub-default.
39810
39985
  """
39986
+ valkey_active_expire_effort: NotRequired[pulumi.Input[int]]
39987
+ """
39988
+ Valkey reclaims expired keys both when accessed and in the background. The background process scans for expired keys to free memory. Increasing the active-expire-effort setting (default 1, max 10) uses more CPU to reclaim expired keys faster, reducing memory usage but potentially increasing latency. Default: `1`.
39989
+ """
39811
39990
  valkey_io_threads: NotRequired[pulumi.Input[int]]
39812
39991
  """
39813
39992
  Set Valkey IO thread count. Changing this will cause a restart of the Valkey service. Example: `1`.
@@ -39857,6 +40036,7 @@ class ValkeyValkeyUserConfigArgs:
39857
40036
  additional_backup_regions: Optional[pulumi.Input[str]] = None,
39858
40037
  backup_hour: Optional[pulumi.Input[int]] = None,
39859
40038
  backup_minute: Optional[pulumi.Input[int]] = None,
40039
+ enable_ipv6: Optional[pulumi.Input[bool]] = None,
39860
40040
  frequent_snapshots: Optional[pulumi.Input[bool]] = None,
39861
40041
  ip_filter_objects: Optional[pulumi.Input[Sequence[pulumi.Input['ValkeyValkeyUserConfigIpFilterObjectArgs']]]] = None,
39862
40042
  ip_filter_strings: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
@@ -39871,6 +40051,7 @@ class ValkeyValkeyUserConfigArgs:
39871
40051
  service_to_fork_from: Optional[pulumi.Input[str]] = None,
39872
40052
  static_ips: Optional[pulumi.Input[bool]] = None,
39873
40053
  valkey_acl_channels_default: Optional[pulumi.Input[str]] = None,
40054
+ valkey_active_expire_effort: Optional[pulumi.Input[int]] = None,
39874
40055
  valkey_io_threads: Optional[pulumi.Input[int]] = None,
39875
40056
  valkey_lfu_decay_time: Optional[pulumi.Input[int]] = None,
39876
40057
  valkey_lfu_log_factor: Optional[pulumi.Input[int]] = None,
@@ -39885,6 +40066,7 @@ class ValkeyValkeyUserConfigArgs:
39885
40066
  :param pulumi.Input[str] additional_backup_regions: Additional Cloud Regions for Backup Replication.
39886
40067
  :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. Example: `3`.
39887
40068
  :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. Example: `30`.
40069
+ :param pulumi.Input[bool] enable_ipv6: Register AAAA DNS records for the service, and allow IPv6 packets to service ports.
39888
40070
  :param pulumi.Input[bool] frequent_snapshots: When enabled, Valkey will create frequent local RDB snapshots. When disabled, Valkey will only take RDB snapshots when a backup is created, based on the backup schedule. This setting is ignored when `valkey_persistence` is set to `off`. Default: `true`.
39889
40071
  :param pulumi.Input[Sequence[pulumi.Input['ValkeyValkeyUserConfigIpFilterObjectArgs']]] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`
39890
40072
  :param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
@@ -39899,6 +40081,7 @@ class ValkeyValkeyUserConfigArgs:
39899
40081
  :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`.
39900
40082
  :param pulumi.Input[bool] static_ips: Use static public IP addresses.
39901
40083
  :param pulumi.Input[str] valkey_acl_channels_default: Enum: `allchannels`, `resetchannels`. Determines default pub/sub channels' ACL for new users if ACL is not supplied. When this option is not defined, all_channels is assumed to keep backward compatibility. This option doesn't affect Valkey configuration acl-pubsub-default.
40084
+ :param pulumi.Input[int] valkey_active_expire_effort: Valkey reclaims expired keys both when accessed and in the background. The background process scans for expired keys to free memory. Increasing the active-expire-effort setting (default 1, max 10) uses more CPU to reclaim expired keys faster, reducing memory usage but potentially increasing latency. Default: `1`.
39902
40085
  :param pulumi.Input[int] valkey_io_threads: Set Valkey IO thread count. Changing this will cause a restart of the Valkey service. Example: `1`.
39903
40086
  :param pulumi.Input[int] valkey_lfu_decay_time: LFU maxmemory-policy counter decay time in minutes. Default: `1`.
39904
40087
  :param pulumi.Input[int] valkey_lfu_log_factor: Counter logarithm factor for volatile-lfu and allkeys-lfu maxmemory-policies. Default: `10`.
@@ -39916,6 +40099,8 @@ class ValkeyValkeyUserConfigArgs:
39916
40099
  pulumi.set(__self__, "backup_hour", backup_hour)
39917
40100
  if backup_minute is not None:
39918
40101
  pulumi.set(__self__, "backup_minute", backup_minute)
40102
+ if enable_ipv6 is not None:
40103
+ pulumi.set(__self__, "enable_ipv6", enable_ipv6)
39919
40104
  if frequent_snapshots is not None:
39920
40105
  pulumi.set(__self__, "frequent_snapshots", frequent_snapshots)
39921
40106
  if ip_filter_objects is not None:
@@ -39947,6 +40132,8 @@ class ValkeyValkeyUserConfigArgs:
39947
40132
  pulumi.set(__self__, "static_ips", static_ips)
39948
40133
  if valkey_acl_channels_default is not None:
39949
40134
  pulumi.set(__self__, "valkey_acl_channels_default", valkey_acl_channels_default)
40135
+ if valkey_active_expire_effort is not None:
40136
+ pulumi.set(__self__, "valkey_active_expire_effort", valkey_active_expire_effort)
39950
40137
  if valkey_io_threads is not None:
39951
40138
  pulumi.set(__self__, "valkey_io_threads", valkey_io_threads)
39952
40139
  if valkey_lfu_decay_time is not None:
@@ -40004,6 +40191,18 @@ class ValkeyValkeyUserConfigArgs:
40004
40191
  def backup_minute(self, value: Optional[pulumi.Input[int]]):
40005
40192
  pulumi.set(self, "backup_minute", value)
40006
40193
 
40194
+ @property
40195
+ @pulumi.getter(name="enableIpv6")
40196
+ def enable_ipv6(self) -> Optional[pulumi.Input[bool]]:
40197
+ """
40198
+ Register AAAA DNS records for the service, and allow IPv6 packets to service ports.
40199
+ """
40200
+ return pulumi.get(self, "enable_ipv6")
40201
+
40202
+ @enable_ipv6.setter
40203
+ def enable_ipv6(self, value: Optional[pulumi.Input[bool]]):
40204
+ pulumi.set(self, "enable_ipv6", value)
40205
+
40007
40206
  @property
40008
40207
  @pulumi.getter(name="frequentSnapshots")
40009
40208
  def frequent_snapshots(self) -> Optional[pulumi.Input[bool]]:
@@ -40173,6 +40372,18 @@ class ValkeyValkeyUserConfigArgs:
40173
40372
  def valkey_acl_channels_default(self, value: Optional[pulumi.Input[str]]):
40174
40373
  pulumi.set(self, "valkey_acl_channels_default", value)
40175
40374
 
40375
+ @property
40376
+ @pulumi.getter(name="valkeyActiveExpireEffort")
40377
+ def valkey_active_expire_effort(self) -> Optional[pulumi.Input[int]]:
40378
+ """
40379
+ Valkey reclaims expired keys both when accessed and in the background. The background process scans for expired keys to free memory. Increasing the active-expire-effort setting (default 1, max 10) uses more CPU to reclaim expired keys faster, reducing memory usage but potentially increasing latency. Default: `1`.
40380
+ """
40381
+ return pulumi.get(self, "valkey_active_expire_effort")
40382
+
40383
+ @valkey_active_expire_effort.setter
40384
+ def valkey_active_expire_effort(self, value: Optional[pulumi.Input[int]]):
40385
+ pulumi.set(self, "valkey_active_expire_effort", value)
40386
+
40176
40387
  @property
40177
40388
  @pulumi.getter(name="valkeyIoThreads")
40178
40389
  def valkey_io_threads(self) -> Optional[pulumi.Input[int]]:
@@ -28,7 +28,7 @@ class AccountTeamProjectArgs:
28
28
  :param pulumi.Input[str] account_id: The unique account id
29
29
  :param pulumi.Input[str] team_id: An account team id
30
30
  :param pulumi.Input[str] project_name: The name of an already existing project
31
- :param pulumi.Input[str] team_type: The Account team project type. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization:networking:read`, `organization:networking:write`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
31
+ :param pulumi.Input[str] team_type: The Account team project type. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:billing:read`, `organization:billing:write`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization:networking:read`, `organization:networking:write`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
32
32
  """
33
33
  pulumi.set(__self__, "account_id", account_id)
34
34
  pulumi.set(__self__, "team_id", team_id)
@@ -77,7 +77,7 @@ class AccountTeamProjectArgs:
77
77
  @pulumi.getter(name="teamType")
78
78
  def team_type(self) -> Optional[pulumi.Input[str]]:
79
79
  """
80
- The Account team project type. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization:networking:read`, `organization:networking:write`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
80
+ The Account team project type. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:billing:read`, `organization:billing:write`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization:networking:read`, `organization:networking:write`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
81
81
  """
82
82
  return pulumi.get(self, "team_type")
83
83
 
@@ -98,7 +98,7 @@ class _AccountTeamProjectState:
98
98
  :param pulumi.Input[str] account_id: The unique account id
99
99
  :param pulumi.Input[str] project_name: The name of an already existing project
100
100
  :param pulumi.Input[str] team_id: An account team id
101
- :param pulumi.Input[str] team_type: The Account team project type. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization:networking:read`, `organization:networking:write`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
101
+ :param pulumi.Input[str] team_type: The Account team project type. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:billing:read`, `organization:billing:write`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization:networking:read`, `organization:networking:write`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
102
102
  """
103
103
  if account_id is not None:
104
104
  pulumi.set(__self__, "account_id", account_id)
@@ -149,7 +149,7 @@ class _AccountTeamProjectState:
149
149
  @pulumi.getter(name="teamType")
150
150
  def team_type(self) -> Optional[pulumi.Input[str]]:
151
151
  """
152
- The Account team project type. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization:networking:read`, `organization:networking:write`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
152
+ The Account team project type. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:billing:read`, `organization:billing:write`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization:networking:read`, `organization:networking:write`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
153
153
  """
154
154
  return pulumi.get(self, "team_type")
155
155
 
@@ -212,7 +212,7 @@ class AccountTeamProject(pulumi.CustomResource):
212
212
  :param pulumi.Input[str] account_id: The unique account id
213
213
  :param pulumi.Input[str] project_name: The name of an already existing project
214
214
  :param pulumi.Input[str] team_id: An account team id
215
- :param pulumi.Input[str] team_type: The Account team project type. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization:networking:read`, `organization:networking:write`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
215
+ :param pulumi.Input[str] team_type: The Account team project type. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:billing:read`, `organization:billing:write`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization:networking:read`, `organization:networking:write`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
216
216
  """
217
217
  ...
218
218
  @overload
@@ -319,7 +319,7 @@ class AccountTeamProject(pulumi.CustomResource):
319
319
  :param pulumi.Input[str] account_id: The unique account id
320
320
  :param pulumi.Input[str] project_name: The name of an already existing project
321
321
  :param pulumi.Input[str] team_id: An account team id
322
- :param pulumi.Input[str] team_type: The Account team project type. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization:networking:read`, `organization:networking:write`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
322
+ :param pulumi.Input[str] team_type: The Account team project type. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:billing:read`, `organization:billing:write`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization:networking:read`, `organization:networking:write`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
323
323
  """
324
324
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
325
325
 
@@ -359,7 +359,7 @@ class AccountTeamProject(pulumi.CustomResource):
359
359
  @pulumi.getter(name="teamType")
360
360
  def team_type(self) -> pulumi.Output[Optional[str]]:
361
361
  """
362
- The Account team project type. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization:networking:read`, `organization:networking:write`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
362
+ The Account team project type. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:billing:read`, `organization:billing:write`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization:networking:read`, `organization:networking:write`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
363
363
  """
364
364
  return pulumi.get(self, "team_type")
365
365