pulumi-aiven 6.16.0a1716504562__py3-none-any.whl → 6.16.0a1716589862__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 (39) hide show
  1. pulumi_aiven/_inputs.py +1096 -216
  2. pulumi_aiven/cassandra.py +48 -1
  3. pulumi_aiven/clickhouse.py +48 -1
  4. pulumi_aiven/dragonfly.py +48 -1
  5. pulumi_aiven/flink.py +2 -2
  6. pulumi_aiven/flink_application_deployment.py +56 -30
  7. pulumi_aiven/gcp_privatelink.py +52 -30
  8. pulumi_aiven/gcp_privatelink_connection_approval.py +54 -30
  9. pulumi_aiven/get_cassanda.py +14 -1
  10. pulumi_aiven/get_cassandra.py +14 -1
  11. pulumi_aiven/get_clickhouse.py +14 -1
  12. pulumi_aiven/get_dragonfly.py +14 -1
  13. pulumi_aiven/get_gcp_privatelink.py +45 -2
  14. pulumi_aiven/get_grafana.py +14 -1
  15. pulumi_aiven/get_m3_aggregator.py +14 -1
  16. pulumi_aiven/get_m3_db.py +14 -1
  17. pulumi_aiven/get_mirror_maker_replication_flow.py +1 -1
  18. pulumi_aiven/get_my_sql.py +14 -1
  19. pulumi_aiven/get_redis.py +14 -1
  20. pulumi_aiven/get_service_integration.py +3 -3
  21. pulumi_aiven/get_service_integration_endpoint.py +1 -1
  22. pulumi_aiven/grafana.py +48 -1
  23. pulumi_aiven/influx_db.py +21 -2
  24. pulumi_aiven/kafka.py +20 -1
  25. pulumi_aiven/m3_aggregator.py +48 -1
  26. pulumi_aiven/m3_db.py +48 -1
  27. pulumi_aiven/mirror_maker_replication_flow.py +7 -7
  28. pulumi_aiven/my_sql.py +48 -1
  29. pulumi_aiven/open_search.py +21 -2
  30. pulumi_aiven/outputs.py +1758 -285
  31. pulumi_aiven/pg.py +2 -2
  32. pulumi_aiven/pulumi-plugin.json +1 -1
  33. pulumi_aiven/redis.py +48 -1
  34. pulumi_aiven/service_integration.py +7 -7
  35. pulumi_aiven/service_integration_endpoint.py +7 -7
  36. {pulumi_aiven-6.16.0a1716504562.dist-info → pulumi_aiven-6.16.0a1716589862.dist-info}/METADATA +1 -1
  37. {pulumi_aiven-6.16.0a1716504562.dist-info → pulumi_aiven-6.16.0a1716589862.dist-info}/RECORD +39 -39
  38. {pulumi_aiven-6.16.0a1716504562.dist-info → pulumi_aiven-6.16.0a1716589862.dist-info}/WHEEL +0 -0
  39. {pulumi_aiven-6.16.0a1716504562.dist-info → pulumi_aiven-6.16.0a1716589862.dist-info}/top_level.txt +0 -0
pulumi_aiven/my_sql.py CHANGED
@@ -24,6 +24,7 @@ class MySqlArgs:
24
24
  disk_space: Optional[pulumi.Input[str]] = None,
25
25
  maintenance_window_dow: Optional[pulumi.Input[str]] = None,
26
26
  maintenance_window_time: Optional[pulumi.Input[str]] = None,
27
+ mysql: Optional[pulumi.Input['MySqlMysqlArgs']] = None,
27
28
  mysql_user_config: Optional[pulumi.Input['MySqlMysqlUserConfigArgs']] = None,
28
29
  project_vpc_id: Optional[pulumi.Input[str]] = None,
29
30
  service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input['MySqlServiceIntegrationArgs']]]] = None,
@@ -41,6 +42,7 @@ class MySqlArgs:
41
42
  :param pulumi.Input[str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
42
43
  :param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
43
44
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
45
+ :param pulumi.Input['MySqlMysqlArgs'] mysql: MySQL specific server provided values
44
46
  :param pulumi.Input['MySqlMysqlUserConfigArgs'] mysql_user_config: Mysql user configurable settings
45
47
  :param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
46
48
  :param pulumi.Input[Sequence[pulumi.Input['MySqlServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
@@ -65,6 +67,8 @@ class MySqlArgs:
65
67
  pulumi.set(__self__, "maintenance_window_dow", maintenance_window_dow)
66
68
  if maintenance_window_time is not None:
67
69
  pulumi.set(__self__, "maintenance_window_time", maintenance_window_time)
70
+ if mysql is not None:
71
+ pulumi.set(__self__, "mysql", mysql)
68
72
  if mysql_user_config is not None:
69
73
  pulumi.set(__self__, "mysql_user_config", mysql_user_config)
70
74
  if project_vpc_id is not None:
@@ -179,6 +183,18 @@ class MySqlArgs:
179
183
  def maintenance_window_time(self, value: Optional[pulumi.Input[str]]):
180
184
  pulumi.set(self, "maintenance_window_time", value)
181
185
 
186
+ @property
187
+ @pulumi.getter
188
+ def mysql(self) -> Optional[pulumi.Input['MySqlMysqlArgs']]:
189
+ """
190
+ MySQL specific server provided values
191
+ """
192
+ return pulumi.get(self, "mysql")
193
+
194
+ @mysql.setter
195
+ def mysql(self, value: Optional[pulumi.Input['MySqlMysqlArgs']]):
196
+ pulumi.set(self, "mysql", value)
197
+
182
198
  @property
183
199
  @pulumi.getter(name="mysqlUserConfig")
184
200
  def mysql_user_config(self) -> Optional[pulumi.Input['MySqlMysqlUserConfigArgs']]:
@@ -277,6 +293,7 @@ class _MySqlState:
277
293
  disk_space_used: Optional[pulumi.Input[str]] = None,
278
294
  maintenance_window_dow: Optional[pulumi.Input[str]] = None,
279
295
  maintenance_window_time: Optional[pulumi.Input[str]] = None,
296
+ mysql: Optional[pulumi.Input['MySqlMysqlArgs']] = None,
280
297
  mysql_user_config: Optional[pulumi.Input['MySqlMysqlUserConfigArgs']] = None,
281
298
  plan: Optional[pulumi.Input[str]] = None,
282
299
  project: Optional[pulumi.Input[str]] = None,
@@ -306,6 +323,7 @@ class _MySqlState:
306
323
  :param pulumi.Input[str] disk_space_used: Disk space that service is currently using
307
324
  :param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
308
325
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
326
+ :param pulumi.Input['MySqlMysqlArgs'] mysql: MySQL specific server provided values
309
327
  :param pulumi.Input['MySqlMysqlUserConfigArgs'] mysql_user_config: Mysql user configurable settings
310
328
  :param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the [Aiven pricing page](https://aiven.io/pricing).
311
329
  :param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
@@ -347,6 +365,8 @@ class _MySqlState:
347
365
  pulumi.set(__self__, "maintenance_window_dow", maintenance_window_dow)
348
366
  if maintenance_window_time is not None:
349
367
  pulumi.set(__self__, "maintenance_window_time", maintenance_window_time)
368
+ if mysql is not None:
369
+ pulumi.set(__self__, "mysql", mysql)
350
370
  if mysql_user_config is not None:
351
371
  pulumi.set(__self__, "mysql_user_config", mysql_user_config)
352
372
  if plan is not None:
@@ -505,6 +525,18 @@ class _MySqlState:
505
525
  def maintenance_window_time(self, value: Optional[pulumi.Input[str]]):
506
526
  pulumi.set(self, "maintenance_window_time", value)
507
527
 
528
+ @property
529
+ @pulumi.getter
530
+ def mysql(self) -> Optional[pulumi.Input['MySqlMysqlArgs']]:
531
+ """
532
+ MySQL specific server provided values
533
+ """
534
+ return pulumi.get(self, "mysql")
535
+
536
+ @mysql.setter
537
+ def mysql(self, value: Optional[pulumi.Input['MySqlMysqlArgs']]):
538
+ pulumi.set(self, "mysql", value)
539
+
508
540
  @property
509
541
  @pulumi.getter(name="mysqlUserConfig")
510
542
  def mysql_user_config(self) -> Optional[pulumi.Input['MySqlMysqlUserConfigArgs']]:
@@ -720,6 +752,7 @@ class MySql(pulumi.CustomResource):
720
752
  disk_space: Optional[pulumi.Input[str]] = None,
721
753
  maintenance_window_dow: Optional[pulumi.Input[str]] = None,
722
754
  maintenance_window_time: Optional[pulumi.Input[str]] = None,
755
+ mysql: Optional[pulumi.Input[pulumi.InputType['MySqlMysqlArgs']]] = None,
723
756
  mysql_user_config: Optional[pulumi.Input[pulumi.InputType['MySqlMysqlUserConfigArgs']]] = None,
724
757
  plan: Optional[pulumi.Input[str]] = None,
725
758
  project: Optional[pulumi.Input[str]] = None,
@@ -772,6 +805,7 @@ class MySql(pulumi.CustomResource):
772
805
  :param pulumi.Input[str] disk_space: Service disk space. Possible values depend on the service type, the cloud provider and the project. Therefore, reducing will result in the service rebalancing.
773
806
  :param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
774
807
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
808
+ :param pulumi.Input[pulumi.InputType['MySqlMysqlArgs']] mysql: MySQL specific server provided values
775
809
  :param pulumi.Input[pulumi.InputType['MySqlMysqlUserConfigArgs']] mysql_user_config: Mysql user configurable settings
776
810
  :param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the [Aiven pricing page](https://aiven.io/pricing).
777
811
  :param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
@@ -843,6 +877,7 @@ class MySql(pulumi.CustomResource):
843
877
  disk_space: Optional[pulumi.Input[str]] = None,
844
878
  maintenance_window_dow: Optional[pulumi.Input[str]] = None,
845
879
  maintenance_window_time: Optional[pulumi.Input[str]] = None,
880
+ mysql: Optional[pulumi.Input[pulumi.InputType['MySqlMysqlArgs']]] = None,
846
881
  mysql_user_config: Optional[pulumi.Input[pulumi.InputType['MySqlMysqlUserConfigArgs']]] = None,
847
882
  plan: Optional[pulumi.Input[str]] = None,
848
883
  project: Optional[pulumi.Input[str]] = None,
@@ -867,6 +902,7 @@ class MySql(pulumi.CustomResource):
867
902
  __props__.__dict__["disk_space"] = disk_space
868
903
  __props__.__dict__["maintenance_window_dow"] = maintenance_window_dow
869
904
  __props__.__dict__["maintenance_window_time"] = maintenance_window_time
905
+ __props__.__dict__["mysql"] = None if mysql is None else pulumi.Output.secret(mysql)
870
906
  __props__.__dict__["mysql_user_config"] = mysql_user_config
871
907
  if plan is None and not opts.urn:
872
908
  raise TypeError("Missing required property 'plan'")
@@ -895,7 +931,7 @@ class MySql(pulumi.CustomResource):
895
931
  __props__.__dict__["service_uri"] = None
896
932
  __props__.__dict__["service_username"] = None
897
933
  __props__.__dict__["state"] = None
898
- secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["servicePassword", "serviceUri"])
934
+ secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["mysql", "servicePassword", "serviceUri"])
899
935
  opts = pulumi.ResourceOptions.merge(opts, secret_opts)
900
936
  super(MySql, __self__).__init__(
901
937
  'aiven:index/mySql:MySql',
@@ -917,6 +953,7 @@ class MySql(pulumi.CustomResource):
917
953
  disk_space_used: Optional[pulumi.Input[str]] = None,
918
954
  maintenance_window_dow: Optional[pulumi.Input[str]] = None,
919
955
  maintenance_window_time: Optional[pulumi.Input[str]] = None,
956
+ mysql: Optional[pulumi.Input[pulumi.InputType['MySqlMysqlArgs']]] = None,
920
957
  mysql_user_config: Optional[pulumi.Input[pulumi.InputType['MySqlMysqlUserConfigArgs']]] = None,
921
958
  plan: Optional[pulumi.Input[str]] = None,
922
959
  project: Optional[pulumi.Input[str]] = None,
@@ -951,6 +988,7 @@ class MySql(pulumi.CustomResource):
951
988
  :param pulumi.Input[str] disk_space_used: Disk space that service is currently using
952
989
  :param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
953
990
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
991
+ :param pulumi.Input[pulumi.InputType['MySqlMysqlArgs']] mysql: MySQL specific server provided values
954
992
  :param pulumi.Input[pulumi.InputType['MySqlMysqlUserConfigArgs']] mysql_user_config: Mysql user configurable settings
955
993
  :param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the [Aiven pricing page](https://aiven.io/pricing).
956
994
  :param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
@@ -983,6 +1021,7 @@ class MySql(pulumi.CustomResource):
983
1021
  __props__.__dict__["disk_space_used"] = disk_space_used
984
1022
  __props__.__dict__["maintenance_window_dow"] = maintenance_window_dow
985
1023
  __props__.__dict__["maintenance_window_time"] = maintenance_window_time
1024
+ __props__.__dict__["mysql"] = mysql
986
1025
  __props__.__dict__["mysql_user_config"] = mysql_user_config
987
1026
  __props__.__dict__["plan"] = plan
988
1027
  __props__.__dict__["project"] = project
@@ -1085,6 +1124,14 @@ class MySql(pulumi.CustomResource):
1085
1124
  """
1086
1125
  return pulumi.get(self, "maintenance_window_time")
1087
1126
 
1127
+ @property
1128
+ @pulumi.getter
1129
+ def mysql(self) -> pulumi.Output['outputs.MySqlMysql']:
1130
+ """
1131
+ MySQL specific server provided values
1132
+ """
1133
+ return pulumi.get(self, "mysql")
1134
+
1088
1135
  @property
1089
1136
  @pulumi.getter(name="mysqlUserConfig")
1090
1137
  def mysql_user_config(self) -> pulumi.Output[Optional['outputs.MySqlMysqlUserConfig']]:
@@ -25,6 +25,7 @@ class OpenSearchArgs:
25
25
  maintenance_window_dow: Optional[pulumi.Input[str]] = None,
26
26
  maintenance_window_time: Optional[pulumi.Input[str]] = None,
27
27
  opensearch_user_config: Optional[pulumi.Input['OpenSearchOpensearchUserConfigArgs']] = None,
28
+ opensearches: Optional[pulumi.Input[Sequence[pulumi.Input['OpenSearchOpensearchArgs']]]] = None,
28
29
  project_vpc_id: Optional[pulumi.Input[str]] = None,
29
30
  service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input['OpenSearchServiceIntegrationArgs']]]] = None,
30
31
  static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
@@ -42,6 +43,7 @@ class OpenSearchArgs:
42
43
  :param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
43
44
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
44
45
  :param pulumi.Input['OpenSearchOpensearchUserConfigArgs'] opensearch_user_config: Opensearch user configurable settings
46
+ :param pulumi.Input[Sequence[pulumi.Input['OpenSearchOpensearchArgs']]] opensearches: OpenSearch server provided values
45
47
  :param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
46
48
  :param pulumi.Input[Sequence[pulumi.Input['OpenSearchServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
47
49
  :param pulumi.Input[Sequence[pulumi.Input[str]]] static_ips: Static IPs that are going to be associated with this service. Please assign a value using the 'toset' function. Once a static ip resource is in the 'assigned' state it cannot be unbound from the node again
@@ -67,6 +69,8 @@ class OpenSearchArgs:
67
69
  pulumi.set(__self__, "maintenance_window_time", maintenance_window_time)
68
70
  if opensearch_user_config is not None:
69
71
  pulumi.set(__self__, "opensearch_user_config", opensearch_user_config)
72
+ if opensearches is not None:
73
+ pulumi.set(__self__, "opensearches", opensearches)
70
74
  if project_vpc_id is not None:
71
75
  pulumi.set(__self__, "project_vpc_id", project_vpc_id)
72
76
  if service_integrations is not None:
@@ -191,6 +195,18 @@ class OpenSearchArgs:
191
195
  def opensearch_user_config(self, value: Optional[pulumi.Input['OpenSearchOpensearchUserConfigArgs']]):
192
196
  pulumi.set(self, "opensearch_user_config", value)
193
197
 
198
+ @property
199
+ @pulumi.getter
200
+ def opensearches(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['OpenSearchOpensearchArgs']]]]:
201
+ """
202
+ OpenSearch server provided values
203
+ """
204
+ return pulumi.get(self, "opensearches")
205
+
206
+ @opensearches.setter
207
+ def opensearches(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['OpenSearchOpensearchArgs']]]]):
208
+ pulumi.set(self, "opensearches", value)
209
+
194
210
  @property
195
211
  @pulumi.getter(name="projectVpcId")
196
212
  def project_vpc_id(self) -> Optional[pulumi.Input[str]]:
@@ -737,6 +753,7 @@ class OpenSearch(pulumi.CustomResource):
737
753
  maintenance_window_dow: Optional[pulumi.Input[str]] = None,
738
754
  maintenance_window_time: Optional[pulumi.Input[str]] = None,
739
755
  opensearch_user_config: Optional[pulumi.Input[pulumi.InputType['OpenSearchOpensearchUserConfigArgs']]] = None,
756
+ opensearches: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OpenSearchOpensearchArgs']]]]] = None,
740
757
  plan: Optional[pulumi.Input[str]] = None,
741
758
  project: Optional[pulumi.Input[str]] = None,
742
759
  project_vpc_id: Optional[pulumi.Input[str]] = None,
@@ -790,6 +807,7 @@ class OpenSearch(pulumi.CustomResource):
790
807
  :param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
791
808
  :param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
792
809
  :param pulumi.Input[pulumi.InputType['OpenSearchOpensearchUserConfigArgs']] opensearch_user_config: Opensearch user configurable settings
810
+ :param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OpenSearchOpensearchArgs']]]] opensearches: OpenSearch server provided values
793
811
  :param pulumi.Input[str] plan: Defines what kind of computing resources are allocated for the service. It can be changed after creation, though there are some restrictions when going to a smaller plan such as the new plan must have sufficient amount of disk space to store all current data and switching to a plan with fewer nodes might not be supported. The basic plan names are `hobbyist`, `startup-x`, `business-x` and `premium-x` where `x` is (roughly) the amount of memory on each node (also other attributes like number of CPUs and amount of disk space varies but naming is based on memory). The available options can be seem from the [Aiven pricing page](https://aiven.io/pricing).
794
812
  :param pulumi.Input[str] project: The name of the project this resource belongs to. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
795
813
  :param pulumi.Input[str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service is not run inside a VPC. When set, the value should be given as a reference to set up dependencies correctly and the VPC must be in the same cloud and region as the service itself. Project can be freely moved to and from VPC after creation but doing so triggers migration to new servers so the operation can take significant amount of time to complete if the service has a lot of data.
@@ -862,6 +880,7 @@ class OpenSearch(pulumi.CustomResource):
862
880
  maintenance_window_dow: Optional[pulumi.Input[str]] = None,
863
881
  maintenance_window_time: Optional[pulumi.Input[str]] = None,
864
882
  opensearch_user_config: Optional[pulumi.Input[pulumi.InputType['OpenSearchOpensearchUserConfigArgs']]] = None,
883
+ opensearches: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OpenSearchOpensearchArgs']]]]] = None,
865
884
  plan: Optional[pulumi.Input[str]] = None,
866
885
  project: Optional[pulumi.Input[str]] = None,
867
886
  project_vpc_id: Optional[pulumi.Input[str]] = None,
@@ -886,6 +905,7 @@ class OpenSearch(pulumi.CustomResource):
886
905
  __props__.__dict__["maintenance_window_dow"] = maintenance_window_dow
887
906
  __props__.__dict__["maintenance_window_time"] = maintenance_window_time
888
907
  __props__.__dict__["opensearch_user_config"] = opensearch_user_config
908
+ __props__.__dict__["opensearches"] = None if opensearches is None else pulumi.Output.secret(opensearches)
889
909
  if plan is None and not opts.urn:
890
910
  raise TypeError("Missing required property 'plan'")
891
911
  __props__.__dict__["plan"] = plan
@@ -906,7 +926,6 @@ class OpenSearch(pulumi.CustomResource):
906
926
  __props__.__dict__["disk_space_default"] = None
907
927
  __props__.__dict__["disk_space_step"] = None
908
928
  __props__.__dict__["disk_space_used"] = None
909
- __props__.__dict__["opensearches"] = None
910
929
  __props__.__dict__["service_host"] = None
911
930
  __props__.__dict__["service_password"] = None
912
931
  __props__.__dict__["service_port"] = None
@@ -914,7 +933,7 @@ class OpenSearch(pulumi.CustomResource):
914
933
  __props__.__dict__["service_uri"] = None
915
934
  __props__.__dict__["service_username"] = None
916
935
  __props__.__dict__["state"] = None
917
- secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["servicePassword", "serviceUri"])
936
+ secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["opensearches", "servicePassword", "serviceUri"])
918
937
  opts = pulumi.ResourceOptions.merge(opts, secret_opts)
919
938
  super(OpenSearch, __self__).__init__(
920
939
  'aiven:index/openSearch:OpenSearch',