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/outputs.py
CHANGED
|
@@ -72,6 +72,10 @@ __all__ = [
|
|
|
72
72
|
'FlinkFlinkUserConfigIpFilterObject',
|
|
73
73
|
'FlinkFlinkUserConfigPrivatelinkAccess',
|
|
74
74
|
'FlinkFlinkUserConfigPublicAccess',
|
|
75
|
+
'FlinkJarApplicationApplicationVersion',
|
|
76
|
+
'FlinkJarApplicationApplicationVersionFileInfo',
|
|
77
|
+
'FlinkJarApplicationCurrentDeployment',
|
|
78
|
+
'FlinkJarApplicationVersionFileInfo',
|
|
75
79
|
'FlinkServiceIntegration',
|
|
76
80
|
'FlinkTag',
|
|
77
81
|
'FlinkTechEmail',
|
|
@@ -5488,6 +5492,486 @@ class FlinkFlinkUserConfigPublicAccess(dict):
|
|
|
5488
5492
|
return pulumi.get(self, "flink")
|
|
5489
5493
|
|
|
5490
5494
|
|
|
5495
|
+
@pulumi.output_type
|
|
5496
|
+
class FlinkJarApplicationApplicationVersion(dict):
|
|
5497
|
+
@staticmethod
|
|
5498
|
+
def __key_warning(key: str):
|
|
5499
|
+
suggest = None
|
|
5500
|
+
if key == "createdAt":
|
|
5501
|
+
suggest = "created_at"
|
|
5502
|
+
elif key == "createdBy":
|
|
5503
|
+
suggest = "created_by"
|
|
5504
|
+
elif key == "fileInfos":
|
|
5505
|
+
suggest = "file_infos"
|
|
5506
|
+
|
|
5507
|
+
if suggest:
|
|
5508
|
+
pulumi.log.warn(f"Key '{key}' not found in FlinkJarApplicationApplicationVersion. Access the value via the '{suggest}' property getter instead.")
|
|
5509
|
+
|
|
5510
|
+
def __getitem__(self, key: str) -> Any:
|
|
5511
|
+
FlinkJarApplicationApplicationVersion.__key_warning(key)
|
|
5512
|
+
return super().__getitem__(key)
|
|
5513
|
+
|
|
5514
|
+
def get(self, key: str, default = None) -> Any:
|
|
5515
|
+
FlinkJarApplicationApplicationVersion.__key_warning(key)
|
|
5516
|
+
return super().get(key, default)
|
|
5517
|
+
|
|
5518
|
+
def __init__(__self__, *,
|
|
5519
|
+
created_at: Optional[str] = None,
|
|
5520
|
+
created_by: Optional[str] = None,
|
|
5521
|
+
file_infos: Optional[Sequence['outputs.FlinkJarApplicationApplicationVersionFileInfo']] = None,
|
|
5522
|
+
id: Optional[str] = None,
|
|
5523
|
+
version: Optional[int] = None):
|
|
5524
|
+
"""
|
|
5525
|
+
:param str created_at: The creation timestamp of this entity in ISO 8601 format, always in UTC.
|
|
5526
|
+
:param str created_by: The creator of this entity.
|
|
5527
|
+
:param Sequence['FlinkJarApplicationApplicationVersionFileInfoArgs'] file_infos: Flink JarApplicationVersion FileInfo.
|
|
5528
|
+
:param str id: ApplicationVersion ID.
|
|
5529
|
+
:param int version: Version number.
|
|
5530
|
+
"""
|
|
5531
|
+
if created_at is not None:
|
|
5532
|
+
pulumi.set(__self__, "created_at", created_at)
|
|
5533
|
+
if created_by is not None:
|
|
5534
|
+
pulumi.set(__self__, "created_by", created_by)
|
|
5535
|
+
if file_infos is not None:
|
|
5536
|
+
pulumi.set(__self__, "file_infos", file_infos)
|
|
5537
|
+
if id is not None:
|
|
5538
|
+
pulumi.set(__self__, "id", id)
|
|
5539
|
+
if version is not None:
|
|
5540
|
+
pulumi.set(__self__, "version", version)
|
|
5541
|
+
|
|
5542
|
+
@property
|
|
5543
|
+
@pulumi.getter(name="createdAt")
|
|
5544
|
+
def created_at(self) -> Optional[str]:
|
|
5545
|
+
"""
|
|
5546
|
+
The creation timestamp of this entity in ISO 8601 format, always in UTC.
|
|
5547
|
+
"""
|
|
5548
|
+
return pulumi.get(self, "created_at")
|
|
5549
|
+
|
|
5550
|
+
@property
|
|
5551
|
+
@pulumi.getter(name="createdBy")
|
|
5552
|
+
def created_by(self) -> Optional[str]:
|
|
5553
|
+
"""
|
|
5554
|
+
The creator of this entity.
|
|
5555
|
+
"""
|
|
5556
|
+
return pulumi.get(self, "created_by")
|
|
5557
|
+
|
|
5558
|
+
@property
|
|
5559
|
+
@pulumi.getter(name="fileInfos")
|
|
5560
|
+
def file_infos(self) -> Optional[Sequence['outputs.FlinkJarApplicationApplicationVersionFileInfo']]:
|
|
5561
|
+
"""
|
|
5562
|
+
Flink JarApplicationVersion FileInfo.
|
|
5563
|
+
"""
|
|
5564
|
+
return pulumi.get(self, "file_infos")
|
|
5565
|
+
|
|
5566
|
+
@property
|
|
5567
|
+
@pulumi.getter
|
|
5568
|
+
def id(self) -> Optional[str]:
|
|
5569
|
+
"""
|
|
5570
|
+
ApplicationVersion ID.
|
|
5571
|
+
"""
|
|
5572
|
+
return pulumi.get(self, "id")
|
|
5573
|
+
|
|
5574
|
+
@property
|
|
5575
|
+
@pulumi.getter
|
|
5576
|
+
def version(self) -> Optional[int]:
|
|
5577
|
+
"""
|
|
5578
|
+
Version number.
|
|
5579
|
+
"""
|
|
5580
|
+
return pulumi.get(self, "version")
|
|
5581
|
+
|
|
5582
|
+
|
|
5583
|
+
@pulumi.output_type
|
|
5584
|
+
class FlinkJarApplicationApplicationVersionFileInfo(dict):
|
|
5585
|
+
@staticmethod
|
|
5586
|
+
def __key_warning(key: str):
|
|
5587
|
+
suggest = None
|
|
5588
|
+
if key == "fileSha256":
|
|
5589
|
+
suggest = "file_sha256"
|
|
5590
|
+
elif key == "fileSize":
|
|
5591
|
+
suggest = "file_size"
|
|
5592
|
+
elif key == "fileStatus":
|
|
5593
|
+
suggest = "file_status"
|
|
5594
|
+
elif key == "verifyErrorCode":
|
|
5595
|
+
suggest = "verify_error_code"
|
|
5596
|
+
elif key == "verifyErrorMessage":
|
|
5597
|
+
suggest = "verify_error_message"
|
|
5598
|
+
|
|
5599
|
+
if suggest:
|
|
5600
|
+
pulumi.log.warn(f"Key '{key}' not found in FlinkJarApplicationApplicationVersionFileInfo. Access the value via the '{suggest}' property getter instead.")
|
|
5601
|
+
|
|
5602
|
+
def __getitem__(self, key: str) -> Any:
|
|
5603
|
+
FlinkJarApplicationApplicationVersionFileInfo.__key_warning(key)
|
|
5604
|
+
return super().__getitem__(key)
|
|
5605
|
+
|
|
5606
|
+
def get(self, key: str, default = None) -> Any:
|
|
5607
|
+
FlinkJarApplicationApplicationVersionFileInfo.__key_warning(key)
|
|
5608
|
+
return super().get(key, default)
|
|
5609
|
+
|
|
5610
|
+
def __init__(__self__, *,
|
|
5611
|
+
file_sha256: Optional[str] = None,
|
|
5612
|
+
file_size: Optional[int] = None,
|
|
5613
|
+
file_status: Optional[str] = None,
|
|
5614
|
+
url: Optional[str] = None,
|
|
5615
|
+
verify_error_code: Optional[int] = None,
|
|
5616
|
+
verify_error_message: Optional[str] = None):
|
|
5617
|
+
"""
|
|
5618
|
+
:param str file_sha256: sha256 of the file if known.
|
|
5619
|
+
:param int file_size: The size of the file in bytes.
|
|
5620
|
+
:param 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`.
|
|
5621
|
+
:param str url: The pre-signed url of the bucket where the .jar file is uploaded. Becomes null when the JarApplicationVersion is ready or failed.
|
|
5622
|
+
:param 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`.
|
|
5623
|
+
:param str verify_error_message: In the case file_status is FAILED, may contain details about the failure.
|
|
5624
|
+
"""
|
|
5625
|
+
if file_sha256 is not None:
|
|
5626
|
+
pulumi.set(__self__, "file_sha256", file_sha256)
|
|
5627
|
+
if file_size is not None:
|
|
5628
|
+
pulumi.set(__self__, "file_size", file_size)
|
|
5629
|
+
if file_status is not None:
|
|
5630
|
+
pulumi.set(__self__, "file_status", file_status)
|
|
5631
|
+
if url is not None:
|
|
5632
|
+
pulumi.set(__self__, "url", url)
|
|
5633
|
+
if verify_error_code is not None:
|
|
5634
|
+
pulumi.set(__self__, "verify_error_code", verify_error_code)
|
|
5635
|
+
if verify_error_message is not None:
|
|
5636
|
+
pulumi.set(__self__, "verify_error_message", verify_error_message)
|
|
5637
|
+
|
|
5638
|
+
@property
|
|
5639
|
+
@pulumi.getter(name="fileSha256")
|
|
5640
|
+
def file_sha256(self) -> Optional[str]:
|
|
5641
|
+
"""
|
|
5642
|
+
sha256 of the file if known.
|
|
5643
|
+
"""
|
|
5644
|
+
return pulumi.get(self, "file_sha256")
|
|
5645
|
+
|
|
5646
|
+
@property
|
|
5647
|
+
@pulumi.getter(name="fileSize")
|
|
5648
|
+
def file_size(self) -> Optional[int]:
|
|
5649
|
+
"""
|
|
5650
|
+
The size of the file in bytes.
|
|
5651
|
+
"""
|
|
5652
|
+
return pulumi.get(self, "file_size")
|
|
5653
|
+
|
|
5654
|
+
@property
|
|
5655
|
+
@pulumi.getter(name="fileStatus")
|
|
5656
|
+
def file_status(self) -> Optional[str]:
|
|
5657
|
+
"""
|
|
5658
|
+
Indicates whether the uploaded .jar file has been verified by the system and deployment ready. The possible values are `INITIAL`, `READY` and `FAILED`.
|
|
5659
|
+
"""
|
|
5660
|
+
return pulumi.get(self, "file_status")
|
|
5661
|
+
|
|
5662
|
+
@property
|
|
5663
|
+
@pulumi.getter
|
|
5664
|
+
def url(self) -> Optional[str]:
|
|
5665
|
+
"""
|
|
5666
|
+
The pre-signed url of the bucket where the .jar file is uploaded. Becomes null when the JarApplicationVersion is ready or failed.
|
|
5667
|
+
"""
|
|
5668
|
+
return pulumi.get(self, "url")
|
|
5669
|
+
|
|
5670
|
+
@property
|
|
5671
|
+
@pulumi.getter(name="verifyErrorCode")
|
|
5672
|
+
def verify_error_code(self) -> Optional[int]:
|
|
5673
|
+
"""
|
|
5674
|
+
In the case file_status is FAILED, the error code of the failure. The possible values are `1`, `2` and `3`.
|
|
5675
|
+
"""
|
|
5676
|
+
return pulumi.get(self, "verify_error_code")
|
|
5677
|
+
|
|
5678
|
+
@property
|
|
5679
|
+
@pulumi.getter(name="verifyErrorMessage")
|
|
5680
|
+
def verify_error_message(self) -> Optional[str]:
|
|
5681
|
+
"""
|
|
5682
|
+
In the case file_status is FAILED, may contain details about the failure.
|
|
5683
|
+
"""
|
|
5684
|
+
return pulumi.get(self, "verify_error_message")
|
|
5685
|
+
|
|
5686
|
+
|
|
5687
|
+
@pulumi.output_type
|
|
5688
|
+
class FlinkJarApplicationCurrentDeployment(dict):
|
|
5689
|
+
@staticmethod
|
|
5690
|
+
def __key_warning(key: str):
|
|
5691
|
+
suggest = None
|
|
5692
|
+
if key == "createdAt":
|
|
5693
|
+
suggest = "created_at"
|
|
5694
|
+
elif key == "createdBy":
|
|
5695
|
+
suggest = "created_by"
|
|
5696
|
+
elif key == "entryClass":
|
|
5697
|
+
suggest = "entry_class"
|
|
5698
|
+
elif key == "errorMsg":
|
|
5699
|
+
suggest = "error_msg"
|
|
5700
|
+
elif key == "jobId":
|
|
5701
|
+
suggest = "job_id"
|
|
5702
|
+
elif key == "lastSavepoint":
|
|
5703
|
+
suggest = "last_savepoint"
|
|
5704
|
+
elif key == "programArgs":
|
|
5705
|
+
suggest = "program_args"
|
|
5706
|
+
elif key == "startingSavepoint":
|
|
5707
|
+
suggest = "starting_savepoint"
|
|
5708
|
+
elif key == "versionId":
|
|
5709
|
+
suggest = "version_id"
|
|
5710
|
+
|
|
5711
|
+
if suggest:
|
|
5712
|
+
pulumi.log.warn(f"Key '{key}' not found in FlinkJarApplicationCurrentDeployment. Access the value via the '{suggest}' property getter instead.")
|
|
5713
|
+
|
|
5714
|
+
def __getitem__(self, key: str) -> Any:
|
|
5715
|
+
FlinkJarApplicationCurrentDeployment.__key_warning(key)
|
|
5716
|
+
return super().__getitem__(key)
|
|
5717
|
+
|
|
5718
|
+
def get(self, key: str, default = None) -> Any:
|
|
5719
|
+
FlinkJarApplicationCurrentDeployment.__key_warning(key)
|
|
5720
|
+
return super().get(key, default)
|
|
5721
|
+
|
|
5722
|
+
def __init__(__self__, *,
|
|
5723
|
+
created_at: Optional[str] = None,
|
|
5724
|
+
created_by: Optional[str] = None,
|
|
5725
|
+
entry_class: Optional[str] = None,
|
|
5726
|
+
error_msg: Optional[str] = None,
|
|
5727
|
+
id: Optional[str] = None,
|
|
5728
|
+
job_id: Optional[str] = None,
|
|
5729
|
+
last_savepoint: Optional[str] = None,
|
|
5730
|
+
parallelism: Optional[int] = None,
|
|
5731
|
+
program_args: Optional[Sequence[str]] = None,
|
|
5732
|
+
starting_savepoint: Optional[str] = None,
|
|
5733
|
+
status: Optional[str] = None,
|
|
5734
|
+
version_id: Optional[str] = None):
|
|
5735
|
+
"""
|
|
5736
|
+
:param str created_at: The creation timestamp of this entity in ISO 8601 format, always in UTC.
|
|
5737
|
+
:param str created_by: The creator of this entity.
|
|
5738
|
+
:param str entry_class: The fully qualified name of the entry class to pass during Flink job submission through the entryClass parameter.
|
|
5739
|
+
:param str error_msg: Error message describing what caused deployment to fail.
|
|
5740
|
+
:param str id: Deployment ID.
|
|
5741
|
+
:param str job_id: Job ID.
|
|
5742
|
+
:param str last_savepoint: Job savepoint.
|
|
5743
|
+
:param 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.
|
|
5744
|
+
:param Sequence[str] program_args: Arguments to pass during Flink job submission through the programArgsList parameter.
|
|
5745
|
+
:param str starting_savepoint: Job savepoint.
|
|
5746
|
+
:param 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`.
|
|
5747
|
+
:param str version_id: ApplicationVersion ID.
|
|
5748
|
+
"""
|
|
5749
|
+
if created_at is not None:
|
|
5750
|
+
pulumi.set(__self__, "created_at", created_at)
|
|
5751
|
+
if created_by is not None:
|
|
5752
|
+
pulumi.set(__self__, "created_by", created_by)
|
|
5753
|
+
if entry_class is not None:
|
|
5754
|
+
pulumi.set(__self__, "entry_class", entry_class)
|
|
5755
|
+
if error_msg is not None:
|
|
5756
|
+
pulumi.set(__self__, "error_msg", error_msg)
|
|
5757
|
+
if id is not None:
|
|
5758
|
+
pulumi.set(__self__, "id", id)
|
|
5759
|
+
if job_id is not None:
|
|
5760
|
+
pulumi.set(__self__, "job_id", job_id)
|
|
5761
|
+
if last_savepoint is not None:
|
|
5762
|
+
pulumi.set(__self__, "last_savepoint", last_savepoint)
|
|
5763
|
+
if parallelism is not None:
|
|
5764
|
+
pulumi.set(__self__, "parallelism", parallelism)
|
|
5765
|
+
if program_args is not None:
|
|
5766
|
+
pulumi.set(__self__, "program_args", program_args)
|
|
5767
|
+
if starting_savepoint is not None:
|
|
5768
|
+
pulumi.set(__self__, "starting_savepoint", starting_savepoint)
|
|
5769
|
+
if status is not None:
|
|
5770
|
+
pulumi.set(__self__, "status", status)
|
|
5771
|
+
if version_id is not None:
|
|
5772
|
+
pulumi.set(__self__, "version_id", version_id)
|
|
5773
|
+
|
|
5774
|
+
@property
|
|
5775
|
+
@pulumi.getter(name="createdAt")
|
|
5776
|
+
def created_at(self) -> Optional[str]:
|
|
5777
|
+
"""
|
|
5778
|
+
The creation timestamp of this entity in ISO 8601 format, always in UTC.
|
|
5779
|
+
"""
|
|
5780
|
+
return pulumi.get(self, "created_at")
|
|
5781
|
+
|
|
5782
|
+
@property
|
|
5783
|
+
@pulumi.getter(name="createdBy")
|
|
5784
|
+
def created_by(self) -> Optional[str]:
|
|
5785
|
+
"""
|
|
5786
|
+
The creator of this entity.
|
|
5787
|
+
"""
|
|
5788
|
+
return pulumi.get(self, "created_by")
|
|
5789
|
+
|
|
5790
|
+
@property
|
|
5791
|
+
@pulumi.getter(name="entryClass")
|
|
5792
|
+
def entry_class(self) -> Optional[str]:
|
|
5793
|
+
"""
|
|
5794
|
+
The fully qualified name of the entry class to pass during Flink job submission through the entryClass parameter.
|
|
5795
|
+
"""
|
|
5796
|
+
return pulumi.get(self, "entry_class")
|
|
5797
|
+
|
|
5798
|
+
@property
|
|
5799
|
+
@pulumi.getter(name="errorMsg")
|
|
5800
|
+
def error_msg(self) -> Optional[str]:
|
|
5801
|
+
"""
|
|
5802
|
+
Error message describing what caused deployment to fail.
|
|
5803
|
+
"""
|
|
5804
|
+
return pulumi.get(self, "error_msg")
|
|
5805
|
+
|
|
5806
|
+
@property
|
|
5807
|
+
@pulumi.getter
|
|
5808
|
+
def id(self) -> Optional[str]:
|
|
5809
|
+
"""
|
|
5810
|
+
Deployment ID.
|
|
5811
|
+
"""
|
|
5812
|
+
return pulumi.get(self, "id")
|
|
5813
|
+
|
|
5814
|
+
@property
|
|
5815
|
+
@pulumi.getter(name="jobId")
|
|
5816
|
+
def job_id(self) -> Optional[str]:
|
|
5817
|
+
"""
|
|
5818
|
+
Job ID.
|
|
5819
|
+
"""
|
|
5820
|
+
return pulumi.get(self, "job_id")
|
|
5821
|
+
|
|
5822
|
+
@property
|
|
5823
|
+
@pulumi.getter(name="lastSavepoint")
|
|
5824
|
+
def last_savepoint(self) -> Optional[str]:
|
|
5825
|
+
"""
|
|
5826
|
+
Job savepoint.
|
|
5827
|
+
"""
|
|
5828
|
+
return pulumi.get(self, "last_savepoint")
|
|
5829
|
+
|
|
5830
|
+
@property
|
|
5831
|
+
@pulumi.getter
|
|
5832
|
+
def parallelism(self) -> Optional[int]:
|
|
5833
|
+
"""
|
|
5834
|
+
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.
|
|
5835
|
+
"""
|
|
5836
|
+
return pulumi.get(self, "parallelism")
|
|
5837
|
+
|
|
5838
|
+
@property
|
|
5839
|
+
@pulumi.getter(name="programArgs")
|
|
5840
|
+
def program_args(self) -> Optional[Sequence[str]]:
|
|
5841
|
+
"""
|
|
5842
|
+
Arguments to pass during Flink job submission through the programArgsList parameter.
|
|
5843
|
+
"""
|
|
5844
|
+
return pulumi.get(self, "program_args")
|
|
5845
|
+
|
|
5846
|
+
@property
|
|
5847
|
+
@pulumi.getter(name="startingSavepoint")
|
|
5848
|
+
def starting_savepoint(self) -> Optional[str]:
|
|
5849
|
+
"""
|
|
5850
|
+
Job savepoint.
|
|
5851
|
+
"""
|
|
5852
|
+
return pulumi.get(self, "starting_savepoint")
|
|
5853
|
+
|
|
5854
|
+
@property
|
|
5855
|
+
@pulumi.getter
|
|
5856
|
+
def status(self) -> Optional[str]:
|
|
5857
|
+
"""
|
|
5858
|
+
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`.
|
|
5859
|
+
"""
|
|
5860
|
+
return pulumi.get(self, "status")
|
|
5861
|
+
|
|
5862
|
+
@property
|
|
5863
|
+
@pulumi.getter(name="versionId")
|
|
5864
|
+
def version_id(self) -> Optional[str]:
|
|
5865
|
+
"""
|
|
5866
|
+
ApplicationVersion ID.
|
|
5867
|
+
"""
|
|
5868
|
+
return pulumi.get(self, "version_id")
|
|
5869
|
+
|
|
5870
|
+
|
|
5871
|
+
@pulumi.output_type
|
|
5872
|
+
class FlinkJarApplicationVersionFileInfo(dict):
|
|
5873
|
+
@staticmethod
|
|
5874
|
+
def __key_warning(key: str):
|
|
5875
|
+
suggest = None
|
|
5876
|
+
if key == "fileSha256":
|
|
5877
|
+
suggest = "file_sha256"
|
|
5878
|
+
elif key == "fileSize":
|
|
5879
|
+
suggest = "file_size"
|
|
5880
|
+
elif key == "fileStatus":
|
|
5881
|
+
suggest = "file_status"
|
|
5882
|
+
elif key == "verifyErrorCode":
|
|
5883
|
+
suggest = "verify_error_code"
|
|
5884
|
+
elif key == "verifyErrorMessage":
|
|
5885
|
+
suggest = "verify_error_message"
|
|
5886
|
+
|
|
5887
|
+
if suggest:
|
|
5888
|
+
pulumi.log.warn(f"Key '{key}' not found in FlinkJarApplicationVersionFileInfo. Access the value via the '{suggest}' property getter instead.")
|
|
5889
|
+
|
|
5890
|
+
def __getitem__(self, key: str) -> Any:
|
|
5891
|
+
FlinkJarApplicationVersionFileInfo.__key_warning(key)
|
|
5892
|
+
return super().__getitem__(key)
|
|
5893
|
+
|
|
5894
|
+
def get(self, key: str, default = None) -> Any:
|
|
5895
|
+
FlinkJarApplicationVersionFileInfo.__key_warning(key)
|
|
5896
|
+
return super().get(key, default)
|
|
5897
|
+
|
|
5898
|
+
def __init__(__self__, *,
|
|
5899
|
+
file_sha256: Optional[str] = None,
|
|
5900
|
+
file_size: Optional[int] = None,
|
|
5901
|
+
file_status: Optional[str] = None,
|
|
5902
|
+
url: Optional[str] = None,
|
|
5903
|
+
verify_error_code: Optional[int] = None,
|
|
5904
|
+
verify_error_message: Optional[str] = None):
|
|
5905
|
+
"""
|
|
5906
|
+
:param str file_sha256: sha256 of the file if known.
|
|
5907
|
+
:param int file_size: The size of the file in bytes.
|
|
5908
|
+
:param 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`.
|
|
5909
|
+
:param str url: The pre-signed url of the bucket where the .jar file is uploaded. Becomes null when the JarApplicationVersion is ready or failed.
|
|
5910
|
+
:param 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`.
|
|
5911
|
+
:param str verify_error_message: In the case file_status is FAILED, may contain details about the failure.
|
|
5912
|
+
"""
|
|
5913
|
+
if file_sha256 is not None:
|
|
5914
|
+
pulumi.set(__self__, "file_sha256", file_sha256)
|
|
5915
|
+
if file_size is not None:
|
|
5916
|
+
pulumi.set(__self__, "file_size", file_size)
|
|
5917
|
+
if file_status is not None:
|
|
5918
|
+
pulumi.set(__self__, "file_status", file_status)
|
|
5919
|
+
if url is not None:
|
|
5920
|
+
pulumi.set(__self__, "url", url)
|
|
5921
|
+
if verify_error_code is not None:
|
|
5922
|
+
pulumi.set(__self__, "verify_error_code", verify_error_code)
|
|
5923
|
+
if verify_error_message is not None:
|
|
5924
|
+
pulumi.set(__self__, "verify_error_message", verify_error_message)
|
|
5925
|
+
|
|
5926
|
+
@property
|
|
5927
|
+
@pulumi.getter(name="fileSha256")
|
|
5928
|
+
def file_sha256(self) -> Optional[str]:
|
|
5929
|
+
"""
|
|
5930
|
+
sha256 of the file if known.
|
|
5931
|
+
"""
|
|
5932
|
+
return pulumi.get(self, "file_sha256")
|
|
5933
|
+
|
|
5934
|
+
@property
|
|
5935
|
+
@pulumi.getter(name="fileSize")
|
|
5936
|
+
def file_size(self) -> Optional[int]:
|
|
5937
|
+
"""
|
|
5938
|
+
The size of the file in bytes.
|
|
5939
|
+
"""
|
|
5940
|
+
return pulumi.get(self, "file_size")
|
|
5941
|
+
|
|
5942
|
+
@property
|
|
5943
|
+
@pulumi.getter(name="fileStatus")
|
|
5944
|
+
def file_status(self) -> Optional[str]:
|
|
5945
|
+
"""
|
|
5946
|
+
Indicates whether the uploaded .jar file has been verified by the system and deployment ready. The possible values are `FAILED`, `INITIAL` and `READY`.
|
|
5947
|
+
"""
|
|
5948
|
+
return pulumi.get(self, "file_status")
|
|
5949
|
+
|
|
5950
|
+
@property
|
|
5951
|
+
@pulumi.getter
|
|
5952
|
+
def url(self) -> Optional[str]:
|
|
5953
|
+
"""
|
|
5954
|
+
The pre-signed url of the bucket where the .jar file is uploaded. Becomes null when the JarApplicationVersion is ready or failed.
|
|
5955
|
+
"""
|
|
5956
|
+
return pulumi.get(self, "url")
|
|
5957
|
+
|
|
5958
|
+
@property
|
|
5959
|
+
@pulumi.getter(name="verifyErrorCode")
|
|
5960
|
+
def verify_error_code(self) -> Optional[int]:
|
|
5961
|
+
"""
|
|
5962
|
+
In the case file_status is FAILED, the error code of the failure. The possible values are `1`, `2` and `3`.
|
|
5963
|
+
"""
|
|
5964
|
+
return pulumi.get(self, "verify_error_code")
|
|
5965
|
+
|
|
5966
|
+
@property
|
|
5967
|
+
@pulumi.getter(name="verifyErrorMessage")
|
|
5968
|
+
def verify_error_message(self) -> Optional[str]:
|
|
5969
|
+
"""
|
|
5970
|
+
In the case file_status is FAILED, may contain details about the failure.
|
|
5971
|
+
"""
|
|
5972
|
+
return pulumi.get(self, "verify_error_message")
|
|
5973
|
+
|
|
5974
|
+
|
|
5491
5975
|
@pulumi.output_type
|
|
5492
5976
|
class FlinkServiceIntegration(dict):
|
|
5493
5977
|
@staticmethod
|
|
@@ -12670,8 +13154,8 @@ class KafkaTopicConfig(dict):
|
|
|
12670
13154
|
segment_ms: Optional[str] = None,
|
|
12671
13155
|
unclean_leader_election_enable: Optional[bool] = None):
|
|
12672
13156
|
"""
|
|
12673
|
-
:param str cleanup_policy: cleanup.policy value. The possible values are `
|
|
12674
|
-
:param str compression_type: compression.type value. The possible values are `
|
|
13157
|
+
:param str cleanup_policy: cleanup.policy value. The possible values are `compact`, `compact,delete` and `delete`.
|
|
13158
|
+
:param str compression_type: compression.type value. The possible values are `gzip`, `lz4`, `producer`, `snappy`, `uncompressed` and `zstd`.
|
|
12675
13159
|
:param str delete_retention_ms: delete.retention.ms value
|
|
12676
13160
|
:param str file_delete_delay_ms: file.delete.delay.ms value
|
|
12677
13161
|
:param str flush_messages: flush.messages value
|
|
@@ -12682,7 +13166,7 @@ class KafkaTopicConfig(dict):
|
|
|
12682
13166
|
:param str max_compaction_lag_ms: max.compaction.lag.ms value
|
|
12683
13167
|
:param str max_message_bytes: max.message.bytes value
|
|
12684
13168
|
:param bool message_downconversion_enable: message.downconversion.enable value
|
|
12685
|
-
:param str message_format_version: message.format.version value. The possible values are `0.
|
|
13169
|
+
:param 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`.
|
|
12686
13170
|
:param str message_timestamp_difference_max_ms: message.timestamp.difference.max.ms value
|
|
12687
13171
|
:param str message_timestamp_type: message.timestamp.type value. The possible values are `CreateTime` and `LogAppendTime`.
|
|
12688
13172
|
:param float min_cleanable_dirty_ratio: min.cleanable.dirty.ratio value
|
|
@@ -12757,7 +13241,7 @@ class KafkaTopicConfig(dict):
|
|
|
12757
13241
|
@pulumi.getter(name="cleanupPolicy")
|
|
12758
13242
|
def cleanup_policy(self) -> Optional[str]:
|
|
12759
13243
|
"""
|
|
12760
|
-
cleanup.policy value. The possible values are `
|
|
13244
|
+
cleanup.policy value. The possible values are `compact`, `compact,delete` and `delete`.
|
|
12761
13245
|
"""
|
|
12762
13246
|
return pulumi.get(self, "cleanup_policy")
|
|
12763
13247
|
|
|
@@ -12765,7 +13249,7 @@ class KafkaTopicConfig(dict):
|
|
|
12765
13249
|
@pulumi.getter(name="compressionType")
|
|
12766
13250
|
def compression_type(self) -> Optional[str]:
|
|
12767
13251
|
"""
|
|
12768
|
-
compression.type value. The possible values are `
|
|
13252
|
+
compression.type value. The possible values are `gzip`, `lz4`, `producer`, `snappy`, `uncompressed` and `zstd`.
|
|
12769
13253
|
"""
|
|
12770
13254
|
return pulumi.get(self, "compression_type")
|
|
12771
13255
|
|
|
@@ -12853,7 +13337,7 @@ class KafkaTopicConfig(dict):
|
|
|
12853
13337
|
@pulumi.getter(name="messageFormatVersion")
|
|
12854
13338
|
def message_format_version(self) -> Optional[str]:
|
|
12855
13339
|
"""
|
|
12856
|
-
message.format.version value. The possible values are `0.
|
|
13340
|
+
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`.
|
|
12857
13341
|
"""
|
|
12858
13342
|
return pulumi.get(self, "message_format_version")
|
|
12859
13343
|
|
|
@@ -20284,7 +20768,7 @@ class OrganizationPermissionPermission(dict):
|
|
|
20284
20768
|
create_time: Optional[str] = None,
|
|
20285
20769
|
update_time: Optional[str] = None):
|
|
20286
20770
|
"""
|
|
20287
|
-
:param Sequence[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`.
|
|
20771
|
+
:param Sequence[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`.
|
|
20288
20772
|
:param 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.
|
|
20289
20773
|
:param str principal_type: The type of principal. The possible values are `user` and `user_group`.
|
|
20290
20774
|
:param str create_time: Time created.
|
|
@@ -20302,7 +20786,7 @@ class OrganizationPermissionPermission(dict):
|
|
|
20302
20786
|
@pulumi.getter
|
|
20303
20787
|
def permissions(self) -> Sequence[str]:
|
|
20304
20788
|
"""
|
|
20305
|
-
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`.
|
|
20789
|
+
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`.
|
|
20306
20790
|
"""
|
|
20307
20791
|
return pulumi.get(self, "permissions")
|
|
20308
20792
|
|
|
@@ -22916,7 +23400,7 @@ class PgServiceIntegration(dict):
|
|
|
22916
23400
|
integration_type: str,
|
|
22917
23401
|
source_service_name: str):
|
|
22918
23402
|
"""
|
|
22919
|
-
:param str integration_type: Type of the service integration. The possible
|
|
23403
|
+
:param str integration_type: Type of the service integration. The possible values are `read_replica` and `disaster_recovery`.
|
|
22920
23404
|
:param str source_service_name: Name of the source service
|
|
22921
23405
|
"""
|
|
22922
23406
|
pulumi.set(__self__, "integration_type", integration_type)
|
|
@@ -22926,7 +23410,7 @@ class PgServiceIntegration(dict):
|
|
|
22926
23410
|
@pulumi.getter(name="integrationType")
|
|
22927
23411
|
def integration_type(self) -> str:
|
|
22928
23412
|
"""
|
|
22929
|
-
Type of the service integration. The possible
|
|
23413
|
+
Type of the service integration. The possible values are `read_replica` and `disaster_recovery`.
|
|
22930
23414
|
"""
|
|
22931
23415
|
return pulumi.get(self, "integration_type")
|
|
22932
23416
|
|
|
@@ -23890,7 +24374,7 @@ class RedisServiceIntegration(dict):
|
|
|
23890
24374
|
integration_type: str,
|
|
23891
24375
|
source_service_name: str):
|
|
23892
24376
|
"""
|
|
23893
|
-
:param str integration_type: Type of the service integration
|
|
24377
|
+
:param str integration_type: Type of the service integration. The possible value is `read_replica`.
|
|
23894
24378
|
:param str source_service_name: Name of the source service
|
|
23895
24379
|
"""
|
|
23896
24380
|
pulumi.set(__self__, "integration_type", integration_type)
|
|
@@ -23900,7 +24384,7 @@ class RedisServiceIntegration(dict):
|
|
|
23900
24384
|
@pulumi.getter(name="integrationType")
|
|
23901
24385
|
def integration_type(self) -> str:
|
|
23902
24386
|
"""
|
|
23903
|
-
Type of the service integration
|
|
24387
|
+
Type of the service integration. The possible value is `read_replica`.
|
|
23904
24388
|
"""
|
|
23905
24389
|
return pulumi.get(self, "integration_type")
|
|
23906
24390
|
|
|
@@ -28621,7 +29105,7 @@ class ValkeyServiceIntegration(dict):
|
|
|
28621
29105
|
integration_type: str,
|
|
28622
29106
|
source_service_name: str):
|
|
28623
29107
|
"""
|
|
28624
|
-
:param str integration_type: Type of the service integration
|
|
29108
|
+
:param str integration_type: Type of the service integration. The possible value is `read_replica`.
|
|
28625
29109
|
:param str source_service_name: Name of the source service
|
|
28626
29110
|
"""
|
|
28627
29111
|
pulumi.set(__self__, "integration_type", integration_type)
|
|
@@ -28631,7 +29115,7 @@ class ValkeyServiceIntegration(dict):
|
|
|
28631
29115
|
@pulumi.getter(name="integrationType")
|
|
28632
29116
|
def integration_type(self) -> str:
|
|
28633
29117
|
"""
|
|
28634
|
-
Type of the service integration
|
|
29118
|
+
Type of the service integration. The possible value is `read_replica`.
|
|
28635
29119
|
"""
|
|
28636
29120
|
return pulumi.get(self, "integration_type")
|
|
28637
29121
|
|
|
@@ -28776,6 +29260,8 @@ class ValkeyValkeyUserConfig(dict):
|
|
|
28776
29260
|
suggest = "backup_hour"
|
|
28777
29261
|
elif key == "backupMinute":
|
|
28778
29262
|
suggest = "backup_minute"
|
|
29263
|
+
elif key == "frequentSnapshots":
|
|
29264
|
+
suggest = "frequent_snapshots"
|
|
28779
29265
|
elif key == "ipFilterObjects":
|
|
28780
29266
|
suggest = "ip_filter_objects"
|
|
28781
29267
|
elif key == "ipFilterStrings":
|
|
@@ -28836,6 +29322,7 @@ class ValkeyValkeyUserConfig(dict):
|
|
|
28836
29322
|
additional_backup_regions: Optional[str] = None,
|
|
28837
29323
|
backup_hour: Optional[int] = None,
|
|
28838
29324
|
backup_minute: Optional[int] = None,
|
|
29325
|
+
frequent_snapshots: Optional[bool] = None,
|
|
28839
29326
|
ip_filter_objects: Optional[Sequence['outputs.ValkeyValkeyUserConfigIpFilterObject']] = None,
|
|
28840
29327
|
ip_filter_strings: Optional[Sequence[str]] = None,
|
|
28841
29328
|
ip_filters: Optional[Sequence[str]] = None,
|
|
@@ -28863,6 +29350,7 @@ class ValkeyValkeyUserConfig(dict):
|
|
|
28863
29350
|
:param str additional_backup_regions: Additional Cloud Regions for Backup Replication.
|
|
28864
29351
|
:param 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`.
|
|
28865
29352
|
:param 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`.
|
|
29353
|
+
:param 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`.
|
|
28866
29354
|
:param Sequence['ValkeyValkeyUserConfigIpFilterObjectArgs'] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`
|
|
28867
29355
|
:param Sequence[str] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
|
|
28868
29356
|
:param Sequence[str] ip_filters: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
|
|
@@ -28893,6 +29381,8 @@ class ValkeyValkeyUserConfig(dict):
|
|
|
28893
29381
|
pulumi.set(__self__, "backup_hour", backup_hour)
|
|
28894
29382
|
if backup_minute is not None:
|
|
28895
29383
|
pulumi.set(__self__, "backup_minute", backup_minute)
|
|
29384
|
+
if frequent_snapshots is not None:
|
|
29385
|
+
pulumi.set(__self__, "frequent_snapshots", frequent_snapshots)
|
|
28896
29386
|
if ip_filter_objects is not None:
|
|
28897
29387
|
pulumi.set(__self__, "ip_filter_objects", ip_filter_objects)
|
|
28898
29388
|
if ip_filter_strings is not None:
|
|
@@ -28964,6 +29454,14 @@ class ValkeyValkeyUserConfig(dict):
|
|
|
28964
29454
|
"""
|
|
28965
29455
|
return pulumi.get(self, "backup_minute")
|
|
28966
29456
|
|
|
29457
|
+
@property
|
|
29458
|
+
@pulumi.getter(name="frequentSnapshots")
|
|
29459
|
+
def frequent_snapshots(self) -> Optional[bool]:
|
|
29460
|
+
"""
|
|
29461
|
+
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`.
|
|
29462
|
+
"""
|
|
29463
|
+
return pulumi.get(self, "frequent_snapshots")
|
|
29464
|
+
|
|
28967
29465
|
@property
|
|
28968
29466
|
@pulumi.getter(name="ipFilterObjects")
|
|
28969
29467
|
def ip_filter_objects(self) -> Optional[Sequence['outputs.ValkeyValkeyUserConfigIpFilterObject']]:
|
|
@@ -39464,8 +39962,8 @@ class GetKafkaTopicConfigResult(dict):
|
|
|
39464
39962
|
segment_ms: Optional[str] = None,
|
|
39465
39963
|
unclean_leader_election_enable: Optional[bool] = None):
|
|
39466
39964
|
"""
|
|
39467
|
-
:param str cleanup_policy: cleanup.policy value. The possible values are `
|
|
39468
|
-
:param str compression_type: compression.type value. The possible values are `
|
|
39965
|
+
:param str cleanup_policy: cleanup.policy value. The possible values are `compact`, `compact,delete` and `delete`.
|
|
39966
|
+
:param str compression_type: compression.type value. The possible values are `gzip`, `lz4`, `producer`, `snappy`, `uncompressed` and `zstd`.
|
|
39469
39967
|
:param str delete_retention_ms: delete.retention.ms value
|
|
39470
39968
|
:param str file_delete_delay_ms: file.delete.delay.ms value
|
|
39471
39969
|
:param str flush_messages: flush.messages value
|
|
@@ -39476,7 +39974,7 @@ class GetKafkaTopicConfigResult(dict):
|
|
|
39476
39974
|
:param str max_compaction_lag_ms: max.compaction.lag.ms value
|
|
39477
39975
|
:param str max_message_bytes: max.message.bytes value
|
|
39478
39976
|
:param bool message_downconversion_enable: message.downconversion.enable value
|
|
39479
|
-
:param str message_format_version: message.format.version value. The possible values are `0.
|
|
39977
|
+
:param 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`.
|
|
39480
39978
|
:param str message_timestamp_difference_max_ms: message.timestamp.difference.max.ms value
|
|
39481
39979
|
:param str message_timestamp_type: message.timestamp.type value. The possible values are `CreateTime` and `LogAppendTime`.
|
|
39482
39980
|
:param float min_cleanable_dirty_ratio: min.cleanable.dirty.ratio value
|
|
@@ -39551,7 +40049,7 @@ class GetKafkaTopicConfigResult(dict):
|
|
|
39551
40049
|
@pulumi.getter(name="cleanupPolicy")
|
|
39552
40050
|
def cleanup_policy(self) -> Optional[str]:
|
|
39553
40051
|
"""
|
|
39554
|
-
cleanup.policy value. The possible values are `
|
|
40052
|
+
cleanup.policy value. The possible values are `compact`, `compact,delete` and `delete`.
|
|
39555
40053
|
"""
|
|
39556
40054
|
return pulumi.get(self, "cleanup_policy")
|
|
39557
40055
|
|
|
@@ -39559,7 +40057,7 @@ class GetKafkaTopicConfigResult(dict):
|
|
|
39559
40057
|
@pulumi.getter(name="compressionType")
|
|
39560
40058
|
def compression_type(self) -> Optional[str]:
|
|
39561
40059
|
"""
|
|
39562
|
-
compression.type value. The possible values are `
|
|
40060
|
+
compression.type value. The possible values are `gzip`, `lz4`, `producer`, `snappy`, `uncompressed` and `zstd`.
|
|
39563
40061
|
"""
|
|
39564
40062
|
return pulumi.get(self, "compression_type")
|
|
39565
40063
|
|
|
@@ -39647,7 +40145,7 @@ class GetKafkaTopicConfigResult(dict):
|
|
|
39647
40145
|
@pulumi.getter(name="messageFormatVersion")
|
|
39648
40146
|
def message_format_version(self) -> Optional[str]:
|
|
39649
40147
|
"""
|
|
39650
|
-
message.format.version value. The possible values are `0.
|
|
40148
|
+
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`.
|
|
39651
40149
|
"""
|
|
39652
40150
|
return pulumi.get(self, "message_format_version")
|
|
39653
40151
|
|
|
@@ -47784,7 +48282,7 @@ class GetPgServiceIntegrationResult(dict):
|
|
|
47784
48282
|
integration_type: str,
|
|
47785
48283
|
source_service_name: str):
|
|
47786
48284
|
"""
|
|
47787
|
-
:param str integration_type: Type of the service integration. The possible
|
|
48285
|
+
:param str integration_type: Type of the service integration. The possible values are `read_replica` and `disaster_recovery`.
|
|
47788
48286
|
:param str source_service_name: Name of the source service
|
|
47789
48287
|
"""
|
|
47790
48288
|
pulumi.set(__self__, "integration_type", integration_type)
|
|
@@ -47794,7 +48292,7 @@ class GetPgServiceIntegrationResult(dict):
|
|
|
47794
48292
|
@pulumi.getter(name="integrationType")
|
|
47795
48293
|
def integration_type(self) -> str:
|
|
47796
48294
|
"""
|
|
47797
|
-
Type of the service integration. The possible
|
|
48295
|
+
Type of the service integration. The possible values are `read_replica` and `disaster_recovery`.
|
|
47798
48296
|
"""
|
|
47799
48297
|
return pulumi.get(self, "integration_type")
|
|
47800
48298
|
|
|
@@ -48603,7 +49101,7 @@ class GetRedisServiceIntegrationResult(dict):
|
|
|
48603
49101
|
integration_type: str,
|
|
48604
49102
|
source_service_name: str):
|
|
48605
49103
|
"""
|
|
48606
|
-
:param str integration_type: Type of the service integration
|
|
49104
|
+
:param str integration_type: Type of the service integration. The possible value is `read_replica`.
|
|
48607
49105
|
:param str source_service_name: Name of the source service
|
|
48608
49106
|
"""
|
|
48609
49107
|
pulumi.set(__self__, "integration_type", integration_type)
|
|
@@ -48613,7 +49111,7 @@ class GetRedisServiceIntegrationResult(dict):
|
|
|
48613
49111
|
@pulumi.getter(name="integrationType")
|
|
48614
49112
|
def integration_type(self) -> str:
|
|
48615
49113
|
"""
|
|
48616
|
-
Type of the service integration
|
|
49114
|
+
Type of the service integration. The possible value is `read_replica`.
|
|
48617
49115
|
"""
|
|
48618
49116
|
return pulumi.get(self, "integration_type")
|
|
48619
49117
|
|
|
@@ -52246,7 +52744,7 @@ class GetValkeyServiceIntegrationResult(dict):
|
|
|
52246
52744
|
integration_type: str,
|
|
52247
52745
|
source_service_name: str):
|
|
52248
52746
|
"""
|
|
52249
|
-
:param str integration_type: Type of the service integration
|
|
52747
|
+
:param str integration_type: Type of the service integration. The possible value is `read_replica`.
|
|
52250
52748
|
:param str source_service_name: Name of the source service
|
|
52251
52749
|
"""
|
|
52252
52750
|
pulumi.set(__self__, "integration_type", integration_type)
|
|
@@ -52256,7 +52754,7 @@ class GetValkeyServiceIntegrationResult(dict):
|
|
|
52256
52754
|
@pulumi.getter(name="integrationType")
|
|
52257
52755
|
def integration_type(self) -> str:
|
|
52258
52756
|
"""
|
|
52259
|
-
Type of the service integration
|
|
52757
|
+
Type of the service integration. The possible value is `read_replica`.
|
|
52260
52758
|
"""
|
|
52261
52759
|
return pulumi.get(self, "integration_type")
|
|
52262
52760
|
|
|
@@ -52373,6 +52871,7 @@ class GetValkeyValkeyUserConfigResult(dict):
|
|
|
52373
52871
|
additional_backup_regions: Optional[str] = None,
|
|
52374
52872
|
backup_hour: Optional[int] = None,
|
|
52375
52873
|
backup_minute: Optional[int] = None,
|
|
52874
|
+
frequent_snapshots: Optional[bool] = None,
|
|
52376
52875
|
ip_filter_objects: Optional[Sequence['outputs.GetValkeyValkeyUserConfigIpFilterObjectResult']] = None,
|
|
52377
52876
|
ip_filter_strings: Optional[Sequence[str]] = None,
|
|
52378
52877
|
ip_filters: Optional[Sequence[str]] = None,
|
|
@@ -52400,6 +52899,7 @@ class GetValkeyValkeyUserConfigResult(dict):
|
|
|
52400
52899
|
:param str additional_backup_regions: Additional Cloud Regions for Backup Replication.
|
|
52401
52900
|
:param 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`.
|
|
52402
52901
|
:param 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`.
|
|
52902
|
+
:param 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`.
|
|
52403
52903
|
:param Sequence['GetValkeyValkeyUserConfigIpFilterObjectArgs'] ip_filter_objects: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`
|
|
52404
52904
|
:param Sequence[str] ip_filter_strings: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
|
|
52405
52905
|
:param Sequence[str] ip_filters: Allow incoming connections from CIDR address block, e.g. `10.20.0.0/16`.
|
|
@@ -52430,6 +52930,8 @@ class GetValkeyValkeyUserConfigResult(dict):
|
|
|
52430
52930
|
pulumi.set(__self__, "backup_hour", backup_hour)
|
|
52431
52931
|
if backup_minute is not None:
|
|
52432
52932
|
pulumi.set(__self__, "backup_minute", backup_minute)
|
|
52933
|
+
if frequent_snapshots is not None:
|
|
52934
|
+
pulumi.set(__self__, "frequent_snapshots", frequent_snapshots)
|
|
52433
52935
|
if ip_filter_objects is not None:
|
|
52434
52936
|
pulumi.set(__self__, "ip_filter_objects", ip_filter_objects)
|
|
52435
52937
|
if ip_filter_strings is not None:
|
|
@@ -52501,6 +53003,14 @@ class GetValkeyValkeyUserConfigResult(dict):
|
|
|
52501
53003
|
"""
|
|
52502
53004
|
return pulumi.get(self, "backup_minute")
|
|
52503
53005
|
|
|
53006
|
+
@property
|
|
53007
|
+
@pulumi.getter(name="frequentSnapshots")
|
|
53008
|
+
def frequent_snapshots(self) -> Optional[bool]:
|
|
53009
|
+
"""
|
|
53010
|
+
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`.
|
|
53011
|
+
"""
|
|
53012
|
+
return pulumi.get(self, "frequent_snapshots")
|
|
53013
|
+
|
|
52504
53014
|
@property
|
|
52505
53015
|
@pulumi.getter(name="ipFilterObjects")
|
|
52506
53016
|
def ip_filter_objects(self) -> Optional[Sequence['outputs.GetValkeyValkeyUserConfigIpFilterObjectResult']]:
|