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
pulumi_aiven/_inputs.py
CHANGED
|
@@ -127,6 +127,14 @@ __all__ = [
|
|
|
127
127
|
'FlinkFlinkUserConfigPrivatelinkAccessArgsDict',
|
|
128
128
|
'FlinkFlinkUserConfigPublicAccessArgs',
|
|
129
129
|
'FlinkFlinkUserConfigPublicAccessArgsDict',
|
|
130
|
+
'FlinkJarApplicationApplicationVersionArgs',
|
|
131
|
+
'FlinkJarApplicationApplicationVersionArgsDict',
|
|
132
|
+
'FlinkJarApplicationApplicationVersionFileInfoArgs',
|
|
133
|
+
'FlinkJarApplicationApplicationVersionFileInfoArgsDict',
|
|
134
|
+
'FlinkJarApplicationCurrentDeploymentArgs',
|
|
135
|
+
'FlinkJarApplicationCurrentDeploymentArgsDict',
|
|
136
|
+
'FlinkJarApplicationVersionFileInfoArgs',
|
|
137
|
+
'FlinkJarApplicationVersionFileInfoArgsDict',
|
|
130
138
|
'FlinkServiceIntegrationArgs',
|
|
131
139
|
'FlinkServiceIntegrationArgsDict',
|
|
132
140
|
'FlinkTagArgs',
|
|
@@ -7395,6 +7403,634 @@ class FlinkFlinkUserConfigPublicAccessArgs:
|
|
|
7395
7403
|
pulumi.set(self, "flink", value)
|
|
7396
7404
|
|
|
7397
7405
|
|
|
7406
|
+
if not MYPY:
|
|
7407
|
+
class FlinkJarApplicationApplicationVersionArgsDict(TypedDict):
|
|
7408
|
+
created_at: NotRequired[pulumi.Input[str]]
|
|
7409
|
+
"""
|
|
7410
|
+
The creation timestamp of this entity in ISO 8601 format, always in UTC.
|
|
7411
|
+
"""
|
|
7412
|
+
created_by: NotRequired[pulumi.Input[str]]
|
|
7413
|
+
"""
|
|
7414
|
+
The creator of this entity.
|
|
7415
|
+
"""
|
|
7416
|
+
file_infos: NotRequired[pulumi.Input[Sequence[pulumi.Input['FlinkJarApplicationApplicationVersionFileInfoArgsDict']]]]
|
|
7417
|
+
"""
|
|
7418
|
+
Flink JarApplicationVersion FileInfo.
|
|
7419
|
+
"""
|
|
7420
|
+
id: NotRequired[pulumi.Input[str]]
|
|
7421
|
+
"""
|
|
7422
|
+
ApplicationVersion ID.
|
|
7423
|
+
"""
|
|
7424
|
+
version: NotRequired[pulumi.Input[int]]
|
|
7425
|
+
"""
|
|
7426
|
+
Version number.
|
|
7427
|
+
"""
|
|
7428
|
+
elif False:
|
|
7429
|
+
FlinkJarApplicationApplicationVersionArgsDict: TypeAlias = Mapping[str, Any]
|
|
7430
|
+
|
|
7431
|
+
@pulumi.input_type
|
|
7432
|
+
class FlinkJarApplicationApplicationVersionArgs:
|
|
7433
|
+
def __init__(__self__, *,
|
|
7434
|
+
created_at: Optional[pulumi.Input[str]] = None,
|
|
7435
|
+
created_by: Optional[pulumi.Input[str]] = None,
|
|
7436
|
+
file_infos: Optional[pulumi.Input[Sequence[pulumi.Input['FlinkJarApplicationApplicationVersionFileInfoArgs']]]] = None,
|
|
7437
|
+
id: Optional[pulumi.Input[str]] = None,
|
|
7438
|
+
version: Optional[pulumi.Input[int]] = None):
|
|
7439
|
+
"""
|
|
7440
|
+
:param pulumi.Input[str] created_at: The creation timestamp of this entity in ISO 8601 format, always in UTC.
|
|
7441
|
+
:param pulumi.Input[str] created_by: The creator of this entity.
|
|
7442
|
+
:param pulumi.Input[Sequence[pulumi.Input['FlinkJarApplicationApplicationVersionFileInfoArgs']]] file_infos: Flink JarApplicationVersion FileInfo.
|
|
7443
|
+
:param pulumi.Input[str] id: ApplicationVersion ID.
|
|
7444
|
+
:param pulumi.Input[int] version: Version number.
|
|
7445
|
+
"""
|
|
7446
|
+
if created_at is not None:
|
|
7447
|
+
pulumi.set(__self__, "created_at", created_at)
|
|
7448
|
+
if created_by is not None:
|
|
7449
|
+
pulumi.set(__self__, "created_by", created_by)
|
|
7450
|
+
if file_infos is not None:
|
|
7451
|
+
pulumi.set(__self__, "file_infos", file_infos)
|
|
7452
|
+
if id is not None:
|
|
7453
|
+
pulumi.set(__self__, "id", id)
|
|
7454
|
+
if version is not None:
|
|
7455
|
+
pulumi.set(__self__, "version", version)
|
|
7456
|
+
|
|
7457
|
+
@property
|
|
7458
|
+
@pulumi.getter(name="createdAt")
|
|
7459
|
+
def created_at(self) -> Optional[pulumi.Input[str]]:
|
|
7460
|
+
"""
|
|
7461
|
+
The creation timestamp of this entity in ISO 8601 format, always in UTC.
|
|
7462
|
+
"""
|
|
7463
|
+
return pulumi.get(self, "created_at")
|
|
7464
|
+
|
|
7465
|
+
@created_at.setter
|
|
7466
|
+
def created_at(self, value: Optional[pulumi.Input[str]]):
|
|
7467
|
+
pulumi.set(self, "created_at", value)
|
|
7468
|
+
|
|
7469
|
+
@property
|
|
7470
|
+
@pulumi.getter(name="createdBy")
|
|
7471
|
+
def created_by(self) -> Optional[pulumi.Input[str]]:
|
|
7472
|
+
"""
|
|
7473
|
+
The creator of this entity.
|
|
7474
|
+
"""
|
|
7475
|
+
return pulumi.get(self, "created_by")
|
|
7476
|
+
|
|
7477
|
+
@created_by.setter
|
|
7478
|
+
def created_by(self, value: Optional[pulumi.Input[str]]):
|
|
7479
|
+
pulumi.set(self, "created_by", value)
|
|
7480
|
+
|
|
7481
|
+
@property
|
|
7482
|
+
@pulumi.getter(name="fileInfos")
|
|
7483
|
+
def file_infos(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['FlinkJarApplicationApplicationVersionFileInfoArgs']]]]:
|
|
7484
|
+
"""
|
|
7485
|
+
Flink JarApplicationVersion FileInfo.
|
|
7486
|
+
"""
|
|
7487
|
+
return pulumi.get(self, "file_infos")
|
|
7488
|
+
|
|
7489
|
+
@file_infos.setter
|
|
7490
|
+
def file_infos(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['FlinkJarApplicationApplicationVersionFileInfoArgs']]]]):
|
|
7491
|
+
pulumi.set(self, "file_infos", value)
|
|
7492
|
+
|
|
7493
|
+
@property
|
|
7494
|
+
@pulumi.getter
|
|
7495
|
+
def id(self) -> Optional[pulumi.Input[str]]:
|
|
7496
|
+
"""
|
|
7497
|
+
ApplicationVersion ID.
|
|
7498
|
+
"""
|
|
7499
|
+
return pulumi.get(self, "id")
|
|
7500
|
+
|
|
7501
|
+
@id.setter
|
|
7502
|
+
def id(self, value: Optional[pulumi.Input[str]]):
|
|
7503
|
+
pulumi.set(self, "id", value)
|
|
7504
|
+
|
|
7505
|
+
@property
|
|
7506
|
+
@pulumi.getter
|
|
7507
|
+
def version(self) -> Optional[pulumi.Input[int]]:
|
|
7508
|
+
"""
|
|
7509
|
+
Version number.
|
|
7510
|
+
"""
|
|
7511
|
+
return pulumi.get(self, "version")
|
|
7512
|
+
|
|
7513
|
+
@version.setter
|
|
7514
|
+
def version(self, value: Optional[pulumi.Input[int]]):
|
|
7515
|
+
pulumi.set(self, "version", value)
|
|
7516
|
+
|
|
7517
|
+
|
|
7518
|
+
if not MYPY:
|
|
7519
|
+
class FlinkJarApplicationApplicationVersionFileInfoArgsDict(TypedDict):
|
|
7520
|
+
file_sha256: NotRequired[pulumi.Input[str]]
|
|
7521
|
+
"""
|
|
7522
|
+
sha256 of the file if known.
|
|
7523
|
+
"""
|
|
7524
|
+
file_size: NotRequired[pulumi.Input[int]]
|
|
7525
|
+
"""
|
|
7526
|
+
The size of the file in bytes.
|
|
7527
|
+
"""
|
|
7528
|
+
file_status: NotRequired[pulumi.Input[str]]
|
|
7529
|
+
"""
|
|
7530
|
+
Indicates whether the uploaded .jar file has been verified by the system and deployment ready. The possible values are `INITIAL`, `READY` and `FAILED`.
|
|
7531
|
+
"""
|
|
7532
|
+
url: NotRequired[pulumi.Input[str]]
|
|
7533
|
+
"""
|
|
7534
|
+
The pre-signed url of the bucket where the .jar file is uploaded. Becomes null when the JarApplicationVersion is ready or failed.
|
|
7535
|
+
"""
|
|
7536
|
+
verify_error_code: NotRequired[pulumi.Input[int]]
|
|
7537
|
+
"""
|
|
7538
|
+
In the case file_status is FAILED, the error code of the failure. The possible values are `1`, `2` and `3`.
|
|
7539
|
+
"""
|
|
7540
|
+
verify_error_message: NotRequired[pulumi.Input[str]]
|
|
7541
|
+
"""
|
|
7542
|
+
In the case file_status is FAILED, may contain details about the failure.
|
|
7543
|
+
"""
|
|
7544
|
+
elif False:
|
|
7545
|
+
FlinkJarApplicationApplicationVersionFileInfoArgsDict: TypeAlias = Mapping[str, Any]
|
|
7546
|
+
|
|
7547
|
+
@pulumi.input_type
|
|
7548
|
+
class FlinkJarApplicationApplicationVersionFileInfoArgs:
|
|
7549
|
+
def __init__(__self__, *,
|
|
7550
|
+
file_sha256: Optional[pulumi.Input[str]] = None,
|
|
7551
|
+
file_size: Optional[pulumi.Input[int]] = None,
|
|
7552
|
+
file_status: Optional[pulumi.Input[str]] = None,
|
|
7553
|
+
url: Optional[pulumi.Input[str]] = None,
|
|
7554
|
+
verify_error_code: Optional[pulumi.Input[int]] = None,
|
|
7555
|
+
verify_error_message: Optional[pulumi.Input[str]] = None):
|
|
7556
|
+
"""
|
|
7557
|
+
:param pulumi.Input[str] file_sha256: sha256 of the file if known.
|
|
7558
|
+
:param pulumi.Input[int] file_size: The size of the file in bytes.
|
|
7559
|
+
:param pulumi.Input[str] file_status: Indicates whether the uploaded .jar file has been verified by the system and deployment ready. The possible values are `INITIAL`, `READY` and `FAILED`.
|
|
7560
|
+
:param pulumi.Input[str] url: The pre-signed url of the bucket where the .jar file is uploaded. Becomes null when the JarApplicationVersion is ready or failed.
|
|
7561
|
+
:param pulumi.Input[int] verify_error_code: In the case file_status is FAILED, the error code of the failure. The possible values are `1`, `2` and `3`.
|
|
7562
|
+
:param pulumi.Input[str] verify_error_message: In the case file_status is FAILED, may contain details about the failure.
|
|
7563
|
+
"""
|
|
7564
|
+
if file_sha256 is not None:
|
|
7565
|
+
pulumi.set(__self__, "file_sha256", file_sha256)
|
|
7566
|
+
if file_size is not None:
|
|
7567
|
+
pulumi.set(__self__, "file_size", file_size)
|
|
7568
|
+
if file_status is not None:
|
|
7569
|
+
pulumi.set(__self__, "file_status", file_status)
|
|
7570
|
+
if url is not None:
|
|
7571
|
+
pulumi.set(__self__, "url", url)
|
|
7572
|
+
if verify_error_code is not None:
|
|
7573
|
+
pulumi.set(__self__, "verify_error_code", verify_error_code)
|
|
7574
|
+
if verify_error_message is not None:
|
|
7575
|
+
pulumi.set(__self__, "verify_error_message", verify_error_message)
|
|
7576
|
+
|
|
7577
|
+
@property
|
|
7578
|
+
@pulumi.getter(name="fileSha256")
|
|
7579
|
+
def file_sha256(self) -> Optional[pulumi.Input[str]]:
|
|
7580
|
+
"""
|
|
7581
|
+
sha256 of the file if known.
|
|
7582
|
+
"""
|
|
7583
|
+
return pulumi.get(self, "file_sha256")
|
|
7584
|
+
|
|
7585
|
+
@file_sha256.setter
|
|
7586
|
+
def file_sha256(self, value: Optional[pulumi.Input[str]]):
|
|
7587
|
+
pulumi.set(self, "file_sha256", value)
|
|
7588
|
+
|
|
7589
|
+
@property
|
|
7590
|
+
@pulumi.getter(name="fileSize")
|
|
7591
|
+
def file_size(self) -> Optional[pulumi.Input[int]]:
|
|
7592
|
+
"""
|
|
7593
|
+
The size of the file in bytes.
|
|
7594
|
+
"""
|
|
7595
|
+
return pulumi.get(self, "file_size")
|
|
7596
|
+
|
|
7597
|
+
@file_size.setter
|
|
7598
|
+
def file_size(self, value: Optional[pulumi.Input[int]]):
|
|
7599
|
+
pulumi.set(self, "file_size", value)
|
|
7600
|
+
|
|
7601
|
+
@property
|
|
7602
|
+
@pulumi.getter(name="fileStatus")
|
|
7603
|
+
def file_status(self) -> Optional[pulumi.Input[str]]:
|
|
7604
|
+
"""
|
|
7605
|
+
Indicates whether the uploaded .jar file has been verified by the system and deployment ready. The possible values are `INITIAL`, `READY` and `FAILED`.
|
|
7606
|
+
"""
|
|
7607
|
+
return pulumi.get(self, "file_status")
|
|
7608
|
+
|
|
7609
|
+
@file_status.setter
|
|
7610
|
+
def file_status(self, value: Optional[pulumi.Input[str]]):
|
|
7611
|
+
pulumi.set(self, "file_status", value)
|
|
7612
|
+
|
|
7613
|
+
@property
|
|
7614
|
+
@pulumi.getter
|
|
7615
|
+
def url(self) -> Optional[pulumi.Input[str]]:
|
|
7616
|
+
"""
|
|
7617
|
+
The pre-signed url of the bucket where the .jar file is uploaded. Becomes null when the JarApplicationVersion is ready or failed.
|
|
7618
|
+
"""
|
|
7619
|
+
return pulumi.get(self, "url")
|
|
7620
|
+
|
|
7621
|
+
@url.setter
|
|
7622
|
+
def url(self, value: Optional[pulumi.Input[str]]):
|
|
7623
|
+
pulumi.set(self, "url", value)
|
|
7624
|
+
|
|
7625
|
+
@property
|
|
7626
|
+
@pulumi.getter(name="verifyErrorCode")
|
|
7627
|
+
def verify_error_code(self) -> Optional[pulumi.Input[int]]:
|
|
7628
|
+
"""
|
|
7629
|
+
In the case file_status is FAILED, the error code of the failure. The possible values are `1`, `2` and `3`.
|
|
7630
|
+
"""
|
|
7631
|
+
return pulumi.get(self, "verify_error_code")
|
|
7632
|
+
|
|
7633
|
+
@verify_error_code.setter
|
|
7634
|
+
def verify_error_code(self, value: Optional[pulumi.Input[int]]):
|
|
7635
|
+
pulumi.set(self, "verify_error_code", value)
|
|
7636
|
+
|
|
7637
|
+
@property
|
|
7638
|
+
@pulumi.getter(name="verifyErrorMessage")
|
|
7639
|
+
def verify_error_message(self) -> Optional[pulumi.Input[str]]:
|
|
7640
|
+
"""
|
|
7641
|
+
In the case file_status is FAILED, may contain details about the failure.
|
|
7642
|
+
"""
|
|
7643
|
+
return pulumi.get(self, "verify_error_message")
|
|
7644
|
+
|
|
7645
|
+
@verify_error_message.setter
|
|
7646
|
+
def verify_error_message(self, value: Optional[pulumi.Input[str]]):
|
|
7647
|
+
pulumi.set(self, "verify_error_message", value)
|
|
7648
|
+
|
|
7649
|
+
|
|
7650
|
+
if not MYPY:
|
|
7651
|
+
class FlinkJarApplicationCurrentDeploymentArgsDict(TypedDict):
|
|
7652
|
+
created_at: NotRequired[pulumi.Input[str]]
|
|
7653
|
+
"""
|
|
7654
|
+
The creation timestamp of this entity in ISO 8601 format, always in UTC.
|
|
7655
|
+
"""
|
|
7656
|
+
created_by: NotRequired[pulumi.Input[str]]
|
|
7657
|
+
"""
|
|
7658
|
+
The creator of this entity.
|
|
7659
|
+
"""
|
|
7660
|
+
entry_class: NotRequired[pulumi.Input[str]]
|
|
7661
|
+
"""
|
|
7662
|
+
The fully qualified name of the entry class to pass during Flink job submission through the entryClass parameter.
|
|
7663
|
+
"""
|
|
7664
|
+
error_msg: NotRequired[pulumi.Input[str]]
|
|
7665
|
+
"""
|
|
7666
|
+
Error message describing what caused deployment to fail.
|
|
7667
|
+
"""
|
|
7668
|
+
id: NotRequired[pulumi.Input[str]]
|
|
7669
|
+
"""
|
|
7670
|
+
Deployment ID.
|
|
7671
|
+
"""
|
|
7672
|
+
job_id: NotRequired[pulumi.Input[str]]
|
|
7673
|
+
"""
|
|
7674
|
+
Job ID.
|
|
7675
|
+
"""
|
|
7676
|
+
last_savepoint: NotRequired[pulumi.Input[str]]
|
|
7677
|
+
"""
|
|
7678
|
+
Job savepoint.
|
|
7679
|
+
"""
|
|
7680
|
+
parallelism: NotRequired[pulumi.Input[int]]
|
|
7681
|
+
"""
|
|
7682
|
+
Reading of Flink parallel execution documentation is recommended before setting this value to other than 1. Please do not set this value higher than (total number of nodes x number_of_task_slots), or every new job created will fail.
|
|
7683
|
+
"""
|
|
7684
|
+
program_args: NotRequired[pulumi.Input[Sequence[pulumi.Input[str]]]]
|
|
7685
|
+
"""
|
|
7686
|
+
Arguments to pass during Flink job submission through the programArgsList parameter.
|
|
7687
|
+
"""
|
|
7688
|
+
starting_savepoint: NotRequired[pulumi.Input[str]]
|
|
7689
|
+
"""
|
|
7690
|
+
Job savepoint.
|
|
7691
|
+
"""
|
|
7692
|
+
status: NotRequired[pulumi.Input[str]]
|
|
7693
|
+
"""
|
|
7694
|
+
Deployment status. The possible values are `CANCELED`, `CANCELLING`, `CANCELLING_REQUESTED`, `CREATED`, `DELETE_REQUESTED`, `DELETING`, `FAILED`, `FAILING`, `FINISHED`, `INITIALIZING`, `RECONCILING`, `RESTARTING`, `RUNNING`, `SAVING`, `SAVING_AND_STOP`, `SAVING_AND_STOP_REQUESTED` and `SUSPENDED`.
|
|
7695
|
+
"""
|
|
7696
|
+
version_id: NotRequired[pulumi.Input[str]]
|
|
7697
|
+
"""
|
|
7698
|
+
ApplicationVersion ID.
|
|
7699
|
+
"""
|
|
7700
|
+
elif False:
|
|
7701
|
+
FlinkJarApplicationCurrentDeploymentArgsDict: TypeAlias = Mapping[str, Any]
|
|
7702
|
+
|
|
7703
|
+
@pulumi.input_type
|
|
7704
|
+
class FlinkJarApplicationCurrentDeploymentArgs:
|
|
7705
|
+
def __init__(__self__, *,
|
|
7706
|
+
created_at: Optional[pulumi.Input[str]] = None,
|
|
7707
|
+
created_by: Optional[pulumi.Input[str]] = None,
|
|
7708
|
+
entry_class: Optional[pulumi.Input[str]] = None,
|
|
7709
|
+
error_msg: Optional[pulumi.Input[str]] = None,
|
|
7710
|
+
id: Optional[pulumi.Input[str]] = None,
|
|
7711
|
+
job_id: Optional[pulumi.Input[str]] = None,
|
|
7712
|
+
last_savepoint: Optional[pulumi.Input[str]] = None,
|
|
7713
|
+
parallelism: Optional[pulumi.Input[int]] = None,
|
|
7714
|
+
program_args: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
7715
|
+
starting_savepoint: Optional[pulumi.Input[str]] = None,
|
|
7716
|
+
status: Optional[pulumi.Input[str]] = None,
|
|
7717
|
+
version_id: Optional[pulumi.Input[str]] = None):
|
|
7718
|
+
"""
|
|
7719
|
+
:param pulumi.Input[str] created_at: The creation timestamp of this entity in ISO 8601 format, always in UTC.
|
|
7720
|
+
:param pulumi.Input[str] created_by: The creator of this entity.
|
|
7721
|
+
:param pulumi.Input[str] entry_class: The fully qualified name of the entry class to pass during Flink job submission through the entryClass parameter.
|
|
7722
|
+
:param pulumi.Input[str] error_msg: Error message describing what caused deployment to fail.
|
|
7723
|
+
:param pulumi.Input[str] id: Deployment ID.
|
|
7724
|
+
:param pulumi.Input[str] job_id: Job ID.
|
|
7725
|
+
:param pulumi.Input[str] last_savepoint: Job savepoint.
|
|
7726
|
+
:param pulumi.Input[int] parallelism: Reading of Flink parallel execution documentation is recommended before setting this value to other than 1. Please do not set this value higher than (total number of nodes x number_of_task_slots), or every new job created will fail.
|
|
7727
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] program_args: Arguments to pass during Flink job submission through the programArgsList parameter.
|
|
7728
|
+
:param pulumi.Input[str] starting_savepoint: Job savepoint.
|
|
7729
|
+
:param pulumi.Input[str] status: Deployment status. The possible values are `CANCELED`, `CANCELLING`, `CANCELLING_REQUESTED`, `CREATED`, `DELETE_REQUESTED`, `DELETING`, `FAILED`, `FAILING`, `FINISHED`, `INITIALIZING`, `RECONCILING`, `RESTARTING`, `RUNNING`, `SAVING`, `SAVING_AND_STOP`, `SAVING_AND_STOP_REQUESTED` and `SUSPENDED`.
|
|
7730
|
+
:param pulumi.Input[str] version_id: ApplicationVersion ID.
|
|
7731
|
+
"""
|
|
7732
|
+
if created_at is not None:
|
|
7733
|
+
pulumi.set(__self__, "created_at", created_at)
|
|
7734
|
+
if created_by is not None:
|
|
7735
|
+
pulumi.set(__self__, "created_by", created_by)
|
|
7736
|
+
if entry_class is not None:
|
|
7737
|
+
pulumi.set(__self__, "entry_class", entry_class)
|
|
7738
|
+
if error_msg is not None:
|
|
7739
|
+
pulumi.set(__self__, "error_msg", error_msg)
|
|
7740
|
+
if id is not None:
|
|
7741
|
+
pulumi.set(__self__, "id", id)
|
|
7742
|
+
if job_id is not None:
|
|
7743
|
+
pulumi.set(__self__, "job_id", job_id)
|
|
7744
|
+
if last_savepoint is not None:
|
|
7745
|
+
pulumi.set(__self__, "last_savepoint", last_savepoint)
|
|
7746
|
+
if parallelism is not None:
|
|
7747
|
+
pulumi.set(__self__, "parallelism", parallelism)
|
|
7748
|
+
if program_args is not None:
|
|
7749
|
+
pulumi.set(__self__, "program_args", program_args)
|
|
7750
|
+
if starting_savepoint is not None:
|
|
7751
|
+
pulumi.set(__self__, "starting_savepoint", starting_savepoint)
|
|
7752
|
+
if status is not None:
|
|
7753
|
+
pulumi.set(__self__, "status", status)
|
|
7754
|
+
if version_id is not None:
|
|
7755
|
+
pulumi.set(__self__, "version_id", version_id)
|
|
7756
|
+
|
|
7757
|
+
@property
|
|
7758
|
+
@pulumi.getter(name="createdAt")
|
|
7759
|
+
def created_at(self) -> Optional[pulumi.Input[str]]:
|
|
7760
|
+
"""
|
|
7761
|
+
The creation timestamp of this entity in ISO 8601 format, always in UTC.
|
|
7762
|
+
"""
|
|
7763
|
+
return pulumi.get(self, "created_at")
|
|
7764
|
+
|
|
7765
|
+
@created_at.setter
|
|
7766
|
+
def created_at(self, value: Optional[pulumi.Input[str]]):
|
|
7767
|
+
pulumi.set(self, "created_at", value)
|
|
7768
|
+
|
|
7769
|
+
@property
|
|
7770
|
+
@pulumi.getter(name="createdBy")
|
|
7771
|
+
def created_by(self) -> Optional[pulumi.Input[str]]:
|
|
7772
|
+
"""
|
|
7773
|
+
The creator of this entity.
|
|
7774
|
+
"""
|
|
7775
|
+
return pulumi.get(self, "created_by")
|
|
7776
|
+
|
|
7777
|
+
@created_by.setter
|
|
7778
|
+
def created_by(self, value: Optional[pulumi.Input[str]]):
|
|
7779
|
+
pulumi.set(self, "created_by", value)
|
|
7780
|
+
|
|
7781
|
+
@property
|
|
7782
|
+
@pulumi.getter(name="entryClass")
|
|
7783
|
+
def entry_class(self) -> Optional[pulumi.Input[str]]:
|
|
7784
|
+
"""
|
|
7785
|
+
The fully qualified name of the entry class to pass during Flink job submission through the entryClass parameter.
|
|
7786
|
+
"""
|
|
7787
|
+
return pulumi.get(self, "entry_class")
|
|
7788
|
+
|
|
7789
|
+
@entry_class.setter
|
|
7790
|
+
def entry_class(self, value: Optional[pulumi.Input[str]]):
|
|
7791
|
+
pulumi.set(self, "entry_class", value)
|
|
7792
|
+
|
|
7793
|
+
@property
|
|
7794
|
+
@pulumi.getter(name="errorMsg")
|
|
7795
|
+
def error_msg(self) -> Optional[pulumi.Input[str]]:
|
|
7796
|
+
"""
|
|
7797
|
+
Error message describing what caused deployment to fail.
|
|
7798
|
+
"""
|
|
7799
|
+
return pulumi.get(self, "error_msg")
|
|
7800
|
+
|
|
7801
|
+
@error_msg.setter
|
|
7802
|
+
def error_msg(self, value: Optional[pulumi.Input[str]]):
|
|
7803
|
+
pulumi.set(self, "error_msg", value)
|
|
7804
|
+
|
|
7805
|
+
@property
|
|
7806
|
+
@pulumi.getter
|
|
7807
|
+
def id(self) -> Optional[pulumi.Input[str]]:
|
|
7808
|
+
"""
|
|
7809
|
+
Deployment ID.
|
|
7810
|
+
"""
|
|
7811
|
+
return pulumi.get(self, "id")
|
|
7812
|
+
|
|
7813
|
+
@id.setter
|
|
7814
|
+
def id(self, value: Optional[pulumi.Input[str]]):
|
|
7815
|
+
pulumi.set(self, "id", value)
|
|
7816
|
+
|
|
7817
|
+
@property
|
|
7818
|
+
@pulumi.getter(name="jobId")
|
|
7819
|
+
def job_id(self) -> Optional[pulumi.Input[str]]:
|
|
7820
|
+
"""
|
|
7821
|
+
Job ID.
|
|
7822
|
+
"""
|
|
7823
|
+
return pulumi.get(self, "job_id")
|
|
7824
|
+
|
|
7825
|
+
@job_id.setter
|
|
7826
|
+
def job_id(self, value: Optional[pulumi.Input[str]]):
|
|
7827
|
+
pulumi.set(self, "job_id", value)
|
|
7828
|
+
|
|
7829
|
+
@property
|
|
7830
|
+
@pulumi.getter(name="lastSavepoint")
|
|
7831
|
+
def last_savepoint(self) -> Optional[pulumi.Input[str]]:
|
|
7832
|
+
"""
|
|
7833
|
+
Job savepoint.
|
|
7834
|
+
"""
|
|
7835
|
+
return pulumi.get(self, "last_savepoint")
|
|
7836
|
+
|
|
7837
|
+
@last_savepoint.setter
|
|
7838
|
+
def last_savepoint(self, value: Optional[pulumi.Input[str]]):
|
|
7839
|
+
pulumi.set(self, "last_savepoint", value)
|
|
7840
|
+
|
|
7841
|
+
@property
|
|
7842
|
+
@pulumi.getter
|
|
7843
|
+
def parallelism(self) -> Optional[pulumi.Input[int]]:
|
|
7844
|
+
"""
|
|
7845
|
+
Reading of Flink parallel execution documentation is recommended before setting this value to other than 1. Please do not set this value higher than (total number of nodes x number_of_task_slots), or every new job created will fail.
|
|
7846
|
+
"""
|
|
7847
|
+
return pulumi.get(self, "parallelism")
|
|
7848
|
+
|
|
7849
|
+
@parallelism.setter
|
|
7850
|
+
def parallelism(self, value: Optional[pulumi.Input[int]]):
|
|
7851
|
+
pulumi.set(self, "parallelism", value)
|
|
7852
|
+
|
|
7853
|
+
@property
|
|
7854
|
+
@pulumi.getter(name="programArgs")
|
|
7855
|
+
def program_args(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
7856
|
+
"""
|
|
7857
|
+
Arguments to pass during Flink job submission through the programArgsList parameter.
|
|
7858
|
+
"""
|
|
7859
|
+
return pulumi.get(self, "program_args")
|
|
7860
|
+
|
|
7861
|
+
@program_args.setter
|
|
7862
|
+
def program_args(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
7863
|
+
pulumi.set(self, "program_args", value)
|
|
7864
|
+
|
|
7865
|
+
@property
|
|
7866
|
+
@pulumi.getter(name="startingSavepoint")
|
|
7867
|
+
def starting_savepoint(self) -> Optional[pulumi.Input[str]]:
|
|
7868
|
+
"""
|
|
7869
|
+
Job savepoint.
|
|
7870
|
+
"""
|
|
7871
|
+
return pulumi.get(self, "starting_savepoint")
|
|
7872
|
+
|
|
7873
|
+
@starting_savepoint.setter
|
|
7874
|
+
def starting_savepoint(self, value: Optional[pulumi.Input[str]]):
|
|
7875
|
+
pulumi.set(self, "starting_savepoint", value)
|
|
7876
|
+
|
|
7877
|
+
@property
|
|
7878
|
+
@pulumi.getter
|
|
7879
|
+
def status(self) -> Optional[pulumi.Input[str]]:
|
|
7880
|
+
"""
|
|
7881
|
+
Deployment status. The possible values are `CANCELED`, `CANCELLING`, `CANCELLING_REQUESTED`, `CREATED`, `DELETE_REQUESTED`, `DELETING`, `FAILED`, `FAILING`, `FINISHED`, `INITIALIZING`, `RECONCILING`, `RESTARTING`, `RUNNING`, `SAVING`, `SAVING_AND_STOP`, `SAVING_AND_STOP_REQUESTED` and `SUSPENDED`.
|
|
7882
|
+
"""
|
|
7883
|
+
return pulumi.get(self, "status")
|
|
7884
|
+
|
|
7885
|
+
@status.setter
|
|
7886
|
+
def status(self, value: Optional[pulumi.Input[str]]):
|
|
7887
|
+
pulumi.set(self, "status", value)
|
|
7888
|
+
|
|
7889
|
+
@property
|
|
7890
|
+
@pulumi.getter(name="versionId")
|
|
7891
|
+
def version_id(self) -> Optional[pulumi.Input[str]]:
|
|
7892
|
+
"""
|
|
7893
|
+
ApplicationVersion ID.
|
|
7894
|
+
"""
|
|
7895
|
+
return pulumi.get(self, "version_id")
|
|
7896
|
+
|
|
7897
|
+
@version_id.setter
|
|
7898
|
+
def version_id(self, value: Optional[pulumi.Input[str]]):
|
|
7899
|
+
pulumi.set(self, "version_id", value)
|
|
7900
|
+
|
|
7901
|
+
|
|
7902
|
+
if not MYPY:
|
|
7903
|
+
class FlinkJarApplicationVersionFileInfoArgsDict(TypedDict):
|
|
7904
|
+
file_sha256: NotRequired[pulumi.Input[str]]
|
|
7905
|
+
"""
|
|
7906
|
+
sha256 of the file if known.
|
|
7907
|
+
"""
|
|
7908
|
+
file_size: NotRequired[pulumi.Input[int]]
|
|
7909
|
+
"""
|
|
7910
|
+
The size of the file in bytes.
|
|
7911
|
+
"""
|
|
7912
|
+
file_status: NotRequired[pulumi.Input[str]]
|
|
7913
|
+
"""
|
|
7914
|
+
Indicates whether the uploaded .jar file has been verified by the system and deployment ready. The possible values are `FAILED`, `INITIAL` and `READY`.
|
|
7915
|
+
"""
|
|
7916
|
+
url: NotRequired[pulumi.Input[str]]
|
|
7917
|
+
"""
|
|
7918
|
+
The pre-signed url of the bucket where the .jar file is uploaded. Becomes null when the JarApplicationVersion is ready or failed.
|
|
7919
|
+
"""
|
|
7920
|
+
verify_error_code: NotRequired[pulumi.Input[int]]
|
|
7921
|
+
"""
|
|
7922
|
+
In the case file_status is FAILED, the error code of the failure. The possible values are `1`, `2` and `3`.
|
|
7923
|
+
"""
|
|
7924
|
+
verify_error_message: NotRequired[pulumi.Input[str]]
|
|
7925
|
+
"""
|
|
7926
|
+
In the case file_status is FAILED, may contain details about the failure.
|
|
7927
|
+
"""
|
|
7928
|
+
elif False:
|
|
7929
|
+
FlinkJarApplicationVersionFileInfoArgsDict: TypeAlias = Mapping[str, Any]
|
|
7930
|
+
|
|
7931
|
+
@pulumi.input_type
|
|
7932
|
+
class FlinkJarApplicationVersionFileInfoArgs:
|
|
7933
|
+
def __init__(__self__, *,
|
|
7934
|
+
file_sha256: Optional[pulumi.Input[str]] = None,
|
|
7935
|
+
file_size: Optional[pulumi.Input[int]] = None,
|
|
7936
|
+
file_status: Optional[pulumi.Input[str]] = None,
|
|
7937
|
+
url: Optional[pulumi.Input[str]] = None,
|
|
7938
|
+
verify_error_code: Optional[pulumi.Input[int]] = None,
|
|
7939
|
+
verify_error_message: Optional[pulumi.Input[str]] = None):
|
|
7940
|
+
"""
|
|
7941
|
+
:param pulumi.Input[str] file_sha256: sha256 of the file if known.
|
|
7942
|
+
:param pulumi.Input[int] file_size: The size of the file in bytes.
|
|
7943
|
+
:param pulumi.Input[str] file_status: Indicates whether the uploaded .jar file has been verified by the system and deployment ready. The possible values are `FAILED`, `INITIAL` and `READY`.
|
|
7944
|
+
:param pulumi.Input[str] url: The pre-signed url of the bucket where the .jar file is uploaded. Becomes null when the JarApplicationVersion is ready or failed.
|
|
7945
|
+
:param pulumi.Input[int] verify_error_code: In the case file_status is FAILED, the error code of the failure. The possible values are `1`, `2` and `3`.
|
|
7946
|
+
:param pulumi.Input[str] verify_error_message: In the case file_status is FAILED, may contain details about the failure.
|
|
7947
|
+
"""
|
|
7948
|
+
if file_sha256 is not None:
|
|
7949
|
+
pulumi.set(__self__, "file_sha256", file_sha256)
|
|
7950
|
+
if file_size is not None:
|
|
7951
|
+
pulumi.set(__self__, "file_size", file_size)
|
|
7952
|
+
if file_status is not None:
|
|
7953
|
+
pulumi.set(__self__, "file_status", file_status)
|
|
7954
|
+
if url is not None:
|
|
7955
|
+
pulumi.set(__self__, "url", url)
|
|
7956
|
+
if verify_error_code is not None:
|
|
7957
|
+
pulumi.set(__self__, "verify_error_code", verify_error_code)
|
|
7958
|
+
if verify_error_message is not None:
|
|
7959
|
+
pulumi.set(__self__, "verify_error_message", verify_error_message)
|
|
7960
|
+
|
|
7961
|
+
@property
|
|
7962
|
+
@pulumi.getter(name="fileSha256")
|
|
7963
|
+
def file_sha256(self) -> Optional[pulumi.Input[str]]:
|
|
7964
|
+
"""
|
|
7965
|
+
sha256 of the file if known.
|
|
7966
|
+
"""
|
|
7967
|
+
return pulumi.get(self, "file_sha256")
|
|
7968
|
+
|
|
7969
|
+
@file_sha256.setter
|
|
7970
|
+
def file_sha256(self, value: Optional[pulumi.Input[str]]):
|
|
7971
|
+
pulumi.set(self, "file_sha256", value)
|
|
7972
|
+
|
|
7973
|
+
@property
|
|
7974
|
+
@pulumi.getter(name="fileSize")
|
|
7975
|
+
def file_size(self) -> Optional[pulumi.Input[int]]:
|
|
7976
|
+
"""
|
|
7977
|
+
The size of the file in bytes.
|
|
7978
|
+
"""
|
|
7979
|
+
return pulumi.get(self, "file_size")
|
|
7980
|
+
|
|
7981
|
+
@file_size.setter
|
|
7982
|
+
def file_size(self, value: Optional[pulumi.Input[int]]):
|
|
7983
|
+
pulumi.set(self, "file_size", value)
|
|
7984
|
+
|
|
7985
|
+
@property
|
|
7986
|
+
@pulumi.getter(name="fileStatus")
|
|
7987
|
+
def file_status(self) -> Optional[pulumi.Input[str]]:
|
|
7988
|
+
"""
|
|
7989
|
+
Indicates whether the uploaded .jar file has been verified by the system and deployment ready. The possible values are `FAILED`, `INITIAL` and `READY`.
|
|
7990
|
+
"""
|
|
7991
|
+
return pulumi.get(self, "file_status")
|
|
7992
|
+
|
|
7993
|
+
@file_status.setter
|
|
7994
|
+
def file_status(self, value: Optional[pulumi.Input[str]]):
|
|
7995
|
+
pulumi.set(self, "file_status", value)
|
|
7996
|
+
|
|
7997
|
+
@property
|
|
7998
|
+
@pulumi.getter
|
|
7999
|
+
def url(self) -> Optional[pulumi.Input[str]]:
|
|
8000
|
+
"""
|
|
8001
|
+
The pre-signed url of the bucket where the .jar file is uploaded. Becomes null when the JarApplicationVersion is ready or failed.
|
|
8002
|
+
"""
|
|
8003
|
+
return pulumi.get(self, "url")
|
|
8004
|
+
|
|
8005
|
+
@url.setter
|
|
8006
|
+
def url(self, value: Optional[pulumi.Input[str]]):
|
|
8007
|
+
pulumi.set(self, "url", value)
|
|
8008
|
+
|
|
8009
|
+
@property
|
|
8010
|
+
@pulumi.getter(name="verifyErrorCode")
|
|
8011
|
+
def verify_error_code(self) -> Optional[pulumi.Input[int]]:
|
|
8012
|
+
"""
|
|
8013
|
+
In the case file_status is FAILED, the error code of the failure. The possible values are `1`, `2` and `3`.
|
|
8014
|
+
"""
|
|
8015
|
+
return pulumi.get(self, "verify_error_code")
|
|
8016
|
+
|
|
8017
|
+
@verify_error_code.setter
|
|
8018
|
+
def verify_error_code(self, value: Optional[pulumi.Input[int]]):
|
|
8019
|
+
pulumi.set(self, "verify_error_code", value)
|
|
8020
|
+
|
|
8021
|
+
@property
|
|
8022
|
+
@pulumi.getter(name="verifyErrorMessage")
|
|
8023
|
+
def verify_error_message(self) -> Optional[pulumi.Input[str]]:
|
|
8024
|
+
"""
|
|
8025
|
+
In the case file_status is FAILED, may contain details about the failure.
|
|
8026
|
+
"""
|
|
8027
|
+
return pulumi.get(self, "verify_error_message")
|
|
8028
|
+
|
|
8029
|
+
@verify_error_message.setter
|
|
8030
|
+
def verify_error_message(self, value: Optional[pulumi.Input[str]]):
|
|
8031
|
+
pulumi.set(self, "verify_error_message", value)
|
|
8032
|
+
|
|
8033
|
+
|
|
7398
8034
|
if not MYPY:
|
|
7399
8035
|
class FlinkServiceIntegrationArgsDict(TypedDict):
|
|
7400
8036
|
integration_type: pulumi.Input[str]
|
|
@@ -17002,11 +17638,11 @@ if not MYPY:
|
|
|
17002
17638
|
class KafkaTopicConfigArgsDict(TypedDict):
|
|
17003
17639
|
cleanup_policy: NotRequired[pulumi.Input[str]]
|
|
17004
17640
|
"""
|
|
17005
|
-
cleanup.policy value. The possible values are `
|
|
17641
|
+
cleanup.policy value. The possible values are `compact`, `compact,delete` and `delete`.
|
|
17006
17642
|
"""
|
|
17007
17643
|
compression_type: NotRequired[pulumi.Input[str]]
|
|
17008
17644
|
"""
|
|
17009
|
-
compression.type value. The possible values are `
|
|
17645
|
+
compression.type value. The possible values are `gzip`, `lz4`, `producer`, `snappy`, `uncompressed` and `zstd`.
|
|
17010
17646
|
"""
|
|
17011
17647
|
delete_retention_ms: NotRequired[pulumi.Input[str]]
|
|
17012
17648
|
"""
|
|
@@ -17050,7 +17686,7 @@ if not MYPY:
|
|
|
17050
17686
|
"""
|
|
17051
17687
|
message_format_version: NotRequired[pulumi.Input[str]]
|
|
17052
17688
|
"""
|
|
17053
|
-
message.format.version value. The possible values are `0.
|
|
17689
|
+
message.format.version value. The possible values are `0.10.0`, `0.10.0-IV0`, `0.10.0-IV1`, `0.10.1`, `0.10.1-IV0`, `0.10.1-IV1`, `0.10.1-IV2`, `0.10.2`, `0.10.2-IV0`, `0.11.0`, `0.11.0-IV0`, `0.11.0-IV1`, `0.11.0-IV2`, `0.8.0`, `0.8.1`, `0.8.2`, `0.9.0`, `1.0`, `1.0-IV0`, `1.1`, `1.1-IV0`, `2.0`, `2.0-IV0`, `2.0-IV1`, `2.1`, `2.1-IV0`, `2.1-IV1`, `2.1-IV2`, `2.2`, `2.2-IV0`, `2.2-IV1`, `2.3`, `2.3-IV0`, `2.3-IV1`, `2.4`, `2.4-IV0`, `2.4-IV1`, `2.5`, `2.5-IV0`, `2.6`, `2.6-IV0`, `2.7`, `2.7-IV0`, `2.7-IV1`, `2.7-IV2`, `2.8`, `2.8-IV0`, `2.8-IV1`, `3.0`, `3.0-IV0`, `3.0-IV1`, `3.1`, `3.1-IV0`, `3.2`, `3.2-IV0`, `3.3`, `3.3-IV0`, `3.3-IV1`, `3.3-IV2`, `3.3-IV3`, `3.4`, `3.4-IV0`, `3.5`, `3.5-IV0`, `3.5-IV1`, `3.5-IV2`, `3.6`, `3.6-IV0`, `3.6-IV1`, `3.6-IV2`, `3.7`, `3.7-IV0`, `3.7-IV1`, `3.7-IV2`, `3.7-IV3`, `3.7-IV4`, `3.8`, `3.8-IV0`, `3.9`, `3.9-IV0` and `3.9-IV1`.
|
|
17054
17690
|
"""
|
|
17055
17691
|
message_timestamp_difference_max_ms: NotRequired[pulumi.Input[str]]
|
|
17056
17692
|
"""
|
|
@@ -17142,8 +17778,8 @@ class KafkaTopicConfigArgs:
|
|
|
17142
17778
|
segment_ms: Optional[pulumi.Input[str]] = None,
|
|
17143
17779
|
unclean_leader_election_enable: Optional[pulumi.Input[bool]] = None):
|
|
17144
17780
|
"""
|
|
17145
|
-
:param pulumi.Input[str] cleanup_policy: cleanup.policy value. The possible values are `
|
|
17146
|
-
:param pulumi.Input[str] compression_type: compression.type value. The possible values are `
|
|
17781
|
+
:param pulumi.Input[str] cleanup_policy: cleanup.policy value. The possible values are `compact`, `compact,delete` and `delete`.
|
|
17782
|
+
:param pulumi.Input[str] compression_type: compression.type value. The possible values are `gzip`, `lz4`, `producer`, `snappy`, `uncompressed` and `zstd`.
|
|
17147
17783
|
:param pulumi.Input[str] delete_retention_ms: delete.retention.ms value
|
|
17148
17784
|
:param pulumi.Input[str] file_delete_delay_ms: file.delete.delay.ms value
|
|
17149
17785
|
:param pulumi.Input[str] flush_messages: flush.messages value
|
|
@@ -17154,7 +17790,7 @@ class KafkaTopicConfigArgs:
|
|
|
17154
17790
|
:param pulumi.Input[str] max_compaction_lag_ms: max.compaction.lag.ms value
|
|
17155
17791
|
:param pulumi.Input[str] max_message_bytes: max.message.bytes value
|
|
17156
17792
|
:param pulumi.Input[bool] message_downconversion_enable: message.downconversion.enable value
|
|
17157
|
-
:param pulumi.Input[str] message_format_version: message.format.version value. The possible values are `0.
|
|
17793
|
+
:param pulumi.Input[str] message_format_version: message.format.version value. The possible values are `0.10.0`, `0.10.0-IV0`, `0.10.0-IV1`, `0.10.1`, `0.10.1-IV0`, `0.10.1-IV1`, `0.10.1-IV2`, `0.10.2`, `0.10.2-IV0`, `0.11.0`, `0.11.0-IV0`, `0.11.0-IV1`, `0.11.0-IV2`, `0.8.0`, `0.8.1`, `0.8.2`, `0.9.0`, `1.0`, `1.0-IV0`, `1.1`, `1.1-IV0`, `2.0`, `2.0-IV0`, `2.0-IV1`, `2.1`, `2.1-IV0`, `2.1-IV1`, `2.1-IV2`, `2.2`, `2.2-IV0`, `2.2-IV1`, `2.3`, `2.3-IV0`, `2.3-IV1`, `2.4`, `2.4-IV0`, `2.4-IV1`, `2.5`, `2.5-IV0`, `2.6`, `2.6-IV0`, `2.7`, `2.7-IV0`, `2.7-IV1`, `2.7-IV2`, `2.8`, `2.8-IV0`, `2.8-IV1`, `3.0`, `3.0-IV0`, `3.0-IV1`, `3.1`, `3.1-IV0`, `3.2`, `3.2-IV0`, `3.3`, `3.3-IV0`, `3.3-IV1`, `3.3-IV2`, `3.3-IV3`, `3.4`, `3.4-IV0`, `3.5`, `3.5-IV0`, `3.5-IV1`, `3.5-IV2`, `3.6`, `3.6-IV0`, `3.6-IV1`, `3.6-IV2`, `3.7`, `3.7-IV0`, `3.7-IV1`, `3.7-IV2`, `3.7-IV3`, `3.7-IV4`, `3.8`, `3.8-IV0`, `3.9`, `3.9-IV0` and `3.9-IV1`.
|
|
17158
17794
|
:param pulumi.Input[str] message_timestamp_difference_max_ms: message.timestamp.difference.max.ms value
|
|
17159
17795
|
:param pulumi.Input[str] message_timestamp_type: message.timestamp.type value. The possible values are `CreateTime` and `LogAppendTime`.
|
|
17160
17796
|
:param pulumi.Input[float] min_cleanable_dirty_ratio: min.cleanable.dirty.ratio value
|
|
@@ -17232,7 +17868,7 @@ class KafkaTopicConfigArgs:
|
|
|
17232
17868
|
@pulumi.getter(name="cleanupPolicy")
|
|
17233
17869
|
def cleanup_policy(self) -> Optional[pulumi.Input[str]]:
|
|
17234
17870
|
"""
|
|
17235
|
-
cleanup.policy value. The possible values are `
|
|
17871
|
+
cleanup.policy value. The possible values are `compact`, `compact,delete` and `delete`.
|
|
17236
17872
|
"""
|
|
17237
17873
|
return pulumi.get(self, "cleanup_policy")
|
|
17238
17874
|
|
|
@@ -17244,7 +17880,7 @@ class KafkaTopicConfigArgs:
|
|
|
17244
17880
|
@pulumi.getter(name="compressionType")
|
|
17245
17881
|
def compression_type(self) -> Optional[pulumi.Input[str]]:
|
|
17246
17882
|
"""
|
|
17247
|
-
compression.type value. The possible values are `
|
|
17883
|
+
compression.type value. The possible values are `gzip`, `lz4`, `producer`, `snappy`, `uncompressed` and `zstd`.
|
|
17248
17884
|
"""
|
|
17249
17885
|
return pulumi.get(self, "compression_type")
|
|
17250
17886
|
|
|
@@ -17376,7 +18012,7 @@ class KafkaTopicConfigArgs:
|
|
|
17376
18012
|
@pulumi.getter(name="messageFormatVersion")
|
|
17377
18013
|
def message_format_version(self) -> Optional[pulumi.Input[str]]:
|
|
17378
18014
|
"""
|
|
17379
|
-
message.format.version value. The possible values are `0.
|
|
18015
|
+
message.format.version value. The possible values are `0.10.0`, `0.10.0-IV0`, `0.10.0-IV1`, `0.10.1`, `0.10.1-IV0`, `0.10.1-IV1`, `0.10.1-IV2`, `0.10.2`, `0.10.2-IV0`, `0.11.0`, `0.11.0-IV0`, `0.11.0-IV1`, `0.11.0-IV2`, `0.8.0`, `0.8.1`, `0.8.2`, `0.9.0`, `1.0`, `1.0-IV0`, `1.1`, `1.1-IV0`, `2.0`, `2.0-IV0`, `2.0-IV1`, `2.1`, `2.1-IV0`, `2.1-IV1`, `2.1-IV2`, `2.2`, `2.2-IV0`, `2.2-IV1`, `2.3`, `2.3-IV0`, `2.3-IV1`, `2.4`, `2.4-IV0`, `2.4-IV1`, `2.5`, `2.5-IV0`, `2.6`, `2.6-IV0`, `2.7`, `2.7-IV0`, `2.7-IV1`, `2.7-IV2`, `2.8`, `2.8-IV0`, `2.8-IV1`, `3.0`, `3.0-IV0`, `3.0-IV1`, `3.1`, `3.1-IV0`, `3.2`, `3.2-IV0`, `3.3`, `3.3-IV0`, `3.3-IV1`, `3.3-IV2`, `3.3-IV3`, `3.4`, `3.4-IV0`, `3.5`, `3.5-IV0`, `3.5-IV1`, `3.5-IV2`, `3.6`, `3.6-IV0`, `3.6-IV1`, `3.6-IV2`, `3.7`, `3.7-IV0`, `3.7-IV1`, `3.7-IV2`, `3.7-IV3`, `3.7-IV4`, `3.8`, `3.8-IV0`, `3.9`, `3.9-IV0` and `3.9-IV1`.
|
|
17380
18016
|
"""
|
|
17381
18017
|
return pulumi.get(self, "message_format_version")
|
|
17382
18018
|
|
|
@@ -27480,7 +28116,7 @@ if not MYPY:
|
|
|
27480
28116
|
class OrganizationPermissionPermissionArgsDict(TypedDict):
|
|
27481
28117
|
permissions: pulumi.Input[Sequence[pulumi.Input[str]]]
|
|
27482
28118
|
"""
|
|
27483
|
-
List of [roles and permissions](https://aiven.io/docs/platform/concepts/permissions) to grant. 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`.
|
|
28119
|
+
List of [roles and permissions](https://aiven.io/docs/platform/concepts/permissions) to grant. 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`.
|
|
27484
28120
|
"""
|
|
27485
28121
|
principal_id: pulumi.Input[str]
|
|
27486
28122
|
"""
|
|
@@ -27510,7 +28146,7 @@ class OrganizationPermissionPermissionArgs:
|
|
|
27510
28146
|
create_time: Optional[pulumi.Input[str]] = None,
|
|
27511
28147
|
update_time: Optional[pulumi.Input[str]] = None):
|
|
27512
28148
|
"""
|
|
27513
|
-
:param pulumi.Input[Sequence[pulumi.Input[str]]] permissions: List of [roles and permissions](https://aiven.io/docs/platform/concepts/permissions) to grant. 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`.
|
|
28149
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] permissions: List of [roles and permissions](https://aiven.io/docs/platform/concepts/permissions) to grant. 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`.
|
|
27514
28150
|
:param pulumi.Input[str] principal_id: ID of the user or group to grant permissions to. Only active users who have accepted an [invite](https://aiven.io/docs/platform/howto/manage-org-users) to join the organization can be granted permissions.
|
|
27515
28151
|
:param pulumi.Input[str] principal_type: The type of principal. The possible values are `user` and `user_group`.
|
|
27516
28152
|
:param pulumi.Input[str] create_time: Time created.
|
|
@@ -27528,7 +28164,7 @@ class OrganizationPermissionPermissionArgs:
|
|
|
27528
28164
|
@pulumi.getter
|
|
27529
28165
|
def permissions(self) -> pulumi.Input[Sequence[pulumi.Input[str]]]:
|
|
27530
28166
|
"""
|
|
27531
|
-
List of [roles and permissions](https://aiven.io/docs/platform/concepts/permissions) to grant. 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`.
|
|
28167
|
+
List of [roles and permissions](https://aiven.io/docs/platform/concepts/permissions) to grant. 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`.
|
|
27532
28168
|
"""
|
|
27533
28169
|
return pulumi.get(self, "permissions")
|
|
27534
28170
|
|
|
@@ -31262,7 +31898,7 @@ if not MYPY:
|
|
|
31262
31898
|
class PgServiceIntegrationArgsDict(TypedDict):
|
|
31263
31899
|
integration_type: pulumi.Input[str]
|
|
31264
31900
|
"""
|
|
31265
|
-
Type of the service integration. The possible
|
|
31901
|
+
Type of the service integration. The possible values are `read_replica` and `disaster_recovery`.
|
|
31266
31902
|
"""
|
|
31267
31903
|
source_service_name: pulumi.Input[str]
|
|
31268
31904
|
"""
|
|
@@ -31277,7 +31913,7 @@ class PgServiceIntegrationArgs:
|
|
|
31277
31913
|
integration_type: pulumi.Input[str],
|
|
31278
31914
|
source_service_name: pulumi.Input[str]):
|
|
31279
31915
|
"""
|
|
31280
|
-
:param pulumi.Input[str] integration_type: Type of the service integration. The possible
|
|
31916
|
+
:param pulumi.Input[str] integration_type: Type of the service integration. The possible values are `read_replica` and `disaster_recovery`.
|
|
31281
31917
|
:param pulumi.Input[str] source_service_name: Name of the source service
|
|
31282
31918
|
"""
|
|
31283
31919
|
pulumi.set(__self__, "integration_type", integration_type)
|
|
@@ -31287,7 +31923,7 @@ class PgServiceIntegrationArgs:
|
|
|
31287
31923
|
@pulumi.getter(name="integrationType")
|
|
31288
31924
|
def integration_type(self) -> pulumi.Input[str]:
|
|
31289
31925
|
"""
|
|
31290
|
-
Type of the service integration. The possible
|
|
31926
|
+
Type of the service integration. The possible values are `read_replica` and `disaster_recovery`.
|
|
31291
31927
|
"""
|
|
31292
31928
|
return pulumi.get(self, "integration_type")
|
|
31293
31929
|
|
|
@@ -32660,7 +33296,7 @@ if not MYPY:
|
|
|
32660
33296
|
class RedisServiceIntegrationArgsDict(TypedDict):
|
|
32661
33297
|
integration_type: pulumi.Input[str]
|
|
32662
33298
|
"""
|
|
32663
|
-
Type of the service integration
|
|
33299
|
+
Type of the service integration. The possible value is `read_replica`.
|
|
32664
33300
|
"""
|
|
32665
33301
|
source_service_name: pulumi.Input[str]
|
|
32666
33302
|
"""
|
|
@@ -32675,7 +33311,7 @@ class RedisServiceIntegrationArgs:
|
|
|
32675
33311
|
integration_type: pulumi.Input[str],
|
|
32676
33312
|
source_service_name: pulumi.Input[str]):
|
|
32677
33313
|
"""
|
|
32678
|
-
:param pulumi.Input[str] integration_type: Type of the service integration
|
|
33314
|
+
:param pulumi.Input[str] integration_type: Type of the service integration. The possible value is `read_replica`.
|
|
32679
33315
|
:param pulumi.Input[str] source_service_name: Name of the source service
|
|
32680
33316
|
"""
|
|
32681
33317
|
pulumi.set(__self__, "integration_type", integration_type)
|
|
@@ -32685,7 +33321,7 @@ class RedisServiceIntegrationArgs:
|
|
|
32685
33321
|
@pulumi.getter(name="integrationType")
|
|
32686
33322
|
def integration_type(self) -> pulumi.Input[str]:
|
|
32687
33323
|
"""
|
|
32688
|
-
Type of the service integration
|
|
33324
|
+
Type of the service integration. The possible value is `read_replica`.
|
|
32689
33325
|
"""
|
|
32690
33326
|
return pulumi.get(self, "integration_type")
|
|
32691
33327
|
|
|
@@ -38827,7 +39463,7 @@ if not MYPY:
|
|
|
38827
39463
|
class ValkeyServiceIntegrationArgsDict(TypedDict):
|
|
38828
39464
|
integration_type: pulumi.Input[str]
|
|
38829
39465
|
"""
|
|
38830
|
-
Type of the service integration
|
|
39466
|
+
Type of the service integration. The possible value is `read_replica`.
|
|
38831
39467
|
"""
|
|
38832
39468
|
source_service_name: pulumi.Input[str]
|
|
38833
39469
|
"""
|
|
@@ -38842,7 +39478,7 @@ class ValkeyServiceIntegrationArgs:
|
|
|
38842
39478
|
integration_type: pulumi.Input[str],
|
|
38843
39479
|
source_service_name: pulumi.Input[str]):
|
|
38844
39480
|
"""
|
|
38845
|
-
:param pulumi.Input[str] integration_type: Type of the service integration
|
|
39481
|
+
:param pulumi.Input[str] integration_type: Type of the service integration. The possible value is `read_replica`.
|
|
38846
39482
|
:param pulumi.Input[str] source_service_name: Name of the source service
|
|
38847
39483
|
"""
|
|
38848
39484
|
pulumi.set(__self__, "integration_type", integration_type)
|
|
@@ -38852,7 +39488,7 @@ class ValkeyServiceIntegrationArgs:
|
|
|
38852
39488
|
@pulumi.getter(name="integrationType")
|
|
38853
39489
|
def integration_type(self) -> pulumi.Input[str]:
|
|
38854
39490
|
"""
|
|
38855
|
-
Type of the service integration
|
|
39491
|
+
Type of the service integration. The possible value is `read_replica`.
|
|
38856
39492
|
"""
|
|
38857
39493
|
return pulumi.get(self, "integration_type")
|
|
38858
39494
|
|
|
@@ -39060,6 +39696,10 @@ if not MYPY:
|
|
|
39060
39696
|
"""
|
|
39061
39697
|
The minute of an hour when backup for the service is started. New backup is only started if previous backup has already completed. Example: `30`.
|
|
39062
39698
|
"""
|
|
39699
|
+
frequent_snapshots: NotRequired[pulumi.Input[bool]]
|
|
39700
|
+
"""
|
|
39701
|
+
When enabled, Valkey will create frequent local RDB snapshots. When disabled, Valkey will only take RDB snapshots when a backup is created, based on the backup schedule. This setting is ignored when `valkey_persistence` is set to `off`. Default: `true`.
|
|
39702
|
+
"""
|
|
39063
39703
|
ip_filter_objects: NotRequired[pulumi.Input[Sequence[pulumi.Input['ValkeyValkeyUserConfigIpFilterObjectArgsDict']]]]
|
|
39064
39704
|
"""
|
|
39065
39705
|
Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`
|
|
@@ -39161,6 +39801,7 @@ class ValkeyValkeyUserConfigArgs:
|
|
|
39161
39801
|
additional_backup_regions: Optional[pulumi.Input[str]] = None,
|
|
39162
39802
|
backup_hour: Optional[pulumi.Input[int]] = None,
|
|
39163
39803
|
backup_minute: Optional[pulumi.Input[int]] = None,
|
|
39804
|
+
frequent_snapshots: Optional[pulumi.Input[bool]] = None,
|
|
39164
39805
|
ip_filter_objects: Optional[pulumi.Input[Sequence[pulumi.Input['ValkeyValkeyUserConfigIpFilterObjectArgs']]]] = None,
|
|
39165
39806
|
ip_filter_strings: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
39166
39807
|
ip_filters: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
@@ -39188,6 +39829,7 @@ class ValkeyValkeyUserConfigArgs:
|
|
|
39188
39829
|
:param pulumi.Input[str] additional_backup_regions: Additional Cloud Regions for Backup Replication.
|
|
39189
39830
|
:param pulumi.Input[int] backup_hour: The hour of day (in UTC) when backup for the service is started. New backup is only started if previous backup has already completed. Example: `3`.
|
|
39190
39831
|
:param pulumi.Input[int] backup_minute: The minute of an hour when backup for the service is started. New backup is only started if previous backup has already completed. Example: `30`.
|
|
39832
|
+
:param pulumi.Input[bool] frequent_snapshots: When enabled, Valkey will create frequent local RDB snapshots. When disabled, Valkey will only take RDB snapshots when a backup is created, based on the backup schedule. This setting is ignored when `valkey_persistence` is set to `off`. Default: `true`.
|
|
39191
39833
|
:param pulumi.Input[Sequence[pulumi.Input['ValkeyValkeyUserConfigIpFilterObjectArgs']]] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`
|
|
39192
39834
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
|
|
39193
39835
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ip_filters: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
|
|
@@ -39218,6 +39860,8 @@ class ValkeyValkeyUserConfigArgs:
|
|
|
39218
39860
|
pulumi.set(__self__, "backup_hour", backup_hour)
|
|
39219
39861
|
if backup_minute is not None:
|
|
39220
39862
|
pulumi.set(__self__, "backup_minute", backup_minute)
|
|
39863
|
+
if frequent_snapshots is not None:
|
|
39864
|
+
pulumi.set(__self__, "frequent_snapshots", frequent_snapshots)
|
|
39221
39865
|
if ip_filter_objects is not None:
|
|
39222
39866
|
pulumi.set(__self__, "ip_filter_objects", ip_filter_objects)
|
|
39223
39867
|
if ip_filter_strings is not None:
|
|
@@ -39304,6 +39948,18 @@ class ValkeyValkeyUserConfigArgs:
|
|
|
39304
39948
|
def backup_minute(self, value: Optional[pulumi.Input[int]]):
|
|
39305
39949
|
pulumi.set(self, "backup_minute", value)
|
|
39306
39950
|
|
|
39951
|
+
@property
|
|
39952
|
+
@pulumi.getter(name="frequentSnapshots")
|
|
39953
|
+
def frequent_snapshots(self) -> Optional[pulumi.Input[bool]]:
|
|
39954
|
+
"""
|
|
39955
|
+
When enabled, Valkey will create frequent local RDB snapshots. When disabled, Valkey will only take RDB snapshots when a backup is created, based on the backup schedule. This setting is ignored when `valkey_persistence` is set to `off`. Default: `true`.
|
|
39956
|
+
"""
|
|
39957
|
+
return pulumi.get(self, "frequent_snapshots")
|
|
39958
|
+
|
|
39959
|
+
@frequent_snapshots.setter
|
|
39960
|
+
def frequent_snapshots(self, value: Optional[pulumi.Input[bool]]):
|
|
39961
|
+
pulumi.set(self, "frequent_snapshots", value)
|
|
39962
|
+
|
|
39307
39963
|
@property
|
|
39308
39964
|
@pulumi.getter(name="ipFilterObjects")
|
|
39309
39965
|
def ip_filter_objects(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ValkeyValkeyUserConfigIpFilterObjectArgs']]]]:
|