pulumi-aiven 6.13.0a1710156545__py3-none-any.whl → 6.31.0a1736831339__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 +127 -0
- pulumi_aiven/_inputs.py +32615 -13711
- pulumi_aiven/_utilities.py +41 -5
- pulumi_aiven/account.py +32 -45
- pulumi_aiven/account_authentication.py +24 -9
- pulumi_aiven/account_team.py +35 -14
- pulumi_aiven/account_team_member.py +48 -39
- pulumi_aiven/account_team_project.py +40 -27
- pulumi_aiven/alloydbomni.py +1335 -0
- pulumi_aiven/alloydbomni_database.py +347 -0
- pulumi_aiven/alloydbomni_user.py +433 -0
- pulumi_aiven/aws_privatelink.py +44 -43
- pulumi_aiven/aws_vpc_peering_connection.py +72 -61
- pulumi_aiven/azure_privatelink.py +54 -53
- pulumi_aiven/azure_privatelink_connection_approval.py +136 -33
- pulumi_aiven/azure_vpc_peering_connection.py +86 -77
- pulumi_aiven/billing_group.py +33 -34
- pulumi_aiven/cassandra.py +145 -126
- pulumi_aiven/cassandra_user.py +59 -58
- pulumi_aiven/clickhouse.py +133 -114
- pulumi_aiven/clickhouse_database.py +58 -62
- pulumi_aiven/clickhouse_grant.py +135 -134
- pulumi_aiven/clickhouse_role.py +36 -49
- pulumi_aiven/clickhouse_user.py +50 -49
- pulumi_aiven/config/__init__.pyi +5 -0
- pulumi_aiven/config/vars.py +5 -0
- pulumi_aiven/connection_pool.py +67 -66
- pulumi_aiven/dragonfly.py +1256 -0
- pulumi_aiven/flink.py +104 -104
- pulumi_aiven/flink_application.py +58 -55
- pulumi_aiven/flink_application_deployment.py +178 -73
- pulumi_aiven/flink_application_version.py +179 -96
- pulumi_aiven/gcp_privatelink.py +69 -42
- pulumi_aiven/gcp_privatelink_connection_approval.py +78 -49
- pulumi_aiven/gcp_vpc_peering_connection.py +49 -48
- pulumi_aiven/get_account.py +20 -9
- pulumi_aiven/get_account_authentication.py +31 -5
- pulumi_aiven/get_account_team.py +18 -5
- pulumi_aiven/get_account_team_member.py +29 -14
- pulumi_aiven/get_account_team_project.py +19 -6
- pulumi_aiven/get_alloydbomni.py +499 -0
- pulumi_aiven/get_alloydbomni_database.py +168 -0
- pulumi_aiven/get_alloydbomni_user.py +210 -0
- pulumi_aiven/get_aws_privatelink.py +33 -24
- pulumi_aiven/get_aws_vpc_peering_connection.py +56 -33
- pulumi_aiven/get_azure_privatelink.py +37 -26
- pulumi_aiven/get_azure_vpc_peering_connection.py +77 -28
- pulumi_aiven/get_billing_group.py +31 -8
- pulumi_aiven/get_cassanda.py +55 -23
- pulumi_aiven/get_cassandra.py +55 -23
- pulumi_aiven/get_cassandra_user.py +42 -30
- pulumi_aiven/get_clickhouse.py +55 -23
- pulumi_aiven/get_clickhouse_database.py +35 -26
- pulumi_aiven/get_clickhouse_user.py +40 -29
- pulumi_aiven/get_connection_pool.py +43 -30
- pulumi_aiven/get_dragonfly.py +499 -0
- pulumi_aiven/get_external_identity.py +160 -0
- pulumi_aiven/get_flink.py +55 -23
- pulumi_aiven/get_flink_application.py +44 -31
- pulumi_aiven/get_flink_application_version.py +55 -37
- pulumi_aiven/get_gcp_privatelink.py +63 -7
- pulumi_aiven/get_gcp_vpc_peering_connection.py +39 -28
- pulumi_aiven/get_grafana.py +55 -23
- pulumi_aiven/get_influx_db.py +41 -5
- pulumi_aiven/get_influxdb_database.py +18 -5
- pulumi_aiven/get_influxdb_user.py +21 -5
- pulumi_aiven/get_kafka.py +59 -25
- pulumi_aiven/get_kafka_acl.py +50 -37
- pulumi_aiven/get_kafka_connect.py +54 -36
- pulumi_aiven/get_kafka_connector.py +44 -28
- pulumi_aiven/get_kafka_mirror_maker.py +50 -32
- pulumi_aiven/get_kafka_schema.py +35 -23
- pulumi_aiven/get_kafka_schema_configuration.py +32 -21
- pulumi_aiven/get_kafka_schema_registry_acl.py +37 -20
- pulumi_aiven/get_kafka_topic.py +70 -29
- pulumi_aiven/get_kafka_user.py +42 -30
- pulumi_aiven/get_m3_aggregator.py +51 -19
- pulumi_aiven/get_m3_db.py +55 -23
- pulumi_aiven/get_m3db_user.py +38 -28
- pulumi_aiven/get_mirror_maker_replication_flow.py +86 -25
- pulumi_aiven/get_my_sql.py +50 -18
- pulumi_aiven/get_mysql_database.py +31 -22
- pulumi_aiven/get_mysql_user.py +36 -23
- pulumi_aiven/get_open_search.py +50 -18
- pulumi_aiven/get_open_search_acl_config.py +27 -19
- pulumi_aiven/get_open_search_acl_rule.py +37 -25
- pulumi_aiven/get_opensearch_security_plugin_config.py +29 -19
- pulumi_aiven/get_opensearch_user.py +32 -22
- pulumi_aiven/get_organization.py +25 -17
- pulumi_aiven/get_organization_application_user.py +176 -0
- pulumi_aiven/get_organization_user.py +18 -5
- pulumi_aiven/get_organization_user_group.py +48 -14
- pulumi_aiven/get_organization_user_list.py +121 -0
- pulumi_aiven/get_organizational_unit.py +26 -14
- pulumi_aiven/get_pg.py +55 -23
- pulumi_aiven/get_pg_database.py +39 -28
- pulumi_aiven/get_pg_user.py +44 -31
- pulumi_aiven/get_project.py +43 -26
- pulumi_aiven/get_project_user.py +27 -19
- pulumi_aiven/get_project_vpc.py +31 -23
- pulumi_aiven/get_redis.py +50 -18
- pulumi_aiven/get_redis_user.py +40 -26
- pulumi_aiven/get_service_component.py +40 -22
- pulumi_aiven/get_service_integration.py +163 -53
- pulumi_aiven/get_service_integration_endpoint.py +128 -37
- pulumi_aiven/get_thanos.py +499 -0
- pulumi_aiven/get_transit_gateway_vpc_attachment.py +35 -22
- pulumi_aiven/get_valkey.py +499 -0
- pulumi_aiven/get_valkey_user.py +218 -0
- pulumi_aiven/grafana.py +188 -322
- pulumi_aiven/influx_db.py +127 -90
- pulumi_aiven/influxdb_database.py +40 -55
- pulumi_aiven/influxdb_user.py +47 -42
- pulumi_aiven/kafka.py +157 -144
- pulumi_aiven/kafka_acl.py +64 -57
- pulumi_aiven/kafka_connect.py +201 -332
- pulumi_aiven/kafka_connector.py +67 -60
- pulumi_aiven/kafka_mirror_maker.py +137 -320
- pulumi_aiven/kafka_native_acl.py +588 -0
- pulumi_aiven/kafka_schema.py +63 -58
- pulumi_aiven/kafka_schema_configuration.py +25 -24
- pulumi_aiven/kafka_schema_registry_acl.py +80 -35
- pulumi_aiven/kafka_topic.py +184 -65
- pulumi_aiven/kafka_user.py +59 -58
- pulumi_aiven/m3_aggregator.py +174 -310
- pulumi_aiven/m3_db.py +190 -326
- pulumi_aiven/m3db_user.py +51 -50
- pulumi_aiven/mirror_maker_replication_flow.py +215 -55
- pulumi_aiven/my_sql.py +188 -324
- pulumi_aiven/mysql_database.py +32 -51
- pulumi_aiven/mysql_user.py +37 -36
- pulumi_aiven/open_search.py +126 -107
- pulumi_aiven/open_search_acl_config.py +33 -36
- pulumi_aiven/open_search_acl_rule.py +55 -54
- pulumi_aiven/opensearch_security_plugin_config.py +69 -16
- pulumi_aiven/opensearch_user.py +30 -29
- pulumi_aiven/organization.py +18 -17
- pulumi_aiven/organization_application_user.py +345 -0
- pulumi_aiven/organization_application_user_token.py +711 -0
- pulumi_aiven/organization_group_project.py +349 -0
- pulumi_aiven/organization_permission.py +421 -0
- pulumi_aiven/organization_user.py +25 -46
- pulumi_aiven/organization_user_group.py +64 -23
- pulumi_aiven/organization_user_group_member.py +359 -0
- pulumi_aiven/organizational_unit.py +41 -36
- pulumi_aiven/outputs.py +38355 -21458
- pulumi_aiven/pg.py +92 -88
- pulumi_aiven/pg_database.py +52 -71
- pulumi_aiven/pg_user.py +80 -65
- pulumi_aiven/project.py +111 -102
- pulumi_aiven/project_user.py +44 -35
- pulumi_aiven/project_vpc.py +58 -29
- pulumi_aiven/provider.py +5 -0
- pulumi_aiven/pulumi-plugin.json +2 -1
- pulumi_aiven/redis.py +161 -297
- pulumi_aiven/redis_user.py +58 -57
- pulumi_aiven/service_integration.py +511 -165
- pulumi_aiven/service_integration_endpoint.py +466 -158
- pulumi_aiven/static_ip.py +21 -16
- pulumi_aiven/thanos.py +1262 -0
- pulumi_aiven/transit_gateway_vpc_attachment.py +44 -58
- pulumi_aiven/valkey.py +1256 -0
- pulumi_aiven/valkey_user.py +606 -0
- {pulumi_aiven-6.13.0a1710156545.dist-info → pulumi_aiven-6.31.0a1736831339.dist-info}/METADATA +7 -6
- pulumi_aiven-6.31.0a1736831339.dist-info/RECORD +169 -0
- {pulumi_aiven-6.13.0a1710156545.dist-info → pulumi_aiven-6.31.0a1736831339.dist-info}/WHEEL +1 -1
- pulumi_aiven-6.13.0a1710156545.dist-info/RECORD +0 -146
- {pulumi_aiven-6.13.0a1710156545.dist-info → pulumi_aiven-6.31.0a1736831339.dist-info}/top_level.txt +0 -0
|
@@ -4,9 +4,14 @@
|
|
|
4
4
|
|
|
5
5
|
import copy
|
|
6
6
|
import warnings
|
|
7
|
+
import sys
|
|
7
8
|
import pulumi
|
|
8
9
|
import pulumi.runtime
|
|
9
10
|
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
11
|
+
if sys.version_info >= (3, 11):
|
|
12
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
|
13
|
+
else:
|
|
14
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
|
10
15
|
from . import _utilities
|
|
11
16
|
|
|
12
17
|
__all__ = ['FlinkApplicationArgs', 'FlinkApplication']
|
|
@@ -19,9 +24,9 @@ class FlinkApplicationArgs:
|
|
|
19
24
|
name: Optional[pulumi.Input[str]] = None):
|
|
20
25
|
"""
|
|
21
26
|
The set of arguments for constructing a FlinkApplication resource.
|
|
22
|
-
:param pulumi.Input[str] project:
|
|
23
|
-
:param pulumi.Input[str] service_name:
|
|
24
|
-
:param pulumi.Input[str] name:
|
|
27
|
+
: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.
|
|
28
|
+
: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.
|
|
29
|
+
:param pulumi.Input[str] name: The name of the application.
|
|
25
30
|
"""
|
|
26
31
|
pulumi.set(__self__, "project", project)
|
|
27
32
|
pulumi.set(__self__, "service_name", service_name)
|
|
@@ -32,7 +37,7 @@ class FlinkApplicationArgs:
|
|
|
32
37
|
@pulumi.getter
|
|
33
38
|
def project(self) -> pulumi.Input[str]:
|
|
34
39
|
"""
|
|
35
|
-
|
|
40
|
+
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.
|
|
36
41
|
"""
|
|
37
42
|
return pulumi.get(self, "project")
|
|
38
43
|
|
|
@@ -44,7 +49,7 @@ class FlinkApplicationArgs:
|
|
|
44
49
|
@pulumi.getter(name="serviceName")
|
|
45
50
|
def service_name(self) -> pulumi.Input[str]:
|
|
46
51
|
"""
|
|
47
|
-
|
|
52
|
+
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.
|
|
48
53
|
"""
|
|
49
54
|
return pulumi.get(self, "service_name")
|
|
50
55
|
|
|
@@ -56,7 +61,7 @@ class FlinkApplicationArgs:
|
|
|
56
61
|
@pulumi.getter
|
|
57
62
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
58
63
|
"""
|
|
59
|
-
|
|
64
|
+
The name of the application.
|
|
60
65
|
"""
|
|
61
66
|
return pulumi.get(self, "name")
|
|
62
67
|
|
|
@@ -78,14 +83,14 @@ class _FlinkApplicationState:
|
|
|
78
83
|
updated_by: Optional[pulumi.Input[str]] = None):
|
|
79
84
|
"""
|
|
80
85
|
Input properties used for looking up and filtering FlinkApplication resources.
|
|
81
|
-
:param pulumi.Input[str] application_id: Application ID
|
|
82
|
-
:param pulumi.Input[str] created_at: Application creation time
|
|
83
|
-
:param pulumi.Input[str] created_by:
|
|
84
|
-
:param pulumi.Input[str] name:
|
|
85
|
-
:param pulumi.Input[str] project:
|
|
86
|
-
:param pulumi.Input[str] service_name:
|
|
87
|
-
:param pulumi.Input[str] updated_at:
|
|
88
|
-
:param pulumi.Input[str] updated_by:
|
|
86
|
+
:param pulumi.Input[str] application_id: Application ID.
|
|
87
|
+
:param pulumi.Input[str] created_at: Application creation time.
|
|
88
|
+
:param pulumi.Input[str] created_by: The user who created the application.
|
|
89
|
+
:param pulumi.Input[str] name: The name of the application.
|
|
90
|
+
: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.
|
|
91
|
+
: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.
|
|
92
|
+
:param pulumi.Input[str] updated_at: When the application was updated.
|
|
93
|
+
:param pulumi.Input[str] updated_by: The user who updated the application.
|
|
89
94
|
"""
|
|
90
95
|
if application_id is not None:
|
|
91
96
|
pulumi.set(__self__, "application_id", application_id)
|
|
@@ -108,7 +113,7 @@ class _FlinkApplicationState:
|
|
|
108
113
|
@pulumi.getter(name="applicationId")
|
|
109
114
|
def application_id(self) -> Optional[pulumi.Input[str]]:
|
|
110
115
|
"""
|
|
111
|
-
Application ID
|
|
116
|
+
Application ID.
|
|
112
117
|
"""
|
|
113
118
|
return pulumi.get(self, "application_id")
|
|
114
119
|
|
|
@@ -120,7 +125,7 @@ class _FlinkApplicationState:
|
|
|
120
125
|
@pulumi.getter(name="createdAt")
|
|
121
126
|
def created_at(self) -> Optional[pulumi.Input[str]]:
|
|
122
127
|
"""
|
|
123
|
-
Application creation time
|
|
128
|
+
Application creation time.
|
|
124
129
|
"""
|
|
125
130
|
return pulumi.get(self, "created_at")
|
|
126
131
|
|
|
@@ -132,7 +137,7 @@ class _FlinkApplicationState:
|
|
|
132
137
|
@pulumi.getter(name="createdBy")
|
|
133
138
|
def created_by(self) -> Optional[pulumi.Input[str]]:
|
|
134
139
|
"""
|
|
135
|
-
|
|
140
|
+
The user who created the application.
|
|
136
141
|
"""
|
|
137
142
|
return pulumi.get(self, "created_by")
|
|
138
143
|
|
|
@@ -144,7 +149,7 @@ class _FlinkApplicationState:
|
|
|
144
149
|
@pulumi.getter
|
|
145
150
|
def name(self) -> Optional[pulumi.Input[str]]:
|
|
146
151
|
"""
|
|
147
|
-
|
|
152
|
+
The name of the application.
|
|
148
153
|
"""
|
|
149
154
|
return pulumi.get(self, "name")
|
|
150
155
|
|
|
@@ -156,7 +161,7 @@ class _FlinkApplicationState:
|
|
|
156
161
|
@pulumi.getter
|
|
157
162
|
def project(self) -> Optional[pulumi.Input[str]]:
|
|
158
163
|
"""
|
|
159
|
-
|
|
164
|
+
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.
|
|
160
165
|
"""
|
|
161
166
|
return pulumi.get(self, "project")
|
|
162
167
|
|
|
@@ -168,7 +173,7 @@ class _FlinkApplicationState:
|
|
|
168
173
|
@pulumi.getter(name="serviceName")
|
|
169
174
|
def service_name(self) -> Optional[pulumi.Input[str]]:
|
|
170
175
|
"""
|
|
171
|
-
|
|
176
|
+
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.
|
|
172
177
|
"""
|
|
173
178
|
return pulumi.get(self, "service_name")
|
|
174
179
|
|
|
@@ -180,7 +185,7 @@ class _FlinkApplicationState:
|
|
|
180
185
|
@pulumi.getter(name="updatedAt")
|
|
181
186
|
def updated_at(self) -> Optional[pulumi.Input[str]]:
|
|
182
187
|
"""
|
|
183
|
-
|
|
188
|
+
When the application was updated.
|
|
184
189
|
"""
|
|
185
190
|
return pulumi.get(self, "updated_at")
|
|
186
191
|
|
|
@@ -192,7 +197,7 @@ class _FlinkApplicationState:
|
|
|
192
197
|
@pulumi.getter(name="updatedBy")
|
|
193
198
|
def updated_by(self) -> Optional[pulumi.Input[str]]:
|
|
194
199
|
"""
|
|
195
|
-
|
|
200
|
+
The user who updated the application.
|
|
196
201
|
"""
|
|
197
202
|
return pulumi.get(self, "updated_by")
|
|
198
203
|
|
|
@@ -211,32 +216,31 @@ class FlinkApplication(pulumi.CustomResource):
|
|
|
211
216
|
service_name: Optional[pulumi.Input[str]] = None,
|
|
212
217
|
__props__=None):
|
|
213
218
|
"""
|
|
214
|
-
|
|
219
|
+
Creates and manages an [Aiven for Apache Flink® application](https://aiven.io/docs/products/flink/concepts/flink-applications).
|
|
215
220
|
|
|
216
221
|
## Example Usage
|
|
217
222
|
|
|
218
|
-
<!--Start PulumiCodeChooser -->
|
|
219
223
|
```python
|
|
220
224
|
import pulumi
|
|
221
225
|
import pulumi_aiven as aiven
|
|
222
226
|
|
|
223
|
-
|
|
224
|
-
project=
|
|
225
|
-
service_name="flink-service
|
|
227
|
+
example_app = aiven.FlinkApplication("example_app",
|
|
228
|
+
project=example_project["project"],
|
|
229
|
+
service_name="example-flink-service",
|
|
230
|
+
name="example-app")
|
|
226
231
|
```
|
|
227
|
-
<!--End PulumiCodeChooser -->
|
|
228
232
|
|
|
229
233
|
## Import
|
|
230
234
|
|
|
231
235
|
```sh
|
|
232
|
-
$ pulumi import aiven:index/flinkApplication:FlinkApplication
|
|
236
|
+
$ pulumi import aiven:index/flinkApplication:FlinkApplication example_app PROJECT/SERVICE_NAME/APPLICATION_NAME
|
|
233
237
|
```
|
|
234
238
|
|
|
235
239
|
:param str resource_name: The name of the resource.
|
|
236
240
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
237
|
-
:param pulumi.Input[str] name:
|
|
238
|
-
:param pulumi.Input[str] project:
|
|
239
|
-
:param pulumi.Input[str] service_name:
|
|
241
|
+
:param pulumi.Input[str] name: The name of the application.
|
|
242
|
+
: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.
|
|
243
|
+
: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.
|
|
240
244
|
"""
|
|
241
245
|
...
|
|
242
246
|
@overload
|
|
@@ -245,25 +249,24 @@ class FlinkApplication(pulumi.CustomResource):
|
|
|
245
249
|
args: FlinkApplicationArgs,
|
|
246
250
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
247
251
|
"""
|
|
248
|
-
|
|
252
|
+
Creates and manages an [Aiven for Apache Flink® application](https://aiven.io/docs/products/flink/concepts/flink-applications).
|
|
249
253
|
|
|
250
254
|
## Example Usage
|
|
251
255
|
|
|
252
|
-
<!--Start PulumiCodeChooser -->
|
|
253
256
|
```python
|
|
254
257
|
import pulumi
|
|
255
258
|
import pulumi_aiven as aiven
|
|
256
259
|
|
|
257
|
-
|
|
258
|
-
project=
|
|
259
|
-
service_name="flink-service
|
|
260
|
+
example_app = aiven.FlinkApplication("example_app",
|
|
261
|
+
project=example_project["project"],
|
|
262
|
+
service_name="example-flink-service",
|
|
263
|
+
name="example-app")
|
|
260
264
|
```
|
|
261
|
-
<!--End PulumiCodeChooser -->
|
|
262
265
|
|
|
263
266
|
## Import
|
|
264
267
|
|
|
265
268
|
```sh
|
|
266
|
-
$ pulumi import aiven:index/flinkApplication:FlinkApplication
|
|
269
|
+
$ pulumi import aiven:index/flinkApplication:FlinkApplication example_app PROJECT/SERVICE_NAME/APPLICATION_NAME
|
|
267
270
|
```
|
|
268
271
|
|
|
269
272
|
:param str resource_name: The name of the resource.
|
|
@@ -330,14 +333,14 @@ class FlinkApplication(pulumi.CustomResource):
|
|
|
330
333
|
:param str resource_name: The unique name of the resulting resource.
|
|
331
334
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
332
335
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
333
|
-
:param pulumi.Input[str] application_id: Application ID
|
|
334
|
-
:param pulumi.Input[str] created_at: Application creation time
|
|
335
|
-
:param pulumi.Input[str] created_by:
|
|
336
|
-
:param pulumi.Input[str] name:
|
|
337
|
-
:param pulumi.Input[str] project:
|
|
338
|
-
:param pulumi.Input[str] service_name:
|
|
339
|
-
:param pulumi.Input[str] updated_at:
|
|
340
|
-
:param pulumi.Input[str] updated_by:
|
|
336
|
+
:param pulumi.Input[str] application_id: Application ID.
|
|
337
|
+
:param pulumi.Input[str] created_at: Application creation time.
|
|
338
|
+
:param pulumi.Input[str] created_by: The user who created the application.
|
|
339
|
+
:param pulumi.Input[str] name: The name of the application.
|
|
340
|
+
: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.
|
|
341
|
+
: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.
|
|
342
|
+
:param pulumi.Input[str] updated_at: When the application was updated.
|
|
343
|
+
:param pulumi.Input[str] updated_by: The user who updated the application.
|
|
341
344
|
"""
|
|
342
345
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
343
346
|
|
|
@@ -357,7 +360,7 @@ class FlinkApplication(pulumi.CustomResource):
|
|
|
357
360
|
@pulumi.getter(name="applicationId")
|
|
358
361
|
def application_id(self) -> pulumi.Output[str]:
|
|
359
362
|
"""
|
|
360
|
-
Application ID
|
|
363
|
+
Application ID.
|
|
361
364
|
"""
|
|
362
365
|
return pulumi.get(self, "application_id")
|
|
363
366
|
|
|
@@ -365,7 +368,7 @@ class FlinkApplication(pulumi.CustomResource):
|
|
|
365
368
|
@pulumi.getter(name="createdAt")
|
|
366
369
|
def created_at(self) -> pulumi.Output[str]:
|
|
367
370
|
"""
|
|
368
|
-
Application creation time
|
|
371
|
+
Application creation time.
|
|
369
372
|
"""
|
|
370
373
|
return pulumi.get(self, "created_at")
|
|
371
374
|
|
|
@@ -373,7 +376,7 @@ class FlinkApplication(pulumi.CustomResource):
|
|
|
373
376
|
@pulumi.getter(name="createdBy")
|
|
374
377
|
def created_by(self) -> pulumi.Output[str]:
|
|
375
378
|
"""
|
|
376
|
-
|
|
379
|
+
The user who created the application.
|
|
377
380
|
"""
|
|
378
381
|
return pulumi.get(self, "created_by")
|
|
379
382
|
|
|
@@ -381,7 +384,7 @@ class FlinkApplication(pulumi.CustomResource):
|
|
|
381
384
|
@pulumi.getter
|
|
382
385
|
def name(self) -> pulumi.Output[str]:
|
|
383
386
|
"""
|
|
384
|
-
|
|
387
|
+
The name of the application.
|
|
385
388
|
"""
|
|
386
389
|
return pulumi.get(self, "name")
|
|
387
390
|
|
|
@@ -389,7 +392,7 @@ class FlinkApplication(pulumi.CustomResource):
|
|
|
389
392
|
@pulumi.getter
|
|
390
393
|
def project(self) -> pulumi.Output[str]:
|
|
391
394
|
"""
|
|
392
|
-
|
|
395
|
+
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.
|
|
393
396
|
"""
|
|
394
397
|
return pulumi.get(self, "project")
|
|
395
398
|
|
|
@@ -397,7 +400,7 @@ class FlinkApplication(pulumi.CustomResource):
|
|
|
397
400
|
@pulumi.getter(name="serviceName")
|
|
398
401
|
def service_name(self) -> pulumi.Output[str]:
|
|
399
402
|
"""
|
|
400
|
-
|
|
403
|
+
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.
|
|
401
404
|
"""
|
|
402
405
|
return pulumi.get(self, "service_name")
|
|
403
406
|
|
|
@@ -405,7 +408,7 @@ class FlinkApplication(pulumi.CustomResource):
|
|
|
405
408
|
@pulumi.getter(name="updatedAt")
|
|
406
409
|
def updated_at(self) -> pulumi.Output[str]:
|
|
407
410
|
"""
|
|
408
|
-
|
|
411
|
+
When the application was updated.
|
|
409
412
|
"""
|
|
410
413
|
return pulumi.get(self, "updated_at")
|
|
411
414
|
|
|
@@ -413,7 +416,7 @@ class FlinkApplication(pulumi.CustomResource):
|
|
|
413
416
|
@pulumi.getter(name="updatedBy")
|
|
414
417
|
def updated_by(self) -> pulumi.Output[str]:
|
|
415
418
|
"""
|
|
416
|
-
|
|
419
|
+
The user who updated the application.
|
|
417
420
|
"""
|
|
418
421
|
return pulumi.get(self, "updated_by")
|
|
419
422
|
|