pulumi-aiven 6.19.0a1721845827__py3-none-any.whl → 6.19.0a1721847551__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 +20 -0
- pulumi_aiven/_inputs.py +1089 -29
- pulumi_aiven/account_team.py +12 -4
- pulumi_aiven/account_team_member.py +4 -4
- pulumi_aiven/account_team_project.py +4 -4
- pulumi_aiven/clickhouse.py +22 -22
- pulumi_aiven/clickhouse_database.py +39 -19
- pulumi_aiven/clickhouse_grant.py +80 -82
- pulumi_aiven/clickhouse_role.py +17 -31
- pulumi_aiven/clickhouse_user.py +31 -31
- pulumi_aiven/flink.py +19 -19
- pulumi_aiven/flink_application.py +39 -39
- pulumi_aiven/flink_application_deployment.py +131 -57
- pulumi_aiven/flink_application_version.py +64 -56
- pulumi_aiven/get_clickhouse.py +8 -8
- pulumi_aiven/get_clickhouse_database.py +11 -11
- pulumi_aiven/get_clickhouse_user.py +14 -14
- pulumi_aiven/get_flink.py +7 -7
- pulumi_aiven/get_flink_application.py +16 -16
- pulumi_aiven/get_flink_application_version.py +22 -22
- pulumi_aiven/get_kafka_acl.py +22 -22
- pulumi_aiven/get_kafka_connect.py +6 -6
- pulumi_aiven/get_kafka_connector.py +13 -13
- pulumi_aiven/get_kafka_topic.py +2 -2
- pulumi_aiven/get_kafka_user.py +15 -15
- pulumi_aiven/get_transit_gateway_vpc_attachment.py +1 -1
- pulumi_aiven/get_valkey.py +469 -0
- pulumi_aiven/get_valkey_user.py +206 -0
- pulumi_aiven/kafka_acl.py +43 -39
- pulumi_aiven/kafka_connect.py +66 -14
- pulumi_aiven/kafka_connector.py +46 -40
- pulumi_aiven/kafka_schema_registry_acl.py +2 -2
- pulumi_aiven/kafka_topic.py +16 -16
- pulumi_aiven/kafka_user.py +40 -40
- pulumi_aiven/organization_application_user.py +12 -2
- pulumi_aiven/organization_application_user_token.py +7 -7
- pulumi_aiven/organization_group_project.py +9 -9
- pulumi_aiven/organization_user_group_member.py +13 -9
- pulumi_aiven/outputs.py +2113 -332
- pulumi_aiven/pulumi-plugin.json +1 -1
- pulumi_aiven/transit_gateway_vpc_attachment.py +7 -16
- pulumi_aiven/valkey.py +1252 -0
- pulumi_aiven/valkey_user.py +513 -0
- {pulumi_aiven-6.19.0a1721845827.dist-info → pulumi_aiven-6.19.0a1721847551.dist-info}/METADATA +1 -1
- {pulumi_aiven-6.19.0a1721845827.dist-info → pulumi_aiven-6.19.0a1721847551.dist-info}/RECORD +47 -43
- {pulumi_aiven-6.19.0a1721845827.dist-info → pulumi_aiven-6.19.0a1721847551.dist-info}/WHEEL +0 -0
- {pulumi_aiven-6.19.0a1721845827.dist-info → pulumi_aiven-6.19.0a1721847551.dist-info}/top_level.txt +0 -0
|
@@ -23,13 +23,13 @@ class FlinkApplicationDeploymentArgs:
|
|
|
23
23
|
starting_savepoint: Optional[pulumi.Input[str]] = None):
|
|
24
24
|
"""
|
|
25
25
|
The set of arguments for constructing a FlinkApplicationDeployment resource.
|
|
26
|
-
:param pulumi.Input[str] application_id: Application ID
|
|
26
|
+
:param pulumi.Input[str] application_id: Application ID.
|
|
27
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
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] version_id:
|
|
30
|
-
:param pulumi.Input[int] parallelism:
|
|
31
|
-
:param pulumi.Input[bool] restart_enabled:
|
|
32
|
-
:param pulumi.Input[str] starting_savepoint:
|
|
29
|
+
:param pulumi.Input[str] version_id: Application version ID.
|
|
30
|
+
:param pulumi.Input[int] parallelism: The number of parallel instances for the task.
|
|
31
|
+
:param pulumi.Input[bool] restart_enabled: Restart a Flink job if it fails.
|
|
32
|
+
:param pulumi.Input[str] starting_savepoint: The savepoint to deploy from.
|
|
33
33
|
"""
|
|
34
34
|
pulumi.set(__self__, "application_id", application_id)
|
|
35
35
|
pulumi.set(__self__, "project", project)
|
|
@@ -46,7 +46,7 @@ class FlinkApplicationDeploymentArgs:
|
|
|
46
46
|
@pulumi.getter(name="applicationId")
|
|
47
47
|
def application_id(self) -> pulumi.Input[str]:
|
|
48
48
|
"""
|
|
49
|
-
Application ID
|
|
49
|
+
Application ID.
|
|
50
50
|
"""
|
|
51
51
|
return pulumi.get(self, "application_id")
|
|
52
52
|
|
|
@@ -82,7 +82,7 @@ class FlinkApplicationDeploymentArgs:
|
|
|
82
82
|
@pulumi.getter(name="versionId")
|
|
83
83
|
def version_id(self) -> pulumi.Input[str]:
|
|
84
84
|
"""
|
|
85
|
-
|
|
85
|
+
Application version ID.
|
|
86
86
|
"""
|
|
87
87
|
return pulumi.get(self, "version_id")
|
|
88
88
|
|
|
@@ -94,7 +94,7 @@ class FlinkApplicationDeploymentArgs:
|
|
|
94
94
|
@pulumi.getter
|
|
95
95
|
def parallelism(self) -> Optional[pulumi.Input[int]]:
|
|
96
96
|
"""
|
|
97
|
-
|
|
97
|
+
The number of parallel instances for the task.
|
|
98
98
|
"""
|
|
99
99
|
return pulumi.get(self, "parallelism")
|
|
100
100
|
|
|
@@ -106,7 +106,7 @@ class FlinkApplicationDeploymentArgs:
|
|
|
106
106
|
@pulumi.getter(name="restartEnabled")
|
|
107
107
|
def restart_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
108
108
|
"""
|
|
109
|
-
|
|
109
|
+
Restart a Flink job if it fails.
|
|
110
110
|
"""
|
|
111
111
|
return pulumi.get(self, "restart_enabled")
|
|
112
112
|
|
|
@@ -118,7 +118,7 @@ class FlinkApplicationDeploymentArgs:
|
|
|
118
118
|
@pulumi.getter(name="startingSavepoint")
|
|
119
119
|
def starting_savepoint(self) -> Optional[pulumi.Input[str]]:
|
|
120
120
|
"""
|
|
121
|
-
|
|
121
|
+
The savepoint to deploy from.
|
|
122
122
|
"""
|
|
123
123
|
return pulumi.get(self, "starting_savepoint")
|
|
124
124
|
|
|
@@ -141,15 +141,15 @@ class _FlinkApplicationDeploymentState:
|
|
|
141
141
|
version_id: Optional[pulumi.Input[str]] = None):
|
|
142
142
|
"""
|
|
143
143
|
Input properties used for looking up and filtering FlinkApplicationDeployment resources.
|
|
144
|
-
:param pulumi.Input[str] application_id: Application ID
|
|
145
|
-
:param pulumi.Input[str] created_at: Application deployment creation time
|
|
146
|
-
:param pulumi.Input[str] created_by:
|
|
147
|
-
:param pulumi.Input[int] parallelism:
|
|
144
|
+
:param pulumi.Input[str] application_id: Application ID.
|
|
145
|
+
:param pulumi.Input[str] created_at: Application deployment creation time.
|
|
146
|
+
:param pulumi.Input[str] created_by: The user who deployed the application.
|
|
147
|
+
:param pulumi.Input[int] parallelism: The number of parallel instances for the task.
|
|
148
148
|
: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.
|
|
149
|
-
:param pulumi.Input[bool] restart_enabled:
|
|
149
|
+
:param pulumi.Input[bool] restart_enabled: Restart a Flink job if it fails.
|
|
150
150
|
: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.
|
|
151
|
-
:param pulumi.Input[str] starting_savepoint:
|
|
152
|
-
:param pulumi.Input[str] version_id:
|
|
151
|
+
:param pulumi.Input[str] starting_savepoint: The savepoint to deploy from.
|
|
152
|
+
:param pulumi.Input[str] version_id: Application version ID.
|
|
153
153
|
"""
|
|
154
154
|
if application_id is not None:
|
|
155
155
|
pulumi.set(__self__, "application_id", application_id)
|
|
@@ -174,7 +174,7 @@ class _FlinkApplicationDeploymentState:
|
|
|
174
174
|
@pulumi.getter(name="applicationId")
|
|
175
175
|
def application_id(self) -> Optional[pulumi.Input[str]]:
|
|
176
176
|
"""
|
|
177
|
-
Application ID
|
|
177
|
+
Application ID.
|
|
178
178
|
"""
|
|
179
179
|
return pulumi.get(self, "application_id")
|
|
180
180
|
|
|
@@ -186,7 +186,7 @@ class _FlinkApplicationDeploymentState:
|
|
|
186
186
|
@pulumi.getter(name="createdAt")
|
|
187
187
|
def created_at(self) -> Optional[pulumi.Input[str]]:
|
|
188
188
|
"""
|
|
189
|
-
Application deployment creation time
|
|
189
|
+
Application deployment creation time.
|
|
190
190
|
"""
|
|
191
191
|
return pulumi.get(self, "created_at")
|
|
192
192
|
|
|
@@ -198,7 +198,7 @@ class _FlinkApplicationDeploymentState:
|
|
|
198
198
|
@pulumi.getter(name="createdBy")
|
|
199
199
|
def created_by(self) -> Optional[pulumi.Input[str]]:
|
|
200
200
|
"""
|
|
201
|
-
|
|
201
|
+
The user who deployed the application.
|
|
202
202
|
"""
|
|
203
203
|
return pulumi.get(self, "created_by")
|
|
204
204
|
|
|
@@ -210,7 +210,7 @@ class _FlinkApplicationDeploymentState:
|
|
|
210
210
|
@pulumi.getter
|
|
211
211
|
def parallelism(self) -> Optional[pulumi.Input[int]]:
|
|
212
212
|
"""
|
|
213
|
-
|
|
213
|
+
The number of parallel instances for the task.
|
|
214
214
|
"""
|
|
215
215
|
return pulumi.get(self, "parallelism")
|
|
216
216
|
|
|
@@ -234,7 +234,7 @@ class _FlinkApplicationDeploymentState:
|
|
|
234
234
|
@pulumi.getter(name="restartEnabled")
|
|
235
235
|
def restart_enabled(self) -> Optional[pulumi.Input[bool]]:
|
|
236
236
|
"""
|
|
237
|
-
|
|
237
|
+
Restart a Flink job if it fails.
|
|
238
238
|
"""
|
|
239
239
|
return pulumi.get(self, "restart_enabled")
|
|
240
240
|
|
|
@@ -258,7 +258,7 @@ class _FlinkApplicationDeploymentState:
|
|
|
258
258
|
@pulumi.getter(name="startingSavepoint")
|
|
259
259
|
def starting_savepoint(self) -> Optional[pulumi.Input[str]]:
|
|
260
260
|
"""
|
|
261
|
-
|
|
261
|
+
The savepoint to deploy from.
|
|
262
262
|
"""
|
|
263
263
|
return pulumi.get(self, "starting_savepoint")
|
|
264
264
|
|
|
@@ -270,7 +270,7 @@ class _FlinkApplicationDeploymentState:
|
|
|
270
270
|
@pulumi.getter(name="versionId")
|
|
271
271
|
def version_id(self) -> Optional[pulumi.Input[str]]:
|
|
272
272
|
"""
|
|
273
|
-
|
|
273
|
+
Application version ID.
|
|
274
274
|
"""
|
|
275
275
|
return pulumi.get(self, "version_id")
|
|
276
276
|
|
|
@@ -293,7 +293,7 @@ class FlinkApplicationDeployment(pulumi.CustomResource):
|
|
|
293
293
|
version_id: Optional[pulumi.Input[str]] = None,
|
|
294
294
|
__props__=None):
|
|
295
295
|
"""
|
|
296
|
-
|
|
296
|
+
Creates and manages the deployment of an Aiven for Apache Flink® application.
|
|
297
297
|
|
|
298
298
|
## Example Usage
|
|
299
299
|
|
|
@@ -301,28 +301,65 @@ class FlinkApplicationDeployment(pulumi.CustomResource):
|
|
|
301
301
|
import pulumi
|
|
302
302
|
import pulumi_aiven as aiven
|
|
303
303
|
|
|
304
|
-
|
|
305
|
-
project=
|
|
306
|
-
service_name=
|
|
307
|
-
|
|
308
|
-
|
|
304
|
+
example_app = aiven.FlinkApplication("example_app",
|
|
305
|
+
project=example_project["project"],
|
|
306
|
+
service_name="example-flink-service",
|
|
307
|
+
name="example-app")
|
|
308
|
+
main = aiven.FlinkApplicationVersion("main",
|
|
309
|
+
project=example_project["project"],
|
|
310
|
+
service_name=example_flink["serviceName"],
|
|
311
|
+
application_id=example_app.application_id,
|
|
312
|
+
statement=" INSERT INTO kafka_known_pizza SELECT * FROM kafka_pizza WHERE shop LIKE '%Luigis Pizza%'\\n",
|
|
313
|
+
sinks=[aiven.FlinkApplicationVersionSinkArgs(
|
|
314
|
+
create_table=\"\"\" CREATE TABLE kafka_known_pizza (
|
|
315
|
+
shop STRING,
|
|
316
|
+
name STRING
|
|
317
|
+
) WITH (
|
|
318
|
+
'connector' = 'kafka',
|
|
319
|
+
'properties.bootstrap.servers' = '',
|
|
320
|
+
'scan.startup.mode' = 'earliest-offset',
|
|
321
|
+
'topic' = 'sink_topic',
|
|
322
|
+
'value.format' = 'json'
|
|
323
|
+
)
|
|
324
|
+
\"\"\",
|
|
325
|
+
integration_id=flink_to_kafka["integrationId"],
|
|
326
|
+
)],
|
|
327
|
+
sources=[aiven.FlinkApplicationVersionSourceArgs(
|
|
328
|
+
create_table=\"\"\" CREATE TABLE kafka_pizza (
|
|
329
|
+
shop STRING,
|
|
330
|
+
name STRING
|
|
331
|
+
) WITH (
|
|
332
|
+
'connector' = 'kafka',
|
|
333
|
+
'properties.bootstrap.servers' = '',
|
|
334
|
+
'scan.startup.mode' = 'earliest-offset',
|
|
335
|
+
'topic' = 'source_topic',
|
|
336
|
+
'value.format' = 'json'
|
|
337
|
+
)
|
|
338
|
+
\"\"\",
|
|
339
|
+
integration_id=flink_to_kafka["integrationId"],
|
|
340
|
+
)])
|
|
341
|
+
main_flink_application_deployment = aiven.FlinkApplicationDeployment("main",
|
|
342
|
+
project=example_project["project"],
|
|
343
|
+
service_name=example_flink["serviceName"],
|
|
344
|
+
application_id=example_app.application_id,
|
|
345
|
+
version_id=main.application_version_id)
|
|
309
346
|
```
|
|
310
347
|
|
|
311
348
|
## Import
|
|
312
349
|
|
|
313
350
|
```sh
|
|
314
|
-
$ pulumi import aiven:index/flinkApplicationDeployment:FlinkApplicationDeployment
|
|
351
|
+
$ pulumi import aiven:index/flinkApplicationDeployment:FlinkApplicationDeployment main PROJECT/SERVICE_NAME/APPLICATION_ID/APPLICATION_VERSION_ID/DEPLOYMENT_ID
|
|
315
352
|
```
|
|
316
353
|
|
|
317
354
|
:param str resource_name: The name of the resource.
|
|
318
355
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
319
|
-
:param pulumi.Input[str] application_id: Application ID
|
|
320
|
-
:param pulumi.Input[int] parallelism:
|
|
356
|
+
:param pulumi.Input[str] application_id: Application ID.
|
|
357
|
+
:param pulumi.Input[int] parallelism: The number of parallel instances for the task.
|
|
321
358
|
: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.
|
|
322
|
-
:param pulumi.Input[bool] restart_enabled:
|
|
359
|
+
:param pulumi.Input[bool] restart_enabled: Restart a Flink job if it fails.
|
|
323
360
|
: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.
|
|
324
|
-
:param pulumi.Input[str] starting_savepoint:
|
|
325
|
-
:param pulumi.Input[str] version_id:
|
|
361
|
+
:param pulumi.Input[str] starting_savepoint: The savepoint to deploy from.
|
|
362
|
+
:param pulumi.Input[str] version_id: Application version ID.
|
|
326
363
|
"""
|
|
327
364
|
...
|
|
328
365
|
@overload
|
|
@@ -331,7 +368,7 @@ class FlinkApplicationDeployment(pulumi.CustomResource):
|
|
|
331
368
|
args: FlinkApplicationDeploymentArgs,
|
|
332
369
|
opts: Optional[pulumi.ResourceOptions] = None):
|
|
333
370
|
"""
|
|
334
|
-
|
|
371
|
+
Creates and manages the deployment of an Aiven for Apache Flink® application.
|
|
335
372
|
|
|
336
373
|
## Example Usage
|
|
337
374
|
|
|
@@ -339,17 +376,54 @@ class FlinkApplicationDeployment(pulumi.CustomResource):
|
|
|
339
376
|
import pulumi
|
|
340
377
|
import pulumi_aiven as aiven
|
|
341
378
|
|
|
342
|
-
|
|
343
|
-
project=
|
|
344
|
-
service_name=
|
|
345
|
-
|
|
346
|
-
|
|
379
|
+
example_app = aiven.FlinkApplication("example_app",
|
|
380
|
+
project=example_project["project"],
|
|
381
|
+
service_name="example-flink-service",
|
|
382
|
+
name="example-app")
|
|
383
|
+
main = aiven.FlinkApplicationVersion("main",
|
|
384
|
+
project=example_project["project"],
|
|
385
|
+
service_name=example_flink["serviceName"],
|
|
386
|
+
application_id=example_app.application_id,
|
|
387
|
+
statement=" INSERT INTO kafka_known_pizza SELECT * FROM kafka_pizza WHERE shop LIKE '%Luigis Pizza%'\\n",
|
|
388
|
+
sinks=[aiven.FlinkApplicationVersionSinkArgs(
|
|
389
|
+
create_table=\"\"\" CREATE TABLE kafka_known_pizza (
|
|
390
|
+
shop STRING,
|
|
391
|
+
name STRING
|
|
392
|
+
) WITH (
|
|
393
|
+
'connector' = 'kafka',
|
|
394
|
+
'properties.bootstrap.servers' = '',
|
|
395
|
+
'scan.startup.mode' = 'earliest-offset',
|
|
396
|
+
'topic' = 'sink_topic',
|
|
397
|
+
'value.format' = 'json'
|
|
398
|
+
)
|
|
399
|
+
\"\"\",
|
|
400
|
+
integration_id=flink_to_kafka["integrationId"],
|
|
401
|
+
)],
|
|
402
|
+
sources=[aiven.FlinkApplicationVersionSourceArgs(
|
|
403
|
+
create_table=\"\"\" CREATE TABLE kafka_pizza (
|
|
404
|
+
shop STRING,
|
|
405
|
+
name STRING
|
|
406
|
+
) WITH (
|
|
407
|
+
'connector' = 'kafka',
|
|
408
|
+
'properties.bootstrap.servers' = '',
|
|
409
|
+
'scan.startup.mode' = 'earliest-offset',
|
|
410
|
+
'topic' = 'source_topic',
|
|
411
|
+
'value.format' = 'json'
|
|
412
|
+
)
|
|
413
|
+
\"\"\",
|
|
414
|
+
integration_id=flink_to_kafka["integrationId"],
|
|
415
|
+
)])
|
|
416
|
+
main_flink_application_deployment = aiven.FlinkApplicationDeployment("main",
|
|
417
|
+
project=example_project["project"],
|
|
418
|
+
service_name=example_flink["serviceName"],
|
|
419
|
+
application_id=example_app.application_id,
|
|
420
|
+
version_id=main.application_version_id)
|
|
347
421
|
```
|
|
348
422
|
|
|
349
423
|
## Import
|
|
350
424
|
|
|
351
425
|
```sh
|
|
352
|
-
$ pulumi import aiven:index/flinkApplicationDeployment:FlinkApplicationDeployment
|
|
426
|
+
$ pulumi import aiven:index/flinkApplicationDeployment:FlinkApplicationDeployment main PROJECT/SERVICE_NAME/APPLICATION_ID/APPLICATION_VERSION_ID/DEPLOYMENT_ID
|
|
353
427
|
```
|
|
354
428
|
|
|
355
429
|
:param str resource_name: The name of the resource.
|
|
@@ -426,15 +500,15 @@ class FlinkApplicationDeployment(pulumi.CustomResource):
|
|
|
426
500
|
:param str resource_name: The unique name of the resulting resource.
|
|
427
501
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
428
502
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
429
|
-
:param pulumi.Input[str] application_id: Application ID
|
|
430
|
-
:param pulumi.Input[str] created_at: Application deployment creation time
|
|
431
|
-
:param pulumi.Input[str] created_by:
|
|
432
|
-
:param pulumi.Input[int] parallelism:
|
|
503
|
+
:param pulumi.Input[str] application_id: Application ID.
|
|
504
|
+
:param pulumi.Input[str] created_at: Application deployment creation time.
|
|
505
|
+
:param pulumi.Input[str] created_by: The user who deployed the application.
|
|
506
|
+
:param pulumi.Input[int] parallelism: The number of parallel instances for the task.
|
|
433
507
|
: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.
|
|
434
|
-
:param pulumi.Input[bool] restart_enabled:
|
|
508
|
+
:param pulumi.Input[bool] restart_enabled: Restart a Flink job if it fails.
|
|
435
509
|
: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.
|
|
436
|
-
:param pulumi.Input[str] starting_savepoint:
|
|
437
|
-
:param pulumi.Input[str] version_id:
|
|
510
|
+
:param pulumi.Input[str] starting_savepoint: The savepoint to deploy from.
|
|
511
|
+
:param pulumi.Input[str] version_id: Application version ID.
|
|
438
512
|
"""
|
|
439
513
|
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
440
514
|
|
|
@@ -455,7 +529,7 @@ class FlinkApplicationDeployment(pulumi.CustomResource):
|
|
|
455
529
|
@pulumi.getter(name="applicationId")
|
|
456
530
|
def application_id(self) -> pulumi.Output[str]:
|
|
457
531
|
"""
|
|
458
|
-
Application ID
|
|
532
|
+
Application ID.
|
|
459
533
|
"""
|
|
460
534
|
return pulumi.get(self, "application_id")
|
|
461
535
|
|
|
@@ -463,7 +537,7 @@ class FlinkApplicationDeployment(pulumi.CustomResource):
|
|
|
463
537
|
@pulumi.getter(name="createdAt")
|
|
464
538
|
def created_at(self) -> pulumi.Output[str]:
|
|
465
539
|
"""
|
|
466
|
-
Application deployment creation time
|
|
540
|
+
Application deployment creation time.
|
|
467
541
|
"""
|
|
468
542
|
return pulumi.get(self, "created_at")
|
|
469
543
|
|
|
@@ -471,7 +545,7 @@ class FlinkApplicationDeployment(pulumi.CustomResource):
|
|
|
471
545
|
@pulumi.getter(name="createdBy")
|
|
472
546
|
def created_by(self) -> pulumi.Output[str]:
|
|
473
547
|
"""
|
|
474
|
-
|
|
548
|
+
The user who deployed the application.
|
|
475
549
|
"""
|
|
476
550
|
return pulumi.get(self, "created_by")
|
|
477
551
|
|
|
@@ -479,7 +553,7 @@ class FlinkApplicationDeployment(pulumi.CustomResource):
|
|
|
479
553
|
@pulumi.getter
|
|
480
554
|
def parallelism(self) -> pulumi.Output[Optional[int]]:
|
|
481
555
|
"""
|
|
482
|
-
|
|
556
|
+
The number of parallel instances for the task.
|
|
483
557
|
"""
|
|
484
558
|
return pulumi.get(self, "parallelism")
|
|
485
559
|
|
|
@@ -495,7 +569,7 @@ class FlinkApplicationDeployment(pulumi.CustomResource):
|
|
|
495
569
|
@pulumi.getter(name="restartEnabled")
|
|
496
570
|
def restart_enabled(self) -> pulumi.Output[Optional[bool]]:
|
|
497
571
|
"""
|
|
498
|
-
|
|
572
|
+
Restart a Flink job if it fails.
|
|
499
573
|
"""
|
|
500
574
|
return pulumi.get(self, "restart_enabled")
|
|
501
575
|
|
|
@@ -511,7 +585,7 @@ class FlinkApplicationDeployment(pulumi.CustomResource):
|
|
|
511
585
|
@pulumi.getter(name="startingSavepoint")
|
|
512
586
|
def starting_savepoint(self) -> pulumi.Output[Optional[str]]:
|
|
513
587
|
"""
|
|
514
|
-
|
|
588
|
+
The savepoint to deploy from.
|
|
515
589
|
"""
|
|
516
590
|
return pulumi.get(self, "starting_savepoint")
|
|
517
591
|
|
|
@@ -519,7 +593,7 @@ class FlinkApplicationDeployment(pulumi.CustomResource):
|
|
|
519
593
|
@pulumi.getter(name="versionId")
|
|
520
594
|
def version_id(self) -> pulumi.Output[str]:
|
|
521
595
|
"""
|
|
522
|
-
|
|
596
|
+
Application version ID.
|
|
523
597
|
"""
|
|
524
598
|
return pulumi.get(self, "version_id")
|
|
525
599
|
|