pulumi-oci 3.5.0a1756327653__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.0a1756327653.dist-info → pulumi_oci-3.5.0a1756440723.dist-info}/METADATA +1 -1
- {pulumi_oci-3.5.0a1756327653.dist-info → pulumi_oci-3.5.0a1756440723.dist-info}/RECORD +133 -100
- {pulumi_oci-3.5.0a1756327653.dist-info → pulumi_oci-3.5.0a1756440723.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.5.0a1756327653.dist-info → pulumi_oci-3.5.0a1756440723.dist-info}/top_level.txt +0 -0
pulumi_oci/goldengate/outputs.py
CHANGED
@@ -5786,6 +5786,7 @@ class GetDeploymentPeersDeploymentPeerCollectionItemResult(dict):
|
|
5786
5786
|
region: _builtins.str,
|
5787
5787
|
state: _builtins.str,
|
5788
5788
|
time_created: _builtins.str,
|
5789
|
+
time_last_synced: _builtins.str,
|
5789
5790
|
time_role_changed: _builtins.str,
|
5790
5791
|
time_updated: _builtins.str):
|
5791
5792
|
"""
|
@@ -5798,6 +5799,7 @@ class GetDeploymentPeersDeploymentPeerCollectionItemResult(dict):
|
|
5798
5799
|
:param _builtins.str region: The name of the region. e.g.: us-ashburn-1 If the region is not provided, backend will default to the default region.
|
5799
5800
|
:param _builtins.str state: A filter to return only the resources that match the 'lifecycleState' given.
|
5800
5801
|
:param _builtins.str time_created: The time the resource was created. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
5802
|
+
:param _builtins.str time_last_synced: The time of the last data synchronization from the primary to the standby peer. [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
5801
5803
|
:param _builtins.str time_role_changed: The time of the last role change. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
5802
5804
|
:param _builtins.str time_updated: The time the resource was last updated. The format is defined by [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
5803
5805
|
"""
|
@@ -5810,6 +5812,7 @@ class GetDeploymentPeersDeploymentPeerCollectionItemResult(dict):
|
|
5810
5812
|
pulumi.set(__self__, "region", region)
|
5811
5813
|
pulumi.set(__self__, "state", state)
|
5812
5814
|
pulumi.set(__self__, "time_created", time_created)
|
5815
|
+
pulumi.set(__self__, "time_last_synced", time_last_synced)
|
5813
5816
|
pulumi.set(__self__, "time_role_changed", time_role_changed)
|
5814
5817
|
pulumi.set(__self__, "time_updated", time_updated)
|
5815
5818
|
|
@@ -5885,6 +5888,14 @@ class GetDeploymentPeersDeploymentPeerCollectionItemResult(dict):
|
|
5885
5888
|
"""
|
5886
5889
|
return pulumi.get(self, "time_created")
|
5887
5890
|
|
5891
|
+
@_builtins.property
|
5892
|
+
@pulumi.getter(name="timeLastSynced")
|
5893
|
+
def time_last_synced(self) -> _builtins.str:
|
5894
|
+
"""
|
5895
|
+
The time of the last data synchronization from the primary to the standby peer. [RFC3339](https://tools.ietf.org/html/rfc3339), such as `2016-08-25T21:10:29.600Z`.
|
5896
|
+
"""
|
5897
|
+
return pulumi.get(self, "time_last_synced")
|
5898
|
+
|
5888
5899
|
@_builtins.property
|
5889
5900
|
@pulumi.getter(name="timeRoleChanged")
|
5890
5901
|
def time_role_changed(self) -> _builtins.str:
|
@@ -6697,6 +6708,7 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
|
|
6697
6708
|
def __init__(__self__, *,
|
6698
6709
|
availability_domain: _builtins.str,
|
6699
6710
|
backup_schedules: Sequence['outputs.GetDeploymentsDeploymentCollectionItemBackupScheduleResult'],
|
6711
|
+
byol_cpu_core_count_limit: _builtins.int,
|
6700
6712
|
category: _builtins.str,
|
6701
6713
|
compartment_id: _builtins.str,
|
6702
6714
|
cpu_core_count: _builtins.int,
|
@@ -6715,6 +6727,7 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
|
|
6715
6727
|
id: _builtins.str,
|
6716
6728
|
ingress_ips: Sequence['outputs.GetDeploymentsDeploymentCollectionItemIngressIpResult'],
|
6717
6729
|
is_auto_scaling_enabled: _builtins.bool,
|
6730
|
+
is_byol_cpu_core_count_limit_enabled: _builtins.bool,
|
6718
6731
|
is_healthy: _builtins.bool,
|
6719
6732
|
is_latest_version: _builtins.bool,
|
6720
6733
|
is_lock_override: _builtins.bool,
|
@@ -6751,6 +6764,7 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
|
|
6751
6764
|
"""
|
6752
6765
|
:param _builtins.str availability_domain: The availability domain of a placement.
|
6753
6766
|
:param Sequence['GetDeploymentsDeploymentCollectionItemBackupScheduleArgs'] backup_schedules: Defines the schedule of the deployment backup.
|
6767
|
+
:param _builtins.int byol_cpu_core_count_limit: The maximum number of CPUs allowed with a 'Bring Your Own License' (BYOL) license type. Any CPU usage above this limit is considered as License Included and billed.
|
6754
6768
|
:param _builtins.str category: The deployment category defines the broad separation of the deployment type into three categories. Currently the separation is 'DATA_REPLICATION', 'STREAM_ANALYTICS' and 'DATA_TRANSFORMS'.
|
6755
6769
|
:param _builtins.str compartment_id: The OCID of the compartment that contains the work request. Work requests should be scoped to the same compartment as the resource the work request affects. If the work request concerns multiple resources, and those resources are not in the same compartment, it is up to the service team to pick the primary resource whose compartment should be used.
|
6756
6770
|
:param _builtins.int cpu_core_count: The Minimum number of OCPUs to be made available for this Deployment.
|
@@ -6758,7 +6772,7 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
|
|
6758
6772
|
:param _builtins.str deployment_backup_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup being referenced.
|
6759
6773
|
:param Sequence['GetDeploymentsDeploymentCollectionItemDeploymentDiagnosticDataArgs'] deployment_diagnostic_datas: Information regarding the deployment diagnostic collection
|
6760
6774
|
:param _builtins.str deployment_role: The type of the deployment role.
|
6761
|
-
:param _builtins.str deployment_type:
|
6775
|
+
:param _builtins.str deployment_type: A filter that returns only the resources matching the specified 'deploymentType'.
|
6762
6776
|
:param _builtins.str deployment_url: The URL of a resource.
|
6763
6777
|
:param _builtins.str description: Metadata about this specific object.
|
6764
6778
|
:param _builtins.str display_name: A filter to return only the resources that match the entire 'displayName' given.
|
@@ -6769,6 +6783,7 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
|
|
6769
6783
|
:param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the deployment being referenced.
|
6770
6784
|
:param Sequence['GetDeploymentsDeploymentCollectionItemIngressIpArgs'] ingress_ips: List of ingress IP addresses from where the GoldenGate deployment connects to this connection's privateIp. Customers may optionally set up ingress security rules to restrict traffic from these IP addresses.
|
6771
6785
|
:param _builtins.bool is_auto_scaling_enabled: Indicates if auto scaling is enabled for the Deployment's CPU core count.
|
6786
|
+
:param _builtins.bool is_byol_cpu_core_count_limit_enabled: Flag to allow to configure the 'Bring Your Own License' (BYOL) license type CPU limit. If enabled, the exact number of CPUs must be provided via byolCpuCoreCountLimit.
|
6772
6787
|
:param _builtins.bool is_healthy: True if all of the aggregate resources are working correctly.
|
6773
6788
|
:param _builtins.bool is_latest_version: Indicates if the resource is the the latest available version.
|
6774
6789
|
:param _builtins.bool is_public: True if this object is publicly available.
|
@@ -6804,6 +6819,7 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
|
|
6804
6819
|
"""
|
6805
6820
|
pulumi.set(__self__, "availability_domain", availability_domain)
|
6806
6821
|
pulumi.set(__self__, "backup_schedules", backup_schedules)
|
6822
|
+
pulumi.set(__self__, "byol_cpu_core_count_limit", byol_cpu_core_count_limit)
|
6807
6823
|
pulumi.set(__self__, "category", category)
|
6808
6824
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
6809
6825
|
pulumi.set(__self__, "cpu_core_count", cpu_core_count)
|
@@ -6822,6 +6838,7 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
|
|
6822
6838
|
pulumi.set(__self__, "id", id)
|
6823
6839
|
pulumi.set(__self__, "ingress_ips", ingress_ips)
|
6824
6840
|
pulumi.set(__self__, "is_auto_scaling_enabled", is_auto_scaling_enabled)
|
6841
|
+
pulumi.set(__self__, "is_byol_cpu_core_count_limit_enabled", is_byol_cpu_core_count_limit_enabled)
|
6825
6842
|
pulumi.set(__self__, "is_healthy", is_healthy)
|
6826
6843
|
pulumi.set(__self__, "is_latest_version", is_latest_version)
|
6827
6844
|
pulumi.set(__self__, "is_lock_override", is_lock_override)
|
@@ -6872,6 +6889,14 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
|
|
6872
6889
|
"""
|
6873
6890
|
return pulumi.get(self, "backup_schedules")
|
6874
6891
|
|
6892
|
+
@_builtins.property
|
6893
|
+
@pulumi.getter(name="byolCpuCoreCountLimit")
|
6894
|
+
def byol_cpu_core_count_limit(self) -> _builtins.int:
|
6895
|
+
"""
|
6896
|
+
The maximum number of CPUs allowed with a 'Bring Your Own License' (BYOL) license type. Any CPU usage above this limit is considered as License Included and billed.
|
6897
|
+
"""
|
6898
|
+
return pulumi.get(self, "byol_cpu_core_count_limit")
|
6899
|
+
|
6875
6900
|
@_builtins.property
|
6876
6901
|
@pulumi.getter
|
6877
6902
|
def category(self) -> _builtins.str:
|
@@ -6932,7 +6957,7 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
|
|
6932
6957
|
@pulumi.getter(name="deploymentType")
|
6933
6958
|
def deployment_type(self) -> _builtins.str:
|
6934
6959
|
"""
|
6935
|
-
|
6960
|
+
A filter that returns only the resources matching the specified 'deploymentType'.
|
6936
6961
|
"""
|
6937
6962
|
return pulumi.get(self, "deployment_type")
|
6938
6963
|
|
@@ -7016,6 +7041,14 @@ class GetDeploymentsDeploymentCollectionItemResult(dict):
|
|
7016
7041
|
"""
|
7017
7042
|
return pulumi.get(self, "is_auto_scaling_enabled")
|
7018
7043
|
|
7044
|
+
@_builtins.property
|
7045
|
+
@pulumi.getter(name="isByolCpuCoreCountLimitEnabled")
|
7046
|
+
def is_byol_cpu_core_count_limit_enabled(self) -> _builtins.bool:
|
7047
|
+
"""
|
7048
|
+
Flag to allow to configure the 'Bring Your Own License' (BYOL) license type CPU limit. If enabled, the exact number of CPUs must be provided via byolCpuCoreCountLimit.
|
7049
|
+
"""
|
7050
|
+
return pulumi.get(self, "is_byol_cpu_core_count_limit_enabled")
|
7051
|
+
|
7019
7052
|
@_builtins.property
|
7020
7053
|
@pulumi.getter(name="isHealthy")
|
7021
7054
|
def is_healthy(self) -> _builtins.bool:
|
pulumi_oci/oci/__init__.py
CHANGED
@@ -38,6 +38,12 @@ from .get_dbmulticloud_oracle_db_azure_vault import *
|
|
38
38
|
from .get_dbmulticloud_oracle_db_azure_vault_association import *
|
39
39
|
from .get_dbmulticloud_oracle_db_azure_vault_associations import *
|
40
40
|
from .get_dbmulticloud_oracle_db_azure_vaults import *
|
41
|
+
from .get_managed_kafka_kafka_cluster import *
|
42
|
+
from .get_managed_kafka_kafka_cluster_config import *
|
43
|
+
from .get_managed_kafka_kafka_cluster_config_version import *
|
44
|
+
from .get_managed_kafka_kafka_cluster_config_versions import *
|
45
|
+
from .get_managed_kafka_kafka_cluster_configs import *
|
46
|
+
from .get_managed_kafka_kafka_clusters import *
|
41
47
|
from .get_wlms_managed_instance import *
|
42
48
|
from .get_wlms_managed_instance_scan_results import *
|
43
49
|
from .get_wlms_managed_instance_server import *
|
@@ -55,5 +61,8 @@ from .get_wlms_wls_domain_server_backups import *
|
|
55
61
|
from .get_wlms_wls_domain_server_installed_patches import *
|
56
62
|
from .get_wlms_wls_domain_servers import *
|
57
63
|
from .get_wlms_wls_domains import *
|
64
|
+
from .managed_kafka_kafka_cluster import *
|
65
|
+
from .managed_kafka_kafka_cluster_config import *
|
66
|
+
from .managed_kafka_kafka_cluster_superusers_management import *
|
58
67
|
from ._inputs import *
|
59
68
|
from . import outputs
|
pulumi_oci/oci/_inputs.py
CHANGED
@@ -29,6 +29,14 @@ __all__ = [
|
|
29
29
|
'DbmulticloudMultiCloudResourceDiscoveryResourceArgsDict',
|
30
30
|
'DbmulticloudOracleDbAzureConnectorArcAgentNodeArgs',
|
31
31
|
'DbmulticloudOracleDbAzureConnectorArcAgentNodeArgsDict',
|
32
|
+
'ManagedKafkaKafkaClusterAccessSubnetArgs',
|
33
|
+
'ManagedKafkaKafkaClusterAccessSubnetArgsDict',
|
34
|
+
'ManagedKafkaKafkaClusterBrokerShapeArgs',
|
35
|
+
'ManagedKafkaKafkaClusterBrokerShapeArgsDict',
|
36
|
+
'ManagedKafkaKafkaClusterConfigLatestConfigArgs',
|
37
|
+
'ManagedKafkaKafkaClusterConfigLatestConfigArgsDict',
|
38
|
+
'ManagedKafkaKafkaClusterKafkaBootstrapUrlArgs',
|
39
|
+
'ManagedKafkaKafkaClusterKafkaBootstrapUrlArgsDict',
|
32
40
|
'GetApiPlatformApiPlatformInstancesFilterArgs',
|
33
41
|
'GetApiPlatformApiPlatformInstancesFilterArgsDict',
|
34
42
|
'GetApiaccesscontrolApiMetadataByEntityTypesFilterArgs',
|
@@ -53,6 +61,12 @@ __all__ = [
|
|
53
61
|
'GetDbmulticloudOracleDbAzureVaultAssociationsFilterArgsDict',
|
54
62
|
'GetDbmulticloudOracleDbAzureVaultsFilterArgs',
|
55
63
|
'GetDbmulticloudOracleDbAzureVaultsFilterArgsDict',
|
64
|
+
'GetManagedKafkaKafkaClusterConfigVersionsFilterArgs',
|
65
|
+
'GetManagedKafkaKafkaClusterConfigVersionsFilterArgsDict',
|
66
|
+
'GetManagedKafkaKafkaClusterConfigsFilterArgs',
|
67
|
+
'GetManagedKafkaKafkaClusterConfigsFilterArgsDict',
|
68
|
+
'GetManagedKafkaKafkaClustersFilterArgs',
|
69
|
+
'GetManagedKafkaKafkaClustersFilterArgsDict',
|
56
70
|
'GetWlmsManagedInstanceScanResultsFilterArgs',
|
57
71
|
'GetWlmsManagedInstanceScanResultsFilterArgsDict',
|
58
72
|
'GetWlmsManagedInstanceServerInstalledPatchesFilterArgs',
|
@@ -641,6 +655,262 @@ class DbmulticloudOracleDbAzureConnectorArcAgentNodeArgs:
|
|
641
655
|
pulumi.set(self, "time_last_checked", value)
|
642
656
|
|
643
657
|
|
658
|
+
if not MYPY:
|
659
|
+
class ManagedKafkaKafkaClusterAccessSubnetArgsDict(TypedDict):
|
660
|
+
subnets: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]
|
661
|
+
"""
|
662
|
+
(Updatable) Subnets OCIDs
|
663
|
+
"""
|
664
|
+
elif False:
|
665
|
+
ManagedKafkaKafkaClusterAccessSubnetArgsDict: TypeAlias = Mapping[str, Any]
|
666
|
+
|
667
|
+
@pulumi.input_type
|
668
|
+
class ManagedKafkaKafkaClusterAccessSubnetArgs:
|
669
|
+
def __init__(__self__, *,
|
670
|
+
subnets: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]):
|
671
|
+
"""
|
672
|
+
:param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] subnets: (Updatable) Subnets OCIDs
|
673
|
+
"""
|
674
|
+
pulumi.set(__self__, "subnets", subnets)
|
675
|
+
|
676
|
+
@_builtins.property
|
677
|
+
@pulumi.getter
|
678
|
+
def subnets(self) -> pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]:
|
679
|
+
"""
|
680
|
+
(Updatable) Subnets OCIDs
|
681
|
+
"""
|
682
|
+
return pulumi.get(self, "subnets")
|
683
|
+
|
684
|
+
@subnets.setter
|
685
|
+
def subnets(self, value: pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]):
|
686
|
+
pulumi.set(self, "subnets", value)
|
687
|
+
|
688
|
+
|
689
|
+
if not MYPY:
|
690
|
+
class ManagedKafkaKafkaClusterBrokerShapeArgsDict(TypedDict):
|
691
|
+
node_count: pulumi.Input[_builtins.int]
|
692
|
+
"""
|
693
|
+
(Updatable) Number of Kafka broker nodes
|
694
|
+
"""
|
695
|
+
ocpu_count: pulumi.Input[_builtins.int]
|
696
|
+
"""
|
697
|
+
(Updatable) Number of OCPUs per nodes
|
698
|
+
"""
|
699
|
+
storage_size_in_gbs: NotRequired[pulumi.Input[_builtins.int]]
|
700
|
+
"""
|
701
|
+
(Updatable) Size of the storage per nodes.
|
702
|
+
"""
|
703
|
+
elif False:
|
704
|
+
ManagedKafkaKafkaClusterBrokerShapeArgsDict: TypeAlias = Mapping[str, Any]
|
705
|
+
|
706
|
+
@pulumi.input_type
|
707
|
+
class ManagedKafkaKafkaClusterBrokerShapeArgs:
|
708
|
+
def __init__(__self__, *,
|
709
|
+
node_count: pulumi.Input[_builtins.int],
|
710
|
+
ocpu_count: pulumi.Input[_builtins.int],
|
711
|
+
storage_size_in_gbs: Optional[pulumi.Input[_builtins.int]] = None):
|
712
|
+
"""
|
713
|
+
:param pulumi.Input[_builtins.int] node_count: (Updatable) Number of Kafka broker nodes
|
714
|
+
:param pulumi.Input[_builtins.int] ocpu_count: (Updatable) Number of OCPUs per nodes
|
715
|
+
:param pulumi.Input[_builtins.int] storage_size_in_gbs: (Updatable) Size of the storage per nodes.
|
716
|
+
"""
|
717
|
+
pulumi.set(__self__, "node_count", node_count)
|
718
|
+
pulumi.set(__self__, "ocpu_count", ocpu_count)
|
719
|
+
if storage_size_in_gbs is not None:
|
720
|
+
pulumi.set(__self__, "storage_size_in_gbs", storage_size_in_gbs)
|
721
|
+
|
722
|
+
@_builtins.property
|
723
|
+
@pulumi.getter(name="nodeCount")
|
724
|
+
def node_count(self) -> pulumi.Input[_builtins.int]:
|
725
|
+
"""
|
726
|
+
(Updatable) Number of Kafka broker nodes
|
727
|
+
"""
|
728
|
+
return pulumi.get(self, "node_count")
|
729
|
+
|
730
|
+
@node_count.setter
|
731
|
+
def node_count(self, value: pulumi.Input[_builtins.int]):
|
732
|
+
pulumi.set(self, "node_count", value)
|
733
|
+
|
734
|
+
@_builtins.property
|
735
|
+
@pulumi.getter(name="ocpuCount")
|
736
|
+
def ocpu_count(self) -> pulumi.Input[_builtins.int]:
|
737
|
+
"""
|
738
|
+
(Updatable) Number of OCPUs per nodes
|
739
|
+
"""
|
740
|
+
return pulumi.get(self, "ocpu_count")
|
741
|
+
|
742
|
+
@ocpu_count.setter
|
743
|
+
def ocpu_count(self, value: pulumi.Input[_builtins.int]):
|
744
|
+
pulumi.set(self, "ocpu_count", value)
|
745
|
+
|
746
|
+
@_builtins.property
|
747
|
+
@pulumi.getter(name="storageSizeInGbs")
|
748
|
+
def storage_size_in_gbs(self) -> Optional[pulumi.Input[_builtins.int]]:
|
749
|
+
"""
|
750
|
+
(Updatable) Size of the storage per nodes.
|
751
|
+
"""
|
752
|
+
return pulumi.get(self, "storage_size_in_gbs")
|
753
|
+
|
754
|
+
@storage_size_in_gbs.setter
|
755
|
+
def storage_size_in_gbs(self, value: Optional[pulumi.Input[_builtins.int]]):
|
756
|
+
pulumi.set(self, "storage_size_in_gbs", value)
|
757
|
+
|
758
|
+
|
759
|
+
if not MYPY:
|
760
|
+
class ManagedKafkaKafkaClusterConfigLatestConfigArgsDict(TypedDict):
|
761
|
+
properties: pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]
|
762
|
+
"""
|
763
|
+
(Updatable) Cluster configuration key-value pairs
|
764
|
+
"""
|
765
|
+
config_id: NotRequired[pulumi.Input[_builtins.str]]
|
766
|
+
"""
|
767
|
+
(Updatable) ID cluster configuration
|
768
|
+
"""
|
769
|
+
time_created: NotRequired[pulumi.Input[_builtins.str]]
|
770
|
+
"""
|
771
|
+
(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`
|
772
|
+
"""
|
773
|
+
version_number: NotRequired[pulumi.Input[_builtins.int]]
|
774
|
+
"""
|
775
|
+
(Updatable) Version of the cluster configuration
|
776
|
+
|
777
|
+
|
778
|
+
** IMPORTANT **
|
779
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
780
|
+
"""
|
781
|
+
elif False:
|
782
|
+
ManagedKafkaKafkaClusterConfigLatestConfigArgsDict: TypeAlias = Mapping[str, Any]
|
783
|
+
|
784
|
+
@pulumi.input_type
|
785
|
+
class ManagedKafkaKafkaClusterConfigLatestConfigArgs:
|
786
|
+
def __init__(__self__, *,
|
787
|
+
properties: pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]],
|
788
|
+
config_id: Optional[pulumi.Input[_builtins.str]] = None,
|
789
|
+
time_created: Optional[pulumi.Input[_builtins.str]] = None,
|
790
|
+
version_number: Optional[pulumi.Input[_builtins.int]] = None):
|
791
|
+
"""
|
792
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] properties: (Updatable) Cluster configuration key-value pairs
|
793
|
+
:param pulumi.Input[_builtins.str] config_id: (Updatable) ID cluster configuration
|
794
|
+
:param pulumi.Input[_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`
|
795
|
+
:param pulumi.Input[_builtins.int] version_number: (Updatable) Version of the cluster configuration
|
796
|
+
|
797
|
+
|
798
|
+
** IMPORTANT **
|
799
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
800
|
+
"""
|
801
|
+
pulumi.set(__self__, "properties", properties)
|
802
|
+
if config_id is not None:
|
803
|
+
pulumi.set(__self__, "config_id", config_id)
|
804
|
+
if time_created is not None:
|
805
|
+
pulumi.set(__self__, "time_created", time_created)
|
806
|
+
if version_number is not None:
|
807
|
+
pulumi.set(__self__, "version_number", version_number)
|
808
|
+
|
809
|
+
@_builtins.property
|
810
|
+
@pulumi.getter
|
811
|
+
def properties(self) -> pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]:
|
812
|
+
"""
|
813
|
+
(Updatable) Cluster configuration key-value pairs
|
814
|
+
"""
|
815
|
+
return pulumi.get(self, "properties")
|
816
|
+
|
817
|
+
@properties.setter
|
818
|
+
def properties(self, value: pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]):
|
819
|
+
pulumi.set(self, "properties", value)
|
820
|
+
|
821
|
+
@_builtins.property
|
822
|
+
@pulumi.getter(name="configId")
|
823
|
+
def config_id(self) -> Optional[pulumi.Input[_builtins.str]]:
|
824
|
+
"""
|
825
|
+
(Updatable) ID cluster configuration
|
826
|
+
"""
|
827
|
+
return pulumi.get(self, "config_id")
|
828
|
+
|
829
|
+
@config_id.setter
|
830
|
+
def config_id(self, value: Optional[pulumi.Input[_builtins.str]]):
|
831
|
+
pulumi.set(self, "config_id", value)
|
832
|
+
|
833
|
+
@_builtins.property
|
834
|
+
@pulumi.getter(name="timeCreated")
|
835
|
+
def time_created(self) -> Optional[pulumi.Input[_builtins.str]]:
|
836
|
+
"""
|
837
|
+
(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`
|
838
|
+
"""
|
839
|
+
return pulumi.get(self, "time_created")
|
840
|
+
|
841
|
+
@time_created.setter
|
842
|
+
def time_created(self, value: Optional[pulumi.Input[_builtins.str]]):
|
843
|
+
pulumi.set(self, "time_created", value)
|
844
|
+
|
845
|
+
@_builtins.property
|
846
|
+
@pulumi.getter(name="versionNumber")
|
847
|
+
def version_number(self) -> Optional[pulumi.Input[_builtins.int]]:
|
848
|
+
"""
|
849
|
+
(Updatable) Version of the cluster configuration
|
850
|
+
|
851
|
+
|
852
|
+
** IMPORTANT **
|
853
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
854
|
+
"""
|
855
|
+
return pulumi.get(self, "version_number")
|
856
|
+
|
857
|
+
@version_number.setter
|
858
|
+
def version_number(self, value: Optional[pulumi.Input[_builtins.int]]):
|
859
|
+
pulumi.set(self, "version_number", value)
|
860
|
+
|
861
|
+
|
862
|
+
if not MYPY:
|
863
|
+
class ManagedKafkaKafkaClusterKafkaBootstrapUrlArgsDict(TypedDict):
|
864
|
+
name: NotRequired[pulumi.Input[_builtins.str]]
|
865
|
+
"""
|
866
|
+
Name of the Kafka listener providing this bootstrap URL
|
867
|
+
"""
|
868
|
+
url: NotRequired[pulumi.Input[_builtins.str]]
|
869
|
+
"""
|
870
|
+
Bootstrap URL
|
871
|
+
"""
|
872
|
+
elif False:
|
873
|
+
ManagedKafkaKafkaClusterKafkaBootstrapUrlArgsDict: TypeAlias = Mapping[str, Any]
|
874
|
+
|
875
|
+
@pulumi.input_type
|
876
|
+
class ManagedKafkaKafkaClusterKafkaBootstrapUrlArgs:
|
877
|
+
def __init__(__self__, *,
|
878
|
+
name: Optional[pulumi.Input[_builtins.str]] = None,
|
879
|
+
url: Optional[pulumi.Input[_builtins.str]] = None):
|
880
|
+
"""
|
881
|
+
:param pulumi.Input[_builtins.str] name: Name of the Kafka listener providing this bootstrap URL
|
882
|
+
:param pulumi.Input[_builtins.str] url: Bootstrap URL
|
883
|
+
"""
|
884
|
+
if name is not None:
|
885
|
+
pulumi.set(__self__, "name", name)
|
886
|
+
if url is not None:
|
887
|
+
pulumi.set(__self__, "url", url)
|
888
|
+
|
889
|
+
@_builtins.property
|
890
|
+
@pulumi.getter
|
891
|
+
def name(self) -> Optional[pulumi.Input[_builtins.str]]:
|
892
|
+
"""
|
893
|
+
Name of the Kafka listener providing this bootstrap URL
|
894
|
+
"""
|
895
|
+
return pulumi.get(self, "name")
|
896
|
+
|
897
|
+
@name.setter
|
898
|
+
def name(self, value: Optional[pulumi.Input[_builtins.str]]):
|
899
|
+
pulumi.set(self, "name", value)
|
900
|
+
|
901
|
+
@_builtins.property
|
902
|
+
@pulumi.getter
|
903
|
+
def url(self) -> Optional[pulumi.Input[_builtins.str]]:
|
904
|
+
"""
|
905
|
+
Bootstrap URL
|
906
|
+
"""
|
907
|
+
return pulumi.get(self, "url")
|
908
|
+
|
909
|
+
@url.setter
|
910
|
+
def url(self, value: Optional[pulumi.Input[_builtins.str]]):
|
911
|
+
pulumi.set(self, "url", value)
|
912
|
+
|
913
|
+
|
644
914
|
if not MYPY:
|
645
915
|
class GetApiPlatformApiPlatformInstancesFilterArgsDict(TypedDict):
|
646
916
|
name: _builtins.str
|
@@ -1223,6 +1493,156 @@ class GetDbmulticloudOracleDbAzureVaultsFilterArgs:
|
|
1223
1493
|
pulumi.set(self, "regex", value)
|
1224
1494
|
|
1225
1495
|
|
1496
|
+
if not MYPY:
|
1497
|
+
class GetManagedKafkaKafkaClusterConfigVersionsFilterArgsDict(TypedDict):
|
1498
|
+
name: _builtins.str
|
1499
|
+
values: Sequence[_builtins.str]
|
1500
|
+
regex: NotRequired[_builtins.bool]
|
1501
|
+
elif False:
|
1502
|
+
GetManagedKafkaKafkaClusterConfigVersionsFilterArgsDict: TypeAlias = Mapping[str, Any]
|
1503
|
+
|
1504
|
+
@pulumi.input_type
|
1505
|
+
class GetManagedKafkaKafkaClusterConfigVersionsFilterArgs:
|
1506
|
+
def __init__(__self__, *,
|
1507
|
+
name: _builtins.str,
|
1508
|
+
values: Sequence[_builtins.str],
|
1509
|
+
regex: Optional[_builtins.bool] = None):
|
1510
|
+
pulumi.set(__self__, "name", name)
|
1511
|
+
pulumi.set(__self__, "values", values)
|
1512
|
+
if regex is not None:
|
1513
|
+
pulumi.set(__self__, "regex", regex)
|
1514
|
+
|
1515
|
+
@_builtins.property
|
1516
|
+
@pulumi.getter
|
1517
|
+
def name(self) -> _builtins.str:
|
1518
|
+
return pulumi.get(self, "name")
|
1519
|
+
|
1520
|
+
@name.setter
|
1521
|
+
def name(self, value: _builtins.str):
|
1522
|
+
pulumi.set(self, "name", value)
|
1523
|
+
|
1524
|
+
@_builtins.property
|
1525
|
+
@pulumi.getter
|
1526
|
+
def values(self) -> Sequence[_builtins.str]:
|
1527
|
+
return pulumi.get(self, "values")
|
1528
|
+
|
1529
|
+
@values.setter
|
1530
|
+
def values(self, value: Sequence[_builtins.str]):
|
1531
|
+
pulumi.set(self, "values", value)
|
1532
|
+
|
1533
|
+
@_builtins.property
|
1534
|
+
@pulumi.getter
|
1535
|
+
def regex(self) -> Optional[_builtins.bool]:
|
1536
|
+
return pulumi.get(self, "regex")
|
1537
|
+
|
1538
|
+
@regex.setter
|
1539
|
+
def regex(self, value: Optional[_builtins.bool]):
|
1540
|
+
pulumi.set(self, "regex", value)
|
1541
|
+
|
1542
|
+
|
1543
|
+
if not MYPY:
|
1544
|
+
class GetManagedKafkaKafkaClusterConfigsFilterArgsDict(TypedDict):
|
1545
|
+
name: _builtins.str
|
1546
|
+
values: Sequence[_builtins.str]
|
1547
|
+
regex: NotRequired[_builtins.bool]
|
1548
|
+
elif False:
|
1549
|
+
GetManagedKafkaKafkaClusterConfigsFilterArgsDict: TypeAlias = Mapping[str, Any]
|
1550
|
+
|
1551
|
+
@pulumi.input_type
|
1552
|
+
class GetManagedKafkaKafkaClusterConfigsFilterArgs:
|
1553
|
+
def __init__(__self__, *,
|
1554
|
+
name: _builtins.str,
|
1555
|
+
values: Sequence[_builtins.str],
|
1556
|
+
regex: Optional[_builtins.bool] = None):
|
1557
|
+
pulumi.set(__self__, "name", name)
|
1558
|
+
pulumi.set(__self__, "values", values)
|
1559
|
+
if regex is not None:
|
1560
|
+
pulumi.set(__self__, "regex", regex)
|
1561
|
+
|
1562
|
+
@_builtins.property
|
1563
|
+
@pulumi.getter
|
1564
|
+
def name(self) -> _builtins.str:
|
1565
|
+
return pulumi.get(self, "name")
|
1566
|
+
|
1567
|
+
@name.setter
|
1568
|
+
def name(self, value: _builtins.str):
|
1569
|
+
pulumi.set(self, "name", value)
|
1570
|
+
|
1571
|
+
@_builtins.property
|
1572
|
+
@pulumi.getter
|
1573
|
+
def values(self) -> Sequence[_builtins.str]:
|
1574
|
+
return pulumi.get(self, "values")
|
1575
|
+
|
1576
|
+
@values.setter
|
1577
|
+
def values(self, value: Sequence[_builtins.str]):
|
1578
|
+
pulumi.set(self, "values", value)
|
1579
|
+
|
1580
|
+
@_builtins.property
|
1581
|
+
@pulumi.getter
|
1582
|
+
def regex(self) -> Optional[_builtins.bool]:
|
1583
|
+
return pulumi.get(self, "regex")
|
1584
|
+
|
1585
|
+
@regex.setter
|
1586
|
+
def regex(self, value: Optional[_builtins.bool]):
|
1587
|
+
pulumi.set(self, "regex", value)
|
1588
|
+
|
1589
|
+
|
1590
|
+
if not MYPY:
|
1591
|
+
class GetManagedKafkaKafkaClustersFilterArgsDict(TypedDict):
|
1592
|
+
name: _builtins.str
|
1593
|
+
"""
|
1594
|
+
Name of the Kafka listener providing this bootstrap URL
|
1595
|
+
"""
|
1596
|
+
values: Sequence[_builtins.str]
|
1597
|
+
regex: NotRequired[_builtins.bool]
|
1598
|
+
elif False:
|
1599
|
+
GetManagedKafkaKafkaClustersFilterArgsDict: TypeAlias = Mapping[str, Any]
|
1600
|
+
|
1601
|
+
@pulumi.input_type
|
1602
|
+
class GetManagedKafkaKafkaClustersFilterArgs:
|
1603
|
+
def __init__(__self__, *,
|
1604
|
+
name: _builtins.str,
|
1605
|
+
values: Sequence[_builtins.str],
|
1606
|
+
regex: Optional[_builtins.bool] = None):
|
1607
|
+
"""
|
1608
|
+
:param _builtins.str name: Name of the Kafka listener providing this bootstrap URL
|
1609
|
+
"""
|
1610
|
+
pulumi.set(__self__, "name", name)
|
1611
|
+
pulumi.set(__self__, "values", values)
|
1612
|
+
if regex is not None:
|
1613
|
+
pulumi.set(__self__, "regex", regex)
|
1614
|
+
|
1615
|
+
@_builtins.property
|
1616
|
+
@pulumi.getter
|
1617
|
+
def name(self) -> _builtins.str:
|
1618
|
+
"""
|
1619
|
+
Name of the Kafka listener providing this bootstrap URL
|
1620
|
+
"""
|
1621
|
+
return pulumi.get(self, "name")
|
1622
|
+
|
1623
|
+
@name.setter
|
1624
|
+
def name(self, value: _builtins.str):
|
1625
|
+
pulumi.set(self, "name", value)
|
1626
|
+
|
1627
|
+
@_builtins.property
|
1628
|
+
@pulumi.getter
|
1629
|
+
def values(self) -> Sequence[_builtins.str]:
|
1630
|
+
return pulumi.get(self, "values")
|
1631
|
+
|
1632
|
+
@values.setter
|
1633
|
+
def values(self, value: Sequence[_builtins.str]):
|
1634
|
+
pulumi.set(self, "values", value)
|
1635
|
+
|
1636
|
+
@_builtins.property
|
1637
|
+
@pulumi.getter
|
1638
|
+
def regex(self) -> Optional[_builtins.bool]:
|
1639
|
+
return pulumi.get(self, "regex")
|
1640
|
+
|
1641
|
+
@regex.setter
|
1642
|
+
def regex(self, value: Optional[_builtins.bool]):
|
1643
|
+
pulumi.set(self, "regex", value)
|
1644
|
+
|
1645
|
+
|
1226
1646
|
if not MYPY:
|
1227
1647
|
class GetWlmsManagedInstanceScanResultsFilterArgsDict(TypedDict):
|
1228
1648
|
name: _builtins.str
|