pulumi-aiven 6.40.0a1750223346__py3-none-any.whl → 6.41.0__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 +605 -145
- pulumi_aiven/account_team_project.py +7 -7
- pulumi_aiven/alloydbomni.py +8 -8
- pulumi_aiven/cassandra.py +8 -8
- pulumi_aiven/clickhouse.py +12 -12
- pulumi_aiven/clickhouse_database.py +0 -10
- pulumi_aiven/clickhouse_grant.py +0 -16
- pulumi_aiven/dragonfly.py +8 -8
- pulumi_aiven/flink.py +8 -8
- pulumi_aiven/get_account_team_project.py +1 -1
- pulumi_aiven/get_alloydbomni.py +1 -1
- pulumi_aiven/get_cassanda.py +1 -1
- pulumi_aiven/get_cassandra.py +1 -1
- pulumi_aiven/get_clickhouse.py +2 -2
- pulumi_aiven/get_dragonfly.py +1 -1
- pulumi_aiven/get_flink.py +1 -1
- pulumi_aiven/get_grafana.py +1 -1
- pulumi_aiven/get_kafka.py +2 -2
- pulumi_aiven/get_kafka_connect.py +1 -1
- pulumi_aiven/get_kafka_mirror_maker.py +1 -1
- pulumi_aiven/get_m3_aggregator.py +1 -1
- pulumi_aiven/get_m3_db.py +1 -1
- pulumi_aiven/get_my_sql.py +1 -1
- pulumi_aiven/get_open_search.py +1 -1
- pulumi_aiven/get_organization_billing_group.py +15 -15
- pulumi_aiven/get_pg.py +1 -1
- pulumi_aiven/get_project_user.py +1 -1
- pulumi_aiven/get_redis.py +1 -1
- pulumi_aiven/get_service_integration.py +15 -1
- pulumi_aiven/get_thanos.py +1 -1
- pulumi_aiven/get_valkey.py +1 -1
- pulumi_aiven/grafana.py +8 -8
- pulumi_aiven/influx_db.py +36 -29
- pulumi_aiven/kafka.py +15 -15
- pulumi_aiven/kafka_connect.py +8 -8
- pulumi_aiven/kafka_mirror_maker.py +8 -8
- pulumi_aiven/m3_aggregator.py +8 -8
- pulumi_aiven/m3_db.py +8 -8
- pulumi_aiven/my_sql.py +8 -8
- pulumi_aiven/open_search.py +8 -8
- pulumi_aiven/organization_application_user.py +7 -7
- pulumi_aiven/organization_billing_group.py +41 -41
- pulumi_aiven/organization_group_project.py +7 -7
- pulumi_aiven/outputs.py +799 -159
- pulumi_aiven/pg.py +8 -8
- pulumi_aiven/project_user.py +7 -7
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/redis.py +8 -8
- pulumi_aiven/service_integration.py +47 -0
- pulumi_aiven/thanos.py +8 -8
- pulumi_aiven/valkey.py +8 -8
- {pulumi_aiven-6.40.0a1750223346.dist-info → pulumi_aiven-6.41.0.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.40.0a1750223346.dist-info → pulumi_aiven-6.41.0.dist-info}/RECORD +55 -55
- {pulumi_aiven-6.40.0a1750223346.dist-info → pulumi_aiven-6.41.0.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.40.0a1750223346.dist-info → pulumi_aiven-6.41.0.dist-info}/top_level.txt +0 -0
pulumi_aiven/pg.py
CHANGED
|
@@ -49,7 +49,7 @@ class PgArgs:
|
|
|
49
49
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
50
50
|
:param pulumi.Input['PgPgArgs'] pg: Values provided by the PostgreSQL server.
|
|
51
51
|
:param pulumi.Input['PgPgUserConfigArgs'] pg_user_config: Pg user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
52
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
52
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
53
53
|
:param pulumi.Input[Sequence[pulumi.Input['PgServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
54
54
|
:param pulumi.Input[builtins.str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
55
55
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.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
|
|
@@ -204,7 +204,7 @@ class PgArgs:
|
|
|
204
204
|
@pulumi.getter(name="projectVpcId")
|
|
205
205
|
def project_vpc_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
206
206
|
"""
|
|
207
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
207
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
208
208
|
"""
|
|
209
209
|
return pulumi.get(self, "project_vpc_id")
|
|
210
210
|
|
|
@@ -332,7 +332,7 @@ class _PgState:
|
|
|
332
332
|
:param pulumi.Input['PgPgUserConfigArgs'] pg_user_config: Pg user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
333
333
|
:param pulumi.Input[builtins.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 seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
334
334
|
:param pulumi.Input[builtins.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.
|
|
335
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
335
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
336
336
|
:param pulumi.Input[builtins.str] service_host: The hostname of the service.
|
|
337
337
|
:param pulumi.Input[Sequence[pulumi.Input['PgServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
338
338
|
:param pulumi.Input[builtins.str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
@@ -583,7 +583,7 @@ class _PgState:
|
|
|
583
583
|
@pulumi.getter(name="projectVpcId")
|
|
584
584
|
def project_vpc_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
585
585
|
"""
|
|
586
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
586
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
587
587
|
"""
|
|
588
588
|
return pulumi.get(self, "project_vpc_id")
|
|
589
589
|
|
|
@@ -788,7 +788,7 @@ class Pg(pulumi.CustomResource):
|
|
|
788
788
|
:param pulumi.Input[Union['PgPgUserConfigArgs', 'PgPgUserConfigArgsDict']] pg_user_config: Pg user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
789
789
|
:param pulumi.Input[builtins.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 seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
790
790
|
:param pulumi.Input[builtins.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.
|
|
791
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
791
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
792
792
|
:param pulumi.Input[Sequence[pulumi.Input[Union['PgServiceIntegrationArgs', 'PgServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
793
793
|
:param pulumi.Input[builtins.str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
794
794
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.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
|
|
@@ -944,7 +944,7 @@ class Pg(pulumi.CustomResource):
|
|
|
944
944
|
:param pulumi.Input[Union['PgPgUserConfigArgs', 'PgPgUserConfigArgsDict']] pg_user_config: Pg user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
945
945
|
:param pulumi.Input[builtins.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 seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
946
946
|
:param pulumi.Input[builtins.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.
|
|
947
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
947
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
948
948
|
:param pulumi.Input[builtins.str] service_host: The hostname of the service.
|
|
949
949
|
:param pulumi.Input[Sequence[pulumi.Input[Union['PgServiceIntegrationArgs', 'PgServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
950
950
|
:param pulumi.Input[builtins.str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
@@ -1108,9 +1108,9 @@ class Pg(pulumi.CustomResource):
|
|
|
1108
1108
|
|
|
1109
1109
|
@property
|
|
1110
1110
|
@pulumi.getter(name="projectVpcId")
|
|
1111
|
-
def project_vpc_id(self) -> pulumi.Output[builtins.str]:
|
|
1111
|
+
def project_vpc_id(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
1112
1112
|
"""
|
|
1113
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
1113
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
1114
1114
|
"""
|
|
1115
1115
|
return pulumi.get(self, "project_vpc_id")
|
|
1116
1116
|
|
pulumi_aiven/project_user.py
CHANGED
|
@@ -26,7 +26,7 @@ class ProjectUserArgs:
|
|
|
26
26
|
"""
|
|
27
27
|
The set of arguments for constructing a ProjectUser resource.
|
|
28
28
|
:param pulumi.Input[builtins.str] email: Email address of the user in lowercase. Changing this property forces recreation of the resource.
|
|
29
|
-
:param pulumi.Input[builtins.str] member_type: Project membership type. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:billing:read`, `organization:billing:write`, `organization:domains:write`, `organization:groups:write`, `organization:
|
|
29
|
+
:param pulumi.Input[builtins.str] member_type: Project membership type. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:billing:read`, `organization:billing:write`, `organization:domains:write`, `organization:groups:write`, `organization:networking:read`, `organization:networking:write`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
|
|
30
30
|
:param pulumi.Input[builtins.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.
|
|
31
31
|
"""
|
|
32
32
|
pulumi.set(__self__, "email", email)
|
|
@@ -49,7 +49,7 @@ class ProjectUserArgs:
|
|
|
49
49
|
@pulumi.getter(name="memberType")
|
|
50
50
|
def member_type(self) -> pulumi.Input[builtins.str]:
|
|
51
51
|
"""
|
|
52
|
-
Project membership type. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:billing:read`, `organization:billing:write`, `organization:domains:write`, `organization:groups:write`, `organization:
|
|
52
|
+
Project membership type. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:billing:read`, `organization:billing:write`, `organization:domains:write`, `organization:groups:write`, `organization:networking:read`, `organization:networking:write`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
|
|
53
53
|
"""
|
|
54
54
|
return pulumi.get(self, "member_type")
|
|
55
55
|
|
|
@@ -81,7 +81,7 @@ class _ProjectUserState:
|
|
|
81
81
|
Input properties used for looking up and filtering ProjectUser resources.
|
|
82
82
|
:param pulumi.Input[builtins.bool] accepted: Whether the user has accepted the request to join the project. Users get an invite and become project members after accepting the invite.
|
|
83
83
|
:param pulumi.Input[builtins.str] email: Email address of the user in lowercase. Changing this property forces recreation of the resource.
|
|
84
|
-
:param pulumi.Input[builtins.str] member_type: Project membership type. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:billing:read`, `organization:billing:write`, `organization:domains:write`, `organization:groups:write`, `organization:
|
|
84
|
+
:param pulumi.Input[builtins.str] member_type: Project membership type. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:billing:read`, `organization:billing:write`, `organization:domains:write`, `organization:groups:write`, `organization:networking:read`, `organization:networking:write`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
|
|
85
85
|
:param pulumi.Input[builtins.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.
|
|
86
86
|
"""
|
|
87
87
|
if accepted is not None:
|
|
@@ -121,7 +121,7 @@ class _ProjectUserState:
|
|
|
121
121
|
@pulumi.getter(name="memberType")
|
|
122
122
|
def member_type(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
123
123
|
"""
|
|
124
|
-
Project membership type. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:billing:read`, `organization:billing:write`, `organization:domains:write`, `organization:groups:write`, `organization:
|
|
124
|
+
Project membership type. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:billing:read`, `organization:billing:write`, `organization:domains:write`, `organization:groups:write`, `organization:networking:read`, `organization:networking:write`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
|
|
125
125
|
"""
|
|
126
126
|
return pulumi.get(self, "member_type")
|
|
127
127
|
|
|
@@ -181,7 +181,7 @@ class ProjectUser(pulumi.CustomResource):
|
|
|
181
181
|
:param str resource_name: The name of the resource.
|
|
182
182
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
183
183
|
:param pulumi.Input[builtins.str] email: Email address of the user in lowercase. Changing this property forces recreation of the resource.
|
|
184
|
-
:param pulumi.Input[builtins.str] member_type: Project membership type. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:billing:read`, `organization:billing:write`, `organization:domains:write`, `organization:groups:write`, `organization:
|
|
184
|
+
:param pulumi.Input[builtins.str] member_type: Project membership type. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:billing:read`, `organization:billing:write`, `organization:domains:write`, `organization:groups:write`, `organization:networking:read`, `organization:networking:write`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
|
|
185
185
|
:param pulumi.Input[builtins.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.
|
|
186
186
|
"""
|
|
187
187
|
...
|
|
@@ -276,7 +276,7 @@ class ProjectUser(pulumi.CustomResource):
|
|
|
276
276
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
277
277
|
:param pulumi.Input[builtins.bool] accepted: Whether the user has accepted the request to join the project. Users get an invite and become project members after accepting the invite.
|
|
278
278
|
:param pulumi.Input[builtins.str] email: Email address of the user in lowercase. Changing this property forces recreation of the resource.
|
|
279
|
-
:param pulumi.Input[builtins.str] member_type: Project membership type. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:billing:read`, `organization:billing:write`, `organization:domains:write`, `organization:groups:write`, `organization:
|
|
279
|
+
:param pulumi.Input[builtins.str] member_type: Project membership type. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:billing:read`, `organization:billing:write`, `organization:domains:write`, `organization:groups:write`, `organization:networking:read`, `organization:networking:write`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
|
|
280
280
|
:param pulumi.Input[builtins.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.
|
|
281
281
|
"""
|
|
282
282
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
@@ -309,7 +309,7 @@ class ProjectUser(pulumi.CustomResource):
|
|
|
309
309
|
@pulumi.getter(name="memberType")
|
|
310
310
|
def member_type(self) -> pulumi.Output[builtins.str]:
|
|
311
311
|
"""
|
|
312
|
-
Project membership type. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:billing:read`, `organization:billing:write`, `organization:domains:write`, `organization:groups:write`, `organization:
|
|
312
|
+
Project membership type. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:billing:read`, `organization:billing:write`, `organization:domains:write`, `organization:groups:write`, `organization:networking:read`, `organization:networking:write`, `organization:projects:write`, `organization:users:write`, `project:audit_logs:read`, `project:integrations:read`, `project:integrations:write`, `project:networking:read`, `project:networking:write`, `project:permissions:read`, `project:services:read`, `project:services:write`, `read_only`, `role:organization:admin`, `role:services:maintenance`, `role:services:recover`, `service:configuration:write`, `service:data:write`, `service:logs:read`, `service:secrets:read` and `service:users:write`.
|
|
313
313
|
"""
|
|
314
314
|
return pulumi.get(self, "member_type")
|
|
315
315
|
|
pulumi_aiven/pulumi-plugin.json
CHANGED
pulumi_aiven/redis.py
CHANGED
|
@@ -48,7 +48,7 @@ class RedisArgs:
|
|
|
48
48
|
:param pulumi.Input[builtins.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.
|
|
49
49
|
:param pulumi.Input[builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
50
50
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
51
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
51
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
52
52
|
:param pulumi.Input['RedisRedisArgs'] redis: Redis server provided values
|
|
53
53
|
:param pulumi.Input['RedisRedisUserConfigArgs'] redis_user_config: Redis user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
54
54
|
:param pulumi.Input[Sequence[pulumi.Input['RedisServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
@@ -191,7 +191,7 @@ class RedisArgs:
|
|
|
191
191
|
@pulumi.getter(name="projectVpcId")
|
|
192
192
|
def project_vpc_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
193
193
|
"""
|
|
194
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
194
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
195
195
|
"""
|
|
196
196
|
return pulumi.get(self, "project_vpc_id")
|
|
197
197
|
|
|
@@ -329,7 +329,7 @@ class _RedisState:
|
|
|
329
329
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
330
330
|
:param pulumi.Input[builtins.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 seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
331
331
|
:param pulumi.Input[builtins.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.
|
|
332
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
332
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
333
333
|
:param pulumi.Input['RedisRedisArgs'] redis: Redis server provided values
|
|
334
334
|
:param pulumi.Input['RedisRedisUserConfigArgs'] redis_user_config: Redis user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
335
335
|
:param pulumi.Input[builtins.str] service_host: The hostname of the service.
|
|
@@ -558,7 +558,7 @@ class _RedisState:
|
|
|
558
558
|
@pulumi.getter(name="projectVpcId")
|
|
559
559
|
def project_vpc_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
560
560
|
"""
|
|
561
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
561
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
562
562
|
"""
|
|
563
563
|
return pulumi.get(self, "project_vpc_id")
|
|
564
564
|
|
|
@@ -814,7 +814,7 @@ class Redis(pulumi.CustomResource):
|
|
|
814
814
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
815
815
|
:param pulumi.Input[builtins.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 seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
816
816
|
:param pulumi.Input[builtins.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.
|
|
817
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
817
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
818
818
|
:param pulumi.Input[Union['RedisRedisArgs', 'RedisRedisArgsDict']] redis: Redis server provided values
|
|
819
819
|
:param pulumi.Input[Union['RedisRedisUserConfigArgs', 'RedisRedisUserConfigArgsDict']] redis_user_config: Redis user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
820
820
|
:param pulumi.Input[Sequence[pulumi.Input[Union['RedisServiceIntegrationArgs', 'RedisServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
@@ -1001,7 +1001,7 @@ class Redis(pulumi.CustomResource):
|
|
|
1001
1001
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
1002
1002
|
:param pulumi.Input[builtins.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 seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
1003
1003
|
:param pulumi.Input[builtins.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.
|
|
1004
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
1004
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
1005
1005
|
:param pulumi.Input[Union['RedisRedisArgs', 'RedisRedisArgsDict']] redis: Redis server provided values
|
|
1006
1006
|
:param pulumi.Input[Union['RedisRedisUserConfigArgs', 'RedisRedisUserConfigArgsDict']] redis_user_config: Redis user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1007
1007
|
:param pulumi.Input[builtins.str] service_host: The hostname of the service.
|
|
@@ -1151,9 +1151,9 @@ class Redis(pulumi.CustomResource):
|
|
|
1151
1151
|
|
|
1152
1152
|
@property
|
|
1153
1153
|
@pulumi.getter(name="projectVpcId")
|
|
1154
|
-
def project_vpc_id(self) -> pulumi.Output[builtins.str]:
|
|
1154
|
+
def project_vpc_id(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
1155
1155
|
"""
|
|
1156
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
1156
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
1157
1157
|
"""
|
|
1158
1158
|
return pulumi.get(self, "project_vpc_id")
|
|
1159
1159
|
|
|
@@ -24,6 +24,7 @@ class ServiceIntegrationArgs:
|
|
|
24
24
|
def __init__(__self__, *,
|
|
25
25
|
integration_type: pulumi.Input[builtins.str],
|
|
26
26
|
project: pulumi.Input[builtins.str],
|
|
27
|
+
clickhouse_credentials_user_config: Optional[pulumi.Input['ServiceIntegrationClickhouseCredentialsUserConfigArgs']] = None,
|
|
27
28
|
clickhouse_kafka_user_config: Optional[pulumi.Input['ServiceIntegrationClickhouseKafkaUserConfigArgs']] = None,
|
|
28
29
|
clickhouse_postgresql_user_config: Optional[pulumi.Input['ServiceIntegrationClickhousePostgresqlUserConfigArgs']] = None,
|
|
29
30
|
datadog_user_config: Optional[pulumi.Input['ServiceIntegrationDatadogUserConfigArgs']] = None,
|
|
@@ -48,6 +49,7 @@ class ServiceIntegrationArgs:
|
|
|
48
49
|
The set of arguments for constructing a ServiceIntegration resource.
|
|
49
50
|
:param pulumi.Input[builtins.str] integration_type: Type of the service integration. The possible values are `alertmanager`, `autoscaler`, `caching`, `cassandra_cross_service_cluster`, `clickhouse_credentials`, `clickhouse_kafka`, `clickhouse_postgresql`, `dashboard`, `datadog`, `datasource`, `disaster_recovery`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_elasticsearch_logs`, `external_google_cloud_logging`, `external_opensearch_logs`, `flink`, `flink_external_bigquery`, `flink_external_kafka`, `flink_external_postgresql`, `internal_connectivity`, `jolokia`, `kafka_connect`, `kafka_connect_postgresql`, `kafka_logs`, `kafka_mirrormaker`, `logs`, `m3aggregator`, `m3coordinator`, `metrics`, `opensearch_cross_cluster_replication`, `opensearch_cross_cluster_search`, `prometheus`, `read_replica`, `rsyslog`, `schema_registry_proxy`, `stresstester`, `thanos_distributed_query`, `thanos_migrate`, `thanoscompactor`, `thanosquery`, `thanosruler`, `thanosstore`, `vector` and `vmalert`.
|
|
50
51
|
:param pulumi.Input[builtins.str] project: Project the integration belongs to.
|
|
52
|
+
:param pulumi.Input['ServiceIntegrationClickhouseCredentialsUserConfigArgs'] clickhouse_credentials_user_config: ClickhouseCredentials user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
51
53
|
:param pulumi.Input['ServiceIntegrationClickhouseKafkaUserConfigArgs'] clickhouse_kafka_user_config: ClickhouseKafka user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
52
54
|
:param pulumi.Input['ServiceIntegrationClickhousePostgresqlUserConfigArgs'] clickhouse_postgresql_user_config: ClickhousePostgresql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
53
55
|
:param pulumi.Input['ServiceIntegrationDatadogUserConfigArgs'] datadog_user_config: Datadog user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
@@ -71,6 +73,8 @@ class ServiceIntegrationArgs:
|
|
|
71
73
|
"""
|
|
72
74
|
pulumi.set(__self__, "integration_type", integration_type)
|
|
73
75
|
pulumi.set(__self__, "project", project)
|
|
76
|
+
if clickhouse_credentials_user_config is not None:
|
|
77
|
+
pulumi.set(__self__, "clickhouse_credentials_user_config", clickhouse_credentials_user_config)
|
|
74
78
|
if clickhouse_kafka_user_config is not None:
|
|
75
79
|
pulumi.set(__self__, "clickhouse_kafka_user_config", clickhouse_kafka_user_config)
|
|
76
80
|
if clickhouse_postgresql_user_config is not None:
|
|
@@ -136,6 +140,18 @@ class ServiceIntegrationArgs:
|
|
|
136
140
|
def project(self, value: pulumi.Input[builtins.str]):
|
|
137
141
|
pulumi.set(self, "project", value)
|
|
138
142
|
|
|
143
|
+
@property
|
|
144
|
+
@pulumi.getter(name="clickhouseCredentialsUserConfig")
|
|
145
|
+
def clickhouse_credentials_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationClickhouseCredentialsUserConfigArgs']]:
|
|
146
|
+
"""
|
|
147
|
+
ClickhouseCredentials user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
148
|
+
"""
|
|
149
|
+
return pulumi.get(self, "clickhouse_credentials_user_config")
|
|
150
|
+
|
|
151
|
+
@clickhouse_credentials_user_config.setter
|
|
152
|
+
def clickhouse_credentials_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationClickhouseCredentialsUserConfigArgs']]):
|
|
153
|
+
pulumi.set(self, "clickhouse_credentials_user_config", value)
|
|
154
|
+
|
|
139
155
|
@property
|
|
140
156
|
@pulumi.getter(name="clickhouseKafkaUserConfig")
|
|
141
157
|
def clickhouse_kafka_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationClickhouseKafkaUserConfigArgs']]:
|
|
@@ -380,6 +396,7 @@ class ServiceIntegrationArgs:
|
|
|
380
396
|
@pulumi.input_type
|
|
381
397
|
class _ServiceIntegrationState:
|
|
382
398
|
def __init__(__self__, *,
|
|
399
|
+
clickhouse_credentials_user_config: Optional[pulumi.Input['ServiceIntegrationClickhouseCredentialsUserConfigArgs']] = None,
|
|
383
400
|
clickhouse_kafka_user_config: Optional[pulumi.Input['ServiceIntegrationClickhouseKafkaUserConfigArgs']] = None,
|
|
384
401
|
clickhouse_postgresql_user_config: Optional[pulumi.Input['ServiceIntegrationClickhousePostgresqlUserConfigArgs']] = None,
|
|
385
402
|
datadog_user_config: Optional[pulumi.Input['ServiceIntegrationDatadogUserConfigArgs']] = None,
|
|
@@ -405,6 +422,7 @@ class _ServiceIntegrationState:
|
|
|
405
422
|
source_service_project: Optional[pulumi.Input[builtins.str]] = None):
|
|
406
423
|
"""
|
|
407
424
|
Input properties used for looking up and filtering ServiceIntegration resources.
|
|
425
|
+
:param pulumi.Input['ServiceIntegrationClickhouseCredentialsUserConfigArgs'] clickhouse_credentials_user_config: ClickhouseCredentials user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
408
426
|
:param pulumi.Input['ServiceIntegrationClickhouseKafkaUserConfigArgs'] clickhouse_kafka_user_config: ClickhouseKafka user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
409
427
|
:param pulumi.Input['ServiceIntegrationClickhousePostgresqlUserConfigArgs'] clickhouse_postgresql_user_config: ClickhousePostgresql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
410
428
|
:param pulumi.Input['ServiceIntegrationDatadogUserConfigArgs'] datadog_user_config: Datadog user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
@@ -429,6 +447,8 @@ class _ServiceIntegrationState:
|
|
|
429
447
|
:param pulumi.Input[builtins.str] source_service_name: Source service for the integration (if any)
|
|
430
448
|
:param pulumi.Input[builtins.str] source_service_project: Source service project name
|
|
431
449
|
"""
|
|
450
|
+
if clickhouse_credentials_user_config is not None:
|
|
451
|
+
pulumi.set(__self__, "clickhouse_credentials_user_config", clickhouse_credentials_user_config)
|
|
432
452
|
if clickhouse_kafka_user_config is not None:
|
|
433
453
|
pulumi.set(__self__, "clickhouse_kafka_user_config", clickhouse_kafka_user_config)
|
|
434
454
|
if clickhouse_postgresql_user_config is not None:
|
|
@@ -476,6 +496,18 @@ class _ServiceIntegrationState:
|
|
|
476
496
|
if source_service_project is not None:
|
|
477
497
|
pulumi.set(__self__, "source_service_project", source_service_project)
|
|
478
498
|
|
|
499
|
+
@property
|
|
500
|
+
@pulumi.getter(name="clickhouseCredentialsUserConfig")
|
|
501
|
+
def clickhouse_credentials_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationClickhouseCredentialsUserConfigArgs']]:
|
|
502
|
+
"""
|
|
503
|
+
ClickhouseCredentials user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
504
|
+
"""
|
|
505
|
+
return pulumi.get(self, "clickhouse_credentials_user_config")
|
|
506
|
+
|
|
507
|
+
@clickhouse_credentials_user_config.setter
|
|
508
|
+
def clickhouse_credentials_user_config(self, value: Optional[pulumi.Input['ServiceIntegrationClickhouseCredentialsUserConfigArgs']]):
|
|
509
|
+
pulumi.set(self, "clickhouse_credentials_user_config", value)
|
|
510
|
+
|
|
479
511
|
@property
|
|
480
512
|
@pulumi.getter(name="clickhouseKafkaUserConfig")
|
|
481
513
|
def clickhouse_kafka_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationClickhouseKafkaUserConfigArgs']]:
|
|
@@ -759,6 +791,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
759
791
|
def __init__(__self__,
|
|
760
792
|
resource_name: str,
|
|
761
793
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
794
|
+
clickhouse_credentials_user_config: Optional[pulumi.Input[Union['ServiceIntegrationClickhouseCredentialsUserConfigArgs', 'ServiceIntegrationClickhouseCredentialsUserConfigArgsDict']]] = None,
|
|
762
795
|
clickhouse_kafka_user_config: Optional[pulumi.Input[Union['ServiceIntegrationClickhouseKafkaUserConfigArgs', 'ServiceIntegrationClickhouseKafkaUserConfigArgsDict']]] = None,
|
|
763
796
|
clickhouse_postgresql_user_config: Optional[pulumi.Input[Union['ServiceIntegrationClickhousePostgresqlUserConfigArgs', 'ServiceIntegrationClickhousePostgresqlUserConfigArgsDict']]] = None,
|
|
764
797
|
datadog_user_config: Optional[pulumi.Input[Union['ServiceIntegrationDatadogUserConfigArgs', 'ServiceIntegrationDatadogUserConfigArgsDict']]] = None,
|
|
@@ -821,6 +854,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
821
854
|
|
|
822
855
|
:param str resource_name: The name of the resource.
|
|
823
856
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
857
|
+
:param pulumi.Input[Union['ServiceIntegrationClickhouseCredentialsUserConfigArgs', 'ServiceIntegrationClickhouseCredentialsUserConfigArgsDict']] clickhouse_credentials_user_config: ClickhouseCredentials user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
824
858
|
:param pulumi.Input[Union['ServiceIntegrationClickhouseKafkaUserConfigArgs', 'ServiceIntegrationClickhouseKafkaUserConfigArgsDict']] clickhouse_kafka_user_config: ClickhouseKafka user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
825
859
|
:param pulumi.Input[Union['ServiceIntegrationClickhousePostgresqlUserConfigArgs', 'ServiceIntegrationClickhousePostgresqlUserConfigArgsDict']] clickhouse_postgresql_user_config: ClickhousePostgresql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
826
860
|
:param pulumi.Input[Union['ServiceIntegrationDatadogUserConfigArgs', 'ServiceIntegrationDatadogUserConfigArgsDict']] datadog_user_config: Datadog user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
@@ -902,6 +936,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
902
936
|
def _internal_init(__self__,
|
|
903
937
|
resource_name: str,
|
|
904
938
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
939
|
+
clickhouse_credentials_user_config: Optional[pulumi.Input[Union['ServiceIntegrationClickhouseCredentialsUserConfigArgs', 'ServiceIntegrationClickhouseCredentialsUserConfigArgsDict']]] = None,
|
|
905
940
|
clickhouse_kafka_user_config: Optional[pulumi.Input[Union['ServiceIntegrationClickhouseKafkaUserConfigArgs', 'ServiceIntegrationClickhouseKafkaUserConfigArgsDict']]] = None,
|
|
906
941
|
clickhouse_postgresql_user_config: Optional[pulumi.Input[Union['ServiceIntegrationClickhousePostgresqlUserConfigArgs', 'ServiceIntegrationClickhousePostgresqlUserConfigArgsDict']]] = None,
|
|
907
942
|
datadog_user_config: Optional[pulumi.Input[Union['ServiceIntegrationDatadogUserConfigArgs', 'ServiceIntegrationDatadogUserConfigArgsDict']]] = None,
|
|
@@ -933,6 +968,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
933
968
|
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
934
969
|
__props__ = ServiceIntegrationArgs.__new__(ServiceIntegrationArgs)
|
|
935
970
|
|
|
971
|
+
__props__.__dict__["clickhouse_credentials_user_config"] = clickhouse_credentials_user_config
|
|
936
972
|
__props__.__dict__["clickhouse_kafka_user_config"] = clickhouse_kafka_user_config
|
|
937
973
|
__props__.__dict__["clickhouse_postgresql_user_config"] = clickhouse_postgresql_user_config
|
|
938
974
|
__props__.__dict__["datadog_user_config"] = datadog_user_config
|
|
@@ -970,6 +1006,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
970
1006
|
def get(resource_name: str,
|
|
971
1007
|
id: pulumi.Input[str],
|
|
972
1008
|
opts: Optional[pulumi.ResourceOptions] = None,
|
|
1009
|
+
clickhouse_credentials_user_config: Optional[pulumi.Input[Union['ServiceIntegrationClickhouseCredentialsUserConfigArgs', 'ServiceIntegrationClickhouseCredentialsUserConfigArgsDict']]] = None,
|
|
973
1010
|
clickhouse_kafka_user_config: Optional[pulumi.Input[Union['ServiceIntegrationClickhouseKafkaUserConfigArgs', 'ServiceIntegrationClickhouseKafkaUserConfigArgsDict']]] = None,
|
|
974
1011
|
clickhouse_postgresql_user_config: Optional[pulumi.Input[Union['ServiceIntegrationClickhousePostgresqlUserConfigArgs', 'ServiceIntegrationClickhousePostgresqlUserConfigArgsDict']]] = None,
|
|
975
1012
|
datadog_user_config: Optional[pulumi.Input[Union['ServiceIntegrationDatadogUserConfigArgs', 'ServiceIntegrationDatadogUserConfigArgsDict']]] = None,
|
|
@@ -1000,6 +1037,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
1000
1037
|
:param str resource_name: The unique name of the resulting resource.
|
|
1001
1038
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
1002
1039
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
1040
|
+
:param pulumi.Input[Union['ServiceIntegrationClickhouseCredentialsUserConfigArgs', 'ServiceIntegrationClickhouseCredentialsUserConfigArgsDict']] clickhouse_credentials_user_config: ClickhouseCredentials user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1003
1041
|
:param pulumi.Input[Union['ServiceIntegrationClickhouseKafkaUserConfigArgs', 'ServiceIntegrationClickhouseKafkaUserConfigArgsDict']] clickhouse_kafka_user_config: ClickhouseKafka user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1004
1042
|
:param pulumi.Input[Union['ServiceIntegrationClickhousePostgresqlUserConfigArgs', 'ServiceIntegrationClickhousePostgresqlUserConfigArgsDict']] clickhouse_postgresql_user_config: ClickhousePostgresql user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1005
1043
|
:param pulumi.Input[Union['ServiceIntegrationDatadogUserConfigArgs', 'ServiceIntegrationDatadogUserConfigArgsDict']] datadog_user_config: Datadog user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
@@ -1028,6 +1066,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
1028
1066
|
|
|
1029
1067
|
__props__ = _ServiceIntegrationState.__new__(_ServiceIntegrationState)
|
|
1030
1068
|
|
|
1069
|
+
__props__.__dict__["clickhouse_credentials_user_config"] = clickhouse_credentials_user_config
|
|
1031
1070
|
__props__.__dict__["clickhouse_kafka_user_config"] = clickhouse_kafka_user_config
|
|
1032
1071
|
__props__.__dict__["clickhouse_postgresql_user_config"] = clickhouse_postgresql_user_config
|
|
1033
1072
|
__props__.__dict__["datadog_user_config"] = datadog_user_config
|
|
@@ -1053,6 +1092,14 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
1053
1092
|
__props__.__dict__["source_service_project"] = source_service_project
|
|
1054
1093
|
return ServiceIntegration(resource_name, opts=opts, __props__=__props__)
|
|
1055
1094
|
|
|
1095
|
+
@property
|
|
1096
|
+
@pulumi.getter(name="clickhouseCredentialsUserConfig")
|
|
1097
|
+
def clickhouse_credentials_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationClickhouseCredentialsUserConfig']]:
|
|
1098
|
+
"""
|
|
1099
|
+
ClickhouseCredentials user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1100
|
+
"""
|
|
1101
|
+
return pulumi.get(self, "clickhouse_credentials_user_config")
|
|
1102
|
+
|
|
1056
1103
|
@property
|
|
1057
1104
|
@pulumi.getter(name="clickhouseKafkaUserConfig")
|
|
1058
1105
|
def clickhouse_kafka_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationClickhouseKafkaUserConfig']]:
|
pulumi_aiven/thanos.py
CHANGED
|
@@ -48,7 +48,7 @@ class ThanosArgs:
|
|
|
48
48
|
:param pulumi.Input[builtins.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.
|
|
49
49
|
:param pulumi.Input[builtins.str] maintenance_window_dow: Day of week when maintenance operations should be performed. One monday, tuesday, wednesday, etc.
|
|
50
50
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
51
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
51
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
52
52
|
:param pulumi.Input[Sequence[pulumi.Input['ThanosServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
53
53
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.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
|
|
54
54
|
:param pulumi.Input[Sequence[pulumi.Input['ThanosTagArgs']]] tags: Tags are key-value pairs that allow you to categorize services.
|
|
@@ -191,7 +191,7 @@ class ThanosArgs:
|
|
|
191
191
|
@pulumi.getter(name="projectVpcId")
|
|
192
192
|
def project_vpc_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
193
193
|
"""
|
|
194
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
194
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
195
195
|
"""
|
|
196
196
|
return pulumi.get(self, "project_vpc_id")
|
|
197
197
|
|
|
@@ -329,7 +329,7 @@ class _ThanosState:
|
|
|
329
329
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
330
330
|
:param pulumi.Input[builtins.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 seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
331
331
|
:param pulumi.Input[builtins.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.
|
|
332
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
332
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
333
333
|
:param pulumi.Input[builtins.str] service_host: The hostname of the service.
|
|
334
334
|
:param pulumi.Input[Sequence[pulumi.Input['ThanosServiceIntegrationArgs']]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
335
335
|
:param pulumi.Input[builtins.str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
@@ -558,7 +558,7 @@ class _ThanosState:
|
|
|
558
558
|
@pulumi.getter(name="projectVpcId")
|
|
559
559
|
def project_vpc_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
|
560
560
|
"""
|
|
561
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
561
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
562
562
|
"""
|
|
563
563
|
return pulumi.get(self, "project_vpc_id")
|
|
564
564
|
|
|
@@ -804,7 +804,7 @@ class Thanos(pulumi.CustomResource):
|
|
|
804
804
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
805
805
|
:param pulumi.Input[builtins.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 seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
806
806
|
:param pulumi.Input[builtins.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.
|
|
807
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
807
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
808
808
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ThanosServiceIntegrationArgs', 'ThanosServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
809
809
|
:param pulumi.Input[builtins.str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
810
810
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.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
|
|
@@ -981,7 +981,7 @@ class Thanos(pulumi.CustomResource):
|
|
|
981
981
|
:param pulumi.Input[builtins.str] maintenance_window_time: Time of day when maintenance operations should be performed. UTC time in HH:mm:ss format.
|
|
982
982
|
:param pulumi.Input[builtins.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 seen from the [Aiven pricing page](https://aiven.io/pricing).
|
|
983
983
|
:param pulumi.Input[builtins.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.
|
|
984
|
-
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set the service
|
|
984
|
+
:param pulumi.Input[builtins.str] project_vpc_id: Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
985
985
|
:param pulumi.Input[builtins.str] service_host: The hostname of the service.
|
|
986
986
|
:param pulumi.Input[Sequence[pulumi.Input[Union['ThanosServiceIntegrationArgs', 'ThanosServiceIntegrationArgsDict']]]] service_integrations: Service integrations to specify when creating a service. Not applied after initial service creation
|
|
987
987
|
:param pulumi.Input[builtins.str] service_name: Specifies the actual name of the service. The name cannot be changed later without destroying and re-creating the service so name should be picked based on intended service usage rather than current attributes.
|
|
@@ -1131,9 +1131,9 @@ class Thanos(pulumi.CustomResource):
|
|
|
1131
1131
|
|
|
1132
1132
|
@property
|
|
1133
1133
|
@pulumi.getter(name="projectVpcId")
|
|
1134
|
-
def project_vpc_id(self) -> pulumi.Output[builtins.str]:
|
|
1134
|
+
def project_vpc_id(self) -> pulumi.Output[Optional[builtins.str]]:
|
|
1135
1135
|
"""
|
|
1136
|
-
Specifies the VPC the service should run in. If the value is not set the service
|
|
1136
|
+
Specifies the VPC the service should run in. If the value is not set, the service runs on the Public Internet. 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. The service can be freely moved to and from VPC after creation, but doing so triggers migration to new servers, so the operation can take a significant amount of time to complete if the service has a lot of data.
|
|
1137
1137
|
"""
|
|
1138
1138
|
return pulumi.get(self, "project_vpc_id")
|
|
1139
1139
|
|