pulumi-aiven 6.30.0__py3-none-any.whl → 6.30.0a1733787482__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/__init__.py +0 -30
- pulumi_aiven/_inputs.py +67 -2961
- pulumi_aiven/account_team_project.py +7 -7
- pulumi_aiven/clickhouse.py +8 -8
- pulumi_aiven/get_account_team_project.py +1 -1
- pulumi_aiven/get_clickhouse.py +1 -1
- pulumi_aiven/get_external_identity.py +3 -3
- pulumi_aiven/get_project_user.py +1 -1
- pulumi_aiven/get_service_integration.py +4 -32
- pulumi_aiven/kafka_acl.py +4 -6
- pulumi_aiven/kafka_native_acl.py +44 -98
- pulumi_aiven/organization_group_project.py +7 -7
- pulumi_aiven/organization_permission.py +6 -56
- pulumi_aiven/outputs.py +16192 -19926
- pulumi_aiven/project_user.py +7 -7
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/service_integration.py +4 -98
- {pulumi_aiven-6.30.0.dist-info → pulumi_aiven-6.30.0a1733787482.dist-info}/METADATA +3 -3
- {pulumi_aiven-6.30.0.dist-info → pulumi_aiven-6.30.0a1733787482.dist-info}/RECORD +21 -27
- pulumi_aiven/alloydbomni.py +0 -1335
- pulumi_aiven/alloydbomni_database.py +0 -347
- pulumi_aiven/alloydbomni_user.py +0 -433
- pulumi_aiven/get_alloydbomni.py +0 -499
- pulumi_aiven/get_alloydbomni_database.py +0 -168
- pulumi_aiven/get_alloydbomni_user.py +0 -210
- {pulumi_aiven-6.30.0.dist-info → pulumi_aiven-6.30.0a1733787482.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.30.0.dist-info → pulumi_aiven-6.30.0a1733787482.dist-info}/top_level.txt +0 -0
pulumi_aiven/project_user.py
CHANGED
|
@@ -25,7 +25,7 @@ class ProjectUserArgs:
|
|
|
25
25
|
"""
|
|
26
26
|
The set of arguments for constructing a ProjectUser resource.
|
|
27
27
|
:param pulumi.Input[str] email: Email address of the user in lowercase. Changing this property forces recreation of the resource.
|
|
28
|
-
:param pulumi.Input[str] member_type: Project membership type. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization: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`.
|
|
28
|
+
:param pulumi.Input[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:idps:write`, `organization:network:read`, `organization:network:write`, `organization:permissions:read`, `organization:permissions:write`, `organization:projects:read`, `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`.
|
|
29
29
|
: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.
|
|
30
30
|
"""
|
|
31
31
|
pulumi.set(__self__, "email", email)
|
|
@@ -48,7 +48,7 @@ class ProjectUserArgs:
|
|
|
48
48
|
@pulumi.getter(name="memberType")
|
|
49
49
|
def member_type(self) -> pulumi.Input[str]:
|
|
50
50
|
"""
|
|
51
|
-
Project membership type. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization: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`.
|
|
51
|
+
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:idps:write`, `organization:network:read`, `organization:network:write`, `organization:permissions:read`, `organization:permissions:write`, `organization:projects:read`, `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`.
|
|
52
52
|
"""
|
|
53
53
|
return pulumi.get(self, "member_type")
|
|
54
54
|
|
|
@@ -80,7 +80,7 @@ class _ProjectUserState:
|
|
|
80
80
|
Input properties used for looking up and filtering ProjectUser resources.
|
|
81
81
|
:param pulumi.Input[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.
|
|
82
82
|
:param pulumi.Input[str] email: Email address of the user in lowercase. Changing this property forces recreation of the resource.
|
|
83
|
-
:param pulumi.Input[str] member_type: Project membership type. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization: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`.
|
|
83
|
+
:param pulumi.Input[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:idps:write`, `organization:network:read`, `organization:network:write`, `organization:permissions:read`, `organization:permissions:write`, `organization:projects:read`, `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`.
|
|
84
84
|
: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.
|
|
85
85
|
"""
|
|
86
86
|
if accepted is not None:
|
|
@@ -120,7 +120,7 @@ class _ProjectUserState:
|
|
|
120
120
|
@pulumi.getter(name="memberType")
|
|
121
121
|
def member_type(self) -> Optional[pulumi.Input[str]]:
|
|
122
122
|
"""
|
|
123
|
-
Project membership type. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization: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`.
|
|
123
|
+
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:idps:write`, `organization:network:read`, `organization:network:write`, `organization:permissions:read`, `organization:permissions:write`, `organization:projects:read`, `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`.
|
|
124
124
|
"""
|
|
125
125
|
return pulumi.get(self, "member_type")
|
|
126
126
|
|
|
@@ -178,7 +178,7 @@ class ProjectUser(pulumi.CustomResource):
|
|
|
178
178
|
:param str resource_name: The name of the resource.
|
|
179
179
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
180
180
|
:param pulumi.Input[str] email: Email address of the user in lowercase. Changing this property forces recreation of the resource.
|
|
181
|
-
:param pulumi.Input[str] member_type: Project membership type. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization: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`.
|
|
181
|
+
:param pulumi.Input[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:idps:write`, `organization:network:read`, `organization:network:write`, `organization:permissions:read`, `organization:permissions:write`, `organization:projects:read`, `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`.
|
|
182
182
|
: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.
|
|
183
183
|
"""
|
|
184
184
|
...
|
|
@@ -272,7 +272,7 @@ class ProjectUser(pulumi.CustomResource):
|
|
|
272
272
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
273
273
|
:param pulumi.Input[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.
|
|
274
274
|
:param pulumi.Input[str] email: Email address of the user in lowercase. Changing this property forces recreation of the resource.
|
|
275
|
-
:param pulumi.Input[str] member_type: Project membership type. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization: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`.
|
|
275
|
+
:param pulumi.Input[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:idps:write`, `organization:network:read`, `organization:network:write`, `organization:permissions:read`, `organization:permissions:write`, `organization:projects:read`, `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`.
|
|
276
276
|
: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.
|
|
277
277
|
"""
|
|
278
278
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
@@ -305,7 +305,7 @@ class ProjectUser(pulumi.CustomResource):
|
|
|
305
305
|
@pulumi.getter(name="memberType")
|
|
306
306
|
def member_type(self) -> pulumi.Output[str]:
|
|
307
307
|
"""
|
|
308
|
-
Project membership type. The possible values are `admin`, `developer`, `operator`, `organization:app_users:write`, `organization:audit_logs:read`, `organization:domains:write`, `organization:groups:write`, `organization:idps:write`, `organization: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`.
|
|
308
|
+
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:idps:write`, `organization:network:read`, `organization:network:write`, `organization:permissions:read`, `organization:permissions:write`, `organization:projects:read`, `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`.
|
|
309
309
|
"""
|
|
310
310
|
return pulumi.get(self, "member_type")
|
|
311
311
|
|
pulumi_aiven/pulumi-plugin.json
CHANGED
|
@@ -28,7 +28,6 @@ class ServiceIntegrationArgs:
|
|
|
28
28
|
datadog_user_config: Optional[pulumi.Input['ServiceIntegrationDatadogUserConfigArgs']] = None,
|
|
29
29
|
destination_endpoint_id: Optional[pulumi.Input[str]] = None,
|
|
30
30
|
destination_service_name: Optional[pulumi.Input[str]] = None,
|
|
31
|
-
destination_service_project: Optional[pulumi.Input[str]] = None,
|
|
32
31
|
external_aws_cloudwatch_logs_user_config: Optional[pulumi.Input['ServiceIntegrationExternalAwsCloudwatchLogsUserConfigArgs']] = None,
|
|
33
32
|
external_aws_cloudwatch_metrics_user_config: Optional[pulumi.Input['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs']] = None,
|
|
34
33
|
external_elasticsearch_logs_user_config: Optional[pulumi.Input['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs']] = None,
|
|
@@ -41,8 +40,7 @@ class ServiceIntegrationArgs:
|
|
|
41
40
|
metrics_user_config: Optional[pulumi.Input['ServiceIntegrationMetricsUserConfigArgs']] = None,
|
|
42
41
|
prometheus_user_config: Optional[pulumi.Input['ServiceIntegrationPrometheusUserConfigArgs']] = None,
|
|
43
42
|
source_endpoint_id: Optional[pulumi.Input[str]] = None,
|
|
44
|
-
source_service_name: Optional[pulumi.Input[str]] = None
|
|
45
|
-
source_service_project: Optional[pulumi.Input[str]] = None):
|
|
43
|
+
source_service_name: Optional[pulumi.Input[str]] = None):
|
|
46
44
|
"""
|
|
47
45
|
The set of arguments for constructing a ServiceIntegration resource.
|
|
48
46
|
:param pulumi.Input[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`.
|
|
@@ -52,7 +50,6 @@ class ServiceIntegrationArgs:
|
|
|
52
50
|
: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
|
|
53
51
|
:param pulumi.Input[str] destination_endpoint_id: Destination endpoint for the integration.
|
|
54
52
|
:param pulumi.Input[str] destination_service_name: Destination service for the integration.
|
|
55
|
-
:param pulumi.Input[str] destination_service_project: Destination service project name
|
|
56
53
|
:param pulumi.Input['ServiceIntegrationExternalAwsCloudwatchLogsUserConfigArgs'] external_aws_cloudwatch_logs_user_config: ExternalAwsCloudwatchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
57
54
|
:param pulumi.Input['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs'] external_aws_cloudwatch_metrics_user_config: ExternalAwsCloudwatchMetrics user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
58
55
|
:param pulumi.Input['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs'] external_elasticsearch_logs_user_config: ExternalElasticsearchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
@@ -66,7 +63,6 @@ class ServiceIntegrationArgs:
|
|
|
66
63
|
:param pulumi.Input['ServiceIntegrationPrometheusUserConfigArgs'] prometheus_user_config: Prometheus user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
67
64
|
:param pulumi.Input[str] source_endpoint_id: Source endpoint for the integration.
|
|
68
65
|
:param pulumi.Input[str] source_service_name: Source service for the integration (if any)
|
|
69
|
-
:param pulumi.Input[str] source_service_project: Source service project name
|
|
70
66
|
"""
|
|
71
67
|
pulumi.set(__self__, "integration_type", integration_type)
|
|
72
68
|
pulumi.set(__self__, "project", project)
|
|
@@ -80,8 +76,6 @@ class ServiceIntegrationArgs:
|
|
|
80
76
|
pulumi.set(__self__, "destination_endpoint_id", destination_endpoint_id)
|
|
81
77
|
if destination_service_name is not None:
|
|
82
78
|
pulumi.set(__self__, "destination_service_name", destination_service_name)
|
|
83
|
-
if destination_service_project is not None:
|
|
84
|
-
pulumi.set(__self__, "destination_service_project", destination_service_project)
|
|
85
79
|
if external_aws_cloudwatch_logs_user_config is not None:
|
|
86
80
|
pulumi.set(__self__, "external_aws_cloudwatch_logs_user_config", external_aws_cloudwatch_logs_user_config)
|
|
87
81
|
if external_aws_cloudwatch_metrics_user_config is not None:
|
|
@@ -108,8 +102,6 @@ class ServiceIntegrationArgs:
|
|
|
108
102
|
pulumi.set(__self__, "source_endpoint_id", source_endpoint_id)
|
|
109
103
|
if source_service_name is not None:
|
|
110
104
|
pulumi.set(__self__, "source_service_name", source_service_name)
|
|
111
|
-
if source_service_project is not None:
|
|
112
|
-
pulumi.set(__self__, "source_service_project", source_service_project)
|
|
113
105
|
|
|
114
106
|
@property
|
|
115
107
|
@pulumi.getter(name="integrationType")
|
|
@@ -195,18 +187,6 @@ class ServiceIntegrationArgs:
|
|
|
195
187
|
def destination_service_name(self, value: Optional[pulumi.Input[str]]):
|
|
196
188
|
pulumi.set(self, "destination_service_name", value)
|
|
197
189
|
|
|
198
|
-
@property
|
|
199
|
-
@pulumi.getter(name="destinationServiceProject")
|
|
200
|
-
def destination_service_project(self) -> Optional[pulumi.Input[str]]:
|
|
201
|
-
"""
|
|
202
|
-
Destination service project name
|
|
203
|
-
"""
|
|
204
|
-
return pulumi.get(self, "destination_service_project")
|
|
205
|
-
|
|
206
|
-
@destination_service_project.setter
|
|
207
|
-
def destination_service_project(self, value: Optional[pulumi.Input[str]]):
|
|
208
|
-
pulumi.set(self, "destination_service_project", value)
|
|
209
|
-
|
|
210
190
|
@property
|
|
211
191
|
@pulumi.getter(name="externalAwsCloudwatchLogsUserConfig")
|
|
212
192
|
def external_aws_cloudwatch_logs_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationExternalAwsCloudwatchLogsUserConfigArgs']]:
|
|
@@ -363,18 +343,6 @@ class ServiceIntegrationArgs:
|
|
|
363
343
|
def source_service_name(self, value: Optional[pulumi.Input[str]]):
|
|
364
344
|
pulumi.set(self, "source_service_name", value)
|
|
365
345
|
|
|
366
|
-
@property
|
|
367
|
-
@pulumi.getter(name="sourceServiceProject")
|
|
368
|
-
def source_service_project(self) -> Optional[pulumi.Input[str]]:
|
|
369
|
-
"""
|
|
370
|
-
Source service project name
|
|
371
|
-
"""
|
|
372
|
-
return pulumi.get(self, "source_service_project")
|
|
373
|
-
|
|
374
|
-
@source_service_project.setter
|
|
375
|
-
def source_service_project(self, value: Optional[pulumi.Input[str]]):
|
|
376
|
-
pulumi.set(self, "source_service_project", value)
|
|
377
|
-
|
|
378
346
|
|
|
379
347
|
@pulumi.input_type
|
|
380
348
|
class _ServiceIntegrationState:
|
|
@@ -384,7 +352,6 @@ class _ServiceIntegrationState:
|
|
|
384
352
|
datadog_user_config: Optional[pulumi.Input['ServiceIntegrationDatadogUserConfigArgs']] = None,
|
|
385
353
|
destination_endpoint_id: Optional[pulumi.Input[str]] = None,
|
|
386
354
|
destination_service_name: Optional[pulumi.Input[str]] = None,
|
|
387
|
-
destination_service_project: Optional[pulumi.Input[str]] = None,
|
|
388
355
|
external_aws_cloudwatch_logs_user_config: Optional[pulumi.Input['ServiceIntegrationExternalAwsCloudwatchLogsUserConfigArgs']] = None,
|
|
389
356
|
external_aws_cloudwatch_metrics_user_config: Optional[pulumi.Input['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs']] = None,
|
|
390
357
|
external_elasticsearch_logs_user_config: Optional[pulumi.Input['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs']] = None,
|
|
@@ -400,8 +367,7 @@ class _ServiceIntegrationState:
|
|
|
400
367
|
project: Optional[pulumi.Input[str]] = None,
|
|
401
368
|
prometheus_user_config: Optional[pulumi.Input['ServiceIntegrationPrometheusUserConfigArgs']] = None,
|
|
402
369
|
source_endpoint_id: Optional[pulumi.Input[str]] = None,
|
|
403
|
-
source_service_name: Optional[pulumi.Input[str]] = None
|
|
404
|
-
source_service_project: Optional[pulumi.Input[str]] = None):
|
|
370
|
+
source_service_name: Optional[pulumi.Input[str]] = None):
|
|
405
371
|
"""
|
|
406
372
|
Input properties used for looking up and filtering ServiceIntegration resources.
|
|
407
373
|
: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,7 +375,6 @@ class _ServiceIntegrationState:
|
|
|
409
375
|
: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
|
|
410
376
|
:param pulumi.Input[str] destination_endpoint_id: Destination endpoint for the integration.
|
|
411
377
|
:param pulumi.Input[str] destination_service_name: Destination service for the integration.
|
|
412
|
-
:param pulumi.Input[str] destination_service_project: Destination service project name
|
|
413
378
|
:param pulumi.Input['ServiceIntegrationExternalAwsCloudwatchLogsUserConfigArgs'] external_aws_cloudwatch_logs_user_config: ExternalAwsCloudwatchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
414
379
|
:param pulumi.Input['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs'] external_aws_cloudwatch_metrics_user_config: ExternalAwsCloudwatchMetrics user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
415
380
|
:param pulumi.Input['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs'] external_elasticsearch_logs_user_config: ExternalElasticsearchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
@@ -426,7 +391,6 @@ class _ServiceIntegrationState:
|
|
|
426
391
|
:param pulumi.Input['ServiceIntegrationPrometheusUserConfigArgs'] prometheus_user_config: Prometheus user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
427
392
|
:param pulumi.Input[str] source_endpoint_id: Source endpoint for the integration.
|
|
428
393
|
:param pulumi.Input[str] source_service_name: Source service for the integration (if any)
|
|
429
|
-
:param pulumi.Input[str] source_service_project: Source service project name
|
|
430
394
|
"""
|
|
431
395
|
if clickhouse_kafka_user_config is not None:
|
|
432
396
|
pulumi.set(__self__, "clickhouse_kafka_user_config", clickhouse_kafka_user_config)
|
|
@@ -438,8 +402,6 @@ class _ServiceIntegrationState:
|
|
|
438
402
|
pulumi.set(__self__, "destination_endpoint_id", destination_endpoint_id)
|
|
439
403
|
if destination_service_name is not None:
|
|
440
404
|
pulumi.set(__self__, "destination_service_name", destination_service_name)
|
|
441
|
-
if destination_service_project is not None:
|
|
442
|
-
pulumi.set(__self__, "destination_service_project", destination_service_project)
|
|
443
405
|
if external_aws_cloudwatch_logs_user_config is not None:
|
|
444
406
|
pulumi.set(__self__, "external_aws_cloudwatch_logs_user_config", external_aws_cloudwatch_logs_user_config)
|
|
445
407
|
if external_aws_cloudwatch_metrics_user_config is not None:
|
|
@@ -472,8 +434,6 @@ class _ServiceIntegrationState:
|
|
|
472
434
|
pulumi.set(__self__, "source_endpoint_id", source_endpoint_id)
|
|
473
435
|
if source_service_name is not None:
|
|
474
436
|
pulumi.set(__self__, "source_service_name", source_service_name)
|
|
475
|
-
if source_service_project is not None:
|
|
476
|
-
pulumi.set(__self__, "source_service_project", source_service_project)
|
|
477
437
|
|
|
478
438
|
@property
|
|
479
439
|
@pulumi.getter(name="clickhouseKafkaUserConfig")
|
|
@@ -535,18 +495,6 @@ class _ServiceIntegrationState:
|
|
|
535
495
|
def destination_service_name(self, value: Optional[pulumi.Input[str]]):
|
|
536
496
|
pulumi.set(self, "destination_service_name", value)
|
|
537
497
|
|
|
538
|
-
@property
|
|
539
|
-
@pulumi.getter(name="destinationServiceProject")
|
|
540
|
-
def destination_service_project(self) -> Optional[pulumi.Input[str]]:
|
|
541
|
-
"""
|
|
542
|
-
Destination service project name
|
|
543
|
-
"""
|
|
544
|
-
return pulumi.get(self, "destination_service_project")
|
|
545
|
-
|
|
546
|
-
@destination_service_project.setter
|
|
547
|
-
def destination_service_project(self, value: Optional[pulumi.Input[str]]):
|
|
548
|
-
pulumi.set(self, "destination_service_project", value)
|
|
549
|
-
|
|
550
498
|
@property
|
|
551
499
|
@pulumi.getter(name="externalAwsCloudwatchLogsUserConfig")
|
|
552
500
|
def external_aws_cloudwatch_logs_user_config(self) -> Optional[pulumi.Input['ServiceIntegrationExternalAwsCloudwatchLogsUserConfigArgs']]:
|
|
@@ -739,18 +687,6 @@ class _ServiceIntegrationState:
|
|
|
739
687
|
def source_service_name(self, value: Optional[pulumi.Input[str]]):
|
|
740
688
|
pulumi.set(self, "source_service_name", value)
|
|
741
689
|
|
|
742
|
-
@property
|
|
743
|
-
@pulumi.getter(name="sourceServiceProject")
|
|
744
|
-
def source_service_project(self) -> Optional[pulumi.Input[str]]:
|
|
745
|
-
"""
|
|
746
|
-
Source service project name
|
|
747
|
-
"""
|
|
748
|
-
return pulumi.get(self, "source_service_project")
|
|
749
|
-
|
|
750
|
-
@source_service_project.setter
|
|
751
|
-
def source_service_project(self, value: Optional[pulumi.Input[str]]):
|
|
752
|
-
pulumi.set(self, "source_service_project", value)
|
|
753
|
-
|
|
754
690
|
|
|
755
691
|
class ServiceIntegration(pulumi.CustomResource):
|
|
756
692
|
@overload
|
|
@@ -762,7 +698,6 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
762
698
|
datadog_user_config: Optional[pulumi.Input[Union['ServiceIntegrationDatadogUserConfigArgs', 'ServiceIntegrationDatadogUserConfigArgsDict']]] = None,
|
|
763
699
|
destination_endpoint_id: Optional[pulumi.Input[str]] = None,
|
|
764
700
|
destination_service_name: Optional[pulumi.Input[str]] = None,
|
|
765
|
-
destination_service_project: Optional[pulumi.Input[str]] = None,
|
|
766
701
|
external_aws_cloudwatch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationExternalAwsCloudwatchLogsUserConfigArgs', 'ServiceIntegrationExternalAwsCloudwatchLogsUserConfigArgsDict']]] = None,
|
|
767
702
|
external_aws_cloudwatch_metrics_user_config: Optional[pulumi.Input[Union['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs', 'ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgsDict']]] = None,
|
|
768
703
|
external_elasticsearch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs', 'ServiceIntegrationExternalElasticsearchLogsUserConfigArgsDict']]] = None,
|
|
@@ -778,7 +713,6 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
778
713
|
prometheus_user_config: Optional[pulumi.Input[Union['ServiceIntegrationPrometheusUserConfigArgs', 'ServiceIntegrationPrometheusUserConfigArgsDict']]] = None,
|
|
779
714
|
source_endpoint_id: Optional[pulumi.Input[str]] = None,
|
|
780
715
|
source_service_name: Optional[pulumi.Input[str]] = None,
|
|
781
|
-
source_service_project: Optional[pulumi.Input[str]] = None,
|
|
782
716
|
__props__=None):
|
|
783
717
|
"""
|
|
784
718
|
## Example Usage
|
|
@@ -824,7 +758,6 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
824
758
|
: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
|
|
825
759
|
:param pulumi.Input[str] destination_endpoint_id: Destination endpoint for the integration.
|
|
826
760
|
:param pulumi.Input[str] destination_service_name: Destination service for the integration.
|
|
827
|
-
:param pulumi.Input[str] destination_service_project: Destination service project name
|
|
828
761
|
:param pulumi.Input[Union['ServiceIntegrationExternalAwsCloudwatchLogsUserConfigArgs', 'ServiceIntegrationExternalAwsCloudwatchLogsUserConfigArgsDict']] external_aws_cloudwatch_logs_user_config: ExternalAwsCloudwatchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
829
762
|
:param pulumi.Input[Union['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs', 'ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgsDict']] external_aws_cloudwatch_metrics_user_config: ExternalAwsCloudwatchMetrics user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
830
763
|
:param pulumi.Input[Union['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs', 'ServiceIntegrationExternalElasticsearchLogsUserConfigArgsDict']] external_elasticsearch_logs_user_config: ExternalElasticsearchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
@@ -840,7 +773,6 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
840
773
|
:param pulumi.Input[Union['ServiceIntegrationPrometheusUserConfigArgs', 'ServiceIntegrationPrometheusUserConfigArgsDict']] prometheus_user_config: Prometheus user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
841
774
|
:param pulumi.Input[str] source_endpoint_id: Source endpoint for the integration.
|
|
842
775
|
:param pulumi.Input[str] source_service_name: Source service for the integration (if any)
|
|
843
|
-
:param pulumi.Input[str] source_service_project: Source service project name
|
|
844
776
|
"""
|
|
845
777
|
...
|
|
846
778
|
@overload
|
|
@@ -905,7 +837,6 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
905
837
|
datadog_user_config: Optional[pulumi.Input[Union['ServiceIntegrationDatadogUserConfigArgs', 'ServiceIntegrationDatadogUserConfigArgsDict']]] = None,
|
|
906
838
|
destination_endpoint_id: Optional[pulumi.Input[str]] = None,
|
|
907
839
|
destination_service_name: Optional[pulumi.Input[str]] = None,
|
|
908
|
-
destination_service_project: Optional[pulumi.Input[str]] = None,
|
|
909
840
|
external_aws_cloudwatch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationExternalAwsCloudwatchLogsUserConfigArgs', 'ServiceIntegrationExternalAwsCloudwatchLogsUserConfigArgsDict']]] = None,
|
|
910
841
|
external_aws_cloudwatch_metrics_user_config: Optional[pulumi.Input[Union['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs', 'ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgsDict']]] = None,
|
|
911
842
|
external_elasticsearch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs', 'ServiceIntegrationExternalElasticsearchLogsUserConfigArgsDict']]] = None,
|
|
@@ -921,7 +852,6 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
921
852
|
prometheus_user_config: Optional[pulumi.Input[Union['ServiceIntegrationPrometheusUserConfigArgs', 'ServiceIntegrationPrometheusUserConfigArgsDict']]] = None,
|
|
922
853
|
source_endpoint_id: Optional[pulumi.Input[str]] = None,
|
|
923
854
|
source_service_name: Optional[pulumi.Input[str]] = None,
|
|
924
|
-
source_service_project: Optional[pulumi.Input[str]] = None,
|
|
925
855
|
__props__=None):
|
|
926
856
|
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
927
857
|
if not isinstance(opts, pulumi.ResourceOptions):
|
|
@@ -936,7 +866,6 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
936
866
|
__props__.__dict__["datadog_user_config"] = datadog_user_config
|
|
937
867
|
__props__.__dict__["destination_endpoint_id"] = destination_endpoint_id
|
|
938
868
|
__props__.__dict__["destination_service_name"] = destination_service_name
|
|
939
|
-
__props__.__dict__["destination_service_project"] = destination_service_project
|
|
940
869
|
__props__.__dict__["external_aws_cloudwatch_logs_user_config"] = external_aws_cloudwatch_logs_user_config
|
|
941
870
|
__props__.__dict__["external_aws_cloudwatch_metrics_user_config"] = external_aws_cloudwatch_metrics_user_config
|
|
942
871
|
__props__.__dict__["external_elasticsearch_logs_user_config"] = external_elasticsearch_logs_user_config
|
|
@@ -956,7 +885,6 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
956
885
|
__props__.__dict__["prometheus_user_config"] = prometheus_user_config
|
|
957
886
|
__props__.__dict__["source_endpoint_id"] = source_endpoint_id
|
|
958
887
|
__props__.__dict__["source_service_name"] = source_service_name
|
|
959
|
-
__props__.__dict__["source_service_project"] = source_service_project
|
|
960
888
|
__props__.__dict__["integration_id"] = None
|
|
961
889
|
super(ServiceIntegration, __self__).__init__(
|
|
962
890
|
'aiven:index/serviceIntegration:ServiceIntegration',
|
|
@@ -973,7 +901,6 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
973
901
|
datadog_user_config: Optional[pulumi.Input[Union['ServiceIntegrationDatadogUserConfigArgs', 'ServiceIntegrationDatadogUserConfigArgsDict']]] = None,
|
|
974
902
|
destination_endpoint_id: Optional[pulumi.Input[str]] = None,
|
|
975
903
|
destination_service_name: Optional[pulumi.Input[str]] = None,
|
|
976
|
-
destination_service_project: Optional[pulumi.Input[str]] = None,
|
|
977
904
|
external_aws_cloudwatch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationExternalAwsCloudwatchLogsUserConfigArgs', 'ServiceIntegrationExternalAwsCloudwatchLogsUserConfigArgsDict']]] = None,
|
|
978
905
|
external_aws_cloudwatch_metrics_user_config: Optional[pulumi.Input[Union['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs', 'ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgsDict']]] = None,
|
|
979
906
|
external_elasticsearch_logs_user_config: Optional[pulumi.Input[Union['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs', 'ServiceIntegrationExternalElasticsearchLogsUserConfigArgsDict']]] = None,
|
|
@@ -989,8 +916,7 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
989
916
|
project: Optional[pulumi.Input[str]] = None,
|
|
990
917
|
prometheus_user_config: Optional[pulumi.Input[Union['ServiceIntegrationPrometheusUserConfigArgs', 'ServiceIntegrationPrometheusUserConfigArgsDict']]] = None,
|
|
991
918
|
source_endpoint_id: Optional[pulumi.Input[str]] = None,
|
|
992
|
-
source_service_name: Optional[pulumi.Input[str]] = None
|
|
993
|
-
source_service_project: Optional[pulumi.Input[str]] = None) -> 'ServiceIntegration':
|
|
919
|
+
source_service_name: Optional[pulumi.Input[str]] = None) -> 'ServiceIntegration':
|
|
994
920
|
"""
|
|
995
921
|
Get an existing ServiceIntegration resource's state with the given name, id, and optional extra
|
|
996
922
|
properties used to qualify the lookup.
|
|
@@ -1003,7 +929,6 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
1003
929
|
: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
|
|
1004
930
|
:param pulumi.Input[str] destination_endpoint_id: Destination endpoint for the integration.
|
|
1005
931
|
:param pulumi.Input[str] destination_service_name: Destination service for the integration.
|
|
1006
|
-
:param pulumi.Input[str] destination_service_project: Destination service project name
|
|
1007
932
|
:param pulumi.Input[Union['ServiceIntegrationExternalAwsCloudwatchLogsUserConfigArgs', 'ServiceIntegrationExternalAwsCloudwatchLogsUserConfigArgsDict']] external_aws_cloudwatch_logs_user_config: ExternalAwsCloudwatchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1008
933
|
:param pulumi.Input[Union['ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgs', 'ServiceIntegrationExternalAwsCloudwatchMetricsUserConfigArgsDict']] external_aws_cloudwatch_metrics_user_config: ExternalAwsCloudwatchMetrics user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1009
934
|
:param pulumi.Input[Union['ServiceIntegrationExternalElasticsearchLogsUserConfigArgs', 'ServiceIntegrationExternalElasticsearchLogsUserConfigArgsDict']] external_elasticsearch_logs_user_config: ExternalElasticsearchLogs user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
@@ -1020,7 +945,6 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
1020
945
|
:param pulumi.Input[Union['ServiceIntegrationPrometheusUserConfigArgs', 'ServiceIntegrationPrometheusUserConfigArgsDict']] prometheus_user_config: Prometheus user configurable settings. **Warning:** There's no way to reset advanced configuration options to default. Options that you add cannot be removed later
|
|
1021
946
|
:param pulumi.Input[str] source_endpoint_id: Source endpoint for the integration.
|
|
1022
947
|
:param pulumi.Input[str] source_service_name: Source service for the integration (if any)
|
|
1023
|
-
:param pulumi.Input[str] source_service_project: Source service project name
|
|
1024
948
|
"""
|
|
1025
949
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
1026
950
|
|
|
@@ -1031,7 +955,6 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
1031
955
|
__props__.__dict__["datadog_user_config"] = datadog_user_config
|
|
1032
956
|
__props__.__dict__["destination_endpoint_id"] = destination_endpoint_id
|
|
1033
957
|
__props__.__dict__["destination_service_name"] = destination_service_name
|
|
1034
|
-
__props__.__dict__["destination_service_project"] = destination_service_project
|
|
1035
958
|
__props__.__dict__["external_aws_cloudwatch_logs_user_config"] = external_aws_cloudwatch_logs_user_config
|
|
1036
959
|
__props__.__dict__["external_aws_cloudwatch_metrics_user_config"] = external_aws_cloudwatch_metrics_user_config
|
|
1037
960
|
__props__.__dict__["external_elasticsearch_logs_user_config"] = external_elasticsearch_logs_user_config
|
|
@@ -1048,7 +971,6 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
1048
971
|
__props__.__dict__["prometheus_user_config"] = prometheus_user_config
|
|
1049
972
|
__props__.__dict__["source_endpoint_id"] = source_endpoint_id
|
|
1050
973
|
__props__.__dict__["source_service_name"] = source_service_name
|
|
1051
|
-
__props__.__dict__["source_service_project"] = source_service_project
|
|
1052
974
|
return ServiceIntegration(resource_name, opts=opts, __props__=__props__)
|
|
1053
975
|
|
|
1054
976
|
@property
|
|
@@ -1091,14 +1013,6 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
1091
1013
|
"""
|
|
1092
1014
|
return pulumi.get(self, "destination_service_name")
|
|
1093
1015
|
|
|
1094
|
-
@property
|
|
1095
|
-
@pulumi.getter(name="destinationServiceProject")
|
|
1096
|
-
def destination_service_project(self) -> pulumi.Output[str]:
|
|
1097
|
-
"""
|
|
1098
|
-
Destination service project name
|
|
1099
|
-
"""
|
|
1100
|
-
return pulumi.get(self, "destination_service_project")
|
|
1101
|
-
|
|
1102
1016
|
@property
|
|
1103
1017
|
@pulumi.getter(name="externalAwsCloudwatchLogsUserConfig")
|
|
1104
1018
|
def external_aws_cloudwatch_logs_user_config(self) -> pulumi.Output[Optional['outputs.ServiceIntegrationExternalAwsCloudwatchLogsUserConfig']]:
|
|
@@ -1221,17 +1135,9 @@ class ServiceIntegration(pulumi.CustomResource):
|
|
|
1221
1135
|
|
|
1222
1136
|
@property
|
|
1223
1137
|
@pulumi.getter(name="sourceServiceName")
|
|
1224
|
-
def source_service_name(self) -> pulumi.Output[str]:
|
|
1138
|
+
def source_service_name(self) -> pulumi.Output[Optional[str]]:
|
|
1225
1139
|
"""
|
|
1226
1140
|
Source service for the integration (if any)
|
|
1227
1141
|
"""
|
|
1228
1142
|
return pulumi.get(self, "source_service_name")
|
|
1229
1143
|
|
|
1230
|
-
@property
|
|
1231
|
-
@pulumi.getter(name="sourceServiceProject")
|
|
1232
|
-
def source_service_project(self) -> pulumi.Output[str]:
|
|
1233
|
-
"""
|
|
1234
|
-
Source service project name
|
|
1235
|
-
"""
|
|
1236
|
-
return pulumi.get(self, "source_service_project")
|
|
1237
|
-
|
|
@@ -1,15 +1,15 @@
|
|
|
1
1
|
Metadata-Version: 2.1
|
|
2
2
|
Name: pulumi_aiven
|
|
3
|
-
Version: 6.30.
|
|
3
|
+
Version: 6.30.0a1733787482
|
|
4
4
|
Summary: A Pulumi package for creating and managing Aiven cloud resources.
|
|
5
5
|
License: Apache-2.0
|
|
6
6
|
Project-URL: Homepage, https://pulumi.io
|
|
7
7
|
Project-URL: Repository, https://github.com/pulumi/pulumi-aiven
|
|
8
8
|
Keywords: pulumi,aiven
|
|
9
|
-
Requires-Python: >=3.
|
|
9
|
+
Requires-Python: >=3.8
|
|
10
10
|
Description-Content-Type: text/markdown
|
|
11
11
|
Requires-Dist: parver>=0.2.1
|
|
12
|
-
Requires-Dist: pulumi<4.0.0,>=3.
|
|
12
|
+
Requires-Dist: pulumi<4.0.0,>=3.136.0
|
|
13
13
|
Requires-Dist: semver>=2.8.1
|
|
14
14
|
Requires-Dist: typing-extensions>=4.11; python_version < "3.11"
|
|
15
15
|
|
|
@@ -1,14 +1,11 @@
|
|
|
1
|
-
pulumi_aiven/__init__.py,sha256
|
|
2
|
-
pulumi_aiven/_inputs.py,sha256=
|
|
1
|
+
pulumi_aiven/__init__.py,sha256=-anWANtaCPyIecnRtC-D3YKw4sU1SXaiBDte8O6z-o4,19054
|
|
2
|
+
pulumi_aiven/_inputs.py,sha256=MVjkFj8zzZpIoFaHazmh7VjmL0759gBAFcJUSzfMOcM,1663418
|
|
3
3
|
pulumi_aiven/_utilities.py,sha256=-gxwnD6__OYdSf8jJgJijNuu-UHUwi5pJ1H7-eIHDhg,10504
|
|
4
4
|
pulumi_aiven/account.py,sha256=INnmCQlB-rYogssxx8zMP5hrPGS3DAr03GccSR_qSe8,17025
|
|
5
5
|
pulumi_aiven/account_authentication.py,sha256=6YMnR97tSsbDGTeC-4Z0WRG3PyRxeZZyi3o6X1BX3jg,37749
|
|
6
6
|
pulumi_aiven/account_team.py,sha256=hcV_T88ON6X0lgflCbEGDK-BwrmsBb40fHbz85VeS9I,13101
|
|
7
7
|
pulumi_aiven/account_team_member.py,sha256=fJdyOsgcC8M3HDUqvtNVqUt6xRvX4BXXsypovPlZEVQ,18773
|
|
8
|
-
pulumi_aiven/account_team_project.py,sha256=
|
|
9
|
-
pulumi_aiven/alloydbomni.py,sha256=mZYaO9O0evtsuv3VgJhTmLIQWfBB-CNqGTFXTLxP9I0,87725
|
|
10
|
-
pulumi_aiven/alloydbomni_database.py,sha256=n3rwkVX0ynylHMIn-OuwnKDxvRuCC3Gpvj_9SPxLJAU,18039
|
|
11
|
-
pulumi_aiven/alloydbomni_user.py,sha256=-sDD0LusLNx7IMhhFTG4WH3mNWoAPXX1N9RPY_Aj9dk,20850
|
|
8
|
+
pulumi_aiven/account_team_project.py,sha256=zld5CZJ0kOm5jWQWiLpYSKqnDKLvPXsguBWw3U-Pqfs,21187
|
|
12
9
|
pulumi_aiven/aws_privatelink.py,sha256=T_fAM8G1eLpgDiql6wO9kwTG28ecBQiRoZFAgXnR04M,15605
|
|
13
10
|
pulumi_aiven/aws_vpc_peering_connection.py,sha256=9o17R-3xjvBpT1cWmRl_1itRAaUgUOyFT8FZZ4V_y7I,18618
|
|
14
11
|
pulumi_aiven/azure_privatelink.py,sha256=hCrp07cYMAxJ1Ju8-7GnSI4bNJEm-vvVTT8LtrQZu2A,18156
|
|
@@ -17,7 +14,7 @@ pulumi_aiven/azure_vpc_peering_connection.py,sha256=oW8uZyvWpEarMy6RjPe1SI53KG2a
|
|
|
17
14
|
pulumi_aiven/billing_group.py,sha256=xm-sf3lv-Aiyve9CD_TQOLHZ_B-R5eR94vQ8tILTPk0,37449
|
|
18
15
|
pulumi_aiven/cassandra.py,sha256=_B45t3eFwHZvxvcSbH8NFd4euBcY8-P2TqoxIEhyRBk,83356
|
|
19
16
|
pulumi_aiven/cassandra_user.py,sha256=zeaHC8vwKH-8y4Es2573azsaLcVlNcwiwxiYVLaZbI8,18764
|
|
20
|
-
pulumi_aiven/clickhouse.py,sha256=
|
|
17
|
+
pulumi_aiven/clickhouse.py,sha256=XAfnxACn0StNnON40MndeCB3g-tctQ5K0SiFx6IPtW0,83220
|
|
21
18
|
pulumi_aiven/clickhouse_database.py,sha256=3AccenssqnWTpq-yiDu7S17E1KO0LBEE_ncAhFDOZ8Y,15724
|
|
22
19
|
pulumi_aiven/clickhouse_grant.py,sha256=WgLrOGgpx7bZ3bL5cRf_QiCJgOFPalwGTWh0orhj8wg,25522
|
|
23
20
|
pulumi_aiven/clickhouse_role.py,sha256=kXZpuUPpR8ZCnpyIT3z1cmAS48VlQaJ2fgUaeekCRYk,12661
|
|
@@ -35,10 +32,7 @@ pulumi_aiven/get_account.py,sha256=P8LwXLegN6hma4ixJemYEv-zJFCrwNNl2INh5TP3b9A,7
|
|
|
35
32
|
pulumi_aiven/get_account_authentication.py,sha256=-1lnvFiCBs7KRFO6B72dQZNVGnzlBtF_5AFjS54JADw,14549
|
|
36
33
|
pulumi_aiven/get_account_team.py,sha256=GBrYW75NSMBAhmvbxcWykucqJw9kvQ-_d-xevrKp6Pw,5692
|
|
37
34
|
pulumi_aiven/get_account_team_member.py,sha256=YhU8WpoRNk83PXLjvmDawHNl_GPBllLVMYsrt7bI2ts,8114
|
|
38
|
-
pulumi_aiven/get_account_team_project.py,sha256=
|
|
39
|
-
pulumi_aiven/get_alloydbomni.py,sha256=mr5YWXGQp0CMcZwpFj0F9wyBxBqxYHjBfh3jiRRGS7Q,26232
|
|
40
|
-
pulumi_aiven/get_alloydbomni_database.py,sha256=zfUOJytvP66qYTFkzNh9F955qmBki2Zpdfm1B6cEpPI,8124
|
|
41
|
-
pulumi_aiven/get_alloydbomni_user.py,sha256=Pijq1wynNUPFXVFsyDTq_jYDmdZK-UNUi08nMl5Saqc,9723
|
|
35
|
+
pulumi_aiven/get_account_team_project.py,sha256=GEP5qf882F8U3SMBWgKH_qQgoer1uvlgFq9U7TP2Nc4,6773
|
|
42
36
|
pulumi_aiven/get_aws_privatelink.py,sha256=LQSJhGmDSDq0BRyZxGSzolsGWxceT5K3D2Phwqx4auU,7494
|
|
43
37
|
pulumi_aiven/get_aws_vpc_peering_connection.py,sha256=cn79vqeia9XnLjr1qAeENsuFvjkbItFBUJghzKyDY6M,10021
|
|
44
38
|
pulumi_aiven/get_azure_privatelink.py,sha256=DYIafDIKxohj9eRUPyemnlJqr2DgHde5j8_sMSreGmQ,8804
|
|
@@ -47,12 +41,12 @@ pulumi_aiven/get_billing_group.py,sha256=gGNlo6cDv3EWDoiPfnBa18gky6XcSFdflKTx59b
|
|
|
47
41
|
pulumi_aiven/get_cassanda.py,sha256=5atu94690n89t43GLk6CdnSS35XNFTIY94sIcTLnJuQ,25689
|
|
48
42
|
pulumi_aiven/get_cassandra.py,sha256=kcurAGzW_s4cjWPAcUhTmpgQsakgLmF5qhxrkdm5G_E,25361
|
|
49
43
|
pulumi_aiven/get_cassandra_user.py,sha256=QispY1inYDVdir_TKEss7pZMMjNcN4jpSf3FeuR7y1Y,9105
|
|
50
|
-
pulumi_aiven/get_clickhouse.py,sha256=
|
|
44
|
+
pulumi_aiven/get_clickhouse.py,sha256=dSHjtHJJxXvurU0stbqH4uij-jVeZ6Xz_RmgqSGYGC4,25386
|
|
51
45
|
pulumi_aiven/get_clickhouse_database.py,sha256=60ctSHunWxEtd5I2h_XTdIPVJN52-6A3sIaRITSD45I,7432
|
|
52
46
|
pulumi_aiven/get_clickhouse_user.py,sha256=eYI1x3zX-ph1cC0ej7Pd0BaCkXTjYW07NgXryJ_3T50,8166
|
|
53
47
|
pulumi_aiven/get_connection_pool.py,sha256=NGP6_3aahmQA8son5JKDbU67xsdMsl2LmKtr8z0qwXU,10161
|
|
54
48
|
pulumi_aiven/get_dragonfly.py,sha256=8XNxZYGYzbONfR57oW26FBDcex7xpeUmggJoehGcxzc,25353
|
|
55
|
-
pulumi_aiven/get_external_identity.py,sha256=
|
|
49
|
+
pulumi_aiven/get_external_identity.py,sha256=UsoPyphoXqoNcwGBnlM5OEE062jUck27awi2mynm-F4,7230
|
|
56
50
|
pulumi_aiven/get_flink.py,sha256=tiTQQ5lTVbOM_JcqRVkRvf3ld5XrNw4NY0kelb4LDxY,25073
|
|
57
51
|
pulumi_aiven/get_flink_application.py,sha256=bc5S6SIKlms5elHkTrLPA3q8B-NFEOEP3aUDKMG_9Ls,9308
|
|
58
52
|
pulumi_aiven/get_flink_application_version.py,sha256=dpN6JPJxyPR8taxf9-JS7SVLW9IWT7HdismpnVGZCDo,12495
|
|
@@ -94,12 +88,12 @@ pulumi_aiven/get_pg.py,sha256=B9yOq-ETPbZijDF8MD6z1lR1F4z8vV76DhvI0Yq_Ppw,24891
|
|
|
94
88
|
pulumi_aiven/get_pg_database.py,sha256=nbthL5lzecWQBNX5zgYaVe4vcsAID_sazsyWvNHSL4c,8761
|
|
95
89
|
pulumi_aiven/get_pg_user.py,sha256=m1_Ni-H0sA1ko0tjF9Xc2GIZKg_Oopkrr7Mq-xzogK4,9694
|
|
96
90
|
pulumi_aiven/get_project.py,sha256=fOV7n7uiTuuIKKFLPnNvCQjtD7ZpG0_RrDAtV0OqKz8,13799
|
|
97
|
-
pulumi_aiven/get_project_user.py,sha256=
|
|
91
|
+
pulumi_aiven/get_project_user.py,sha256=9ccy8MwFnp_cq2jF_ozDP3nLits9kJzt4WMqoSPGaLc,7238
|
|
98
92
|
pulumi_aiven/get_project_vpc.py,sha256=JYEsp1qhlCsN0EFgeFpkSdrpM8jrzg2aFxMfxR2otKA,7213
|
|
99
93
|
pulumi_aiven/get_redis.py,sha256=zlb0mLuZM8YAt3nLVboHaIdnBjP4J6DI9_Lt3VgPjrE,25034
|
|
100
94
|
pulumi_aiven/get_redis_user.py,sha256=DGRj03Y2DKtq0KDwczZxXeL55qjUrPZ7kYdM3kImsPg,10955
|
|
101
95
|
pulumi_aiven/get_service_component.py,sha256=jEeTHWD9n_6AZRIOdaKELL6uJzfi5dgIfIoYOd9SnvY,12259
|
|
102
|
-
pulumi_aiven/get_service_integration.py,sha256=
|
|
96
|
+
pulumi_aiven/get_service_integration.py,sha256=3FEbQftJDS3mIB04Q7nizhHeo59_82VQk0xJgjew_hY,27291
|
|
103
97
|
pulumi_aiven/get_service_integration_endpoint.py,sha256=AmQrYvVJesxkeX2RXnjEniAcWd_PF5jWbjU3X6u6yXo,26237
|
|
104
98
|
pulumi_aiven/get_thanos.py,sha256=LpoHyf088LoIyDtna4qItc0-zAcUgh2unGI5I_FYh9w,25112
|
|
105
99
|
pulumi_aiven/get_transit_gateway_vpc_attachment.py,sha256=TJ1b7PCUf7KbiWquLmPVia2GcHwMHYEiTqA6H3yaAYk,10339
|
|
@@ -110,11 +104,11 @@ pulumi_aiven/influx_db.py,sha256=nP49oqt1YGVPOj1SltPBQKI2BApN8oNgW5bepj_AV04,837
|
|
|
110
104
|
pulumi_aiven/influxdb_database.py,sha256=R6b3ScHJ7dkjMjhn8o0znzLf51pb1au-a2Wa-HH9L1o,14214
|
|
111
105
|
pulumi_aiven/influxdb_user.py,sha256=APHeb0ngQl2c4Vc56J3rxBEuYtlt-evdadznvEQhk2Y,18400
|
|
112
106
|
pulumi_aiven/kafka.py,sha256=gFioDdFwDo25c9iGQEwga0CvB8WE9x_r6824S2MTlNw,88182
|
|
113
|
-
pulumi_aiven/kafka_acl.py,sha256
|
|
107
|
+
pulumi_aiven/kafka_acl.py,sha256=-7UE360QEcPiXUtMfkegqIPVglQkDM2MgkhcuGVCNfM,18930
|
|
114
108
|
pulumi_aiven/kafka_connect.py,sha256=dVkzYMb-i0bxMxF1tkIrLXUjpbZp4t90_mE9QHgn7nU,84585
|
|
115
109
|
pulumi_aiven/kafka_connector.py,sha256=BwN92oSatmqxaVO_qPymbY-5VNf5rVrxCJQZ66Fwnqk,25050
|
|
116
110
|
pulumi_aiven/kafka_mirror_maker.py,sha256=m22G5cr6p31cYw3ishodvUQAxrBCvrpieHzcUAv-kr0,82169
|
|
117
|
-
pulumi_aiven/kafka_native_acl.py,sha256=
|
|
111
|
+
pulumi_aiven/kafka_native_acl.py,sha256=t0GmrM3rMpPPA0_E2uiP1y6Fhszx056P4s5x05LUpKk,29067
|
|
118
112
|
pulumi_aiven/kafka_schema.py,sha256=lz5TNa-kwI9c7Mthi_cIqXooMz-HRmI-Kb5vb4KZdak,22834
|
|
119
113
|
pulumi_aiven/kafka_schema_configuration.py,sha256=qXnCuKC8AFa1arFZJ4cg-KQEQs65TOvl6-mhst-KHqU,14200
|
|
120
114
|
pulumi_aiven/kafka_schema_registry_acl.py,sha256=3MseIwSoEn0dYwePspK68rVwnpC2gHItmNgrVv0oohE,19623
|
|
@@ -135,25 +129,25 @@ pulumi_aiven/opensearch_user.py,sha256=9nV4kt7Lo1TkLoQK6F0wmt7uJtqXvQhQTKACEVfqp
|
|
|
135
129
|
pulumi_aiven/organization.py,sha256=zXB949qBPuAW05VXXoFkIe5ZlEBwZTVlJDH10UGGTqo,11118
|
|
136
130
|
pulumi_aiven/organization_application_user.py,sha256=DvyL7Ujh7oGysLAT6WVSFk02iYV-1H8KzJNlSX5YkT0,15193
|
|
137
131
|
pulumi_aiven/organization_application_user_token.py,sha256=lrKPE0rZ_QZ2sWqgUgTN0c99ZWBJS2L4Sdkii9G01U8,33082
|
|
138
|
-
pulumi_aiven/organization_group_project.py,sha256=
|
|
139
|
-
pulumi_aiven/organization_permission.py,sha256=
|
|
132
|
+
pulumi_aiven/organization_group_project.py,sha256=lC70_4wwwHbj5hyh9Q_LaMfDJd8Wi4rKApZS3a3g-6s,20703
|
|
133
|
+
pulumi_aiven/organization_permission.py,sha256=bp2vhwHhVEwoR4JuB-_tCh5xAVxpqqrlKI_Qq5kh5TM,15701
|
|
140
134
|
pulumi_aiven/organization_user.py,sha256=4FHd1BCXslZnBdd9r_TpVaaLWdzTngJG5wFB695GnIc,15729
|
|
141
135
|
pulumi_aiven/organization_user_group.py,sha256=133e0-VfMmTnWDZPPnS4xzE-UU6R4PY4am7zMGMUrGo,14832
|
|
142
136
|
pulumi_aiven/organization_user_group_member.py,sha256=5iPu5lCGx5y-utd9w2iCKc2E7PHRTFnVVAF3j23pstc,14784
|
|
143
137
|
pulumi_aiven/organizational_unit.py,sha256=OnowaL-y9MDhQAQeTxuv9gmAC8iau2ZVnKCBdbNJfo8,11639
|
|
144
|
-
pulumi_aiven/outputs.py,sha256=
|
|
138
|
+
pulumi_aiven/outputs.py,sha256=MmymQB79eOANv1a30mWHRgeipiHhT8hMIgAbW424ZlI,2148476
|
|
145
139
|
pulumi_aiven/pg.py,sha256=BxqlB_ztH5jyvRw7QdQWPaxZ6QMnzPsYqBroLXFrAG0,80239
|
|
146
140
|
pulumi_aiven/pg_database.py,sha256=bnts8s-gR6mPTf5fHY3EVPRqiHhze8roG6V16h2-Llc,20153
|
|
147
141
|
pulumi_aiven/pg_user.py,sha256=__gTbX36EdjtCthLm09hZn2PRerlPt7jpRCQuzqJ4k0,22036
|
|
148
142
|
pulumi_aiven/project.py,sha256=xsogAQa9_PwhfTou7-e8ACsaaTqGmCh_S5rkCVKXNag,45569
|
|
149
|
-
pulumi_aiven/project_user.py,sha256=
|
|
143
|
+
pulumi_aiven/project_user.py,sha256=wG1tVybAuh2-2XbvX5eT5XqO-mZL36Lve6Ijj2Oz5k0,19671
|
|
150
144
|
pulumi_aiven/project_vpc.py,sha256=rcWiFl2dHdwrXFTZ2WYLpxiUZX-q9tPPZVUvl2bjWAQ,14082
|
|
151
145
|
pulumi_aiven/provider.py,sha256=N7Y-HFsoDOWeKC6iV1NEkU07Eg9ZV8d4FKFHKu5jHbY,5055
|
|
152
|
-
pulumi_aiven/pulumi-plugin.json,sha256=
|
|
146
|
+
pulumi_aiven/pulumi-plugin.json,sha256=FAdUfwpe7-3LIeW-JocTkIUgGVBUXUuQ0KHFPuv5J80,82
|
|
153
147
|
pulumi_aiven/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
154
148
|
pulumi_aiven/redis.py,sha256=BlfN_uoyo6neIEaS5gzPiJNkBueu08548uVJ9YimIPA,82140
|
|
155
149
|
pulumi_aiven/redis_user.py,sha256=WHnebXTj2UgkTtZf3I6-zqyNQtla131jHAnUJaF1DUA,29358
|
|
156
|
-
pulumi_aiven/service_integration.py,sha256=
|
|
150
|
+
pulumi_aiven/service_integration.py,sha256=HC2PqILq7PT0ccmPMPBMOMriEqZJORsJG7BLgiCzpAY,89556
|
|
157
151
|
pulumi_aiven/service_integration_endpoint.py,sha256=XzVlistXtdvl2lkcAUVzctffBwLw2Bnvewwx2DedyuM,100259
|
|
158
152
|
pulumi_aiven/static_ip.py,sha256=gs5Ps9wcnK8ont6Ps0jZTMmkhNBNMXzOt4a3uF98p38,14102
|
|
159
153
|
pulumi_aiven/thanos.py,sha256=3CUGk9YtNfo740bis3bhI7CPyvTKDarqO8M6AS9gGMY,82423
|
|
@@ -163,7 +157,7 @@ pulumi_aiven/valkey_user.py,sha256=fiaXYiB5NUMWh3Q3goGrGU6eYRU26z7BunaJiaxrPmY,3
|
|
|
163
157
|
pulumi_aiven/config/__init__.py,sha256=cfY0smRZD3fDVc93ZIAxEl_IM2pynmXB52n3Ahzi030,285
|
|
164
158
|
pulumi_aiven/config/__init__.pyi,sha256=6XkZH3EU98MVgoMLPFHFfEK17BQQzz0S0QFMh1FZrs0,639
|
|
165
159
|
pulumi_aiven/config/vars.py,sha256=jRqbkEfNSP8ga5cnbMhAzHUUb7ahIUROUqR5_KGkobM,832
|
|
166
|
-
pulumi_aiven-6.30.
|
|
167
|
-
pulumi_aiven-6.30.
|
|
168
|
-
pulumi_aiven-6.30.
|
|
169
|
-
pulumi_aiven-6.30.
|
|
160
|
+
pulumi_aiven-6.30.0a1733787482.dist-info/METADATA,sha256=4y_48gflMIA6QRhOMZl7y8uqaCbTp8aaR5sso3oksWc,2595
|
|
161
|
+
pulumi_aiven-6.30.0a1733787482.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
|
|
162
|
+
pulumi_aiven-6.30.0a1733787482.dist-info/top_level.txt,sha256=4rjz_Hec4Y2PFX4LhJ-JcnMU5H7z-y7r1yiK_xEduWU,13
|
|
163
|
+
pulumi_aiven-6.30.0a1733787482.dist-info/RECORD,,
|