pulumi-aiven 6.16.0__py3-none-any.whl → 6.16.0a1715859567__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-aiven might be problematic. Click here for more details.
- pulumi_aiven/_inputs.py +181 -1061
- pulumi_aiven/cassandra.py +1 -48
- pulumi_aiven/clickhouse.py +1 -48
- pulumi_aiven/dragonfly.py +1 -48
- pulumi_aiven/flink.py +2 -2
- pulumi_aiven/flink_application_deployment.py +30 -56
- pulumi_aiven/gcp_privatelink.py +30 -52
- pulumi_aiven/gcp_privatelink_connection_approval.py +30 -54
- pulumi_aiven/get_cassanda.py +1 -14
- pulumi_aiven/get_cassandra.py +1 -14
- pulumi_aiven/get_clickhouse.py +1 -14
- pulumi_aiven/get_dragonfly.py +1 -14
- pulumi_aiven/get_gcp_privatelink.py +2 -45
- pulumi_aiven/get_grafana.py +1 -14
- pulumi_aiven/get_m3_aggregator.py +1 -14
- pulumi_aiven/get_m3_db.py +1 -14
- pulumi_aiven/get_mirror_maker_replication_flow.py +1 -1
- pulumi_aiven/get_my_sql.py +1 -14
- pulumi_aiven/get_redis.py +1 -14
- pulumi_aiven/get_service_integration.py +3 -3
- pulumi_aiven/get_service_integration_endpoint.py +1 -1
- pulumi_aiven/grafana.py +1 -48
- pulumi_aiven/influx_db.py +2 -21
- pulumi_aiven/kafka.py +1 -20
- pulumi_aiven/m3_aggregator.py +1 -48
- pulumi_aiven/m3_db.py +1 -48
- pulumi_aiven/mirror_maker_replication_flow.py +7 -7
- pulumi_aiven/my_sql.py +1 -48
- pulumi_aiven/open_search.py +2 -21
- pulumi_aiven/outputs.py +285 -1758
- pulumi_aiven/pg.py +2 -2
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/redis.py +1 -48
- pulumi_aiven/service_integration.py +7 -7
- pulumi_aiven/service_integration_endpoint.py +7 -7
- {pulumi_aiven-6.16.0.dist-info → pulumi_aiven-6.16.0a1715859567.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.16.0.dist-info → pulumi_aiven-6.16.0a1715859567.dist-info}/RECORD +39 -39
- {pulumi_aiven-6.16.0.dist-info → pulumi_aiven-6.16.0a1715859567.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.16.0.dist-info → pulumi_aiven-6.16.0a1715859567.dist-info}/top_level.txt +0 -0
pulumi_aiven/my_sql.py
CHANGED
|
@@ -24,7 +24,6 @@ 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,
|
|
28
27
|
mysql_user_config: Optional[pulumi.Input['MySqlMysqlUserConfigArgs']] = None,
|
|
29
28
|
project_vpc_id: Optional[pulumi.Input[str]] = None,
|
|
30
29
|
service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input['MySqlServiceIntegrationArgs']]]] = None,
|
|
@@ -42,7 +41,6 @@ class MySqlArgs:
|
|
|
42
41
|
: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.
|
|
43
42
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
44
43
|
: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
|
|
46
44
|
:param pulumi.Input['MySqlMysqlUserConfigArgs'] mysql_user_config: Mysql user configurable settings
|
|
47
45
|
: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.
|
|
48
46
|
:param pulumi.Input[Sequence[pulumi.Input['MySqlServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
@@ -67,8 +65,6 @@ class MySqlArgs:
|
|
|
67
65
|
pulumi.set(__self__, "maintenance_window_dow", maintenance_window_dow)
|
|
68
66
|
if maintenance_window_time is not None:
|
|
69
67
|
pulumi.set(__self__, "maintenance_window_time", maintenance_window_time)
|
|
70
|
-
if mysql is not None:
|
|
71
|
-
pulumi.set(__self__, "mysql", mysql)
|
|
72
68
|
if mysql_user_config is not None:
|
|
73
69
|
pulumi.set(__self__, "mysql_user_config", mysql_user_config)
|
|
74
70
|
if project_vpc_id is not None:
|
|
@@ -183,18 +179,6 @@ class MySqlArgs:
|
|
|
183
179
|
def maintenance_window_time(self, value: Optional[pulumi.Input[str]]):
|
|
184
180
|
pulumi.set(self, "maintenance_window_time", value)
|
|
185
181
|
|
|
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
|
-
|
|
198
182
|
@property
|
|
199
183
|
@pulumi.getter(name="mysqlUserConfig")
|
|
200
184
|
def mysql_user_config(self) -> Optional[pulumi.Input['MySqlMysqlUserConfigArgs']]:
|
|
@@ -293,7 +277,6 @@ class _MySqlState:
|
|
|
293
277
|
disk_space_used: Optional[pulumi.Input[str]] = None,
|
|
294
278
|
maintenance_window_dow: Optional[pulumi.Input[str]] = None,
|
|
295
279
|
maintenance_window_time: Optional[pulumi.Input[str]] = None,
|
|
296
|
-
mysql: Optional[pulumi.Input['MySqlMysqlArgs']] = None,
|
|
297
280
|
mysql_user_config: Optional[pulumi.Input['MySqlMysqlUserConfigArgs']] = None,
|
|
298
281
|
plan: Optional[pulumi.Input[str]] = None,
|
|
299
282
|
project: Optional[pulumi.Input[str]] = None,
|
|
@@ -323,7 +306,6 @@ class _MySqlState:
|
|
|
323
306
|
:param pulumi.Input[str] disk_space_used: Disk space that service is currently using
|
|
324
307
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
325
308
|
: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
|
|
327
309
|
:param pulumi.Input['MySqlMysqlUserConfigArgs'] mysql_user_config: Mysql user configurable settings
|
|
328
310
|
: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).
|
|
329
311
|
: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.
|
|
@@ -365,8 +347,6 @@ class _MySqlState:
|
|
|
365
347
|
pulumi.set(__self__, "maintenance_window_dow", maintenance_window_dow)
|
|
366
348
|
if maintenance_window_time is not None:
|
|
367
349
|
pulumi.set(__self__, "maintenance_window_time", maintenance_window_time)
|
|
368
|
-
if mysql is not None:
|
|
369
|
-
pulumi.set(__self__, "mysql", mysql)
|
|
370
350
|
if mysql_user_config is not None:
|
|
371
351
|
pulumi.set(__self__, "mysql_user_config", mysql_user_config)
|
|
372
352
|
if plan is not None:
|
|
@@ -525,18 +505,6 @@ class _MySqlState:
|
|
|
525
505
|
def maintenance_window_time(self, value: Optional[pulumi.Input[str]]):
|
|
526
506
|
pulumi.set(self, "maintenance_window_time", value)
|
|
527
507
|
|
|
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
|
-
|
|
540
508
|
@property
|
|
541
509
|
@pulumi.getter(name="mysqlUserConfig")
|
|
542
510
|
def mysql_user_config(self) -> Optional[pulumi.Input['MySqlMysqlUserConfigArgs']]:
|
|
@@ -752,7 +720,6 @@ class MySql(pulumi.CustomResource):
|
|
|
752
720
|
disk_space: Optional[pulumi.Input[str]] = None,
|
|
753
721
|
maintenance_window_dow: Optional[pulumi.Input[str]] = None,
|
|
754
722
|
maintenance_window_time: Optional[pulumi.Input[str]] = None,
|
|
755
|
-
mysql: Optional[pulumi.Input[pulumi.InputType['MySqlMysqlArgs']]] = None,
|
|
756
723
|
mysql_user_config: Optional[pulumi.Input[pulumi.InputType['MySqlMysqlUserConfigArgs']]] = None,
|
|
757
724
|
plan: Optional[pulumi.Input[str]] = None,
|
|
758
725
|
project: Optional[pulumi.Input[str]] = None,
|
|
@@ -805,7 +772,6 @@ class MySql(pulumi.CustomResource):
|
|
|
805
772
|
: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.
|
|
806
773
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
807
774
|
: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
|
|
809
775
|
:param pulumi.Input[pulumi.InputType['MySqlMysqlUserConfigArgs']] mysql_user_config: Mysql user configurable settings
|
|
810
776
|
: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).
|
|
811
777
|
: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.
|
|
@@ -877,7 +843,6 @@ class MySql(pulumi.CustomResource):
|
|
|
877
843
|
disk_space: Optional[pulumi.Input[str]] = None,
|
|
878
844
|
maintenance_window_dow: Optional[pulumi.Input[str]] = None,
|
|
879
845
|
maintenance_window_time: Optional[pulumi.Input[str]] = None,
|
|
880
|
-
mysql: Optional[pulumi.Input[pulumi.InputType['MySqlMysqlArgs']]] = None,
|
|
881
846
|
mysql_user_config: Optional[pulumi.Input[pulumi.InputType['MySqlMysqlUserConfigArgs']]] = None,
|
|
882
847
|
plan: Optional[pulumi.Input[str]] = None,
|
|
883
848
|
project: Optional[pulumi.Input[str]] = None,
|
|
@@ -902,7 +867,6 @@ class MySql(pulumi.CustomResource):
|
|
|
902
867
|
__props__.__dict__["disk_space"] = disk_space
|
|
903
868
|
__props__.__dict__["maintenance_window_dow"] = maintenance_window_dow
|
|
904
869
|
__props__.__dict__["maintenance_window_time"] = maintenance_window_time
|
|
905
|
-
__props__.__dict__["mysql"] = None if mysql is None else pulumi.Output.secret(mysql)
|
|
906
870
|
__props__.__dict__["mysql_user_config"] = mysql_user_config
|
|
907
871
|
if plan is None and not opts.urn:
|
|
908
872
|
raise TypeError("Missing required property 'plan'")
|
|
@@ -931,7 +895,7 @@ class MySql(pulumi.CustomResource):
|
|
|
931
895
|
__props__.__dict__["service_uri"] = None
|
|
932
896
|
__props__.__dict__["service_username"] = None
|
|
933
897
|
__props__.__dict__["state"] = None
|
|
934
|
-
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["
|
|
898
|
+
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["servicePassword", "serviceUri"])
|
|
935
899
|
opts = pulumi.ResourceOptions.merge(opts, secret_opts)
|
|
936
900
|
super(MySql, __self__).__init__(
|
|
937
901
|
'aiven:index/mySql:MySql',
|
|
@@ -953,7 +917,6 @@ class MySql(pulumi.CustomResource):
|
|
|
953
917
|
disk_space_used: Optional[pulumi.Input[str]] = None,
|
|
954
918
|
maintenance_window_dow: Optional[pulumi.Input[str]] = None,
|
|
955
919
|
maintenance_window_time: Optional[pulumi.Input[str]] = None,
|
|
956
|
-
mysql: Optional[pulumi.Input[pulumi.InputType['MySqlMysqlArgs']]] = None,
|
|
957
920
|
mysql_user_config: Optional[pulumi.Input[pulumi.InputType['MySqlMysqlUserConfigArgs']]] = None,
|
|
958
921
|
plan: Optional[pulumi.Input[str]] = None,
|
|
959
922
|
project: Optional[pulumi.Input[str]] = None,
|
|
@@ -988,7 +951,6 @@ class MySql(pulumi.CustomResource):
|
|
|
988
951
|
:param pulumi.Input[str] disk_space_used: Disk space that service is currently using
|
|
989
952
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
990
953
|
: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
|
|
992
954
|
:param pulumi.Input[pulumi.InputType['MySqlMysqlUserConfigArgs']] mysql_user_config: Mysql user configurable settings
|
|
993
955
|
: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).
|
|
994
956
|
: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.
|
|
@@ -1021,7 +983,6 @@ class MySql(pulumi.CustomResource):
|
|
|
1021
983
|
__props__.__dict__["disk_space_used"] = disk_space_used
|
|
1022
984
|
__props__.__dict__["maintenance_window_dow"] = maintenance_window_dow
|
|
1023
985
|
__props__.__dict__["maintenance_window_time"] = maintenance_window_time
|
|
1024
|
-
__props__.__dict__["mysql"] = mysql
|
|
1025
986
|
__props__.__dict__["mysql_user_config"] = mysql_user_config
|
|
1026
987
|
__props__.__dict__["plan"] = plan
|
|
1027
988
|
__props__.__dict__["project"] = project
|
|
@@ -1124,14 +1085,6 @@ class MySql(pulumi.CustomResource):
|
|
|
1124
1085
|
"""
|
|
1125
1086
|
return pulumi.get(self, "maintenance_window_time")
|
|
1126
1087
|
|
|
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
|
-
|
|
1135
1088
|
@property
|
|
1136
1089
|
@pulumi.getter(name="mysqlUserConfig")
|
|
1137
1090
|
def mysql_user_config(self) -> pulumi.Output[Optional['outputs.MySqlMysqlUserConfig']]:
|
pulumi_aiven/open_search.py
CHANGED
|
@@ -25,7 +25,6 @@ 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,
|
|
29
28
|
project_vpc_id: Optional[pulumi.Input[str]] = None,
|
|
30
29
|
service_integrations: Optional[pulumi.Input[Sequence[pulumi.Input['OpenSearchServiceIntegrationArgs']]]] = None,
|
|
31
30
|
static_ips: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
@@ -43,7 +42,6 @@ class OpenSearchArgs:
|
|
|
43
42
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
44
43
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
45
44
|
:param pulumi.Input['OpenSearchOpensearchUserConfigArgs'] opensearch_user_config: Opensearch user configurable settings
|
|
46
|
-
:param pulumi.Input[Sequence[pulumi.Input['OpenSearchOpensearchArgs']]] opensearches: OpenSearch server provided values
|
|
47
45
|
: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.
|
|
48
46
|
:param pulumi.Input[Sequence[pulumi.Input['OpenSearchServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
49
47
|
: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
|
|
@@ -69,8 +67,6 @@ class OpenSearchArgs:
|
|
|
69
67
|
pulumi.set(__self__, "maintenance_window_time", maintenance_window_time)
|
|
70
68
|
if opensearch_user_config is not None:
|
|
71
69
|
pulumi.set(__self__, "opensearch_user_config", opensearch_user_config)
|
|
72
|
-
if opensearches is not None:
|
|
73
|
-
pulumi.set(__self__, "opensearches", opensearches)
|
|
74
70
|
if project_vpc_id is not None:
|
|
75
71
|
pulumi.set(__self__, "project_vpc_id", project_vpc_id)
|
|
76
72
|
if service_integrations is not None:
|
|
@@ -195,18 +191,6 @@ class OpenSearchArgs:
|
|
|
195
191
|
def opensearch_user_config(self, value: Optional[pulumi.Input['OpenSearchOpensearchUserConfigArgs']]):
|
|
196
192
|
pulumi.set(self, "opensearch_user_config", value)
|
|
197
193
|
|
|
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
|
-
|
|
210
194
|
@property
|
|
211
195
|
@pulumi.getter(name="projectVpcId")
|
|
212
196
|
def project_vpc_id(self) -> Optional[pulumi.Input[str]]:
|
|
@@ -753,7 +737,6 @@ class OpenSearch(pulumi.CustomResource):
|
|
|
753
737
|
maintenance_window_dow: Optional[pulumi.Input[str]] = None,
|
|
754
738
|
maintenance_window_time: Optional[pulumi.Input[str]] = None,
|
|
755
739
|
opensearch_user_config: Optional[pulumi.Input[pulumi.InputType['OpenSearchOpensearchUserConfigArgs']]] = None,
|
|
756
|
-
opensearches: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OpenSearchOpensearchArgs']]]]] = None,
|
|
757
740
|
plan: Optional[pulumi.Input[str]] = None,
|
|
758
741
|
project: Optional[pulumi.Input[str]] = None,
|
|
759
742
|
project_vpc_id: Optional[pulumi.Input[str]] = None,
|
|
@@ -807,7 +790,6 @@ class OpenSearch(pulumi.CustomResource):
|
|
|
807
790
|
:param pulumi.Input[str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
808
791
|
:param pulumi.Input[str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
809
792
|
: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
|
|
811
793
|
: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).
|
|
812
794
|
: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.
|
|
813
795
|
: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.
|
|
@@ -880,7 +862,6 @@ class OpenSearch(pulumi.CustomResource):
|
|
|
880
862
|
maintenance_window_dow: Optional[pulumi.Input[str]] = None,
|
|
881
863
|
maintenance_window_time: Optional[pulumi.Input[str]] = None,
|
|
882
864
|
opensearch_user_config: Optional[pulumi.Input[pulumi.InputType['OpenSearchOpensearchUserConfigArgs']]] = None,
|
|
883
|
-
opensearches: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['OpenSearchOpensearchArgs']]]]] = None,
|
|
884
865
|
plan: Optional[pulumi.Input[str]] = None,
|
|
885
866
|
project: Optional[pulumi.Input[str]] = None,
|
|
886
867
|
project_vpc_id: Optional[pulumi.Input[str]] = None,
|
|
@@ -905,7 +886,6 @@ class OpenSearch(pulumi.CustomResource):
|
|
|
905
886
|
__props__.__dict__["maintenance_window_dow"] = maintenance_window_dow
|
|
906
887
|
__props__.__dict__["maintenance_window_time"] = maintenance_window_time
|
|
907
888
|
__props__.__dict__["opensearch_user_config"] = opensearch_user_config
|
|
908
|
-
__props__.__dict__["opensearches"] = None if opensearches is None else pulumi.Output.secret(opensearches)
|
|
909
889
|
if plan is None and not opts.urn:
|
|
910
890
|
raise TypeError("Missing required property 'plan'")
|
|
911
891
|
__props__.__dict__["plan"] = plan
|
|
@@ -926,6 +906,7 @@ class OpenSearch(pulumi.CustomResource):
|
|
|
926
906
|
__props__.__dict__["disk_space_default"] = None
|
|
927
907
|
__props__.__dict__["disk_space_step"] = None
|
|
928
908
|
__props__.__dict__["disk_space_used"] = None
|
|
909
|
+
__props__.__dict__["opensearches"] = None
|
|
929
910
|
__props__.__dict__["service_host"] = None
|
|
930
911
|
__props__.__dict__["service_password"] = None
|
|
931
912
|
__props__.__dict__["service_port"] = None
|
|
@@ -933,7 +914,7 @@ class OpenSearch(pulumi.CustomResource):
|
|
|
933
914
|
__props__.__dict__["service_uri"] = None
|
|
934
915
|
__props__.__dict__["service_username"] = None
|
|
935
916
|
__props__.__dict__["state"] = None
|
|
936
|
-
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["
|
|
917
|
+
secret_opts = pulumi.ResourceOptions(additional_secret_outputs=["servicePassword", "serviceUri"])
|
|
937
918
|
opts = pulumi.ResourceOptions.merge(opts, secret_opts)
|
|
938
919
|
super(OpenSearch, __self__).__init__(
|
|
939
920
|
'aiven:index/openSearch:OpenSearch',
|