pulumi-oci 3.5.0a1756363728__py3-none-any.whl → 3.5.0a1756440723__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.
- pulumi_oci/__init__.py +80 -0
- pulumi_oci/core/compute_gpu_memory_fabric.py +28 -0
- pulumi_oci/core/get_compute_gpu_memory_fabric.py +15 -1
- pulumi_oci/core/outputs.py +11 -0
- pulumi_oci/database/_inputs.py +257 -12
- pulumi_oci/database/data_guard_association.py +98 -0
- pulumi_oci/database/database.py +28 -0
- pulumi_oci/database/db_node.py +56 -0
- pulumi_oci/database/db_system.py +108 -14
- pulumi_oci/database/exadb_vm_cluster.py +49 -0
- pulumi_oci/database/exascale_db_storage_vault.py +28 -0
- pulumi_oci/database/get_data_guard_association.py +23 -1
- pulumi_oci/database/get_database.py +15 -1
- pulumi_oci/database/get_db_node.py +29 -1
- pulumi_oci/database/get_db_system_shapes.py +25 -6
- pulumi_oci/database/get_db_system_storage_performances.py +20 -3
- pulumi_oci/database/get_db_versions.py +20 -1
- pulumi_oci/database/get_exadb_vm_cluster.py +15 -1
- pulumi_oci/database/get_exascale_db_storage_vault.py +15 -1
- pulumi_oci/database/get_exascale_db_storage_vaults.py +87 -8
- pulumi_oci/database/get_gi_versions.py +25 -6
- pulumi_oci/database/outputs.py +575 -8
- pulumi_oci/datasafe/__init__.py +24 -0
- pulumi_oci/datasafe/_inputs.py +3669 -1537
- pulumi_oci/datasafe/attribute_set.py +693 -0
- pulumi_oci/datasafe/audit_profile.py +356 -95
- pulumi_oci/datasafe/audit_profile_management.py +389 -129
- pulumi_oci/datasafe/audit_trail.py +47 -0
- pulumi_oci/datasafe/audit_trail_management.py +49 -0
- pulumi_oci/datasafe/get_alerts.py +2 -2
- pulumi_oci/datasafe/get_attribute_set.py +295 -0
- pulumi_oci/datasafe/get_attribute_set_associated_resources.py +188 -0
- pulumi_oci/datasafe/get_attribute_sets.py +340 -0
- pulumi_oci/datasafe/get_audit_archive_retrievals.py +20 -1
- pulumi_oci/datasafe/get_audit_events.py +2 -2
- pulumi_oci/datasafe/get_audit_policies.py +20 -1
- pulumi_oci/datasafe/get_audit_profile.py +78 -8
- pulumi_oci/datasafe/get_audit_profile_target_overrides.py +163 -0
- pulumi_oci/datasafe/get_audit_profiles.py +50 -9
- pulumi_oci/datasafe/get_audit_trail.py +15 -1
- pulumi_oci/datasafe/get_audit_trails.py +20 -1
- pulumi_oci/datasafe/get_database_security_configs.py +20 -1
- pulumi_oci/datasafe/get_discovery_analytics.py +39 -1
- pulumi_oci/datasafe/get_masking_analytics.py +42 -1
- pulumi_oci/datasafe/get_onprem_connectors.py +26 -23
- pulumi_oci/datasafe/get_report.py +43 -1
- pulumi_oci/datasafe/get_reports.py +23 -1
- pulumi_oci/datasafe/get_security_assessment.py +116 -2
- pulumi_oci/datasafe/get_security_assessment_checks.py +264 -0
- pulumi_oci/datasafe/get_security_assessment_finding.py +64 -4
- pulumi_oci/datasafe/get_security_assessment_findings.py +73 -6
- pulumi_oci/datasafe/get_security_assessment_template_analytics.py +362 -0
- pulumi_oci/datasafe/get_security_assessment_template_association_analytics.py +298 -0
- pulumi_oci/datasafe/get_security_assessment_template_baseline_comparison.py +347 -0
- pulumi_oci/datasafe/get_security_assessments.py +68 -2
- pulumi_oci/datasafe/get_security_policies.py +23 -1
- pulumi_oci/datasafe/get_security_policy.py +15 -1
- pulumi_oci/datasafe/get_security_policy_config.py +296 -0
- pulumi_oci/datasafe/get_security_policy_configs.py +342 -0
- pulumi_oci/datasafe/get_security_policy_deployment.py +52 -2
- pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_state.py +49 -4
- pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_states.py +47 -6
- pulumi_oci/datasafe/get_security_policy_deployments.py +29 -7
- pulumi_oci/datasafe/get_sensitive_column_analytics.py +20 -1
- pulumi_oci/datasafe/get_sql_collection_analytics.py +20 -1
- pulumi_oci/datasafe/get_sql_collections.py +20 -1
- pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py +2 -2
- pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py +2 -2
- pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py +2 -2
- pulumi_oci/datasafe/get_sql_firewall_violations.py +2 -2
- pulumi_oci/datasafe/get_target_alert_policy_associations.py +0 -34
- pulumi_oci/datasafe/get_target_database_group.py +296 -0
- pulumi_oci/datasafe/get_target_database_group_group_member.py +146 -0
- pulumi_oci/datasafe/get_target_database_groups.py +313 -0
- pulumi_oci/datasafe/get_unified_audit_policies.py +386 -0
- pulumi_oci/datasafe/get_unified_audit_policy.py +338 -0
- pulumi_oci/datasafe/get_unified_audit_policy_definition.py +309 -0
- pulumi_oci/datasafe/get_unified_audit_policy_definitions.py +334 -0
- pulumi_oci/datasafe/get_user_assessment.py +29 -1
- pulumi_oci/datasafe/get_user_assessments.py +45 -1
- pulumi_oci/datasafe/outputs.py +6964 -192
- pulumi_oci/datasafe/report.py +84 -0
- pulumi_oci/datasafe/report_definition.py +4 -0
- pulumi_oci/datasafe/security_assessment.py +425 -82
- pulumi_oci/datasafe/security_assessment_check.py +456 -0
- pulumi_oci/datasafe/security_assessment_finding.py +818 -0
- pulumi_oci/datasafe/security_policy.py +94 -77
- pulumi_oci/datasafe/security_policy_config.py +698 -0
- pulumi_oci/datasafe/security_policy_deployment.py +272 -67
- pulumi_oci/datasafe/security_policy_deployment_management.py +266 -42
- pulumi_oci/datasafe/security_policy_management.py +87 -30
- pulumi_oci/datasafe/target_alert_policy_association.py +7 -77
- pulumi_oci/datasafe/target_database.py +4 -0
- pulumi_oci/datasafe/target_database_group.py +679 -0
- pulumi_oci/datasafe/target_database_peer_target_database.py +2 -0
- pulumi_oci/datasafe/unified_audit_policy.py +836 -0
- pulumi_oci/datasafe/unified_audit_policy_definition.py +687 -0
- pulumi_oci/datasafe/user_assessment.py +105 -28
- pulumi_oci/disasterrecovery/_inputs.py +231 -3
- pulumi_oci/disasterrecovery/dr_protection_group.py +24 -0
- pulumi_oci/disasterrecovery/outputs.py +446 -12
- pulumi_oci/generativeai/_inputs.py +572 -63
- pulumi_oci/generativeai/agent_data_ingestion_job.py +48 -0
- pulumi_oci/generativeai/agent_data_source.py +7 -81
- pulumi_oci/generativeai/agent_knowledge_base.py +35 -25
- pulumi_oci/generativeai/agent_tool.py +172 -0
- pulumi_oci/generativeai/get_agent_data_ingestion_job.py +26 -1
- pulumi_oci/generativeai/get_agent_data_source.py +1 -5
- pulumi_oci/generativeai/get_agent_data_sources.py +0 -4
- pulumi_oci/generativeai/get_agent_knowledge_base.py +16 -6
- pulumi_oci/generativeai/get_agent_knowledge_bases.py +0 -4
- pulumi_oci/generativeai/outputs.py +1128 -106
- pulumi_oci/goldengate/deployment.py +94 -0
- pulumi_oci/goldengate/get_deployment.py +29 -1
- pulumi_oci/goldengate/get_deployments.py +23 -1
- pulumi_oci/goldengate/outputs.py +35 -2
- pulumi_oci/oci/__init__.py +9 -0
- pulumi_oci/oci/_inputs.py +420 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster.py +380 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster_config.py +254 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster_config_version.py +177 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster_config_versions.py +144 -0
- pulumi_oci/oci/get_managed_kafka_kafka_cluster_configs.py +199 -0
- pulumi_oci/oci/get_managed_kafka_kafka_clusters.py +199 -0
- pulumi_oci/oci/managed_kafka_kafka_cluster.py +984 -0
- pulumi_oci/oci/managed_kafka_kafka_cluster_config.py +549 -0
- pulumi_oci/oci/managed_kafka_kafka_cluster_superusers_management.py +352 -0
- pulumi_oci/oci/outputs.py +1009 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-3.5.0a1756363728.dist-info → pulumi_oci-3.5.0a1756440723.dist-info}/METADATA +1 -1
- {pulumi_oci-3.5.0a1756363728.dist-info → pulumi_oci-3.5.0a1756440723.dist-info}/RECORD +133 -100
- {pulumi_oci-3.5.0a1756363728.dist-info → pulumi_oci-3.5.0a1756440723.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.5.0a1756363728.dist-info → pulumi_oci-3.5.0a1756440723.dist-info}/top_level.txt +0 -0
pulumi_oci/oci/outputs.py
CHANGED
@@ -23,6 +23,10 @@ __all__ = [
|
|
23
23
|
'ApiaccesscontrolPrivilegedApiRequestPrivilegedOperationList',
|
24
24
|
'DbmulticloudMultiCloudResourceDiscoveryResource',
|
25
25
|
'DbmulticloudOracleDbAzureConnectorArcAgentNode',
|
26
|
+
'ManagedKafkaKafkaClusterAccessSubnet',
|
27
|
+
'ManagedKafkaKafkaClusterBrokerShape',
|
28
|
+
'ManagedKafkaKafkaClusterConfigLatestConfig',
|
29
|
+
'ManagedKafkaKafkaClusterKafkaBootstrapUrl',
|
26
30
|
'GetApiPlatformApiPlatformInstanceIdcsAppResult',
|
27
31
|
'GetApiPlatformApiPlatformInstanceUriResult',
|
28
32
|
'GetApiPlatformApiPlatformInstancesApiPlatformInstanceCollectionResult',
|
@@ -74,6 +78,23 @@ __all__ = [
|
|
74
78
|
'GetDbmulticloudOracleDbAzureVaultsFilterResult',
|
75
79
|
'GetDbmulticloudOracleDbAzureVaultsOracleDbAzureVaultSummaryCollectionResult',
|
76
80
|
'GetDbmulticloudOracleDbAzureVaultsOracleDbAzureVaultSummaryCollectionItemResult',
|
81
|
+
'GetManagedKafkaKafkaClusterAccessSubnetResult',
|
82
|
+
'GetManagedKafkaKafkaClusterBrokerShapeResult',
|
83
|
+
'GetManagedKafkaKafkaClusterConfigLatestConfigResult',
|
84
|
+
'GetManagedKafkaKafkaClusterConfigVersionsFilterResult',
|
85
|
+
'GetManagedKafkaKafkaClusterConfigVersionsKafkaClusterConfigVersionCollectionResult',
|
86
|
+
'GetManagedKafkaKafkaClusterConfigVersionsKafkaClusterConfigVersionCollectionItemResult',
|
87
|
+
'GetManagedKafkaKafkaClusterConfigsFilterResult',
|
88
|
+
'GetManagedKafkaKafkaClusterConfigsKafkaClusterConfigCollectionResult',
|
89
|
+
'GetManagedKafkaKafkaClusterConfigsKafkaClusterConfigCollectionItemResult',
|
90
|
+
'GetManagedKafkaKafkaClusterConfigsKafkaClusterConfigCollectionItemLatestConfigResult',
|
91
|
+
'GetManagedKafkaKafkaClusterKafkaBootstrapUrlResult',
|
92
|
+
'GetManagedKafkaKafkaClustersFilterResult',
|
93
|
+
'GetManagedKafkaKafkaClustersKafkaClusterCollectionResult',
|
94
|
+
'GetManagedKafkaKafkaClustersKafkaClusterCollectionItemResult',
|
95
|
+
'GetManagedKafkaKafkaClustersKafkaClusterCollectionItemAccessSubnetResult',
|
96
|
+
'GetManagedKafkaKafkaClustersKafkaClusterCollectionItemBrokerShapeResult',
|
97
|
+
'GetManagedKafkaKafkaClustersKafkaClusterCollectionItemKafkaBootstrapUrlResult',
|
77
98
|
'GetWlmsManagedInstanceConfigurationResult',
|
78
99
|
'GetWlmsManagedInstanceScanResultsFilterResult',
|
79
100
|
'GetWlmsManagedInstanceScanResultsScanResultCollectionResult',
|
@@ -574,6 +595,200 @@ class DbmulticloudOracleDbAzureConnectorArcAgentNode(dict):
|
|
574
595
|
return pulumi.get(self, "time_last_checked")
|
575
596
|
|
576
597
|
|
598
|
+
@pulumi.output_type
|
599
|
+
class ManagedKafkaKafkaClusterAccessSubnet(dict):
|
600
|
+
def __init__(__self__, *,
|
601
|
+
subnets: Sequence[_builtins.str]):
|
602
|
+
"""
|
603
|
+
:param Sequence[_builtins.str] subnets: (Updatable) Subnets OCIDs
|
604
|
+
"""
|
605
|
+
pulumi.set(__self__, "subnets", subnets)
|
606
|
+
|
607
|
+
@_builtins.property
|
608
|
+
@pulumi.getter
|
609
|
+
def subnets(self) -> Sequence[_builtins.str]:
|
610
|
+
"""
|
611
|
+
(Updatable) Subnets OCIDs
|
612
|
+
"""
|
613
|
+
return pulumi.get(self, "subnets")
|
614
|
+
|
615
|
+
|
616
|
+
@pulumi.output_type
|
617
|
+
class ManagedKafkaKafkaClusterBrokerShape(dict):
|
618
|
+
@staticmethod
|
619
|
+
def __key_warning(key: str):
|
620
|
+
suggest = None
|
621
|
+
if key == "nodeCount":
|
622
|
+
suggest = "node_count"
|
623
|
+
elif key == "ocpuCount":
|
624
|
+
suggest = "ocpu_count"
|
625
|
+
elif key == "storageSizeInGbs":
|
626
|
+
suggest = "storage_size_in_gbs"
|
627
|
+
|
628
|
+
if suggest:
|
629
|
+
pulumi.log.warn(f"Key '{key}' not found in ManagedKafkaKafkaClusterBrokerShape. Access the value via the '{suggest}' property getter instead.")
|
630
|
+
|
631
|
+
def __getitem__(self, key: str) -> Any:
|
632
|
+
ManagedKafkaKafkaClusterBrokerShape.__key_warning(key)
|
633
|
+
return super().__getitem__(key)
|
634
|
+
|
635
|
+
def get(self, key: str, default = None) -> Any:
|
636
|
+
ManagedKafkaKafkaClusterBrokerShape.__key_warning(key)
|
637
|
+
return super().get(key, default)
|
638
|
+
|
639
|
+
def __init__(__self__, *,
|
640
|
+
node_count: _builtins.int,
|
641
|
+
ocpu_count: _builtins.int,
|
642
|
+
storage_size_in_gbs: Optional[_builtins.int] = None):
|
643
|
+
"""
|
644
|
+
:param _builtins.int node_count: (Updatable) Number of Kafka broker nodes
|
645
|
+
:param _builtins.int ocpu_count: (Updatable) Number of OCPUs per nodes
|
646
|
+
:param _builtins.int storage_size_in_gbs: (Updatable) Size of the storage per nodes.
|
647
|
+
"""
|
648
|
+
pulumi.set(__self__, "node_count", node_count)
|
649
|
+
pulumi.set(__self__, "ocpu_count", ocpu_count)
|
650
|
+
if storage_size_in_gbs is not None:
|
651
|
+
pulumi.set(__self__, "storage_size_in_gbs", storage_size_in_gbs)
|
652
|
+
|
653
|
+
@_builtins.property
|
654
|
+
@pulumi.getter(name="nodeCount")
|
655
|
+
def node_count(self) -> _builtins.int:
|
656
|
+
"""
|
657
|
+
(Updatable) Number of Kafka broker nodes
|
658
|
+
"""
|
659
|
+
return pulumi.get(self, "node_count")
|
660
|
+
|
661
|
+
@_builtins.property
|
662
|
+
@pulumi.getter(name="ocpuCount")
|
663
|
+
def ocpu_count(self) -> _builtins.int:
|
664
|
+
"""
|
665
|
+
(Updatable) Number of OCPUs per nodes
|
666
|
+
"""
|
667
|
+
return pulumi.get(self, "ocpu_count")
|
668
|
+
|
669
|
+
@_builtins.property
|
670
|
+
@pulumi.getter(name="storageSizeInGbs")
|
671
|
+
def storage_size_in_gbs(self) -> Optional[_builtins.int]:
|
672
|
+
"""
|
673
|
+
(Updatable) Size of the storage per nodes.
|
674
|
+
"""
|
675
|
+
return pulumi.get(self, "storage_size_in_gbs")
|
676
|
+
|
677
|
+
|
678
|
+
@pulumi.output_type
|
679
|
+
class ManagedKafkaKafkaClusterConfigLatestConfig(dict):
|
680
|
+
@staticmethod
|
681
|
+
def __key_warning(key: str):
|
682
|
+
suggest = None
|
683
|
+
if key == "configId":
|
684
|
+
suggest = "config_id"
|
685
|
+
elif key == "timeCreated":
|
686
|
+
suggest = "time_created"
|
687
|
+
elif key == "versionNumber":
|
688
|
+
suggest = "version_number"
|
689
|
+
|
690
|
+
if suggest:
|
691
|
+
pulumi.log.warn(f"Key '{key}' not found in ManagedKafkaKafkaClusterConfigLatestConfig. Access the value via the '{suggest}' property getter instead.")
|
692
|
+
|
693
|
+
def __getitem__(self, key: str) -> Any:
|
694
|
+
ManagedKafkaKafkaClusterConfigLatestConfig.__key_warning(key)
|
695
|
+
return super().__getitem__(key)
|
696
|
+
|
697
|
+
def get(self, key: str, default = None) -> Any:
|
698
|
+
ManagedKafkaKafkaClusterConfigLatestConfig.__key_warning(key)
|
699
|
+
return super().get(key, default)
|
700
|
+
|
701
|
+
def __init__(__self__, *,
|
702
|
+
properties: Mapping[str, _builtins.str],
|
703
|
+
config_id: Optional[_builtins.str] = None,
|
704
|
+
time_created: Optional[_builtins.str] = None,
|
705
|
+
version_number: Optional[_builtins.int] = None):
|
706
|
+
"""
|
707
|
+
:param Mapping[str, _builtins.str] properties: (Updatable) Cluster configuration key-value pairs
|
708
|
+
:param _builtins.str config_id: (Updatable) ID cluster configuration
|
709
|
+
:param _builtins.str time_created: (Updatable) The date and time the KafkaClusterConfigVersion was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
710
|
+
:param _builtins.int version_number: (Updatable) Version of the cluster configuration
|
711
|
+
|
712
|
+
|
713
|
+
** IMPORTANT **
|
714
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
715
|
+
"""
|
716
|
+
pulumi.set(__self__, "properties", properties)
|
717
|
+
if config_id is not None:
|
718
|
+
pulumi.set(__self__, "config_id", config_id)
|
719
|
+
if time_created is not None:
|
720
|
+
pulumi.set(__self__, "time_created", time_created)
|
721
|
+
if version_number is not None:
|
722
|
+
pulumi.set(__self__, "version_number", version_number)
|
723
|
+
|
724
|
+
@_builtins.property
|
725
|
+
@pulumi.getter
|
726
|
+
def properties(self) -> Mapping[str, _builtins.str]:
|
727
|
+
"""
|
728
|
+
(Updatable) Cluster configuration key-value pairs
|
729
|
+
"""
|
730
|
+
return pulumi.get(self, "properties")
|
731
|
+
|
732
|
+
@_builtins.property
|
733
|
+
@pulumi.getter(name="configId")
|
734
|
+
def config_id(self) -> Optional[_builtins.str]:
|
735
|
+
"""
|
736
|
+
(Updatable) ID cluster configuration
|
737
|
+
"""
|
738
|
+
return pulumi.get(self, "config_id")
|
739
|
+
|
740
|
+
@_builtins.property
|
741
|
+
@pulumi.getter(name="timeCreated")
|
742
|
+
def time_created(self) -> Optional[_builtins.str]:
|
743
|
+
"""
|
744
|
+
(Updatable) The date and time the KafkaClusterConfigVersion was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
745
|
+
"""
|
746
|
+
return pulumi.get(self, "time_created")
|
747
|
+
|
748
|
+
@_builtins.property
|
749
|
+
@pulumi.getter(name="versionNumber")
|
750
|
+
def version_number(self) -> Optional[_builtins.int]:
|
751
|
+
"""
|
752
|
+
(Updatable) Version of the cluster configuration
|
753
|
+
|
754
|
+
|
755
|
+
** IMPORTANT **
|
756
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
757
|
+
"""
|
758
|
+
return pulumi.get(self, "version_number")
|
759
|
+
|
760
|
+
|
761
|
+
@pulumi.output_type
|
762
|
+
class ManagedKafkaKafkaClusterKafkaBootstrapUrl(dict):
|
763
|
+
def __init__(__self__, *,
|
764
|
+
name: Optional[_builtins.str] = None,
|
765
|
+
url: Optional[_builtins.str] = None):
|
766
|
+
"""
|
767
|
+
:param _builtins.str name: Name of the Kafka listener providing this bootstrap URL
|
768
|
+
:param _builtins.str url: Bootstrap URL
|
769
|
+
"""
|
770
|
+
if name is not None:
|
771
|
+
pulumi.set(__self__, "name", name)
|
772
|
+
if url is not None:
|
773
|
+
pulumi.set(__self__, "url", url)
|
774
|
+
|
775
|
+
@_builtins.property
|
776
|
+
@pulumi.getter
|
777
|
+
def name(self) -> Optional[_builtins.str]:
|
778
|
+
"""
|
779
|
+
Name of the Kafka listener providing this bootstrap URL
|
780
|
+
"""
|
781
|
+
return pulumi.get(self, "name")
|
782
|
+
|
783
|
+
@_builtins.property
|
784
|
+
@pulumi.getter
|
785
|
+
def url(self) -> Optional[_builtins.str]:
|
786
|
+
"""
|
787
|
+
Bootstrap URL
|
788
|
+
"""
|
789
|
+
return pulumi.get(self, "url")
|
790
|
+
|
791
|
+
|
577
792
|
@pulumi.output_type
|
578
793
|
class GetApiPlatformApiPlatformInstanceIdcsAppResult(dict):
|
579
794
|
def __init__(__self__, *,
|
@@ -3955,6 +4170,800 @@ class GetDbmulticloudOracleDbAzureVaultsOracleDbAzureVaultSummaryCollectionItemR
|
|
3955
4170
|
return pulumi.get(self, "type")
|
3956
4171
|
|
3957
4172
|
|
4173
|
+
@pulumi.output_type
|
4174
|
+
class GetManagedKafkaKafkaClusterAccessSubnetResult(dict):
|
4175
|
+
def __init__(__self__, *,
|
4176
|
+
subnets: Sequence[_builtins.str]):
|
4177
|
+
"""
|
4178
|
+
:param Sequence[_builtins.str] subnets: Subnets OCIDs
|
4179
|
+
"""
|
4180
|
+
pulumi.set(__self__, "subnets", subnets)
|
4181
|
+
|
4182
|
+
@_builtins.property
|
4183
|
+
@pulumi.getter
|
4184
|
+
def subnets(self) -> Sequence[_builtins.str]:
|
4185
|
+
"""
|
4186
|
+
Subnets OCIDs
|
4187
|
+
"""
|
4188
|
+
return pulumi.get(self, "subnets")
|
4189
|
+
|
4190
|
+
|
4191
|
+
@pulumi.output_type
|
4192
|
+
class GetManagedKafkaKafkaClusterBrokerShapeResult(dict):
|
4193
|
+
def __init__(__self__, *,
|
4194
|
+
node_count: _builtins.int,
|
4195
|
+
ocpu_count: _builtins.int,
|
4196
|
+
storage_size_in_gbs: _builtins.int):
|
4197
|
+
"""
|
4198
|
+
:param _builtins.int node_count: Number of Kafka broker nodes
|
4199
|
+
:param _builtins.int ocpu_count: Number of OCPUs per nodes
|
4200
|
+
:param _builtins.int storage_size_in_gbs: Size of the storage per nodes.
|
4201
|
+
"""
|
4202
|
+
pulumi.set(__self__, "node_count", node_count)
|
4203
|
+
pulumi.set(__self__, "ocpu_count", ocpu_count)
|
4204
|
+
pulumi.set(__self__, "storage_size_in_gbs", storage_size_in_gbs)
|
4205
|
+
|
4206
|
+
@_builtins.property
|
4207
|
+
@pulumi.getter(name="nodeCount")
|
4208
|
+
def node_count(self) -> _builtins.int:
|
4209
|
+
"""
|
4210
|
+
Number of Kafka broker nodes
|
4211
|
+
"""
|
4212
|
+
return pulumi.get(self, "node_count")
|
4213
|
+
|
4214
|
+
@_builtins.property
|
4215
|
+
@pulumi.getter(name="ocpuCount")
|
4216
|
+
def ocpu_count(self) -> _builtins.int:
|
4217
|
+
"""
|
4218
|
+
Number of OCPUs per nodes
|
4219
|
+
"""
|
4220
|
+
return pulumi.get(self, "ocpu_count")
|
4221
|
+
|
4222
|
+
@_builtins.property
|
4223
|
+
@pulumi.getter(name="storageSizeInGbs")
|
4224
|
+
def storage_size_in_gbs(self) -> _builtins.int:
|
4225
|
+
"""
|
4226
|
+
Size of the storage per nodes.
|
4227
|
+
"""
|
4228
|
+
return pulumi.get(self, "storage_size_in_gbs")
|
4229
|
+
|
4230
|
+
|
4231
|
+
@pulumi.output_type
|
4232
|
+
class GetManagedKafkaKafkaClusterConfigLatestConfigResult(dict):
|
4233
|
+
def __init__(__self__, *,
|
4234
|
+
config_id: _builtins.str,
|
4235
|
+
properties: Mapping[str, _builtins.str],
|
4236
|
+
time_created: _builtins.str,
|
4237
|
+
version_number: _builtins.int):
|
4238
|
+
"""
|
4239
|
+
:param _builtins.str config_id: ID cluster configuration
|
4240
|
+
:param Mapping[str, _builtins.str] properties: Cluster configuration key-value pairs
|
4241
|
+
:param _builtins.str time_created: The date and time the KafkaClusterConfig was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
4242
|
+
:param _builtins.int version_number: Version of the cluster configuration
|
4243
|
+
"""
|
4244
|
+
pulumi.set(__self__, "config_id", config_id)
|
4245
|
+
pulumi.set(__self__, "properties", properties)
|
4246
|
+
pulumi.set(__self__, "time_created", time_created)
|
4247
|
+
pulumi.set(__self__, "version_number", version_number)
|
4248
|
+
|
4249
|
+
@_builtins.property
|
4250
|
+
@pulumi.getter(name="configId")
|
4251
|
+
def config_id(self) -> _builtins.str:
|
4252
|
+
"""
|
4253
|
+
ID cluster configuration
|
4254
|
+
"""
|
4255
|
+
return pulumi.get(self, "config_id")
|
4256
|
+
|
4257
|
+
@_builtins.property
|
4258
|
+
@pulumi.getter
|
4259
|
+
def properties(self) -> Mapping[str, _builtins.str]:
|
4260
|
+
"""
|
4261
|
+
Cluster configuration key-value pairs
|
4262
|
+
"""
|
4263
|
+
return pulumi.get(self, "properties")
|
4264
|
+
|
4265
|
+
@_builtins.property
|
4266
|
+
@pulumi.getter(name="timeCreated")
|
4267
|
+
def time_created(self) -> _builtins.str:
|
4268
|
+
"""
|
4269
|
+
The date and time the KafkaClusterConfig was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
4270
|
+
"""
|
4271
|
+
return pulumi.get(self, "time_created")
|
4272
|
+
|
4273
|
+
@_builtins.property
|
4274
|
+
@pulumi.getter(name="versionNumber")
|
4275
|
+
def version_number(self) -> _builtins.int:
|
4276
|
+
"""
|
4277
|
+
Version of the cluster configuration
|
4278
|
+
"""
|
4279
|
+
return pulumi.get(self, "version_number")
|
4280
|
+
|
4281
|
+
|
4282
|
+
@pulumi.output_type
|
4283
|
+
class GetManagedKafkaKafkaClusterConfigVersionsFilterResult(dict):
|
4284
|
+
def __init__(__self__, *,
|
4285
|
+
name: _builtins.str,
|
4286
|
+
values: Sequence[_builtins.str],
|
4287
|
+
regex: Optional[_builtins.bool] = None):
|
4288
|
+
pulumi.set(__self__, "name", name)
|
4289
|
+
pulumi.set(__self__, "values", values)
|
4290
|
+
if regex is not None:
|
4291
|
+
pulumi.set(__self__, "regex", regex)
|
4292
|
+
|
4293
|
+
@_builtins.property
|
4294
|
+
@pulumi.getter
|
4295
|
+
def name(self) -> _builtins.str:
|
4296
|
+
return pulumi.get(self, "name")
|
4297
|
+
|
4298
|
+
@_builtins.property
|
4299
|
+
@pulumi.getter
|
4300
|
+
def values(self) -> Sequence[_builtins.str]:
|
4301
|
+
return pulumi.get(self, "values")
|
4302
|
+
|
4303
|
+
@_builtins.property
|
4304
|
+
@pulumi.getter
|
4305
|
+
def regex(self) -> Optional[_builtins.bool]:
|
4306
|
+
return pulumi.get(self, "regex")
|
4307
|
+
|
4308
|
+
|
4309
|
+
@pulumi.output_type
|
4310
|
+
class GetManagedKafkaKafkaClusterConfigVersionsKafkaClusterConfigVersionCollectionResult(dict):
|
4311
|
+
def __init__(__self__, *,
|
4312
|
+
items: Sequence['outputs.GetManagedKafkaKafkaClusterConfigVersionsKafkaClusterConfigVersionCollectionItemResult']):
|
4313
|
+
pulumi.set(__self__, "items", items)
|
4314
|
+
|
4315
|
+
@_builtins.property
|
4316
|
+
@pulumi.getter
|
4317
|
+
def items(self) -> Sequence['outputs.GetManagedKafkaKafkaClusterConfigVersionsKafkaClusterConfigVersionCollectionItemResult']:
|
4318
|
+
return pulumi.get(self, "items")
|
4319
|
+
|
4320
|
+
|
4321
|
+
@pulumi.output_type
|
4322
|
+
class GetManagedKafkaKafkaClusterConfigVersionsKafkaClusterConfigVersionCollectionItemResult(dict):
|
4323
|
+
def __init__(__self__, *,
|
4324
|
+
config_id: _builtins.str,
|
4325
|
+
time_created: _builtins.str,
|
4326
|
+
version_number: _builtins.int):
|
4327
|
+
"""
|
4328
|
+
:param _builtins.str config_id: ID cluster configuration
|
4329
|
+
:param _builtins.str time_created: The date and time the KafkaClusterConfigVersion was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
4330
|
+
:param _builtins.int version_number: Version of the cluster configuration
|
4331
|
+
"""
|
4332
|
+
pulumi.set(__self__, "config_id", config_id)
|
4333
|
+
pulumi.set(__self__, "time_created", time_created)
|
4334
|
+
pulumi.set(__self__, "version_number", version_number)
|
4335
|
+
|
4336
|
+
@_builtins.property
|
4337
|
+
@pulumi.getter(name="configId")
|
4338
|
+
def config_id(self) -> _builtins.str:
|
4339
|
+
"""
|
4340
|
+
ID cluster configuration
|
4341
|
+
"""
|
4342
|
+
return pulumi.get(self, "config_id")
|
4343
|
+
|
4344
|
+
@_builtins.property
|
4345
|
+
@pulumi.getter(name="timeCreated")
|
4346
|
+
def time_created(self) -> _builtins.str:
|
4347
|
+
"""
|
4348
|
+
The date and time the KafkaClusterConfigVersion was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
4349
|
+
"""
|
4350
|
+
return pulumi.get(self, "time_created")
|
4351
|
+
|
4352
|
+
@_builtins.property
|
4353
|
+
@pulumi.getter(name="versionNumber")
|
4354
|
+
def version_number(self) -> _builtins.int:
|
4355
|
+
"""
|
4356
|
+
Version of the cluster configuration
|
4357
|
+
"""
|
4358
|
+
return pulumi.get(self, "version_number")
|
4359
|
+
|
4360
|
+
|
4361
|
+
@pulumi.output_type
|
4362
|
+
class GetManagedKafkaKafkaClusterConfigsFilterResult(dict):
|
4363
|
+
def __init__(__self__, *,
|
4364
|
+
name: _builtins.str,
|
4365
|
+
values: Sequence[_builtins.str],
|
4366
|
+
regex: Optional[_builtins.bool] = None):
|
4367
|
+
pulumi.set(__self__, "name", name)
|
4368
|
+
pulumi.set(__self__, "values", values)
|
4369
|
+
if regex is not None:
|
4370
|
+
pulumi.set(__self__, "regex", regex)
|
4371
|
+
|
4372
|
+
@_builtins.property
|
4373
|
+
@pulumi.getter
|
4374
|
+
def name(self) -> _builtins.str:
|
4375
|
+
return pulumi.get(self, "name")
|
4376
|
+
|
4377
|
+
@_builtins.property
|
4378
|
+
@pulumi.getter
|
4379
|
+
def values(self) -> Sequence[_builtins.str]:
|
4380
|
+
return pulumi.get(self, "values")
|
4381
|
+
|
4382
|
+
@_builtins.property
|
4383
|
+
@pulumi.getter
|
4384
|
+
def regex(self) -> Optional[_builtins.bool]:
|
4385
|
+
return pulumi.get(self, "regex")
|
4386
|
+
|
4387
|
+
|
4388
|
+
@pulumi.output_type
|
4389
|
+
class GetManagedKafkaKafkaClusterConfigsKafkaClusterConfigCollectionResult(dict):
|
4390
|
+
def __init__(__self__, *,
|
4391
|
+
items: Sequence['outputs.GetManagedKafkaKafkaClusterConfigsKafkaClusterConfigCollectionItemResult']):
|
4392
|
+
pulumi.set(__self__, "items", items)
|
4393
|
+
|
4394
|
+
@_builtins.property
|
4395
|
+
@pulumi.getter
|
4396
|
+
def items(self) -> Sequence['outputs.GetManagedKafkaKafkaClusterConfigsKafkaClusterConfigCollectionItemResult']:
|
4397
|
+
return pulumi.get(self, "items")
|
4398
|
+
|
4399
|
+
|
4400
|
+
@pulumi.output_type
|
4401
|
+
class GetManagedKafkaKafkaClusterConfigsKafkaClusterConfigCollectionItemResult(dict):
|
4402
|
+
def __init__(__self__, *,
|
4403
|
+
compartment_id: _builtins.str,
|
4404
|
+
defined_tags: Mapping[str, _builtins.str],
|
4405
|
+
display_name: _builtins.str,
|
4406
|
+
freeform_tags: Mapping[str, _builtins.str],
|
4407
|
+
id: _builtins.str,
|
4408
|
+
latest_configs: Sequence['outputs.GetManagedKafkaKafkaClusterConfigsKafkaClusterConfigCollectionItemLatestConfigResult'],
|
4409
|
+
lifecycle_details: _builtins.str,
|
4410
|
+
state: _builtins.str,
|
4411
|
+
system_tags: Mapping[str, _builtins.str],
|
4412
|
+
time_created: _builtins.str,
|
4413
|
+
time_updated: _builtins.str):
|
4414
|
+
"""
|
4415
|
+
:param _builtins.str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
|
4416
|
+
:param Mapping[str, _builtins.str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
4417
|
+
:param _builtins.str display_name: A filter to return only resources that match the given display name exactly.
|
4418
|
+
:param Mapping[str, _builtins.str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
4419
|
+
:param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KafkaClusterConfig.
|
4420
|
+
:param Sequence['GetManagedKafkaKafkaClusterConfigsKafkaClusterConfigCollectionItemLatestConfigArgs'] latest_configs: A shared configuration object used by 0 or more kafka clusters.
|
4421
|
+
:param _builtins.str lifecycle_details: A message that describes the current state of the KafkaClusterConfig in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
|
4422
|
+
:param _builtins.str state: A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
|
4423
|
+
:param Mapping[str, _builtins.str] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
4424
|
+
:param _builtins.str time_created: The date and time the KafkaClusterConfig was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
4425
|
+
:param _builtins.str time_updated: The date and time the KafkaClusterConfig was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
4426
|
+
"""
|
4427
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
4428
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
4429
|
+
pulumi.set(__self__, "display_name", display_name)
|
4430
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
4431
|
+
pulumi.set(__self__, "id", id)
|
4432
|
+
pulumi.set(__self__, "latest_configs", latest_configs)
|
4433
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
4434
|
+
pulumi.set(__self__, "state", state)
|
4435
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
4436
|
+
pulumi.set(__self__, "time_created", time_created)
|
4437
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
4438
|
+
|
4439
|
+
@_builtins.property
|
4440
|
+
@pulumi.getter(name="compartmentId")
|
4441
|
+
def compartment_id(self) -> _builtins.str:
|
4442
|
+
"""
|
4443
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
|
4444
|
+
"""
|
4445
|
+
return pulumi.get(self, "compartment_id")
|
4446
|
+
|
4447
|
+
@_builtins.property
|
4448
|
+
@pulumi.getter(name="definedTags")
|
4449
|
+
def defined_tags(self) -> Mapping[str, _builtins.str]:
|
4450
|
+
"""
|
4451
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
4452
|
+
"""
|
4453
|
+
return pulumi.get(self, "defined_tags")
|
4454
|
+
|
4455
|
+
@_builtins.property
|
4456
|
+
@pulumi.getter(name="displayName")
|
4457
|
+
def display_name(self) -> _builtins.str:
|
4458
|
+
"""
|
4459
|
+
A filter to return only resources that match the given display name exactly.
|
4460
|
+
"""
|
4461
|
+
return pulumi.get(self, "display_name")
|
4462
|
+
|
4463
|
+
@_builtins.property
|
4464
|
+
@pulumi.getter(name="freeformTags")
|
4465
|
+
def freeform_tags(self) -> Mapping[str, _builtins.str]:
|
4466
|
+
"""
|
4467
|
+
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
4468
|
+
"""
|
4469
|
+
return pulumi.get(self, "freeform_tags")
|
4470
|
+
|
4471
|
+
@_builtins.property
|
4472
|
+
@pulumi.getter
|
4473
|
+
def id(self) -> _builtins.str:
|
4474
|
+
"""
|
4475
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KafkaClusterConfig.
|
4476
|
+
"""
|
4477
|
+
return pulumi.get(self, "id")
|
4478
|
+
|
4479
|
+
@_builtins.property
|
4480
|
+
@pulumi.getter(name="latestConfigs")
|
4481
|
+
def latest_configs(self) -> Sequence['outputs.GetManagedKafkaKafkaClusterConfigsKafkaClusterConfigCollectionItemLatestConfigResult']:
|
4482
|
+
"""
|
4483
|
+
A shared configuration object used by 0 or more kafka clusters.
|
4484
|
+
"""
|
4485
|
+
return pulumi.get(self, "latest_configs")
|
4486
|
+
|
4487
|
+
@_builtins.property
|
4488
|
+
@pulumi.getter(name="lifecycleDetails")
|
4489
|
+
def lifecycle_details(self) -> _builtins.str:
|
4490
|
+
"""
|
4491
|
+
A message that describes the current state of the KafkaClusterConfig in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
|
4492
|
+
"""
|
4493
|
+
return pulumi.get(self, "lifecycle_details")
|
4494
|
+
|
4495
|
+
@_builtins.property
|
4496
|
+
@pulumi.getter
|
4497
|
+
def state(self) -> _builtins.str:
|
4498
|
+
"""
|
4499
|
+
A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
|
4500
|
+
"""
|
4501
|
+
return pulumi.get(self, "state")
|
4502
|
+
|
4503
|
+
@_builtins.property
|
4504
|
+
@pulumi.getter(name="systemTags")
|
4505
|
+
def system_tags(self) -> Mapping[str, _builtins.str]:
|
4506
|
+
"""
|
4507
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
4508
|
+
"""
|
4509
|
+
return pulumi.get(self, "system_tags")
|
4510
|
+
|
4511
|
+
@_builtins.property
|
4512
|
+
@pulumi.getter(name="timeCreated")
|
4513
|
+
def time_created(self) -> _builtins.str:
|
4514
|
+
"""
|
4515
|
+
The date and time the KafkaClusterConfig was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
4516
|
+
"""
|
4517
|
+
return pulumi.get(self, "time_created")
|
4518
|
+
|
4519
|
+
@_builtins.property
|
4520
|
+
@pulumi.getter(name="timeUpdated")
|
4521
|
+
def time_updated(self) -> _builtins.str:
|
4522
|
+
"""
|
4523
|
+
The date and time the KafkaClusterConfig was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
4524
|
+
"""
|
4525
|
+
return pulumi.get(self, "time_updated")
|
4526
|
+
|
4527
|
+
|
4528
|
+
@pulumi.output_type
|
4529
|
+
class GetManagedKafkaKafkaClusterConfigsKafkaClusterConfigCollectionItemLatestConfigResult(dict):
|
4530
|
+
def __init__(__self__, *,
|
4531
|
+
config_id: _builtins.str,
|
4532
|
+
properties: Mapping[str, _builtins.str],
|
4533
|
+
time_created: _builtins.str,
|
4534
|
+
version_number: _builtins.int):
|
4535
|
+
"""
|
4536
|
+
:param _builtins.str config_id: ID cluster configuration
|
4537
|
+
:param Mapping[str, _builtins.str] properties: Cluster configuration key-value pairs
|
4538
|
+
:param _builtins.str time_created: The date and time the KafkaClusterConfig was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
4539
|
+
:param _builtins.int version_number: Version of the cluster configuration
|
4540
|
+
"""
|
4541
|
+
pulumi.set(__self__, "config_id", config_id)
|
4542
|
+
pulumi.set(__self__, "properties", properties)
|
4543
|
+
pulumi.set(__self__, "time_created", time_created)
|
4544
|
+
pulumi.set(__self__, "version_number", version_number)
|
4545
|
+
|
4546
|
+
@_builtins.property
|
4547
|
+
@pulumi.getter(name="configId")
|
4548
|
+
def config_id(self) -> _builtins.str:
|
4549
|
+
"""
|
4550
|
+
ID cluster configuration
|
4551
|
+
"""
|
4552
|
+
return pulumi.get(self, "config_id")
|
4553
|
+
|
4554
|
+
@_builtins.property
|
4555
|
+
@pulumi.getter
|
4556
|
+
def properties(self) -> Mapping[str, _builtins.str]:
|
4557
|
+
"""
|
4558
|
+
Cluster configuration key-value pairs
|
4559
|
+
"""
|
4560
|
+
return pulumi.get(self, "properties")
|
4561
|
+
|
4562
|
+
@_builtins.property
|
4563
|
+
@pulumi.getter(name="timeCreated")
|
4564
|
+
def time_created(self) -> _builtins.str:
|
4565
|
+
"""
|
4566
|
+
The date and time the KafkaClusterConfig was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
4567
|
+
"""
|
4568
|
+
return pulumi.get(self, "time_created")
|
4569
|
+
|
4570
|
+
@_builtins.property
|
4571
|
+
@pulumi.getter(name="versionNumber")
|
4572
|
+
def version_number(self) -> _builtins.int:
|
4573
|
+
"""
|
4574
|
+
Version of the cluster configuration
|
4575
|
+
"""
|
4576
|
+
return pulumi.get(self, "version_number")
|
4577
|
+
|
4578
|
+
|
4579
|
+
@pulumi.output_type
|
4580
|
+
class GetManagedKafkaKafkaClusterKafkaBootstrapUrlResult(dict):
|
4581
|
+
def __init__(__self__, *,
|
4582
|
+
name: _builtins.str,
|
4583
|
+
url: _builtins.str):
|
4584
|
+
"""
|
4585
|
+
:param _builtins.str name: Name of the Kafka listener providing this bootstrap URL
|
4586
|
+
:param _builtins.str url: Bootstrap URL
|
4587
|
+
"""
|
4588
|
+
pulumi.set(__self__, "name", name)
|
4589
|
+
pulumi.set(__self__, "url", url)
|
4590
|
+
|
4591
|
+
@_builtins.property
|
4592
|
+
@pulumi.getter
|
4593
|
+
def name(self) -> _builtins.str:
|
4594
|
+
"""
|
4595
|
+
Name of the Kafka listener providing this bootstrap URL
|
4596
|
+
"""
|
4597
|
+
return pulumi.get(self, "name")
|
4598
|
+
|
4599
|
+
@_builtins.property
|
4600
|
+
@pulumi.getter
|
4601
|
+
def url(self) -> _builtins.str:
|
4602
|
+
"""
|
4603
|
+
Bootstrap URL
|
4604
|
+
"""
|
4605
|
+
return pulumi.get(self, "url")
|
4606
|
+
|
4607
|
+
|
4608
|
+
@pulumi.output_type
|
4609
|
+
class GetManagedKafkaKafkaClustersFilterResult(dict):
|
4610
|
+
def __init__(__self__, *,
|
4611
|
+
name: _builtins.str,
|
4612
|
+
values: Sequence[_builtins.str],
|
4613
|
+
regex: Optional[_builtins.bool] = None):
|
4614
|
+
"""
|
4615
|
+
:param _builtins.str name: Name of the Kafka listener providing this bootstrap URL
|
4616
|
+
"""
|
4617
|
+
pulumi.set(__self__, "name", name)
|
4618
|
+
pulumi.set(__self__, "values", values)
|
4619
|
+
if regex is not None:
|
4620
|
+
pulumi.set(__self__, "regex", regex)
|
4621
|
+
|
4622
|
+
@_builtins.property
|
4623
|
+
@pulumi.getter
|
4624
|
+
def name(self) -> _builtins.str:
|
4625
|
+
"""
|
4626
|
+
Name of the Kafka listener providing this bootstrap URL
|
4627
|
+
"""
|
4628
|
+
return pulumi.get(self, "name")
|
4629
|
+
|
4630
|
+
@_builtins.property
|
4631
|
+
@pulumi.getter
|
4632
|
+
def values(self) -> Sequence[_builtins.str]:
|
4633
|
+
return pulumi.get(self, "values")
|
4634
|
+
|
4635
|
+
@_builtins.property
|
4636
|
+
@pulumi.getter
|
4637
|
+
def regex(self) -> Optional[_builtins.bool]:
|
4638
|
+
return pulumi.get(self, "regex")
|
4639
|
+
|
4640
|
+
|
4641
|
+
@pulumi.output_type
|
4642
|
+
class GetManagedKafkaKafkaClustersKafkaClusterCollectionResult(dict):
|
4643
|
+
def __init__(__self__, *,
|
4644
|
+
items: Sequence['outputs.GetManagedKafkaKafkaClustersKafkaClusterCollectionItemResult']):
|
4645
|
+
pulumi.set(__self__, "items", items)
|
4646
|
+
|
4647
|
+
@_builtins.property
|
4648
|
+
@pulumi.getter
|
4649
|
+
def items(self) -> Sequence['outputs.GetManagedKafkaKafkaClustersKafkaClusterCollectionItemResult']:
|
4650
|
+
return pulumi.get(self, "items")
|
4651
|
+
|
4652
|
+
|
4653
|
+
@pulumi.output_type
|
4654
|
+
class GetManagedKafkaKafkaClustersKafkaClusterCollectionItemResult(dict):
|
4655
|
+
def __init__(__self__, *,
|
4656
|
+
access_subnets: Sequence['outputs.GetManagedKafkaKafkaClustersKafkaClusterCollectionItemAccessSubnetResult'],
|
4657
|
+
broker_shapes: Sequence['outputs.GetManagedKafkaKafkaClustersKafkaClusterCollectionItemBrokerShapeResult'],
|
4658
|
+
client_certificate_bundle: _builtins.str,
|
4659
|
+
cluster_config_id: _builtins.str,
|
4660
|
+
cluster_config_version: _builtins.int,
|
4661
|
+
cluster_type: _builtins.str,
|
4662
|
+
compartment_id: _builtins.str,
|
4663
|
+
coordination_type: _builtins.str,
|
4664
|
+
defined_tags: Mapping[str, _builtins.str],
|
4665
|
+
display_name: _builtins.str,
|
4666
|
+
freeform_tags: Mapping[str, _builtins.str],
|
4667
|
+
id: _builtins.str,
|
4668
|
+
kafka_bootstrap_urls: Sequence['outputs.GetManagedKafkaKafkaClustersKafkaClusterCollectionItemKafkaBootstrapUrlResult'],
|
4669
|
+
kafka_version: _builtins.str,
|
4670
|
+
lifecycle_details: _builtins.str,
|
4671
|
+
secret_id: _builtins.str,
|
4672
|
+
state: _builtins.str,
|
4673
|
+
system_tags: Mapping[str, _builtins.str],
|
4674
|
+
time_created: _builtins.str,
|
4675
|
+
time_updated: _builtins.str):
|
4676
|
+
"""
|
4677
|
+
:param Sequence['GetManagedKafkaKafkaClustersKafkaClusterCollectionItemAccessSubnetArgs'] access_subnets: Subnets where broker/coordinator VNICs will be created.
|
4678
|
+
:param Sequence['GetManagedKafkaKafkaClustersKafkaClusterCollectionItemBrokerShapeArgs'] broker_shapes: Configuration of the broker node.
|
4679
|
+
:param _builtins.str client_certificate_bundle: CA certificate bundle for mTLS broker authentication.
|
4680
|
+
:param _builtins.str cluster_config_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of Kafka Cluster configuration object
|
4681
|
+
:param _builtins.int cluster_config_version: The version of configuration object
|
4682
|
+
:param _builtins.str cluster_type: Type of the cluster to spin up. DEVELOPMENT - setting that allows to sacrifice HA and spin up cluster on a single node PRODUCTION - Minimum allowed broker count is 3
|
4683
|
+
:param _builtins.str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
|
4684
|
+
:param _builtins.str coordination_type: Kafka coordination type. Set of available types depends on Kafka version
|
4685
|
+
:param Mapping[str, _builtins.str] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
4686
|
+
:param _builtins.str display_name: A filter to return only resources that match the given display name exactly.
|
4687
|
+
:param Mapping[str, _builtins.str] freeform_tags: Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
4688
|
+
:param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KafkaCluster.
|
4689
|
+
:param Sequence['GetManagedKafkaKafkaClustersKafkaClusterCollectionItemKafkaBootstrapUrlArgs'] kafka_bootstrap_urls: Bootstrap URL that can be used to connect to Kafka
|
4690
|
+
:param _builtins.str kafka_version: Version of Kafka to use to spin up the cluster
|
4691
|
+
:param _builtins.str lifecycle_details: A message that describes the current state of the KafkaCluster in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
|
4692
|
+
:param _builtins.str secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret that contains superuser password.
|
4693
|
+
:param _builtins.str state: A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
|
4694
|
+
:param Mapping[str, _builtins.str] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
4695
|
+
:param _builtins.str time_created: The date and time the KafkaCluster was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
4696
|
+
:param _builtins.str time_updated: The date and time the KafkaCluster was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
4697
|
+
"""
|
4698
|
+
pulumi.set(__self__, "access_subnets", access_subnets)
|
4699
|
+
pulumi.set(__self__, "broker_shapes", broker_shapes)
|
4700
|
+
pulumi.set(__self__, "client_certificate_bundle", client_certificate_bundle)
|
4701
|
+
pulumi.set(__self__, "cluster_config_id", cluster_config_id)
|
4702
|
+
pulumi.set(__self__, "cluster_config_version", cluster_config_version)
|
4703
|
+
pulumi.set(__self__, "cluster_type", cluster_type)
|
4704
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
4705
|
+
pulumi.set(__self__, "coordination_type", coordination_type)
|
4706
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
4707
|
+
pulumi.set(__self__, "display_name", display_name)
|
4708
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
4709
|
+
pulumi.set(__self__, "id", id)
|
4710
|
+
pulumi.set(__self__, "kafka_bootstrap_urls", kafka_bootstrap_urls)
|
4711
|
+
pulumi.set(__self__, "kafka_version", kafka_version)
|
4712
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
4713
|
+
pulumi.set(__self__, "secret_id", secret_id)
|
4714
|
+
pulumi.set(__self__, "state", state)
|
4715
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
4716
|
+
pulumi.set(__self__, "time_created", time_created)
|
4717
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
4718
|
+
|
4719
|
+
@_builtins.property
|
4720
|
+
@pulumi.getter(name="accessSubnets")
|
4721
|
+
def access_subnets(self) -> Sequence['outputs.GetManagedKafkaKafkaClustersKafkaClusterCollectionItemAccessSubnetResult']:
|
4722
|
+
"""
|
4723
|
+
Subnets where broker/coordinator VNICs will be created.
|
4724
|
+
"""
|
4725
|
+
return pulumi.get(self, "access_subnets")
|
4726
|
+
|
4727
|
+
@_builtins.property
|
4728
|
+
@pulumi.getter(name="brokerShapes")
|
4729
|
+
def broker_shapes(self) -> Sequence['outputs.GetManagedKafkaKafkaClustersKafkaClusterCollectionItemBrokerShapeResult']:
|
4730
|
+
"""
|
4731
|
+
Configuration of the broker node.
|
4732
|
+
"""
|
4733
|
+
return pulumi.get(self, "broker_shapes")
|
4734
|
+
|
4735
|
+
@_builtins.property
|
4736
|
+
@pulumi.getter(name="clientCertificateBundle")
|
4737
|
+
def client_certificate_bundle(self) -> _builtins.str:
|
4738
|
+
"""
|
4739
|
+
CA certificate bundle for mTLS broker authentication.
|
4740
|
+
"""
|
4741
|
+
return pulumi.get(self, "client_certificate_bundle")
|
4742
|
+
|
4743
|
+
@_builtins.property
|
4744
|
+
@pulumi.getter(name="clusterConfigId")
|
4745
|
+
def cluster_config_id(self) -> _builtins.str:
|
4746
|
+
"""
|
4747
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of Kafka Cluster configuration object
|
4748
|
+
"""
|
4749
|
+
return pulumi.get(self, "cluster_config_id")
|
4750
|
+
|
4751
|
+
@_builtins.property
|
4752
|
+
@pulumi.getter(name="clusterConfigVersion")
|
4753
|
+
def cluster_config_version(self) -> _builtins.int:
|
4754
|
+
"""
|
4755
|
+
The version of configuration object
|
4756
|
+
"""
|
4757
|
+
return pulumi.get(self, "cluster_config_version")
|
4758
|
+
|
4759
|
+
@_builtins.property
|
4760
|
+
@pulumi.getter(name="clusterType")
|
4761
|
+
def cluster_type(self) -> _builtins.str:
|
4762
|
+
"""
|
4763
|
+
Type of the cluster to spin up. DEVELOPMENT - setting that allows to sacrifice HA and spin up cluster on a single node PRODUCTION - Minimum allowed broker count is 3
|
4764
|
+
"""
|
4765
|
+
return pulumi.get(self, "cluster_type")
|
4766
|
+
|
4767
|
+
@_builtins.property
|
4768
|
+
@pulumi.getter(name="compartmentId")
|
4769
|
+
def compartment_id(self) -> _builtins.str:
|
4770
|
+
"""
|
4771
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
|
4772
|
+
"""
|
4773
|
+
return pulumi.get(self, "compartment_id")
|
4774
|
+
|
4775
|
+
@_builtins.property
|
4776
|
+
@pulumi.getter(name="coordinationType")
|
4777
|
+
def coordination_type(self) -> _builtins.str:
|
4778
|
+
"""
|
4779
|
+
Kafka coordination type. Set of available types depends on Kafka version
|
4780
|
+
"""
|
4781
|
+
return pulumi.get(self, "coordination_type")
|
4782
|
+
|
4783
|
+
@_builtins.property
|
4784
|
+
@pulumi.getter(name="definedTags")
|
4785
|
+
def defined_tags(self) -> Mapping[str, _builtins.str]:
|
4786
|
+
"""
|
4787
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
4788
|
+
"""
|
4789
|
+
return pulumi.get(self, "defined_tags")
|
4790
|
+
|
4791
|
+
@_builtins.property
|
4792
|
+
@pulumi.getter(name="displayName")
|
4793
|
+
def display_name(self) -> _builtins.str:
|
4794
|
+
"""
|
4795
|
+
A filter to return only resources that match the given display name exactly.
|
4796
|
+
"""
|
4797
|
+
return pulumi.get(self, "display_name")
|
4798
|
+
|
4799
|
+
@_builtins.property
|
4800
|
+
@pulumi.getter(name="freeformTags")
|
4801
|
+
def freeform_tags(self) -> Mapping[str, _builtins.str]:
|
4802
|
+
"""
|
4803
|
+
Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
4804
|
+
"""
|
4805
|
+
return pulumi.get(self, "freeform_tags")
|
4806
|
+
|
4807
|
+
@_builtins.property
|
4808
|
+
@pulumi.getter
|
4809
|
+
def id(self) -> _builtins.str:
|
4810
|
+
"""
|
4811
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KafkaCluster.
|
4812
|
+
"""
|
4813
|
+
return pulumi.get(self, "id")
|
4814
|
+
|
4815
|
+
@_builtins.property
|
4816
|
+
@pulumi.getter(name="kafkaBootstrapUrls")
|
4817
|
+
def kafka_bootstrap_urls(self) -> Sequence['outputs.GetManagedKafkaKafkaClustersKafkaClusterCollectionItemKafkaBootstrapUrlResult']:
|
4818
|
+
"""
|
4819
|
+
Bootstrap URL that can be used to connect to Kafka
|
4820
|
+
"""
|
4821
|
+
return pulumi.get(self, "kafka_bootstrap_urls")
|
4822
|
+
|
4823
|
+
@_builtins.property
|
4824
|
+
@pulumi.getter(name="kafkaVersion")
|
4825
|
+
def kafka_version(self) -> _builtins.str:
|
4826
|
+
"""
|
4827
|
+
Version of Kafka to use to spin up the cluster
|
4828
|
+
"""
|
4829
|
+
return pulumi.get(self, "kafka_version")
|
4830
|
+
|
4831
|
+
@_builtins.property
|
4832
|
+
@pulumi.getter(name="lifecycleDetails")
|
4833
|
+
def lifecycle_details(self) -> _builtins.str:
|
4834
|
+
"""
|
4835
|
+
A message that describes the current state of the KafkaCluster in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
|
4836
|
+
"""
|
4837
|
+
return pulumi.get(self, "lifecycle_details")
|
4838
|
+
|
4839
|
+
@_builtins.property
|
4840
|
+
@pulumi.getter(name="secretId")
|
4841
|
+
def secret_id(self) -> _builtins.str:
|
4842
|
+
"""
|
4843
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret that contains superuser password.
|
4844
|
+
"""
|
4845
|
+
return pulumi.get(self, "secret_id")
|
4846
|
+
|
4847
|
+
@_builtins.property
|
4848
|
+
@pulumi.getter
|
4849
|
+
def state(self) -> _builtins.str:
|
4850
|
+
"""
|
4851
|
+
A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
|
4852
|
+
"""
|
4853
|
+
return pulumi.get(self, "state")
|
4854
|
+
|
4855
|
+
@_builtins.property
|
4856
|
+
@pulumi.getter(name="systemTags")
|
4857
|
+
def system_tags(self) -> Mapping[str, _builtins.str]:
|
4858
|
+
"""
|
4859
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
4860
|
+
"""
|
4861
|
+
return pulumi.get(self, "system_tags")
|
4862
|
+
|
4863
|
+
@_builtins.property
|
4864
|
+
@pulumi.getter(name="timeCreated")
|
4865
|
+
def time_created(self) -> _builtins.str:
|
4866
|
+
"""
|
4867
|
+
The date and time the KafkaCluster was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
4868
|
+
"""
|
4869
|
+
return pulumi.get(self, "time_created")
|
4870
|
+
|
4871
|
+
@_builtins.property
|
4872
|
+
@pulumi.getter(name="timeUpdated")
|
4873
|
+
def time_updated(self) -> _builtins.str:
|
4874
|
+
"""
|
4875
|
+
The date and time the KafkaCluster was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
4876
|
+
"""
|
4877
|
+
return pulumi.get(self, "time_updated")
|
4878
|
+
|
4879
|
+
|
4880
|
+
@pulumi.output_type
|
4881
|
+
class GetManagedKafkaKafkaClustersKafkaClusterCollectionItemAccessSubnetResult(dict):
|
4882
|
+
def __init__(__self__, *,
|
4883
|
+
subnets: Sequence[_builtins.str]):
|
4884
|
+
"""
|
4885
|
+
:param Sequence[_builtins.str] subnets: Subnets OCIDs
|
4886
|
+
"""
|
4887
|
+
pulumi.set(__self__, "subnets", subnets)
|
4888
|
+
|
4889
|
+
@_builtins.property
|
4890
|
+
@pulumi.getter
|
4891
|
+
def subnets(self) -> Sequence[_builtins.str]:
|
4892
|
+
"""
|
4893
|
+
Subnets OCIDs
|
4894
|
+
"""
|
4895
|
+
return pulumi.get(self, "subnets")
|
4896
|
+
|
4897
|
+
|
4898
|
+
@pulumi.output_type
|
4899
|
+
class GetManagedKafkaKafkaClustersKafkaClusterCollectionItemBrokerShapeResult(dict):
|
4900
|
+
def __init__(__self__, *,
|
4901
|
+
node_count: _builtins.int,
|
4902
|
+
ocpu_count: _builtins.int,
|
4903
|
+
storage_size_in_gbs: _builtins.int):
|
4904
|
+
"""
|
4905
|
+
:param _builtins.int node_count: Number of Kafka broker nodes
|
4906
|
+
:param _builtins.int ocpu_count: Number of OCPUs per nodes
|
4907
|
+
:param _builtins.int storage_size_in_gbs: Size of the storage per nodes.
|
4908
|
+
"""
|
4909
|
+
pulumi.set(__self__, "node_count", node_count)
|
4910
|
+
pulumi.set(__self__, "ocpu_count", ocpu_count)
|
4911
|
+
pulumi.set(__self__, "storage_size_in_gbs", storage_size_in_gbs)
|
4912
|
+
|
4913
|
+
@_builtins.property
|
4914
|
+
@pulumi.getter(name="nodeCount")
|
4915
|
+
def node_count(self) -> _builtins.int:
|
4916
|
+
"""
|
4917
|
+
Number of Kafka broker nodes
|
4918
|
+
"""
|
4919
|
+
return pulumi.get(self, "node_count")
|
4920
|
+
|
4921
|
+
@_builtins.property
|
4922
|
+
@pulumi.getter(name="ocpuCount")
|
4923
|
+
def ocpu_count(self) -> _builtins.int:
|
4924
|
+
"""
|
4925
|
+
Number of OCPUs per nodes
|
4926
|
+
"""
|
4927
|
+
return pulumi.get(self, "ocpu_count")
|
4928
|
+
|
4929
|
+
@_builtins.property
|
4930
|
+
@pulumi.getter(name="storageSizeInGbs")
|
4931
|
+
def storage_size_in_gbs(self) -> _builtins.int:
|
4932
|
+
"""
|
4933
|
+
Size of the storage per nodes.
|
4934
|
+
"""
|
4935
|
+
return pulumi.get(self, "storage_size_in_gbs")
|
4936
|
+
|
4937
|
+
|
4938
|
+
@pulumi.output_type
|
4939
|
+
class GetManagedKafkaKafkaClustersKafkaClusterCollectionItemKafkaBootstrapUrlResult(dict):
|
4940
|
+
def __init__(__self__, *,
|
4941
|
+
name: _builtins.str,
|
4942
|
+
url: _builtins.str):
|
4943
|
+
"""
|
4944
|
+
:param _builtins.str name: Name of the Kafka listener providing this bootstrap URL
|
4945
|
+
:param _builtins.str url: Bootstrap URL
|
4946
|
+
"""
|
4947
|
+
pulumi.set(__self__, "name", name)
|
4948
|
+
pulumi.set(__self__, "url", url)
|
4949
|
+
|
4950
|
+
@_builtins.property
|
4951
|
+
@pulumi.getter
|
4952
|
+
def name(self) -> _builtins.str:
|
4953
|
+
"""
|
4954
|
+
Name of the Kafka listener providing this bootstrap URL
|
4955
|
+
"""
|
4956
|
+
return pulumi.get(self, "name")
|
4957
|
+
|
4958
|
+
@_builtins.property
|
4959
|
+
@pulumi.getter
|
4960
|
+
def url(self) -> _builtins.str:
|
4961
|
+
"""
|
4962
|
+
Bootstrap URL
|
4963
|
+
"""
|
4964
|
+
return pulumi.get(self, "url")
|
4965
|
+
|
4966
|
+
|
3958
4967
|
@pulumi.output_type
|
3959
4968
|
class GetWlmsManagedInstanceConfigurationResult(dict):
|
3960
4969
|
def __init__(__self__, *,
|