pulumi-aiven 6.24.0a1726291362__py3-none-any.whl → 6.24.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.

Files changed (55) hide show
  1. pulumi_aiven/__init__.py +9 -0
  2. pulumi_aiven/_inputs.py +524 -4
  3. pulumi_aiven/cassandra.py +24 -24
  4. pulumi_aiven/cassandra_user.py +40 -40
  5. pulumi_aiven/clickhouse.py +7 -7
  6. pulumi_aiven/connection_pool.py +41 -41
  7. pulumi_aiven/dragonfly.py +7 -7
  8. pulumi_aiven/flink.py +7 -7
  9. pulumi_aiven/get_cassanda.py +8 -8
  10. pulumi_aiven/get_cassandra.py +8 -8
  11. pulumi_aiven/get_cassandra_user.py +15 -15
  12. pulumi_aiven/get_clickhouse.py +1 -1
  13. pulumi_aiven/get_connection_pool.py +14 -14
  14. pulumi_aiven/get_dragonfly.py +1 -1
  15. pulumi_aiven/get_flink.py +1 -1
  16. pulumi_aiven/get_grafana.py +8 -8
  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_kafka_topic.py +27 -1
  21. pulumi_aiven/get_m3_aggregator.py +1 -1
  22. pulumi_aiven/get_m3_db.py +8 -8
  23. pulumi_aiven/get_m3db_user.py +13 -13
  24. pulumi_aiven/get_my_sql.py +1 -1
  25. pulumi_aiven/get_open_search.py +1 -1
  26. pulumi_aiven/get_pg.py +1 -1
  27. pulumi_aiven/get_pg_user.py +1 -1
  28. pulumi_aiven/get_redis.py +1 -1
  29. pulumi_aiven/get_service_integration_endpoint.py +40 -1
  30. pulumi_aiven/get_thanos.py +1 -1
  31. pulumi_aiven/get_valkey.py +1 -1
  32. pulumi_aiven/grafana.py +24 -24
  33. pulumi_aiven/influx_db.py +7 -7
  34. pulumi_aiven/kafka.py +7 -7
  35. pulumi_aiven/kafka_connect.py +7 -7
  36. pulumi_aiven/kafka_mirror_maker.py +7 -7
  37. pulumi_aiven/kafka_topic.py +95 -1
  38. pulumi_aiven/m3_aggregator.py +7 -7
  39. pulumi_aiven/m3_db.py +26 -26
  40. pulumi_aiven/m3db_user.py +32 -32
  41. pulumi_aiven/my_sql.py +7 -7
  42. pulumi_aiven/open_search.py +7 -7
  43. pulumi_aiven/organization_permission.py +298 -0
  44. pulumi_aiven/outputs.py +798 -8
  45. pulumi_aiven/pg.py +7 -7
  46. pulumi_aiven/pg_user.py +21 -7
  47. pulumi_aiven/pulumi-plugin.json +1 -1
  48. pulumi_aiven/redis.py +7 -7
  49. pulumi_aiven/service_integration_endpoint.py +141 -0
  50. pulumi_aiven/thanos.py +7 -7
  51. pulumi_aiven/valkey.py +7 -7
  52. {pulumi_aiven-6.24.0a1726291362.dist-info → pulumi_aiven-6.24.1.dist-info}/METADATA +1 -1
  53. {pulumi_aiven-6.24.0a1726291362.dist-info → pulumi_aiven-6.24.1.dist-info}/RECORD +55 -54
  54. {pulumi_aiven-6.24.0a1726291362.dist-info → pulumi_aiven-6.24.1.dist-info}/WHEEL +1 -1
  55. {pulumi_aiven-6.24.0a1726291362.dist-info → pulumi_aiven-6.24.1.dist-info}/top_level.txt +0 -0
pulumi_aiven/_inputs.py CHANGED
@@ -191,6 +191,7 @@ __all__ = [
191
191
  'OpenSearchTagArgs',
192
192
  'OpenSearchTechEmailArgs',
193
193
  'OrganizationGroupProjectTimeoutsArgs',
194
+ 'OrganizationPermissionPermissionArgs',
194
195
  'OrganizationTimeoutsArgs',
195
196
  'OrganizationUserGroupMemberTimeoutsArgs',
196
197
  'PgComponentArgs',
@@ -237,10 +238,13 @@ __all__ = [
237
238
  'ServiceIntegrationEndpointDatadogUserConfigDatadogTagArgs',
238
239
  'ServiceIntegrationEndpointExternalAwsCloudwatchLogsUserConfigArgs',
239
240
  'ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgs',
241
+ 'ServiceIntegrationEndpointExternalAwsS3UserConfigArgs',
242
+ 'ServiceIntegrationEndpointExternalClickhouseUserConfigArgs',
240
243
  'ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgs',
241
244
  'ServiceIntegrationEndpointExternalGoogleCloudBigqueryArgs',
242
245
  'ServiceIntegrationEndpointExternalGoogleCloudLoggingUserConfigArgs',
243
246
  'ServiceIntegrationEndpointExternalKafkaUserConfigArgs',
247
+ 'ServiceIntegrationEndpointExternalMysqlUserConfigArgs',
244
248
  'ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgs',
245
249
  'ServiceIntegrationEndpointExternalPostgresqlArgs',
246
250
  'ServiceIntegrationEndpointExternalSchemaRegistryUserConfigArgs',
@@ -4285,7 +4289,8 @@ class GrafanaGrafanaUserConfigAuthGenericOauthArgs:
4285
4289
  allowed_organizations: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
4286
4290
  auto_login: Optional[pulumi.Input[bool]] = None,
4287
4291
  name: Optional[pulumi.Input[str]] = None,
4288
- scopes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
4292
+ scopes: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
4293
+ use_refresh_token: Optional[pulumi.Input[bool]] = None):
4289
4294
  """
4290
4295
  :param pulumi.Input[str] api_url: API URL. Example: `https://yourprovider.com/api`.
4291
4296
  :param pulumi.Input[str] auth_url: Authorization URL. Example: `https://yourprovider.com/oauth/authorize`.
@@ -4298,6 +4303,7 @@ class GrafanaGrafanaUserConfigAuthGenericOauthArgs:
4298
4303
  :param pulumi.Input[bool] auto_login: Allow users to bypass the login screen and automatically log in.
4299
4304
  :param pulumi.Input[str] name: Name of the OAuth integration. Example: `My authentication`.
4300
4305
  :param pulumi.Input[Sequence[pulumi.Input[str]]] scopes: OAuth scopes.
4306
+ :param pulumi.Input[bool] use_refresh_token: Set to true to use refresh token and check access token expiration.
4301
4307
  """
4302
4308
  pulumi.set(__self__, "api_url", api_url)
4303
4309
  pulumi.set(__self__, "auth_url", auth_url)
@@ -4316,6 +4322,8 @@ class GrafanaGrafanaUserConfigAuthGenericOauthArgs:
4316
4322
  pulumi.set(__self__, "name", name)
4317
4323
  if scopes is not None:
4318
4324
  pulumi.set(__self__, "scopes", scopes)
4325
+ if use_refresh_token is not None:
4326
+ pulumi.set(__self__, "use_refresh_token", use_refresh_token)
4319
4327
 
4320
4328
  @property
4321
4329
  @pulumi.getter(name="apiUrl")
@@ -4449,6 +4457,18 @@ class GrafanaGrafanaUserConfigAuthGenericOauthArgs:
4449
4457
  def scopes(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
4450
4458
  pulumi.set(self, "scopes", value)
4451
4459
 
4460
+ @property
4461
+ @pulumi.getter(name="useRefreshToken")
4462
+ def use_refresh_token(self) -> Optional[pulumi.Input[bool]]:
4463
+ """
4464
+ Set to true to use refresh token and check access token expiration.
4465
+ """
4466
+ return pulumi.get(self, "use_refresh_token")
4467
+
4468
+ @use_refresh_token.setter
4469
+ def use_refresh_token(self, value: Optional[pulumi.Input[bool]]):
4470
+ pulumi.set(self, "use_refresh_token", value)
4471
+
4452
4472
 
4453
4473
  @pulumi.input_type
4454
4474
  class GrafanaGrafanaUserConfigAuthGithubArgs:
@@ -7075,17 +7095,21 @@ class KafkaConnectKafkaConnectUserConfigSecretProviderVaultArgs:
7075
7095
  address: pulumi.Input[str],
7076
7096
  auth_method: pulumi.Input[str],
7077
7097
  engine_version: Optional[pulumi.Input[int]] = None,
7098
+ prefix_path_depth: Optional[pulumi.Input[int]] = None,
7078
7099
  token: Optional[pulumi.Input[str]] = None):
7079
7100
  """
7080
7101
  :param pulumi.Input[str] address: Address of the Vault server.
7081
7102
  :param pulumi.Input[str] auth_method: Enum: `token`. Auth method of the vault secret provider.
7082
7103
  :param pulumi.Input[int] engine_version: Enum: `1`, `2`, and newer. KV Secrets Engine version of the Vault server instance.
7104
+ :param pulumi.Input[int] prefix_path_depth: Prefix path depth of the secrets Engine. Default is 1. If the secrets engine path has more than one segment it has to be increased to the number of segments.
7083
7105
  :param pulumi.Input[str] token: Token used to authenticate with vault and auth method `token`.
7084
7106
  """
7085
7107
  pulumi.set(__self__, "address", address)
7086
7108
  pulumi.set(__self__, "auth_method", auth_method)
7087
7109
  if engine_version is not None:
7088
7110
  pulumi.set(__self__, "engine_version", engine_version)
7111
+ if prefix_path_depth is not None:
7112
+ pulumi.set(__self__, "prefix_path_depth", prefix_path_depth)
7089
7113
  if token is not None:
7090
7114
  pulumi.set(__self__, "token", token)
7091
7115
 
@@ -7125,6 +7149,18 @@ class KafkaConnectKafkaConnectUserConfigSecretProviderVaultArgs:
7125
7149
  def engine_version(self, value: Optional[pulumi.Input[int]]):
7126
7150
  pulumi.set(self, "engine_version", value)
7127
7151
 
7152
+ @property
7153
+ @pulumi.getter(name="prefixPathDepth")
7154
+ def prefix_path_depth(self) -> Optional[pulumi.Input[int]]:
7155
+ """
7156
+ Prefix path depth of the secrets Engine. Default is 1. If the secrets engine path has more than one segment it has to be increased to the number of segments.
7157
+ """
7158
+ return pulumi.get(self, "prefix_path_depth")
7159
+
7160
+ @prefix_path_depth.setter
7161
+ def prefix_path_depth(self, value: Optional[pulumi.Input[int]]):
7162
+ pulumi.set(self, "prefix_path_depth", value)
7163
+
7128
7164
  @property
7129
7165
  @pulumi.getter
7130
7166
  def token(self) -> Optional[pulumi.Input[str]]:
@@ -7421,7 +7457,7 @@ class KafkaKafkaUserConfigArgs:
7421
7457
  :param pulumi.Input[bool] kafka_rest_authorization: Enable authorization in Kafka-REST service.
7422
7458
  :param pulumi.Input['KafkaKafkaUserConfigKafkaRestConfigArgs'] kafka_rest_config: Kafka REST configuration
7423
7459
  :param pulumi.Input['KafkaKafkaUserConfigKafkaSaslMechanismsArgs'] kafka_sasl_mechanisms: Kafka SASL mechanisms
7424
- :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.
7460
+ :param pulumi.Input[str] kafka_version: Enum: `3.1`, `3.2`, `3.3`, `3.4`, `3.5`, `3.6`, `3.7`, `3.8`, and newer. Kafka major version.
7425
7461
  :param pulumi.Input[bool] letsencrypt_sasl_privatelink: Use Letsencrypt CA for Kafka SASL via Privatelink.
7426
7462
  :param pulumi.Input['KafkaKafkaUserConfigPrivateAccessArgs'] private_access: Allow access to selected service ports from private networks
7427
7463
  :param pulumi.Input['KafkaKafkaUserConfigPrivatelinkAccessArgs'] privatelink_access: Allow access to selected service components through Privatelink
@@ -7686,7 +7722,7 @@ class KafkaKafkaUserConfigArgs:
7686
7722
  @pulumi.getter(name="kafkaVersion")
7687
7723
  def kafka_version(self) -> Optional[pulumi.Input[str]]:
7688
7724
  """
7689
- Enum: `3.1`, `3.2`, `3.3`, `3.4`, `3.5`, `3.6`, `3.7`, and newer. Kafka major version.
7725
+ Enum: `3.1`, `3.2`, `3.3`, `3.4`, `3.5`, `3.6`, `3.7`, `3.8`, and newer. Kafka major version.
7690
7726
  """
7691
7727
  return pulumi.get(self, "kafka_version")
7692
7728
 
@@ -9038,17 +9074,21 @@ class KafkaKafkaUserConfigKafkaConnectSecretProviderVaultArgs:
9038
9074
  address: pulumi.Input[str],
9039
9075
  auth_method: pulumi.Input[str],
9040
9076
  engine_version: Optional[pulumi.Input[int]] = None,
9077
+ prefix_path_depth: Optional[pulumi.Input[int]] = None,
9041
9078
  token: Optional[pulumi.Input[str]] = None):
9042
9079
  """
9043
9080
  :param pulumi.Input[str] address: Address of the Vault server.
9044
9081
  :param pulumi.Input[str] auth_method: Enum: `token`. Auth method of the vault secret provider.
9045
9082
  :param pulumi.Input[int] engine_version: Enum: `1`, `2`, and newer. KV Secrets Engine version of the Vault server instance.
9083
+ :param pulumi.Input[int] prefix_path_depth: Prefix path depth of the secrets Engine. Default is 1. If the secrets engine path has more than one segment it has to be increased to the number of segments.
9046
9084
  :param pulumi.Input[str] token: Token used to authenticate with vault and auth method `token`.
9047
9085
  """
9048
9086
  pulumi.set(__self__, "address", address)
9049
9087
  pulumi.set(__self__, "auth_method", auth_method)
9050
9088
  if engine_version is not None:
9051
9089
  pulumi.set(__self__, "engine_version", engine_version)
9090
+ if prefix_path_depth is not None:
9091
+ pulumi.set(__self__, "prefix_path_depth", prefix_path_depth)
9052
9092
  if token is not None:
9053
9093
  pulumi.set(__self__, "token", token)
9054
9094
 
@@ -9088,6 +9128,18 @@ class KafkaKafkaUserConfigKafkaConnectSecretProviderVaultArgs:
9088
9128
  def engine_version(self, value: Optional[pulumi.Input[int]]):
9089
9129
  pulumi.set(self, "engine_version", value)
9090
9130
 
9131
+ @property
9132
+ @pulumi.getter(name="prefixPathDepth")
9133
+ def prefix_path_depth(self) -> Optional[pulumi.Input[int]]:
9134
+ """
9135
+ Prefix path depth of the secrets Engine. Default is 1. If the secrets engine path has more than one segment it has to be increased to the number of segments.
9136
+ """
9137
+ return pulumi.get(self, "prefix_path_depth")
9138
+
9139
+ @prefix_path_depth.setter
9140
+ def prefix_path_depth(self, value: Optional[pulumi.Input[int]]):
9141
+ pulumi.set(self, "prefix_path_depth", value)
9142
+
9091
9143
  @property
9092
9144
  @pulumi.getter
9093
9145
  def token(self) -> Optional[pulumi.Input[str]]:
@@ -9604,13 +9656,21 @@ class KafkaKafkaUserConfigPublicAccessArgs:
9604
9656
  class KafkaKafkaUserConfigSchemaRegistryConfigArgs:
9605
9657
  def __init__(__self__, *,
9606
9658
  leader_eligibility: Optional[pulumi.Input[bool]] = None,
9659
+ retriable_errors_silenced: Optional[pulumi.Input[bool]] = None,
9660
+ schema_reader_strict_mode: Optional[pulumi.Input[bool]] = None,
9607
9661
  topic_name: Optional[pulumi.Input[str]] = None):
9608
9662
  """
9609
9663
  :param pulumi.Input[bool] leader_eligibility: If true, Karapace / Schema Registry on the service nodes can participate in leader election. It might be needed to disable this when the schemas topic is replicated to a secondary cluster and Karapace / Schema Registry there must not participate in leader election. Defaults to `true`.
9664
+ :param pulumi.Input[bool] retriable_errors_silenced: If enabled, kafka errors which can be retried or custom errors specified for the service will not be raised, instead, a warning log is emitted. This will denoise issue tracking systems, i.e. sentry. Defaults to `true`.
9665
+ :param pulumi.Input[bool] schema_reader_strict_mode: If enabled, causes the Karapace schema-registry service to shutdown when there are invalid schema records in the `_schemas` topic. Defaults to `false`.
9610
9666
  :param pulumi.Input[str] topic_name: The durable single partition topic that acts as the durable log for the data. This topic must be compacted to avoid losing data due to retention policy. Please note that changing this configuration in an existing Schema Registry / Karapace setup leads to previous schemas being inaccessible, data encoded with them potentially unreadable and schema ID sequence put out of order. It's only possible to do the switch while Schema Registry / Karapace is disabled. Defaults to `_schemas`.
9611
9667
  """
9612
9668
  if leader_eligibility is not None:
9613
9669
  pulumi.set(__self__, "leader_eligibility", leader_eligibility)
9670
+ if retriable_errors_silenced is not None:
9671
+ pulumi.set(__self__, "retriable_errors_silenced", retriable_errors_silenced)
9672
+ if schema_reader_strict_mode is not None:
9673
+ pulumi.set(__self__, "schema_reader_strict_mode", schema_reader_strict_mode)
9614
9674
  if topic_name is not None:
9615
9675
  pulumi.set(__self__, "topic_name", topic_name)
9616
9676
 
@@ -9626,6 +9686,30 @@ class KafkaKafkaUserConfigSchemaRegistryConfigArgs:
9626
9686
  def leader_eligibility(self, value: Optional[pulumi.Input[bool]]):
9627
9687
  pulumi.set(self, "leader_eligibility", value)
9628
9688
 
9689
+ @property
9690
+ @pulumi.getter(name="retriableErrorsSilenced")
9691
+ def retriable_errors_silenced(self) -> Optional[pulumi.Input[bool]]:
9692
+ """
9693
+ If enabled, kafka errors which can be retried or custom errors specified for the service will not be raised, instead, a warning log is emitted. This will denoise issue tracking systems, i.e. sentry. Defaults to `true`.
9694
+ """
9695
+ return pulumi.get(self, "retriable_errors_silenced")
9696
+
9697
+ @retriable_errors_silenced.setter
9698
+ def retriable_errors_silenced(self, value: Optional[pulumi.Input[bool]]):
9699
+ pulumi.set(self, "retriable_errors_silenced", value)
9700
+
9701
+ @property
9702
+ @pulumi.getter(name="schemaReaderStrictMode")
9703
+ def schema_reader_strict_mode(self) -> Optional[pulumi.Input[bool]]:
9704
+ """
9705
+ If enabled, causes the Karapace schema-registry service to shutdown when there are invalid schema records in the `_schemas` topic. Defaults to `false`.
9706
+ """
9707
+ return pulumi.get(self, "schema_reader_strict_mode")
9708
+
9709
+ @schema_reader_strict_mode.setter
9710
+ def schema_reader_strict_mode(self, value: Optional[pulumi.Input[bool]]):
9711
+ pulumi.set(self, "schema_reader_strict_mode", value)
9712
+
9629
9713
  @property
9630
9714
  @pulumi.getter(name="topicName")
9631
9715
  def topic_name(self) -> Optional[pulumi.Input[str]]:
@@ -14429,6 +14513,9 @@ class OpenSearchOpensearchArgs:
14429
14513
  :param pulumi.Input[Sequence[pulumi.Input[str]]] uris: OpenSearch server URIs.
14430
14514
  :param pulumi.Input[str] username: OpenSearch username
14431
14515
  """
14516
+ if kibana_uri is not None:
14517
+ warnings.warn("""This field was added by mistake and has never worked. It will be removed in future versions.""", DeprecationWarning)
14518
+ pulumi.log.warn("""kibana_uri is deprecated: This field was added by mistake and has never worked. It will be removed in future versions.""")
14432
14519
  if kibana_uri is not None:
14433
14520
  pulumi.set(__self__, "kibana_uri", kibana_uri)
14434
14521
  if opensearch_dashboards_uri is not None:
@@ -14442,6 +14529,7 @@ class OpenSearchOpensearchArgs:
14442
14529
 
14443
14530
  @property
14444
14531
  @pulumi.getter(name="kibanaUri")
14532
+ @_utilities.deprecated("""This field was added by mistake and has never worked. It will be removed in future versions.""")
14445
14533
  def kibana_uri(self) -> Optional[pulumi.Input[str]]:
14446
14534
  """
14447
14535
  URI for Kibana dashboard frontend
@@ -14942,6 +15030,7 @@ class OpenSearchOpensearchUserConfigAzureMigrationArgs:
14942
15030
  chunk_size: Optional[pulumi.Input[str]] = None,
14943
15031
  compress: Optional[pulumi.Input[bool]] = None,
14944
15032
  endpoint_suffix: Optional[pulumi.Input[str]] = None,
15033
+ indices: Optional[pulumi.Input[str]] = None,
14945
15034
  key: Optional[pulumi.Input[str]] = None,
14946
15035
  sas_token: Optional[pulumi.Input[str]] = None):
14947
15036
  """
@@ -14952,6 +15041,7 @@ class OpenSearchOpensearchUserConfigAzureMigrationArgs:
14952
15041
  :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.
14953
15042
  :param pulumi.Input[bool] compress: When set to true metadata files are stored in compressed format.
14954
15043
  :param pulumi.Input[str] endpoint_suffix: Defines the DNS suffix for Azure Storage endpoints.
15044
+ :param pulumi.Input[str] indices: A comma-delimited list of indices to restore from the snapshot. Multi-index syntax is supported. By default, a restore operation includes all data streams and indices in the snapshot. If this argument is provided, the restore operation only includes the data streams and indices that you specify. Example: `metrics*,logs*,data-20240823`.
14955
15045
  :param pulumi.Input[str] key: Azure account secret key. One of key or sas_token should be specified.
14956
15046
  :param pulumi.Input[str] sas_token: A shared access signatures (SAS) token. One of key or sas_token should be specified.
14957
15047
  """
@@ -14965,6 +15055,8 @@ class OpenSearchOpensearchUserConfigAzureMigrationArgs:
14965
15055
  pulumi.set(__self__, "compress", compress)
14966
15056
  if endpoint_suffix is not None:
14967
15057
  pulumi.set(__self__, "endpoint_suffix", endpoint_suffix)
15058
+ if indices is not None:
15059
+ pulumi.set(__self__, "indices", indices)
14968
15060
  if key is not None:
14969
15061
  pulumi.set(__self__, "key", key)
14970
15062
  if sas_token is not None:
@@ -15054,6 +15146,18 @@ class OpenSearchOpensearchUserConfigAzureMigrationArgs:
15054
15146
  def endpoint_suffix(self, value: Optional[pulumi.Input[str]]):
15055
15147
  pulumi.set(self, "endpoint_suffix", value)
15056
15148
 
15149
+ @property
15150
+ @pulumi.getter
15151
+ def indices(self) -> Optional[pulumi.Input[str]]:
15152
+ """
15153
+ A comma-delimited list of indices to restore from the snapshot. Multi-index syntax is supported. By default, a restore operation includes all data streams and indices in the snapshot. If this argument is provided, the restore operation only includes the data streams and indices that you specify. Example: `metrics*,logs*,data-20240823`.
15154
+ """
15155
+ return pulumi.get(self, "indices")
15156
+
15157
+ @indices.setter
15158
+ def indices(self, value: Optional[pulumi.Input[str]]):
15159
+ pulumi.set(self, "indices", value)
15160
+
15057
15161
  @property
15058
15162
  @pulumi.getter
15059
15163
  def key(self) -> Optional[pulumi.Input[str]]:
@@ -15087,7 +15191,8 @@ class OpenSearchOpensearchUserConfigGcsMigrationArgs:
15087
15191
  credentials: pulumi.Input[str],
15088
15192
  snapshot_name: pulumi.Input[str],
15089
15193
  chunk_size: Optional[pulumi.Input[str]] = None,
15090
- compress: Optional[pulumi.Input[bool]] = None):
15194
+ compress: Optional[pulumi.Input[bool]] = None,
15195
+ indices: Optional[pulumi.Input[str]] = None):
15091
15196
  """
15092
15197
  :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 /.
15093
15198
  :param pulumi.Input[str] bucket: The path to the repository data within its container.
@@ -15095,6 +15200,7 @@ class OpenSearchOpensearchUserConfigGcsMigrationArgs:
15095
15200
  :param pulumi.Input[str] snapshot_name: The snapshot name to restore from.
15096
15201
  :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.
15097
15202
  :param pulumi.Input[bool] compress: When set to true metadata files are stored in compressed format.
15203
+ :param pulumi.Input[str] indices: A comma-delimited list of indices to restore from the snapshot. Multi-index syntax is supported. By default, a restore operation includes all data streams and indices in the snapshot. If this argument is provided, the restore operation only includes the data streams and indices that you specify. Example: `metrics*,logs*,data-20240823`.
15098
15204
  """
15099
15205
  pulumi.set(__self__, "base_path", base_path)
15100
15206
  pulumi.set(__self__, "bucket", bucket)
@@ -15104,6 +15210,8 @@ class OpenSearchOpensearchUserConfigGcsMigrationArgs:
15104
15210
  pulumi.set(__self__, "chunk_size", chunk_size)
15105
15211
  if compress is not None:
15106
15212
  pulumi.set(__self__, "compress", compress)
15213
+ if indices is not None:
15214
+ pulumi.set(__self__, "indices", indices)
15107
15215
 
15108
15216
  @property
15109
15217
  @pulumi.getter(name="basePath")
@@ -15177,6 +15285,18 @@ class OpenSearchOpensearchUserConfigGcsMigrationArgs:
15177
15285
  def compress(self, value: Optional[pulumi.Input[bool]]):
15178
15286
  pulumi.set(self, "compress", value)
15179
15287
 
15288
+ @property
15289
+ @pulumi.getter
15290
+ def indices(self) -> Optional[pulumi.Input[str]]:
15291
+ """
15292
+ A comma-delimited list of indices to restore from the snapshot. Multi-index syntax is supported. By default, a restore operation includes all data streams and indices in the snapshot. If this argument is provided, the restore operation only includes the data streams and indices that you specify. Example: `metrics*,logs*,data-20240823`.
15293
+ """
15294
+ return pulumi.get(self, "indices")
15295
+
15296
+ @indices.setter
15297
+ def indices(self, value: Optional[pulumi.Input[str]]):
15298
+ pulumi.set(self, "indices", value)
15299
+
15180
15300
 
15181
15301
  @pulumi.input_type
15182
15302
  class OpenSearchOpensearchUserConfigIndexPatternArgs:
@@ -16806,6 +16926,7 @@ class OpenSearchOpensearchUserConfigS3MigrationArgs:
16806
16926
  chunk_size: Optional[pulumi.Input[str]] = None,
16807
16927
  compress: Optional[pulumi.Input[bool]] = None,
16808
16928
  endpoint: Optional[pulumi.Input[str]] = None,
16929
+ indices: Optional[pulumi.Input[str]] = None,
16809
16930
  server_side_encryption: Optional[pulumi.Input[bool]] = None):
16810
16931
  """
16811
16932
  :param pulumi.Input[str] access_key: AWS Access key.
@@ -16817,6 +16938,7 @@ class OpenSearchOpensearchUserConfigS3MigrationArgs:
16817
16938
  :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.
16818
16939
  :param pulumi.Input[bool] compress: When set to true metadata files are stored in compressed format.
16819
16940
  :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.
16941
+ :param pulumi.Input[str] indices: A comma-delimited list of indices to restore from the snapshot. Multi-index syntax is supported. By default, a restore operation includes all data streams and indices in the snapshot. If this argument is provided, the restore operation only includes the data streams and indices that you specify. Example: `metrics*,logs*,data-20240823`.
16820
16942
  :param pulumi.Input[bool] server_side_encryption: When set to true files are encrypted on server side.
16821
16943
  """
16822
16944
  pulumi.set(__self__, "access_key", access_key)
@@ -16831,6 +16953,8 @@ class OpenSearchOpensearchUserConfigS3MigrationArgs:
16831
16953
  pulumi.set(__self__, "compress", compress)
16832
16954
  if endpoint is not None:
16833
16955
  pulumi.set(__self__, "endpoint", endpoint)
16956
+ if indices is not None:
16957
+ pulumi.set(__self__, "indices", indices)
16834
16958
  if server_side_encryption is not None:
16835
16959
  pulumi.set(__self__, "server_side_encryption", server_side_encryption)
16836
16960
 
@@ -16942,6 +17066,18 @@ class OpenSearchOpensearchUserConfigS3MigrationArgs:
16942
17066
  def endpoint(self, value: Optional[pulumi.Input[str]]):
16943
17067
  pulumi.set(self, "endpoint", value)
16944
17068
 
17069
+ @property
17070
+ @pulumi.getter
17071
+ def indices(self) -> Optional[pulumi.Input[str]]:
17072
+ """
17073
+ A comma-delimited list of indices to restore from the snapshot. Multi-index syntax is supported. By default, a restore operation includes all data streams and indices in the snapshot. If this argument is provided, the restore operation only includes the data streams and indices that you specify. Example: `metrics*,logs*,data-20240823`.
17074
+ """
17075
+ return pulumi.get(self, "indices")
17076
+
17077
+ @indices.setter
17078
+ def indices(self, value: Optional[pulumi.Input[str]]):
17079
+ pulumi.set(self, "indices", value)
17080
+
16945
17081
  @property
16946
17082
  @pulumi.getter(name="serverSideEncryption")
16947
17083
  def server_side_encryption(self) -> Optional[pulumi.Input[bool]]:
@@ -17243,6 +17379,90 @@ class OrganizationGroupProjectTimeoutsArgs:
17243
17379
  pulumi.set(self, "update", value)
17244
17380
 
17245
17381
 
17382
+ @pulumi.input_type
17383
+ class OrganizationPermissionPermissionArgs:
17384
+ def __init__(__self__, *,
17385
+ permissions: pulumi.Input[Sequence[pulumi.Input[str]]],
17386
+ principal_id: pulumi.Input[str],
17387
+ principal_type: pulumi.Input[str],
17388
+ create_time: Optional[pulumi.Input[str]] = None,
17389
+ update_time: Optional[pulumi.Input[str]] = None):
17390
+ """
17391
+ :param pulumi.Input[Sequence[pulumi.Input[str]]] permissions: List of permissions. The possible values are `admin`, `developer`, `operator` and `read_only`.
17392
+ :param pulumi.Input[str] principal_id: ID of the principal.
17393
+ :param pulumi.Input[str] principal_type: Type of the principal. The possible values are `user` and `user_group`.
17394
+ :param pulumi.Input[str] create_time: Create Time
17395
+ :param pulumi.Input[str] update_time: Update Time
17396
+ """
17397
+ pulumi.set(__self__, "permissions", permissions)
17398
+ pulumi.set(__self__, "principal_id", principal_id)
17399
+ pulumi.set(__self__, "principal_type", principal_type)
17400
+ if create_time is not None:
17401
+ pulumi.set(__self__, "create_time", create_time)
17402
+ if update_time is not None:
17403
+ pulumi.set(__self__, "update_time", update_time)
17404
+
17405
+ @property
17406
+ @pulumi.getter
17407
+ def permissions(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
17408
+ """
17409
+ List of permissions. The possible values are `admin`, `developer`, `operator` and `read_only`.
17410
+ """
17411
+ return pulumi.get(self, "permissions")
17412
+
17413
+ @permissions.setter
17414
+ def permissions(self, value: pulumi.Input[Sequence[pulumi.Input[str]]]):
17415
+ pulumi.set(self, "permissions", value)
17416
+
17417
+ @property
17418
+ @pulumi.getter(name="principalId")
17419
+ def principal_id(self) -> pulumi.Input[str]:
17420
+ """
17421
+ ID of the principal.
17422
+ """
17423
+ return pulumi.get(self, "principal_id")
17424
+
17425
+ @principal_id.setter
17426
+ def principal_id(self, value: pulumi.Input[str]):
17427
+ pulumi.set(self, "principal_id", value)
17428
+
17429
+ @property
17430
+ @pulumi.getter(name="principalType")
17431
+ def principal_type(self) -> pulumi.Input[str]:
17432
+ """
17433
+ Type of the principal. The possible values are `user` and `user_group`.
17434
+ """
17435
+ return pulumi.get(self, "principal_type")
17436
+
17437
+ @principal_type.setter
17438
+ def principal_type(self, value: pulumi.Input[str]):
17439
+ pulumi.set(self, "principal_type", value)
17440
+
17441
+ @property
17442
+ @pulumi.getter(name="createTime")
17443
+ def create_time(self) -> Optional[pulumi.Input[str]]:
17444
+ """
17445
+ Create Time
17446
+ """
17447
+ return pulumi.get(self, "create_time")
17448
+
17449
+ @create_time.setter
17450
+ def create_time(self, value: Optional[pulumi.Input[str]]):
17451
+ pulumi.set(self, "create_time", value)
17452
+
17453
+ @property
17454
+ @pulumi.getter(name="updateTime")
17455
+ def update_time(self) -> Optional[pulumi.Input[str]]:
17456
+ """
17457
+ Update Time
17458
+ """
17459
+ return pulumi.get(self, "update_time")
17460
+
17461
+ @update_time.setter
17462
+ def update_time(self, value: Optional[pulumi.Input[str]]):
17463
+ pulumi.set(self, "update_time", value)
17464
+
17465
+
17246
17466
  @pulumi.input_type
17247
17467
  class OrganizationTimeoutsArgs:
17248
17468
  def __init__(__self__, *,
@@ -17553,6 +17773,9 @@ class PgPgArgs:
17553
17773
  :param pulumi.Input[Sequence[pulumi.Input[str]]] uris: PostgreSQL primary connection URIs.
17554
17774
  :param pulumi.Input[str] user: PostgreSQL admin user name.
17555
17775
  """
17776
+ if bouncer is not None:
17777
+ warnings.warn("""This field was added by mistake and has never worked. It will be removed in future versions.""", DeprecationWarning)
17778
+ pulumi.log.warn("""bouncer is deprecated: This field was added by mistake and has never worked. It will be removed in future versions.""")
17556
17779
  if bouncer is not None:
17557
17780
  pulumi.set(__self__, "bouncer", bouncer)
17558
17781
  if dbname is not None:
@@ -17584,6 +17807,7 @@ class PgPgArgs:
17584
17807
 
17585
17808
  @property
17586
17809
  @pulumi.getter
17810
+ @_utilities.deprecated("""This field was added by mistake and has never worked. It will be removed in future versions.""")
17587
17811
  def bouncer(self) -> Optional[pulumi.Input[str]]:
17588
17812
  """
17589
17813
  PgBouncer connection details for [connection pooling](https://aiven.io/docs/products/postgresql/concepts/pg-connection-pooling).
@@ -17923,6 +18147,9 @@ class PgPgUserConfigArgs:
17923
18147
  :param pulumi.Input[str] variant: Enum: `aiven`, `timescale`. Variant of the PostgreSQL service, may affect the features that are exposed by default.
17924
18148
  :param pulumi.Input[int] work_mem: Sets the maximum amount of memory to be used by a query operation (such as a sort or hash table) before writing to temporary disk files, in MB. Default is 1MB + 0.075% of total RAM (up to 32MB). Example: `4`.
17925
18149
  """
18150
+ if additional_backup_regions is not None:
18151
+ warnings.warn("""This property is deprecated.""", DeprecationWarning)
18152
+ pulumi.log.warn("""additional_backup_regions is deprecated: This property is deprecated.""")
17926
18153
  if additional_backup_regions is not None:
17927
18154
  pulumi.set(__self__, "additional_backup_regions", additional_backup_regions)
17928
18155
  if admin_password is not None:
@@ -17999,6 +18226,7 @@ class PgPgUserConfigArgs:
17999
18226
 
18000
18227
  @property
18001
18228
  @pulumi.getter(name="additionalBackupRegions")
18229
+ @_utilities.deprecated("""This property is deprecated.""")
18002
18230
  def additional_backup_regions(self) -> Optional[pulumi.Input[str]]:
18003
18231
  """
18004
18232
  Additional Cloud Regions for Backup Replication.
@@ -20478,6 +20706,8 @@ class RedisRedisArgs:
20478
20706
  class RedisRedisUserConfigArgs:
20479
20707
  def __init__(__self__, *,
20480
20708
  additional_backup_regions: Optional[pulumi.Input[str]] = None,
20709
+ backup_hour: Optional[pulumi.Input[int]] = None,
20710
+ backup_minute: Optional[pulumi.Input[int]] = None,
20481
20711
  ip_filter_objects: Optional[pulumi.Input[Sequence[pulumi.Input['RedisRedisUserConfigIpFilterObjectArgs']]]] = None,
20482
20712
  ip_filter_strings: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
20483
20713
  ip_filters: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
@@ -20504,6 +20734,8 @@ class RedisRedisUserConfigArgs:
20504
20734
  static_ips: Optional[pulumi.Input[bool]] = None):
20505
20735
  """
20506
20736
  :param pulumi.Input[str] additional_backup_regions: Additional Cloud Regions for Backup Replication.
20737
+ :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`.
20738
+ :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`.
20507
20739
  :param pulumi.Input[Sequence[pulumi.Input['RedisRedisUserConfigIpFilterObjectArgs']]] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`
20508
20740
  :param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
20509
20741
  :param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filters: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
@@ -20531,6 +20763,10 @@ class RedisRedisUserConfigArgs:
20531
20763
  """
20532
20764
  if additional_backup_regions is not None:
20533
20765
  pulumi.set(__self__, "additional_backup_regions", additional_backup_regions)
20766
+ if backup_hour is not None:
20767
+ pulumi.set(__self__, "backup_hour", backup_hour)
20768
+ if backup_minute is not None:
20769
+ pulumi.set(__self__, "backup_minute", backup_minute)
20534
20770
  if ip_filter_objects is not None:
20535
20771
  pulumi.set(__self__, "ip_filter_objects", ip_filter_objects)
20536
20772
  if ip_filter_strings is not None:
@@ -20595,6 +20831,30 @@ class RedisRedisUserConfigArgs:
20595
20831
  def additional_backup_regions(self, value: Optional[pulumi.Input[str]]):
20596
20832
  pulumi.set(self, "additional_backup_regions", value)
20597
20833
 
20834
+ @property
20835
+ @pulumi.getter(name="backupHour")
20836
+ def backup_hour(self) -> Optional[pulumi.Input[int]]:
20837
+ """
20838
+ 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`.
20839
+ """
20840
+ return pulumi.get(self, "backup_hour")
20841
+
20842
+ @backup_hour.setter
20843
+ def backup_hour(self, value: Optional[pulumi.Input[int]]):
20844
+ pulumi.set(self, "backup_hour", value)
20845
+
20846
+ @property
20847
+ @pulumi.getter(name="backupMinute")
20848
+ def backup_minute(self) -> Optional[pulumi.Input[int]]:
20849
+ """
20850
+ 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`.
20851
+ """
20852
+ return pulumi.get(self, "backup_minute")
20853
+
20854
+ @backup_minute.setter
20855
+ def backup_minute(self, value: Optional[pulumi.Input[int]]):
20856
+ pulumi.set(self, "backup_minute", value)
20857
+
20598
20858
  @property
20599
20859
  @pulumi.getter(name="ipFilterObjects")
20600
20860
  def ip_filter_objects(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['RedisRedisUserConfigIpFilterObjectArgs']]]]:
@@ -22293,6 +22553,125 @@ class ServiceIntegrationEndpointExternalAwsCloudwatchMetricsUserConfigArgs:
22293
22553
  pulumi.set(self, "secret_key", value)
22294
22554
 
22295
22555
 
22556
+ @pulumi.input_type
22557
+ class ServiceIntegrationEndpointExternalAwsS3UserConfigArgs:
22558
+ def __init__(__self__, *,
22559
+ access_key_id: pulumi.Input[str],
22560
+ secret_access_key: pulumi.Input[str],
22561
+ url: pulumi.Input[str]):
22562
+ """
22563
+ :param pulumi.Input[str] access_key_id: Access Key Id. Example: `AAAAAAAAAAAAAAAAAAA`.
22564
+ :param pulumi.Input[str] secret_access_key: Secret Access Key. Example: `AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA`.
22565
+ :param pulumi.Input[str] url: S3-compatible bucket URL. Example: `https://mybucket.s3-myregion.amazonaws.com/mydataset/`.
22566
+ """
22567
+ pulumi.set(__self__, "access_key_id", access_key_id)
22568
+ pulumi.set(__self__, "secret_access_key", secret_access_key)
22569
+ pulumi.set(__self__, "url", url)
22570
+
22571
+ @property
22572
+ @pulumi.getter(name="accessKeyId")
22573
+ def access_key_id(self) -> pulumi.Input[str]:
22574
+ """
22575
+ Access Key Id. Example: `AAAAAAAAAAAAAAAAAAA`.
22576
+ """
22577
+ return pulumi.get(self, "access_key_id")
22578
+
22579
+ @access_key_id.setter
22580
+ def access_key_id(self, value: pulumi.Input[str]):
22581
+ pulumi.set(self, "access_key_id", value)
22582
+
22583
+ @property
22584
+ @pulumi.getter(name="secretAccessKey")
22585
+ def secret_access_key(self) -> pulumi.Input[str]:
22586
+ """
22587
+ Secret Access Key. Example: `AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAA`.
22588
+ """
22589
+ return pulumi.get(self, "secret_access_key")
22590
+
22591
+ @secret_access_key.setter
22592
+ def secret_access_key(self, value: pulumi.Input[str]):
22593
+ pulumi.set(self, "secret_access_key", value)
22594
+
22595
+ @property
22596
+ @pulumi.getter
22597
+ def url(self) -> pulumi.Input[str]:
22598
+ """
22599
+ S3-compatible bucket URL. Example: `https://mybucket.s3-myregion.amazonaws.com/mydataset/`.
22600
+ """
22601
+ return pulumi.get(self, "url")
22602
+
22603
+ @url.setter
22604
+ def url(self, value: pulumi.Input[str]):
22605
+ pulumi.set(self, "url", value)
22606
+
22607
+
22608
+ @pulumi.input_type
22609
+ class ServiceIntegrationEndpointExternalClickhouseUserConfigArgs:
22610
+ def __init__(__self__, *,
22611
+ host: pulumi.Input[str],
22612
+ password: pulumi.Input[str],
22613
+ port: pulumi.Input[int],
22614
+ username: pulumi.Input[str]):
22615
+ """
22616
+ :param pulumi.Input[str] host: Hostname or IP address of the server. Example: `my.server.com`.
22617
+ :param pulumi.Input[str] password: Password. Example: `jjKk45Nnd`.
22618
+ :param pulumi.Input[int] port: Secure TCP server port. Example: `9440`.
22619
+ :param pulumi.Input[str] username: User name. Example: `default`.
22620
+ """
22621
+ pulumi.set(__self__, "host", host)
22622
+ pulumi.set(__self__, "password", password)
22623
+ pulumi.set(__self__, "port", port)
22624
+ pulumi.set(__self__, "username", username)
22625
+
22626
+ @property
22627
+ @pulumi.getter
22628
+ def host(self) -> pulumi.Input[str]:
22629
+ """
22630
+ Hostname or IP address of the server. Example: `my.server.com`.
22631
+ """
22632
+ return pulumi.get(self, "host")
22633
+
22634
+ @host.setter
22635
+ def host(self, value: pulumi.Input[str]):
22636
+ pulumi.set(self, "host", value)
22637
+
22638
+ @property
22639
+ @pulumi.getter
22640
+ def password(self) -> pulumi.Input[str]:
22641
+ """
22642
+ Password. Example: `jjKk45Nnd`.
22643
+ """
22644
+ return pulumi.get(self, "password")
22645
+
22646
+ @password.setter
22647
+ def password(self, value: pulumi.Input[str]):
22648
+ pulumi.set(self, "password", value)
22649
+
22650
+ @property
22651
+ @pulumi.getter
22652
+ def port(self) -> pulumi.Input[int]:
22653
+ """
22654
+ Secure TCP server port. Example: `9440`.
22655
+ """
22656
+ return pulumi.get(self, "port")
22657
+
22658
+ @port.setter
22659
+ def port(self, value: pulumi.Input[int]):
22660
+ pulumi.set(self, "port", value)
22661
+
22662
+ @property
22663
+ @pulumi.getter
22664
+ def username(self) -> pulumi.Input[str]:
22665
+ """
22666
+ User name. Example: `default`.
22667
+ """
22668
+ return pulumi.get(self, "username")
22669
+
22670
+ @username.setter
22671
+ def username(self, value: pulumi.Input[str]):
22672
+ pulumi.set(self, "username", value)
22673
+
22674
+
22296
22675
  @pulumi.input_type
22297
22676
  class ServiceIntegrationEndpointExternalElasticsearchLogsUserConfigArgs:
22298
22677
  def __init__(__self__, *,
@@ -22640,6 +23019,111 @@ class ServiceIntegrationEndpointExternalKafkaUserConfigArgs:
22640
23019
  pulumi.set(self, "ssl_endpoint_identification_algorithm", value)
22641
23020
 
22642
23021
 
23022
+ @pulumi.input_type
23023
+ class ServiceIntegrationEndpointExternalMysqlUserConfigArgs:
23024
+ def __init__(__self__, *,
23025
+ host: pulumi.Input[str],
23026
+ password: pulumi.Input[str],
23027
+ port: pulumi.Input[int],
23028
+ username: pulumi.Input[str],
23029
+ ssl_mode: Optional[pulumi.Input[str]] = None,
23030
+ ssl_root_cert: Optional[pulumi.Input[str]] = None):
23031
+ """
23032
+ :param pulumi.Input[str] host: Hostname or IP address of the server. Example: `my.server.com`.
23033
+ :param pulumi.Input[str] password: Password. Example: `jjKk45Nnd`.
23034
+ :param pulumi.Input[int] port: Port number of the server. Example: `5432`.
23035
+ :param pulumi.Input[str] username: User name. Example: `myname`.
23036
+ :param pulumi.Input[str] ssl_mode: Enum: `verify-full`. SSL Mode. Default: `verify-full`.
23037
+ :param pulumi.Input[str] ssl_root_cert: SSL Root Cert. Example: `-----BEGIN CERTIFICATE-----
23038
+ ...
23039
+ -----END CERTIFICATE-----
23040
+ `.
23041
+ """
23042
+ pulumi.set(__self__, "host", host)
23043
+ pulumi.set(__self__, "password", password)
23044
+ pulumi.set(__self__, "port", port)
23045
+ pulumi.set(__self__, "username", username)
23046
+ if ssl_mode is not None:
23047
+ pulumi.set(__self__, "ssl_mode", ssl_mode)
23048
+ if ssl_root_cert is not None:
23049
+ pulumi.set(__self__, "ssl_root_cert", ssl_root_cert)
23050
+
23051
+ @property
23052
+ @pulumi.getter
23053
+ def host(self) -> pulumi.Input[str]:
23054
+ """
23055
+ Hostname or IP address of the server. Example: `my.server.com`.
23056
+ """
23057
+ return pulumi.get(self, "host")
23058
+
23059
+ @host.setter
23060
+ def host(self, value: pulumi.Input[str]):
23061
+ pulumi.set(self, "host", value)
23062
+
23063
+ @property
23064
+ @pulumi.getter
23065
+ def password(self) -> pulumi.Input[str]:
23066
+ """
23067
+ Password. Example: `jjKk45Nnd`.
23068
+ """
23069
+ return pulumi.get(self, "password")
23070
+
23071
+ @password.setter
23072
+ def password(self, value: pulumi.Input[str]):
23073
+ pulumi.set(self, "password", value)
23074
+
23075
+ @property
23076
+ @pulumi.getter
23077
+ def port(self) -> pulumi.Input[int]:
23078
+ """
23079
+ Port number of the server. Example: `5432`.
23080
+ """
23081
+ return pulumi.get(self, "port")
23082
+
23083
+ @port.setter
23084
+ def port(self, value: pulumi.Input[int]):
23085
+ pulumi.set(self, "port", value)
23086
+
23087
+ @property
23088
+ @pulumi.getter
23089
+ def username(self) -> pulumi.Input[str]:
23090
+ """
23091
+ User name. Example: `myname`.
23092
+ """
23093
+ return pulumi.get(self, "username")
23094
+
23095
+ @username.setter
23096
+ def username(self, value: pulumi.Input[str]):
23097
+ pulumi.set(self, "username", value)
23098
+
23099
+ @property
23100
+ @pulumi.getter(name="sslMode")
23101
+ def ssl_mode(self) -> Optional[pulumi.Input[str]]:
23102
+ """
23103
+ Enum: `verify-full`. SSL Mode. Default: `verify-full`.
23104
+ """
23105
+ return pulumi.get(self, "ssl_mode")
23106
+
23107
+ @ssl_mode.setter
23108
+ def ssl_mode(self, value: Optional[pulumi.Input[str]]):
23109
+ pulumi.set(self, "ssl_mode", value)
23110
+
23111
+ @property
23112
+ @pulumi.getter(name="sslRootCert")
23113
+ def ssl_root_cert(self) -> Optional[pulumi.Input[str]]:
23114
+ """
23115
+ SSL Root Cert. Example: `-----BEGIN CERTIFICATE-----
23116
+ ...
23117
+ -----END CERTIFICATE-----
23118
+ `.
23119
+ """
23120
+ return pulumi.get(self, "ssl_root_cert")
23121
+
23122
+ @ssl_root_cert.setter
23123
+ def ssl_root_cert(self, value: Optional[pulumi.Input[str]]):
23124
+ pulumi.set(self, "ssl_root_cert", value)
23125
+
23126
+
22643
23127
  @pulumi.input_type
22644
23128
  class ServiceIntegrationEndpointExternalOpensearchLogsUserConfigArgs:
22645
23129
  def __init__(__self__, *,
@@ -24640,6 +25124,9 @@ class ThanosThanosArgs:
24640
25124
  pulumi.set(__self__, "receiver_ingesting_remote_write_uri", receiver_ingesting_remote_write_uri)
24641
25125
  if receiver_remote_write_uri is not None:
24642
25126
  pulumi.set(__self__, "receiver_remote_write_uri", receiver_remote_write_uri)
25127
+ if store_uri is not None:
25128
+ warnings.warn("""This field was added by mistake and has never worked. It will be removed in future versions.""", DeprecationWarning)
25129
+ pulumi.log.warn("""store_uri is deprecated: This field was added by mistake and has never worked. It will be removed in future versions.""")
24643
25130
  if store_uri is not None:
24644
25131
  pulumi.set(__self__, "store_uri", store_uri)
24645
25132
  if uris is not None:
@@ -24695,6 +25182,7 @@ class ThanosThanosArgs:
24695
25182
 
24696
25183
  @property
24697
25184
  @pulumi.getter(name="storeUri")
25185
+ @_utilities.deprecated("""This field was added by mistake and has never worked. It will be removed in future versions.""")
24698
25186
  def store_uri(self) -> Optional[pulumi.Input[str]]:
24699
25187
  """
24700
25188
  Store URI.
@@ -25453,6 +25941,8 @@ class ValkeyValkeyArgs:
25453
25941
  class ValkeyValkeyUserConfigArgs:
25454
25942
  def __init__(__self__, *,
25455
25943
  additional_backup_regions: Optional[pulumi.Input[str]] = None,
25944
+ backup_hour: Optional[pulumi.Input[int]] = None,
25945
+ backup_minute: Optional[pulumi.Input[int]] = None,
25456
25946
  ip_filter_objects: Optional[pulumi.Input[Sequence[pulumi.Input['ValkeyValkeyUserConfigIpFilterObjectArgs']]]] = None,
25457
25947
  ip_filter_strings: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
25458
25948
  ip_filters: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
@@ -25478,6 +25968,8 @@ class ValkeyValkeyUserConfigArgs:
25478
25968
  valkey_timeout: Optional[pulumi.Input[int]] = None):
25479
25969
  """
25480
25970
  :param pulumi.Input[str] additional_backup_regions: Additional Cloud Regions for Backup Replication.
25971
+ :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`.
25972
+ :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`.
25481
25973
  :param pulumi.Input[Sequence[pulumi.Input['ValkeyValkeyUserConfigIpFilterObjectArgs']]] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`
25482
25974
  :param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
25483
25975
  :param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filters: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
@@ -25504,6 +25996,10 @@ class ValkeyValkeyUserConfigArgs:
25504
25996
  """
25505
25997
  if additional_backup_regions is not None:
25506
25998
  pulumi.set(__self__, "additional_backup_regions", additional_backup_regions)
25999
+ if backup_hour is not None:
26000
+ pulumi.set(__self__, "backup_hour", backup_hour)
26001
+ if backup_minute is not None:
26002
+ pulumi.set(__self__, "backup_minute", backup_minute)
25507
26003
  if ip_filter_objects is not None:
25508
26004
  pulumi.set(__self__, "ip_filter_objects", ip_filter_objects)
25509
26005
  if ip_filter_strings is not None:
@@ -25566,6 +26062,30 @@ class ValkeyValkeyUserConfigArgs:
25566
26062
  def additional_backup_regions(self, value: Optional[pulumi.Input[str]]):
25567
26063
  pulumi.set(self, "additional_backup_regions", value)
25568
26064
 
26065
+ @property
26066
+ @pulumi.getter(name="backupHour")
26067
+ def backup_hour(self) -> Optional[pulumi.Input[int]]:
26068
+ """
26069
+ 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`.
26070
+ """
26071
+ return pulumi.get(self, "backup_hour")
26072
+
26073
+ @backup_hour.setter
26074
+ def backup_hour(self, value: Optional[pulumi.Input[int]]):
26075
+ pulumi.set(self, "backup_hour", value)
26076
+
26077
+ @property
26078
+ @pulumi.getter(name="backupMinute")
26079
+ def backup_minute(self) -> Optional[pulumi.Input[int]]:
26080
+ """
26081
+ 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`.
26082
+ """
26083
+ return pulumi.get(self, "backup_minute")
26084
+
26085
+ @backup_minute.setter
26086
+ def backup_minute(self, value: Optional[pulumi.Input[int]]):
26087
+ pulumi.set(self, "backup_minute", value)
26088
+
25569
26089
  @property
25570
26090
  @pulumi.getter(name="ipFilterObjects")
25571
26091
  def ip_filter_objects(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ValkeyValkeyUserConfigIpFilterObjectArgs']]]]: