pulumi-aiven 6.33.0a1738213611__py3-none-any.whl → 6.34.0a1738300020__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 +27 -0
- pulumi_aiven/_inputs.py +677 -21
- pulumi_aiven/account_team_project.py +7 -7
- pulumi_aiven/connection_pool.py +7 -7
- pulumi_aiven/flink_application.py +2 -2
- pulumi_aiven/flink_application_deployment.py +2 -2
- pulumi_aiven/flink_jar_application.py +506 -0
- pulumi_aiven/flink_jar_application_deployment.py +808 -0
- pulumi_aiven/flink_jar_application_version.py +537 -0
- pulumi_aiven/get_account_team_project.py +1 -1
- pulumi_aiven/get_connection_pool.py +1 -1
- pulumi_aiven/get_kafka_mirror_maker.py +6 -6
- pulumi_aiven/get_mirror_maker_replication_flow.py +13 -13
- pulumi_aiven/get_mysql_user.py +1 -1
- pulumi_aiven/get_open_search_acl_rule.py +3 -3
- pulumi_aiven/get_project_user.py +1 -1
- pulumi_aiven/get_service_component.py +3 -3
- pulumi_aiven/get_service_integration_endpoint.py +1 -1
- pulumi_aiven/kafka_mirror_maker.py +10 -10
- pulumi_aiven/kafka_native_acl.py +7 -7
- pulumi_aiven/m3_db.py +14 -2
- pulumi_aiven/m3db_user.py +14 -2
- pulumi_aiven/mirror_maker_replication_flow.py +59 -59
- pulumi_aiven/mysql_user.py +7 -7
- pulumi_aiven/open_search_acl_rule.py +7 -7
- pulumi_aiven/organization_application_user_token.py +7 -7
- pulumi_aiven/organization_group_project.py +7 -7
- pulumi_aiven/organization_permission.py +7 -7
- pulumi_aiven/outputs.py +536 -26
- pulumi_aiven/project_user.py +7 -7
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/redis.py +18 -2
- pulumi_aiven/redis_user.py +18 -2
- pulumi_aiven/service_integration_endpoint.py +7 -7
- {pulumi_aiven-6.33.0a1738213611.dist-info → pulumi_aiven-6.34.0a1738300020.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.33.0a1738213611.dist-info → pulumi_aiven-6.34.0a1738300020.dist-info}/RECORD +38 -35
- {pulumi_aiven-6.33.0a1738213611.dist-info → pulumi_aiven-6.34.0a1738300020.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.33.0a1738213611.dist-info → pulumi_aiven-6.34.0a1738300020.dist-info}/top_level.txt +0 -0
|
@@ -83,7 +83,7 @@ class GetMirrorMakerReplicationFlowResult:
|
|
|
83
83
|
@pulumi.getter(name="configPropertiesExcludes")
|
|
84
84
|
def config_properties_excludes(self) -> Sequence[str]:
|
|
85
85
|
"""
|
|
86
|
-
List of topic configuration properties and
|
|
86
|
+
List of topic configuration properties and regular expressions to not replicate. The properties that are not replicated by default are: `follower.replication.throttled.replicas`, `leader.replication.throttled.replicas`, `message.timestamp.difference.max.ms`, `message.timestamp.type`, `unclean.leader.election.enable`, and `min.insync.replicas`. Setting this overrides the defaults. For example, to enable replication for 'min.insync.replicas' and 'unclean.leader.election.enable' set this to: ["follower\\\\.replication\\\\.throttled\\\\.replicas", "leader\\\\.replication\\\\.throttled\\\\.replicas", "message\\\\.timestamp\\\\.difference\\\\.max\\\\.ms", "message\\\\.timestamp\\\\.type"]
|
|
87
87
|
"""
|
|
88
88
|
return pulumi.get(self, "config_properties_excludes")
|
|
89
89
|
|
|
@@ -91,7 +91,7 @@ class GetMirrorMakerReplicationFlowResult:
|
|
|
91
91
|
@pulumi.getter(name="emitBackwardHeartbeatsEnabled")
|
|
92
92
|
def emit_backward_heartbeats_enabled(self) -> bool:
|
|
93
93
|
"""
|
|
94
|
-
|
|
94
|
+
Enables emitting heartbeats to the direction opposite to the flow, i.e. to the source cluster. The default value is `false`.
|
|
95
95
|
"""
|
|
96
96
|
return pulumi.get(self, "emit_backward_heartbeats_enabled")
|
|
97
97
|
|
|
@@ -99,7 +99,7 @@ class GetMirrorMakerReplicationFlowResult:
|
|
|
99
99
|
@pulumi.getter(name="emitHeartbeatsEnabled")
|
|
100
100
|
def emit_heartbeats_enabled(self) -> bool:
|
|
101
101
|
"""
|
|
102
|
-
|
|
102
|
+
Enables emitting heartbeats to the target cluster. The default value is `false`.
|
|
103
103
|
"""
|
|
104
104
|
return pulumi.get(self, "emit_heartbeats_enabled")
|
|
105
105
|
|
|
@@ -107,7 +107,7 @@ class GetMirrorMakerReplicationFlowResult:
|
|
|
107
107
|
@pulumi.getter
|
|
108
108
|
def enable(self) -> bool:
|
|
109
109
|
"""
|
|
110
|
-
|
|
110
|
+
Enables replication flow for a service.
|
|
111
111
|
"""
|
|
112
112
|
return pulumi.get(self, "enable")
|
|
113
113
|
|
|
@@ -115,7 +115,7 @@ class GetMirrorMakerReplicationFlowResult:
|
|
|
115
115
|
@pulumi.getter(name="exactlyOnceDeliveryEnabled")
|
|
116
116
|
def exactly_once_delivery_enabled(self) -> bool:
|
|
117
117
|
"""
|
|
118
|
-
|
|
118
|
+
Enables exactly-once message delivery. Set this to `enabled` for new replications. The default value is `false`.
|
|
119
119
|
"""
|
|
120
120
|
return pulumi.get(self, "exactly_once_delivery_enabled")
|
|
121
121
|
|
|
@@ -203,7 +203,7 @@ class GetMirrorMakerReplicationFlowResult:
|
|
|
203
203
|
@pulumi.getter
|
|
204
204
|
def topics(self) -> Sequence[str]:
|
|
205
205
|
"""
|
|
206
|
-
|
|
206
|
+
The topics to include in the replica defined by a [list of regular expressions in Java format](https://aiven.io/docs/products/kafka/kafka-mirrormaker/concepts/replication-flow-topics-regex).
|
|
207
207
|
"""
|
|
208
208
|
return pulumi.get(self, "topics")
|
|
209
209
|
|
|
@@ -211,7 +211,7 @@ class GetMirrorMakerReplicationFlowResult:
|
|
|
211
211
|
@pulumi.getter(name="topicsBlacklists")
|
|
212
212
|
def topics_blacklists(self) -> Sequence[str]:
|
|
213
213
|
"""
|
|
214
|
-
|
|
214
|
+
The topics to exclude from the replica defined by a [list of regular expressions in Java format](https://aiven.io/docs/products/kafka/kafka-mirrormaker/concepts/replication-flow-topics-regex).
|
|
215
215
|
"""
|
|
216
216
|
return pulumi.get(self, "topics_blacklists")
|
|
217
217
|
|
|
@@ -247,7 +247,7 @@ def get_mirror_maker_replication_flow(project: Optional[str] = None,
|
|
|
247
247
|
target_cluster: Optional[str] = None,
|
|
248
248
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetMirrorMakerReplicationFlowResult:
|
|
249
249
|
"""
|
|
250
|
-
|
|
250
|
+
Gets information about an [Aiven for Apache Kafka® MirrorMaker 2](https://aiven.io/docs/products/kafka/kafka-mirrormaker) replication flow.
|
|
251
251
|
|
|
252
252
|
## Example Usage
|
|
253
253
|
|
|
@@ -255,8 +255,8 @@ def get_mirror_maker_replication_flow(project: Optional[str] = None,
|
|
|
255
255
|
import pulumi
|
|
256
256
|
import pulumi_aiven as aiven
|
|
257
257
|
|
|
258
|
-
|
|
259
|
-
service_name=
|
|
258
|
+
example_replication_flow = aiven.get_mirror_maker_replication_flow(project=example_project["project"],
|
|
259
|
+
service_name=example_kafka["serviceName"],
|
|
260
260
|
source_cluster=source["serviceName"],
|
|
261
261
|
target_cluster=target["serviceName"])
|
|
262
262
|
```
|
|
@@ -299,7 +299,7 @@ def get_mirror_maker_replication_flow_output(project: Optional[pulumi.Input[str]
|
|
|
299
299
|
target_cluster: Optional[pulumi.Input[str]] = None,
|
|
300
300
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetMirrorMakerReplicationFlowResult]:
|
|
301
301
|
"""
|
|
302
|
-
|
|
302
|
+
Gets information about an [Aiven for Apache Kafka® MirrorMaker 2](https://aiven.io/docs/products/kafka/kafka-mirrormaker) replication flow.
|
|
303
303
|
|
|
304
304
|
## Example Usage
|
|
305
305
|
|
|
@@ -307,8 +307,8 @@ def get_mirror_maker_replication_flow_output(project: Optional[pulumi.Input[str]
|
|
|
307
307
|
import pulumi
|
|
308
308
|
import pulumi_aiven as aiven
|
|
309
309
|
|
|
310
|
-
|
|
311
|
-
service_name=
|
|
310
|
+
example_replication_flow = aiven.get_mirror_maker_replication_flow(project=example_project["project"],
|
|
311
|
+
service_name=example_kafka["serviceName"],
|
|
312
312
|
source_cluster=source["serviceName"],
|
|
313
313
|
target_cluster=target["serviceName"])
|
|
314
314
|
```
|
pulumi_aiven/get_mysql_user.py
CHANGED
|
@@ -75,7 +75,7 @@ class GetMysqlUserResult:
|
|
|
75
75
|
@pulumi.getter
|
|
76
76
|
def authentication(self) -> str:
|
|
77
77
|
"""
|
|
78
|
-
Authentication details. The possible values are `
|
|
78
|
+
Authentication details. The possible values are `caching_sha2_password`, `mysql_native_password` and `null`.
|
|
79
79
|
"""
|
|
80
80
|
return pulumi.get(self, "authentication")
|
|
81
81
|
|
|
@@ -66,7 +66,7 @@ class GetOpenSearchAclRuleResult:
|
|
|
66
66
|
@pulumi.getter
|
|
67
67
|
def permission(self) -> str:
|
|
68
68
|
"""
|
|
69
|
-
The permissions for this ACL entry. The possible values are `
|
|
69
|
+
The permissions for this ACL entry. The possible values are `admin`, `deny`, `read`, `readwrite` and `write`.
|
|
70
70
|
"""
|
|
71
71
|
return pulumi.get(self, "permission")
|
|
72
72
|
|
|
@@ -132,7 +132,7 @@ def get_open_search_acl_rule(index: Optional[str] = None,
|
|
|
132
132
|
|
|
133
133
|
|
|
134
134
|
:param str index: The index pattern for this ACL entry. Maximum length: `249`. Changing this property forces recreation of the resource.
|
|
135
|
-
:param str permission: The permissions for this ACL entry. The possible values are `
|
|
135
|
+
:param str permission: The permissions for this ACL entry. The possible values are `admin`, `deny`, `read`, `readwrite` and `write`.
|
|
136
136
|
:param 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.
|
|
137
137
|
:param str service_name: The name of the service that 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.
|
|
138
138
|
:param str username: The username for the ACL entry. Maximum length: `40`. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
|
@@ -176,7 +176,7 @@ def get_open_search_acl_rule_output(index: Optional[pulumi.Input[str]] = None,
|
|
|
176
176
|
|
|
177
177
|
|
|
178
178
|
:param str index: The index pattern for this ACL entry. Maximum length: `249`. Changing this property forces recreation of the resource.
|
|
179
|
-
:param str permission: The permissions for this ACL entry. The possible values are `
|
|
179
|
+
:param str permission: The permissions for this ACL entry. The possible values are `admin`, `deny`, `read`, `readwrite` and `write`.
|
|
180
180
|
:param 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.
|
|
181
181
|
:param str service_name: The name of the service that 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.
|
|
182
182
|
:param str username: The username for the ACL entry. Maximum length: `40`. To set up proper dependencies please refer to this variable as a reference. Changing this property forces recreation of the resource.
|
pulumi_aiven/get_project_user.py
CHANGED
|
@@ -71,7 +71,7 @@ class GetProjectUserResult:
|
|
|
71
71
|
@pulumi.getter(name="memberType")
|
|
72
72
|
def member_type(self) -> str:
|
|
73
73
|
"""
|
|
74
|
-
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: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`.
|
|
74
|
+
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: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`.
|
|
75
75
|
"""
|
|
76
76
|
return pulumi.get(self, "member_type")
|
|
77
77
|
|
|
@@ -110,7 +110,7 @@ class GetServiceComponentResult:
|
|
|
110
110
|
@pulumi.getter
|
|
111
111
|
def route(self) -> Optional[str]:
|
|
112
112
|
"""
|
|
113
|
-
Network access route. The possible values are `dynamic`, `
|
|
113
|
+
Network access route. The possible values are `dynamic`, `private`, `privatelink` and `public`.
|
|
114
114
|
"""
|
|
115
115
|
return pulumi.get(self, "route")
|
|
116
116
|
|
|
@@ -187,7 +187,7 @@ def get_service_component(component: Optional[str] = None,
|
|
|
187
187
|
:param str component: Service component name
|
|
188
188
|
:param str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component. The possible values are `certificate` and `sasl`.
|
|
189
189
|
:param str project: Project name
|
|
190
|
-
:param str route: Network access route. The possible values are `dynamic`, `
|
|
190
|
+
:param str route: Network access route. The possible values are `dynamic`, `private`, `privatelink` and `public`.
|
|
191
191
|
:param str service_name: Service name
|
|
192
192
|
:param bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components that may disable encryption
|
|
193
193
|
:param str usage: DNS usage name. The possible values are `disaster_recovery`, `primary` and `replica`.
|
|
@@ -244,7 +244,7 @@ def get_service_component_output(component: Optional[pulumi.Input[str]] = None,
|
|
|
244
244
|
:param str component: Service component name
|
|
245
245
|
:param str kafka_authentication_method: Kafka authentication method. This is a value specific to the 'kafka' service component. The possible values are `certificate` and `sasl`.
|
|
246
246
|
:param str project: Project name
|
|
247
|
-
:param str route: Network access route. The possible values are `dynamic`, `
|
|
247
|
+
:param str route: Network access route. The possible values are `dynamic`, `private`, `privatelink` and `public`.
|
|
248
248
|
:param str service_name: Service name
|
|
249
249
|
:param bool ssl: Whether the endpoint is encrypted or accepts plaintext. By default endpoints are always encrypted and this property is only included for service components that may disable encryption
|
|
250
250
|
:param str usage: DNS usage name. The possible values are `disaster_recovery`, `primary` and `replica`.
|
|
@@ -137,7 +137,7 @@ class GetServiceIntegrationEndpointResult:
|
|
|
137
137
|
@pulumi.getter(name="endpointType")
|
|
138
138
|
def endpoint_type(self) -> str:
|
|
139
139
|
"""
|
|
140
|
-
The type of service integration endpoint. The possible values are `autoscaler`, `datadog`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_aws_s3`, `external_clickhouse`, `external_elasticsearch_logs`, `external_google_cloud_bigquery`, `external_google_cloud_logging`, `external_kafka`, `external_mysql`, `external_opensearch_logs`, `external_postgresql`, `external_prometheus`, `external_redis`, `external_schema_registry`, `external_sumologic_logs`, `jolokia`, `prometheus` and `rsyslog`.
|
|
140
|
+
The type of service integration endpoint. The possible values are `autoscaler`, `datadog`, `external_aws_cloudwatch_logs`, `external_aws_cloudwatch_metrics`, `external_aws_s3`, `external_azure_blob_storage`, `external_clickhouse`, `external_elasticsearch_logs`, `external_google_cloud_bigquery`, `external_google_cloud_logging`, `external_kafka`, `external_mysql`, `external_opensearch_logs`, `external_postgresql`, `external_prometheus`, `external_redis`, `external_schema_registry`, `external_sumologic_logs`, `jolokia`, `prometheus` and `rsyslog`.
|
|
141
141
|
"""
|
|
142
142
|
return pulumi.get(self, "endpoint_type")
|
|
143
143
|
|
|
@@ -737,7 +737,7 @@ class KafkaMirrorMaker(pulumi.CustomResource):
|
|
|
737
737
|
termination_protection: Optional[pulumi.Input[bool]] = None,
|
|
738
738
|
__props__=None):
|
|
739
739
|
"""
|
|
740
|
-
|
|
740
|
+
Creates and manages an [Aiven for Apache Kafka® MirrorMaker 2](https://aiven.io/docs/products/kafka/kafka-mirrormaker) service.
|
|
741
741
|
|
|
742
742
|
## Example Usage
|
|
743
743
|
|
|
@@ -745,11 +745,11 @@ class KafkaMirrorMaker(pulumi.CustomResource):
|
|
|
745
745
|
import pulumi
|
|
746
746
|
import pulumi_aiven as aiven
|
|
747
747
|
|
|
748
|
-
|
|
749
|
-
project=
|
|
748
|
+
example_mirrormaker = aiven.KafkaMirrorMaker("example_mirrormaker",
|
|
749
|
+
project=example_project["project"],
|
|
750
750
|
cloud_name="google-europe-west1",
|
|
751
751
|
plan="startup-4",
|
|
752
|
-
service_name="
|
|
752
|
+
service_name="example-mirrormaker-service",
|
|
753
753
|
kafka_mirrormaker_user_config={
|
|
754
754
|
"ip_filters": ["0.0.0.0/0"],
|
|
755
755
|
"kafka_mirrormaker": {
|
|
@@ -763,7 +763,7 @@ class KafkaMirrorMaker(pulumi.CustomResource):
|
|
|
763
763
|
## Import
|
|
764
764
|
|
|
765
765
|
```sh
|
|
766
|
-
$ pulumi import aiven:index/kafkaMirrorMaker:KafkaMirrorMaker
|
|
766
|
+
$ pulumi import aiven:index/kafkaMirrorMaker:KafkaMirrorMaker example_mirrormaker PROJECT/SERVICE_NAME
|
|
767
767
|
```
|
|
768
768
|
|
|
769
769
|
:param str resource_name: The name of the resource.
|
|
@@ -791,7 +791,7 @@ class KafkaMirrorMaker(pulumi.CustomResource):
|
|
|
791
791
|
args: KafkaMirrorMakerArgs,
|
|
792
792
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
793
793
|
"""
|
|
794
|
-
|
|
794
|
+
Creates and manages an [Aiven for Apache Kafka® MirrorMaker 2](https://aiven.io/docs/products/kafka/kafka-mirrormaker) service.
|
|
795
795
|
|
|
796
796
|
## Example Usage
|
|
797
797
|
|
|
@@ -799,11 +799,11 @@ class KafkaMirrorMaker(pulumi.CustomResource):
|
|
|
799
799
|
import pulumi
|
|
800
800
|
import pulumi_aiven as aiven
|
|
801
801
|
|
|
802
|
-
|
|
803
|
-
project=
|
|
802
|
+
example_mirrormaker = aiven.KafkaMirrorMaker("example_mirrormaker",
|
|
803
|
+
project=example_project["project"],
|
|
804
804
|
cloud_name="google-europe-west1",
|
|
805
805
|
plan="startup-4",
|
|
806
|
-
service_name="
|
|
806
|
+
service_name="example-mirrormaker-service",
|
|
807
807
|
kafka_mirrormaker_user_config={
|
|
808
808
|
"ip_filters": ["0.0.0.0/0"],
|
|
809
809
|
"kafka_mirrormaker": {
|
|
@@ -817,7 +817,7 @@ class KafkaMirrorMaker(pulumi.CustomResource):
|
|
|
817
817
|
## Import
|
|
818
818
|
|
|
819
819
|
```sh
|
|
820
|
-
$ pulumi import aiven:index/kafkaMirrorMaker:KafkaMirrorMaker
|
|
820
|
+
$ pulumi import aiven:index/kafkaMirrorMaker:KafkaMirrorMaker example_mirrormaker PROJECT/SERVICE_NAME
|
|
821
821
|
```
|
|
822
822
|
|
|
823
823
|
:param str resource_name: The name of the resource.
|
pulumi_aiven/kafka_native_acl.py
CHANGED
|
@@ -36,7 +36,7 @@ class KafkaNativeAclArgs:
|
|
|
36
36
|
:param pulumi.Input[str] principal: Identities in `user:name` format that the permissions apply to. The `name` supports wildcards. Maximum length: `256`. Changing this property forces recreation of the resource.
|
|
37
37
|
: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.
|
|
38
38
|
:param pulumi.Input[str] resource_name: The name of the Kafka resource the permission applies to, such as the topic name or group ID. Maximum length: `256`. Changing this property forces recreation of the resource.
|
|
39
|
-
:param pulumi.Input[str] resource_type: The type of Kafka resource. The possible values are `
|
|
39
|
+
:param pulumi.Input[str] resource_type: The type of Kafka resource. The possible values are `Cluster`, `DelegationToken`, `Group`, `Topic`, `TransactionalId` and `User`. Changing this property forces recreation of the resource.
|
|
40
40
|
:param pulumi.Input[str] service_name: The name of the service that 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.
|
|
41
41
|
:param pulumi.Input[str] host: The IP address from which a principal is allowed or denied access to the resource. Use `*` for all hosts. Maximum length: `256`. Changing this property forces recreation of the resource.
|
|
42
42
|
"""
|
|
@@ -127,7 +127,7 @@ class KafkaNativeAclArgs:
|
|
|
127
127
|
@pulumi.getter(name="resourceType")
|
|
128
128
|
def resource_type(self) -> pulumi.Input[str]:
|
|
129
129
|
"""
|
|
130
|
-
The type of Kafka resource. The possible values are `
|
|
130
|
+
The type of Kafka resource. The possible values are `Cluster`, `DelegationToken`, `Group`, `Topic`, `TransactionalId` and `User`. Changing this property forces recreation of the resource.
|
|
131
131
|
"""
|
|
132
132
|
return pulumi.get(self, "resource_type")
|
|
133
133
|
|
|
@@ -181,7 +181,7 @@ class _KafkaNativeAclState:
|
|
|
181
181
|
:param pulumi.Input[str] principal: Identities in `user:name` format that the permissions apply to. The `name` supports wildcards. Maximum length: `256`. Changing this property forces recreation of the resource.
|
|
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
|
:param pulumi.Input[str] resource_name: The name of the Kafka resource the permission applies to, such as the topic name or group ID. Maximum length: `256`. Changing this property forces recreation of the resource.
|
|
184
|
-
:param pulumi.Input[str] resource_type: The type of Kafka resource. The possible values are `
|
|
184
|
+
:param pulumi.Input[str] resource_type: The type of Kafka resource. The possible values are `Cluster`, `DelegationToken`, `Group`, `Topic`, `TransactionalId` and `User`. Changing this property forces recreation of the resource.
|
|
185
185
|
:param pulumi.Input[str] service_name: The name of the service that 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
|
if host is not None:
|
|
@@ -291,7 +291,7 @@ class _KafkaNativeAclState:
|
|
|
291
291
|
@pulumi.getter(name="resourceType")
|
|
292
292
|
def resource_type(self) -> Optional[pulumi.Input[str]]:
|
|
293
293
|
"""
|
|
294
|
-
The type of Kafka resource. The possible values are `
|
|
294
|
+
The type of Kafka resource. The possible values are `Cluster`, `DelegationToken`, `Group`, `Topic`, `TransactionalId` and `User`. Changing this property forces recreation of the resource.
|
|
295
295
|
"""
|
|
296
296
|
return pulumi.get(self, "resource_type")
|
|
297
297
|
|
|
@@ -366,7 +366,7 @@ class KafkaNativeAcl(pulumi.CustomResource):
|
|
|
366
366
|
:param pulumi.Input[str] principal: Identities in `user:name` format that the permissions apply to. The `name` supports wildcards. Maximum length: `256`. Changing this property forces recreation of the resource.
|
|
367
367
|
: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.
|
|
368
368
|
:param pulumi.Input[str] resource_name_: The name of the Kafka resource the permission applies to, such as the topic name or group ID. Maximum length: `256`. Changing this property forces recreation of the resource.
|
|
369
|
-
:param pulumi.Input[str] resource_type: The type of Kafka resource. The possible values are `
|
|
369
|
+
:param pulumi.Input[str] resource_type: The type of Kafka resource. The possible values are `Cluster`, `DelegationToken`, `Group`, `Topic`, `TransactionalId` and `User`. Changing this property forces recreation of the resource.
|
|
370
370
|
:param pulumi.Input[str] service_name: The name of the service that 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.
|
|
371
371
|
"""
|
|
372
372
|
...
|
|
@@ -496,7 +496,7 @@ class KafkaNativeAcl(pulumi.CustomResource):
|
|
|
496
496
|
:param pulumi.Input[str] principal: Identities in `user:name` format that the permissions apply to. The `name` supports wildcards. Maximum length: `256`. Changing this property forces recreation of the resource.
|
|
497
497
|
: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.
|
|
498
498
|
:param pulumi.Input[str] resource_name_: The name of the Kafka resource the permission applies to, such as the topic name or group ID. Maximum length: `256`. Changing this property forces recreation of the resource.
|
|
499
|
-
:param pulumi.Input[str] resource_type: The type of Kafka resource. The possible values are `
|
|
499
|
+
:param pulumi.Input[str] resource_type: The type of Kafka resource. The possible values are `Cluster`, `DelegationToken`, `Group`, `Topic`, `TransactionalId` and `User`. Changing this property forces recreation of the resource.
|
|
500
500
|
:param pulumi.Input[str] service_name: The name of the service that 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.
|
|
501
501
|
"""
|
|
502
502
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
@@ -574,7 +574,7 @@ class KafkaNativeAcl(pulumi.CustomResource):
|
|
|
574
574
|
@pulumi.getter(name="resourceType")
|
|
575
575
|
def resource_type(self) -> pulumi.Output[str]:
|
|
576
576
|
"""
|
|
577
|
-
The type of Kafka resource. The possible values are `
|
|
577
|
+
The type of Kafka resource. The possible values are `Cluster`, `DelegationToken`, `Group`, `Topic`, `TransactionalId` and `User`. Changing this property forces recreation of the resource.
|
|
578
578
|
"""
|
|
579
579
|
return pulumi.get(self, "resource_type")
|
|
580
580
|
|
pulumi_aiven/m3_db.py
CHANGED
|
@@ -770,7 +770,13 @@ class M3Db(pulumi.CustomResource):
|
|
|
770
770
|
termination_protection: Optional[pulumi.Input[bool]] = None,
|
|
771
771
|
__props__=None):
|
|
772
772
|
"""
|
|
773
|
-
Creates and manages an [Aiven for
|
|
773
|
+
Creates and manages an [Aiven for M3](https://aiven.io/docs/products/m3db) service.
|
|
774
|
+
|
|
775
|
+
> **End of life notice**
|
|
776
|
+
**After 30 April 2025** all running Aiven for M3 services will be powered off and deleted, making data from these services inaccessible.
|
|
777
|
+
You cannot create M3DB services in Aiven projects that didn't have M3DB services before.
|
|
778
|
+
To avoid interruptions to your service, migrate to Aiven for Thanos Metrics
|
|
779
|
+
before the end of life date.
|
|
774
780
|
|
|
775
781
|
## Example Usage
|
|
776
782
|
|
|
@@ -826,7 +832,13 @@ class M3Db(pulumi.CustomResource):
|
|
|
826
832
|
args: M3DbArgs,
|
|
827
833
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
828
834
|
"""
|
|
829
|
-
Creates and manages an [Aiven for
|
|
835
|
+
Creates and manages an [Aiven for M3](https://aiven.io/docs/products/m3db) service.
|
|
836
|
+
|
|
837
|
+
> **End of life notice**
|
|
838
|
+
**After 30 April 2025** all running Aiven for M3 services will be powered off and deleted, making data from these services inaccessible.
|
|
839
|
+
You cannot create M3DB services in Aiven projects that didn't have M3DB services before.
|
|
840
|
+
To avoid interruptions to your service, migrate to Aiven for Thanos Metrics
|
|
841
|
+
before the end of life date.
|
|
830
842
|
|
|
831
843
|
## Example Usage
|
|
832
844
|
|
pulumi_aiven/m3db_user.py
CHANGED
|
@@ -184,7 +184,13 @@ class M3dbUser(pulumi.CustomResource):
|
|
|
184
184
|
username: Optional[pulumi.Input[str]] = None,
|
|
185
185
|
__props__=None):
|
|
186
186
|
"""
|
|
187
|
-
Creates and manages an Aiven for
|
|
187
|
+
Creates and manages an Aiven for M3 service user.
|
|
188
|
+
|
|
189
|
+
> **End of life notice**
|
|
190
|
+
**After 30 April 2025** all running Aiven for M3 services will be powered off and deleted, making data from these services inaccessible.
|
|
191
|
+
You cannot create M3DB services in Aiven projects that didn't have M3DB services before.
|
|
192
|
+
To avoid interruptions to your service, migrate to Aiven for Thanos Metrics
|
|
193
|
+
before the end of life date.
|
|
188
194
|
|
|
189
195
|
## Example Usage
|
|
190
196
|
|
|
@@ -219,7 +225,13 @@ class M3dbUser(pulumi.CustomResource):
|
|
|
219
225
|
args: M3dbUserArgs,
|
|
220
226
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
221
227
|
"""
|
|
222
|
-
Creates and manages an Aiven for
|
|
228
|
+
Creates and manages an Aiven for M3 service user.
|
|
229
|
+
|
|
230
|
+
> **End of life notice**
|
|
231
|
+
**After 30 April 2025** all running Aiven for M3 services will be powered off and deleted, making data from these services inaccessible.
|
|
232
|
+
You cannot create M3DB services in Aiven projects that didn't have M3DB services before.
|
|
233
|
+
To avoid interruptions to your service, migrate to Aiven for Thanos Metrics
|
|
234
|
+
before the end of life date.
|
|
223
235
|
|
|
224
236
|
## Example Usage
|
|
225
237
|
|