pulumi-oci 3.5.0a1756363728__py3-none-any.whl → 3.6.0__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.
Files changed (194) hide show
  1. pulumi_oci/__init__.py +128 -0
  2. pulumi_oci/aivision/__init__.py +12 -0
  3. pulumi_oci/aivision/_inputs.py +787 -51
  4. pulumi_oci/aivision/get_model.py +4 -4
  5. pulumi_oci/aivision/get_models.py +11 -11
  6. pulumi_oci/aivision/get_project.py +15 -15
  7. pulumi_oci/aivision/get_projects.py +10 -10
  8. pulumi_oci/aivision/get_stream_group.py +268 -0
  9. pulumi_oci/aivision/get_stream_groups.py +177 -0
  10. pulumi_oci/aivision/get_stream_job.py +296 -0
  11. pulumi_oci/aivision/get_stream_jobs.py +199 -0
  12. pulumi_oci/aivision/get_stream_source.py +240 -0
  13. pulumi_oci/aivision/get_stream_sources.py +199 -0
  14. pulumi_oci/aivision/get_vision_private_endpoint.py +267 -0
  15. pulumi_oci/aivision/get_vision_private_endpoints.py +199 -0
  16. pulumi_oci/aivision/model.py +149 -157
  17. pulumi_oci/aivision/outputs.py +1920 -116
  18. pulumi_oci/aivision/project.py +61 -69
  19. pulumi_oci/aivision/stream_group.py +632 -0
  20. pulumi_oci/aivision/stream_job.py +744 -0
  21. pulumi_oci/aivision/stream_source.py +519 -0
  22. pulumi_oci/aivision/vision_private_endpoint.py +606 -0
  23. pulumi_oci/cloudguard/_inputs.py +1198 -72
  24. pulumi_oci/cloudguard/get_managed_list.py +15 -1
  25. pulumi_oci/cloudguard/managed_list.py +47 -0
  26. pulumi_oci/cloudguard/outputs.py +2104 -67
  27. pulumi_oci/config/__init__.pyi +12 -17
  28. pulumi_oci/config/vars.py +12 -17
  29. pulumi_oci/core/compute_gpu_memory_fabric.py +28 -0
  30. pulumi_oci/core/get_compute_gpu_memory_fabric.py +15 -1
  31. pulumi_oci/core/outputs.py +11 -0
  32. pulumi_oci/database/_inputs.py +298 -13
  33. pulumi_oci/database/data_guard_association.py +98 -0
  34. pulumi_oci/database/database.py +28 -0
  35. pulumi_oci/database/db_node.py +56 -0
  36. pulumi_oci/database/db_system.py +108 -14
  37. pulumi_oci/database/exadb_vm_cluster.py +49 -0
  38. pulumi_oci/database/exascale_db_storage_vault.py +126 -0
  39. pulumi_oci/database/get_data_guard_association.py +23 -1
  40. pulumi_oci/database/get_database.py +15 -1
  41. pulumi_oci/database/get_db_node.py +29 -1
  42. pulumi_oci/database/get_db_system_shapes.py +25 -6
  43. pulumi_oci/database/get_db_system_storage_performances.py +20 -3
  44. pulumi_oci/database/get_db_versions.py +20 -1
  45. pulumi_oci/database/get_exadb_vm_cluster.py +15 -1
  46. pulumi_oci/database/get_exascale_db_storage_vault.py +43 -1
  47. pulumi_oci/database/get_exascale_db_storage_vaults.py +87 -8
  48. pulumi_oci/database/get_gi_versions.py +25 -6
  49. pulumi_oci/database/outputs.py +696 -13
  50. pulumi_oci/datasafe/__init__.py +24 -0
  51. pulumi_oci/datasafe/_inputs.py +3669 -1537
  52. pulumi_oci/datasafe/attribute_set.py +693 -0
  53. pulumi_oci/datasafe/audit_profile.py +356 -95
  54. pulumi_oci/datasafe/audit_profile_management.py +389 -129
  55. pulumi_oci/datasafe/audit_trail.py +47 -0
  56. pulumi_oci/datasafe/audit_trail_management.py +49 -0
  57. pulumi_oci/datasafe/get_alerts.py +2 -2
  58. pulumi_oci/datasafe/get_attribute_set.py +295 -0
  59. pulumi_oci/datasafe/get_attribute_set_associated_resources.py +188 -0
  60. pulumi_oci/datasafe/get_attribute_sets.py +340 -0
  61. pulumi_oci/datasafe/get_audit_archive_retrievals.py +20 -1
  62. pulumi_oci/datasafe/get_audit_events.py +2 -2
  63. pulumi_oci/datasafe/get_audit_policies.py +20 -1
  64. pulumi_oci/datasafe/get_audit_profile.py +78 -8
  65. pulumi_oci/datasafe/get_audit_profile_target_overrides.py +163 -0
  66. pulumi_oci/datasafe/get_audit_profiles.py +50 -9
  67. pulumi_oci/datasafe/get_audit_trail.py +15 -1
  68. pulumi_oci/datasafe/get_audit_trails.py +20 -1
  69. pulumi_oci/datasafe/get_database_security_configs.py +20 -1
  70. pulumi_oci/datasafe/get_discovery_analytics.py +39 -1
  71. pulumi_oci/datasafe/get_masking_analytics.py +42 -1
  72. pulumi_oci/datasafe/get_onprem_connectors.py +26 -23
  73. pulumi_oci/datasafe/get_report.py +43 -1
  74. pulumi_oci/datasafe/get_reports.py +23 -1
  75. pulumi_oci/datasafe/get_security_assessment.py +116 -2
  76. pulumi_oci/datasafe/get_security_assessment_checks.py +264 -0
  77. pulumi_oci/datasafe/get_security_assessment_finding.py +64 -4
  78. pulumi_oci/datasafe/get_security_assessment_findings.py +73 -6
  79. pulumi_oci/datasafe/get_security_assessment_template_analytics.py +362 -0
  80. pulumi_oci/datasafe/get_security_assessment_template_association_analytics.py +298 -0
  81. pulumi_oci/datasafe/get_security_assessment_template_baseline_comparison.py +347 -0
  82. pulumi_oci/datasafe/get_security_assessments.py +68 -2
  83. pulumi_oci/datasafe/get_security_policies.py +23 -1
  84. pulumi_oci/datasafe/get_security_policy.py +15 -1
  85. pulumi_oci/datasafe/get_security_policy_config.py +296 -0
  86. pulumi_oci/datasafe/get_security_policy_configs.py +342 -0
  87. pulumi_oci/datasafe/get_security_policy_deployment.py +52 -2
  88. pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_state.py +49 -4
  89. pulumi_oci/datasafe/get_security_policy_deployment_security_policy_entry_states.py +47 -6
  90. pulumi_oci/datasafe/get_security_policy_deployments.py +29 -7
  91. pulumi_oci/datasafe/get_sensitive_column_analytics.py +20 -1
  92. pulumi_oci/datasafe/get_sql_collection_analytics.py +20 -1
  93. pulumi_oci/datasafe/get_sql_collections.py +20 -1
  94. pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py +2 -2
  95. pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py +2 -2
  96. pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py +2 -2
  97. pulumi_oci/datasafe/get_sql_firewall_violations.py +2 -2
  98. pulumi_oci/datasafe/get_target_alert_policy_associations.py +0 -34
  99. pulumi_oci/datasafe/get_target_database_group.py +296 -0
  100. pulumi_oci/datasafe/get_target_database_group_group_member.py +146 -0
  101. pulumi_oci/datasafe/get_target_database_groups.py +313 -0
  102. pulumi_oci/datasafe/get_unified_audit_policies.py +386 -0
  103. pulumi_oci/datasafe/get_unified_audit_policy.py +338 -0
  104. pulumi_oci/datasafe/get_unified_audit_policy_definition.py +309 -0
  105. pulumi_oci/datasafe/get_unified_audit_policy_definitions.py +334 -0
  106. pulumi_oci/datasafe/get_user_assessment.py +29 -1
  107. pulumi_oci/datasafe/get_user_assessments.py +45 -1
  108. pulumi_oci/datasafe/outputs.py +6964 -192
  109. pulumi_oci/datasafe/report.py +84 -0
  110. pulumi_oci/datasafe/report_definition.py +4 -0
  111. pulumi_oci/datasafe/security_assessment.py +425 -82
  112. pulumi_oci/datasafe/security_assessment_check.py +456 -0
  113. pulumi_oci/datasafe/security_assessment_finding.py +818 -0
  114. pulumi_oci/datasafe/security_policy.py +94 -77
  115. pulumi_oci/datasafe/security_policy_config.py +698 -0
  116. pulumi_oci/datasafe/security_policy_deployment.py +272 -67
  117. pulumi_oci/datasafe/security_policy_deployment_management.py +266 -42
  118. pulumi_oci/datasafe/security_policy_management.py +87 -30
  119. pulumi_oci/datasafe/target_alert_policy_association.py +7 -77
  120. pulumi_oci/datasafe/target_database.py +4 -0
  121. pulumi_oci/datasafe/target_database_group.py +679 -0
  122. pulumi_oci/datasafe/target_database_peer_target_database.py +2 -0
  123. pulumi_oci/datasafe/unified_audit_policy.py +836 -0
  124. pulumi_oci/datasafe/unified_audit_policy_definition.py +687 -0
  125. pulumi_oci/datasafe/user_assessment.py +105 -28
  126. pulumi_oci/disasterrecovery/_inputs.py +231 -3
  127. pulumi_oci/disasterrecovery/dr_protection_group.py +24 -0
  128. pulumi_oci/disasterrecovery/outputs.py +446 -12
  129. pulumi_oci/generativeai/_inputs.py +572 -63
  130. pulumi_oci/generativeai/agent_data_ingestion_job.py +48 -0
  131. pulumi_oci/generativeai/agent_data_source.py +7 -81
  132. pulumi_oci/generativeai/agent_knowledge_base.py +35 -25
  133. pulumi_oci/generativeai/agent_tool.py +172 -0
  134. pulumi_oci/generativeai/get_agent_data_ingestion_job.py +26 -1
  135. pulumi_oci/generativeai/get_agent_data_source.py +1 -5
  136. pulumi_oci/generativeai/get_agent_data_sources.py +0 -4
  137. pulumi_oci/generativeai/get_agent_knowledge_base.py +16 -6
  138. pulumi_oci/generativeai/get_agent_knowledge_bases.py +0 -4
  139. pulumi_oci/generativeai/outputs.py +1128 -106
  140. pulumi_oci/goldengate/deployment.py +94 -0
  141. pulumi_oci/goldengate/get_deployment.py +29 -1
  142. pulumi_oci/goldengate/get_deployments.py +23 -1
  143. pulumi_oci/goldengate/outputs.py +35 -2
  144. pulumi_oci/mysql/_inputs.py +221 -0
  145. pulumi_oci/mysql/get_mysql_backup.py +40 -4
  146. pulumi_oci/mysql/get_mysql_backups.py +2 -2
  147. pulumi_oci/mysql/mysql_backup.py +119 -3
  148. pulumi_oci/mysql/outputs.py +343 -957
  149. pulumi_oci/oci/__init__.py +17 -0
  150. pulumi_oci/oci/_inputs.py +676 -15
  151. pulumi_oci/oci/dbmulticloud_multi_cloud_resource_discovery.py +103 -54
  152. pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_container.py +45 -45
  153. pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_mount.py +42 -44
  154. pulumi_oci/oci/dbmulticloud_oracle_db_azure_connector.py +100 -72
  155. pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault.py +74 -74
  156. pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault_association.py +50 -50
  157. pulumi_oci/oci/dbmulticloud_oracle_db_gcp_identity_connector.py +924 -0
  158. pulumi_oci/oci/dbmulticloud_oracle_db_gcp_key_ring.py +762 -0
  159. pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discoveries.py +37 -15
  160. pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discovery.py +26 -12
  161. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_container.py +12 -12
  162. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_containers.py +15 -15
  163. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mount.py +12 -12
  164. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mounts.py +15 -15
  165. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connector.py +30 -16
  166. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connectors.py +11 -11
  167. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_key.py +41 -13
  168. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_keys.py +12 -12
  169. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault.py +17 -17
  170. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_association.py +14 -14
  171. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_associations.py +15 -15
  172. pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vaults.py +14 -14
  173. pulumi_oci/oci/get_dbmulticloud_oracle_db_gcp_identity_connector.py +366 -0
  174. pulumi_oci/oci/get_dbmulticloud_oracle_db_gcp_identity_connectors.py +213 -0
  175. pulumi_oci/oci/get_dbmulticloud_oracle_db_gcp_key.py +295 -0
  176. pulumi_oci/oci/get_dbmulticloud_oracle_db_gcp_key_ring.py +309 -0
  177. pulumi_oci/oci/get_dbmulticloud_oracle_db_gcp_key_rings.py +229 -0
  178. pulumi_oci/oci/get_dbmulticloud_oracle_db_gcp_keys.py +232 -0
  179. pulumi_oci/oci/get_managed_kafka_kafka_cluster.py +380 -0
  180. pulumi_oci/oci/get_managed_kafka_kafka_cluster_config.py +254 -0
  181. pulumi_oci/oci/get_managed_kafka_kafka_cluster_config_version.py +177 -0
  182. pulumi_oci/oci/get_managed_kafka_kafka_cluster_config_versions.py +144 -0
  183. pulumi_oci/oci/get_managed_kafka_kafka_cluster_configs.py +199 -0
  184. pulumi_oci/oci/get_managed_kafka_kafka_clusters.py +199 -0
  185. pulumi_oci/oci/managed_kafka_kafka_cluster.py +984 -0
  186. pulumi_oci/oci/managed_kafka_kafka_cluster_config.py +549 -0
  187. pulumi_oci/oci/managed_kafka_kafka_cluster_superusers_management.py +352 -0
  188. pulumi_oci/oci/outputs.py +2051 -142
  189. pulumi_oci/provider.py +44 -63
  190. pulumi_oci/pulumi-plugin.json +1 -1
  191. {pulumi_oci-3.5.0a1756363728.dist-info → pulumi_oci-3.6.0.dist-info}/METADATA +1 -1
  192. {pulumi_oci-3.5.0a1756363728.dist-info → pulumi_oci-3.6.0.dist-info}/RECORD +194 -141
  193. {pulumi_oci-3.5.0a1756363728.dist-info → pulumi_oci-3.6.0.dist-info}/WHEEL +0 -0
  194. {pulumi_oci-3.5.0a1756363728.dist-info → pulumi_oci-3.6.0.dist-info}/top_level.txt +0 -0
pulumi_oci/oci/outputs.py CHANGED
@@ -23,6 +23,11 @@ __all__ = [
23
23
  'ApiaccesscontrolPrivilegedApiRequestPrivilegedOperationList',
24
24
  'DbmulticloudMultiCloudResourceDiscoveryResource',
25
25
  'DbmulticloudOracleDbAzureConnectorArcAgentNode',
26
+ 'DbmulticloudOracleDbGcpIdentityConnectorGcpNode',
27
+ 'ManagedKafkaKafkaClusterAccessSubnet',
28
+ 'ManagedKafkaKafkaClusterBrokerShape',
29
+ 'ManagedKafkaKafkaClusterConfigLatestConfig',
30
+ 'ManagedKafkaKafkaClusterKafkaBootstrapUrl',
26
31
  'GetApiPlatformApiPlatformInstanceIdcsAppResult',
27
32
  'GetApiPlatformApiPlatformInstanceUriResult',
28
33
  'GetApiPlatformApiPlatformInstancesApiPlatformInstanceCollectionResult',
@@ -74,6 +79,34 @@ __all__ = [
74
79
  'GetDbmulticloudOracleDbAzureVaultsFilterResult',
75
80
  'GetDbmulticloudOracleDbAzureVaultsOracleDbAzureVaultSummaryCollectionResult',
76
81
  'GetDbmulticloudOracleDbAzureVaultsOracleDbAzureVaultSummaryCollectionItemResult',
82
+ 'GetDbmulticloudOracleDbGcpIdentityConnectorGcpNodeResult',
83
+ 'GetDbmulticloudOracleDbGcpIdentityConnectorsFilterResult',
84
+ 'GetDbmulticloudOracleDbGcpIdentityConnectorsOracleDbGcpIdentityConnectorSummaryCollectionResult',
85
+ 'GetDbmulticloudOracleDbGcpIdentityConnectorsOracleDbGcpIdentityConnectorSummaryCollectionItemResult',
86
+ 'GetDbmulticloudOracleDbGcpIdentityConnectorsOracleDbGcpIdentityConnectorSummaryCollectionItemGcpNodeResult',
87
+ 'GetDbmulticloudOracleDbGcpKeyRingsFilterResult',
88
+ 'GetDbmulticloudOracleDbGcpKeyRingsOracleDbGcpKeyRingSummaryCollectionResult',
89
+ 'GetDbmulticloudOracleDbGcpKeyRingsOracleDbGcpKeyRingSummaryCollectionItemResult',
90
+ 'GetDbmulticloudOracleDbGcpKeysFilterResult',
91
+ 'GetDbmulticloudOracleDbGcpKeysOracleDbGcpKeySummaryCollectionResult',
92
+ 'GetDbmulticloudOracleDbGcpKeysOracleDbGcpKeySummaryCollectionItemResult',
93
+ 'GetManagedKafkaKafkaClusterAccessSubnetResult',
94
+ 'GetManagedKafkaKafkaClusterBrokerShapeResult',
95
+ 'GetManagedKafkaKafkaClusterConfigLatestConfigResult',
96
+ 'GetManagedKafkaKafkaClusterConfigVersionsFilterResult',
97
+ 'GetManagedKafkaKafkaClusterConfigVersionsKafkaClusterConfigVersionCollectionResult',
98
+ 'GetManagedKafkaKafkaClusterConfigVersionsKafkaClusterConfigVersionCollectionItemResult',
99
+ 'GetManagedKafkaKafkaClusterConfigsFilterResult',
100
+ 'GetManagedKafkaKafkaClusterConfigsKafkaClusterConfigCollectionResult',
101
+ 'GetManagedKafkaKafkaClusterConfigsKafkaClusterConfigCollectionItemResult',
102
+ 'GetManagedKafkaKafkaClusterConfigsKafkaClusterConfigCollectionItemLatestConfigResult',
103
+ 'GetManagedKafkaKafkaClusterKafkaBootstrapUrlResult',
104
+ 'GetManagedKafkaKafkaClustersFilterResult',
105
+ 'GetManagedKafkaKafkaClustersKafkaClusterCollectionResult',
106
+ 'GetManagedKafkaKafkaClustersKafkaClusterCollectionItemResult',
107
+ 'GetManagedKafkaKafkaClustersKafkaClusterCollectionItemAccessSubnetResult',
108
+ 'GetManagedKafkaKafkaClustersKafkaClusterCollectionItemBrokerShapeResult',
109
+ 'GetManagedKafkaKafkaClustersKafkaClusterCollectionItemKafkaBootstrapUrlResult',
77
110
  'GetWlmsManagedInstanceConfigurationResult',
78
111
  'GetWlmsManagedInstanceScanResultsFilterResult',
79
112
  'GetWlmsManagedInstanceScanResultsScanResultCollectionResult',
@@ -415,7 +448,7 @@ class DbmulticloudMultiCloudResourceDiscoveryResource(dict):
415
448
  resource_group: Optional[_builtins.str] = None,
416
449
  type: Optional[_builtins.str] = None):
417
450
  """
418
- :param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Discovered Resource.
451
+ :param _builtins.str id: The ID of the Discovered Resource.
419
452
  :param _builtins.str location: Discovered Resource Location.
420
453
  :param _builtins.str name: Discovered Resource Name.
421
454
  :param Mapping[str, _builtins.str] properties: Discovered Resource's properties.
@@ -439,7 +472,7 @@ class DbmulticloudMultiCloudResourceDiscoveryResource(dict):
439
472
  @pulumi.getter
440
473
  def id(self) -> Optional[_builtins.str]:
441
474
  """
442
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Discovered Resource.
475
+ The ID of the Discovered Resource.
443
476
  """
444
477
  return pulumi.get(self, "id")
445
478
 
@@ -516,11 +549,11 @@ class DbmulticloudOracleDbAzureConnectorArcAgentNode(dict):
516
549
  status: Optional[_builtins.str] = None,
517
550
  time_last_checked: Optional[_builtins.str] = None):
518
551
  """
519
- :param _builtins.str current_arc_agent_version: Current Arc Agent Version installed on this node of VM Cluster.
552
+ :param _builtins.str current_arc_agent_version: Current Arc Agent Version installed on this node of Oracle Cloud VM Cluster.
520
553
  :param _builtins.str host_id: Host ID.
521
- :param _builtins.str host_name: Host Name or Azure Arc Agent Name.
522
- :param _builtins.str status: The current status of the Azure Arc Agent Resource.
523
- :param _builtins.str time_last_checked: time when the Azure Arc Agent's status was checked [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
554
+ :param _builtins.str host_name: Host name or Azure Arc Agent name.
555
+ :param _builtins.str status: The current status of the Azure Arc Agent resource.
556
+ :param _builtins.str time_last_checked: Time when the Azure Arc Agent's status was checked [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
524
557
  """
525
558
  if current_arc_agent_version is not None:
526
559
  pulumi.set(__self__, "current_arc_agent_version", current_arc_agent_version)
@@ -537,7 +570,7 @@ class DbmulticloudOracleDbAzureConnectorArcAgentNode(dict):
537
570
  @pulumi.getter(name="currentArcAgentVersion")
538
571
  def current_arc_agent_version(self) -> Optional[_builtins.str]:
539
572
  """
540
- Current Arc Agent Version installed on this node of VM Cluster.
573
+ Current Arc Agent Version installed on this node of Oracle Cloud VM Cluster.
541
574
  """
542
575
  return pulumi.get(self, "current_arc_agent_version")
543
576
 
@@ -553,7 +586,7 @@ class DbmulticloudOracleDbAzureConnectorArcAgentNode(dict):
553
586
  @pulumi.getter(name="hostName")
554
587
  def host_name(self) -> Optional[_builtins.str]:
555
588
  """
556
- Host Name or Azure Arc Agent Name.
589
+ Host name or Azure Arc Agent name.
557
590
  """
558
591
  return pulumi.get(self, "host_name")
559
592
 
@@ -561,7 +594,7 @@ class DbmulticloudOracleDbAzureConnectorArcAgentNode(dict):
561
594
  @pulumi.getter
562
595
  def status(self) -> Optional[_builtins.str]:
563
596
  """
564
- The current status of the Azure Arc Agent Resource.
597
+ The current status of the Azure Arc Agent resource.
565
598
  """
566
599
  return pulumi.get(self, "status")
567
600
 
@@ -569,11 +602,281 @@ class DbmulticloudOracleDbAzureConnectorArcAgentNode(dict):
569
602
  @pulumi.getter(name="timeLastChecked")
570
603
  def time_last_checked(self) -> Optional[_builtins.str]:
571
604
  """
572
- time when the Azure Arc Agent's status was checked [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
605
+ Time when the Azure Arc Agent's status was checked [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
573
606
  """
574
607
  return pulumi.get(self, "time_last_checked")
575
608
 
576
609
 
610
+ @pulumi.output_type
611
+ class DbmulticloudOracleDbGcpIdentityConnectorGcpNode(dict):
612
+ @staticmethod
613
+ def __key_warning(key: str):
614
+ suggest = None
615
+ if key == "hostId":
616
+ suggest = "host_id"
617
+ elif key == "hostName":
618
+ suggest = "host_name"
619
+ elif key == "timeLastChecked":
620
+ suggest = "time_last_checked"
621
+
622
+ if suggest:
623
+ pulumi.log.warn(f"Key '{key}' not found in DbmulticloudOracleDbGcpIdentityConnectorGcpNode. Access the value via the '{suggest}' property getter instead.")
624
+
625
+ def __getitem__(self, key: str) -> Any:
626
+ DbmulticloudOracleDbGcpIdentityConnectorGcpNode.__key_warning(key)
627
+ return super().__getitem__(key)
628
+
629
+ def get(self, key: str, default = None) -> Any:
630
+ DbmulticloudOracleDbGcpIdentityConnectorGcpNode.__key_warning(key)
631
+ return super().get(key, default)
632
+
633
+ def __init__(__self__, *,
634
+ host_id: Optional[_builtins.str] = None,
635
+ host_name: Optional[_builtins.str] = None,
636
+ status: Optional[_builtins.str] = None,
637
+ time_last_checked: Optional[_builtins.str] = None):
638
+ """
639
+ :param _builtins.str host_id: Host ID.
640
+ :param _builtins.str host_name: Host Name or Identity Connector name.
641
+ :param _builtins.str status: The current status of the GCP Identity Connector resource.
642
+ :param _builtins.str time_last_checked: time when the GCP Identity Connector's status was checked [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
643
+ """
644
+ if host_id is not None:
645
+ pulumi.set(__self__, "host_id", host_id)
646
+ if host_name is not None:
647
+ pulumi.set(__self__, "host_name", host_name)
648
+ if status is not None:
649
+ pulumi.set(__self__, "status", status)
650
+ if time_last_checked is not None:
651
+ pulumi.set(__self__, "time_last_checked", time_last_checked)
652
+
653
+ @_builtins.property
654
+ @pulumi.getter(name="hostId")
655
+ def host_id(self) -> Optional[_builtins.str]:
656
+ """
657
+ Host ID.
658
+ """
659
+ return pulumi.get(self, "host_id")
660
+
661
+ @_builtins.property
662
+ @pulumi.getter(name="hostName")
663
+ def host_name(self) -> Optional[_builtins.str]:
664
+ """
665
+ Host Name or Identity Connector name.
666
+ """
667
+ return pulumi.get(self, "host_name")
668
+
669
+ @_builtins.property
670
+ @pulumi.getter
671
+ def status(self) -> Optional[_builtins.str]:
672
+ """
673
+ The current status of the GCP Identity Connector resource.
674
+ """
675
+ return pulumi.get(self, "status")
676
+
677
+ @_builtins.property
678
+ @pulumi.getter(name="timeLastChecked")
679
+ def time_last_checked(self) -> Optional[_builtins.str]:
680
+ """
681
+ time when the GCP Identity Connector's status was checked [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
682
+ """
683
+ return pulumi.get(self, "time_last_checked")
684
+
685
+
686
+ @pulumi.output_type
687
+ class ManagedKafkaKafkaClusterAccessSubnet(dict):
688
+ def __init__(__self__, *,
689
+ subnets: Sequence[_builtins.str]):
690
+ """
691
+ :param Sequence[_builtins.str] subnets: (Updatable) Subnets OCIDs
692
+ """
693
+ pulumi.set(__self__, "subnets", subnets)
694
+
695
+ @_builtins.property
696
+ @pulumi.getter
697
+ def subnets(self) -> Sequence[_builtins.str]:
698
+ """
699
+ (Updatable) Subnets OCIDs
700
+ """
701
+ return pulumi.get(self, "subnets")
702
+
703
+
704
+ @pulumi.output_type
705
+ class ManagedKafkaKafkaClusterBrokerShape(dict):
706
+ @staticmethod
707
+ def __key_warning(key: str):
708
+ suggest = None
709
+ if key == "nodeCount":
710
+ suggest = "node_count"
711
+ elif key == "ocpuCount":
712
+ suggest = "ocpu_count"
713
+ elif key == "storageSizeInGbs":
714
+ suggest = "storage_size_in_gbs"
715
+
716
+ if suggest:
717
+ pulumi.log.warn(f"Key '{key}' not found in ManagedKafkaKafkaClusterBrokerShape. Access the value via the '{suggest}' property getter instead.")
718
+
719
+ def __getitem__(self, key: str) -> Any:
720
+ ManagedKafkaKafkaClusterBrokerShape.__key_warning(key)
721
+ return super().__getitem__(key)
722
+
723
+ def get(self, key: str, default = None) -> Any:
724
+ ManagedKafkaKafkaClusterBrokerShape.__key_warning(key)
725
+ return super().get(key, default)
726
+
727
+ def __init__(__self__, *,
728
+ node_count: _builtins.int,
729
+ ocpu_count: _builtins.int,
730
+ storage_size_in_gbs: Optional[_builtins.int] = None):
731
+ """
732
+ :param _builtins.int node_count: (Updatable) Number of Kafka broker nodes
733
+ :param _builtins.int ocpu_count: (Updatable) Number of OCPUs per nodes
734
+ :param _builtins.int storage_size_in_gbs: (Updatable) Size of the storage per nodes.
735
+ """
736
+ pulumi.set(__self__, "node_count", node_count)
737
+ pulumi.set(__self__, "ocpu_count", ocpu_count)
738
+ if storage_size_in_gbs is not None:
739
+ pulumi.set(__self__, "storage_size_in_gbs", storage_size_in_gbs)
740
+
741
+ @_builtins.property
742
+ @pulumi.getter(name="nodeCount")
743
+ def node_count(self) -> _builtins.int:
744
+ """
745
+ (Updatable) Number of Kafka broker nodes
746
+ """
747
+ return pulumi.get(self, "node_count")
748
+
749
+ @_builtins.property
750
+ @pulumi.getter(name="ocpuCount")
751
+ def ocpu_count(self) -> _builtins.int:
752
+ """
753
+ (Updatable) Number of OCPUs per nodes
754
+ """
755
+ return pulumi.get(self, "ocpu_count")
756
+
757
+ @_builtins.property
758
+ @pulumi.getter(name="storageSizeInGbs")
759
+ def storage_size_in_gbs(self) -> Optional[_builtins.int]:
760
+ """
761
+ (Updatable) Size of the storage per nodes.
762
+ """
763
+ return pulumi.get(self, "storage_size_in_gbs")
764
+
765
+
766
+ @pulumi.output_type
767
+ class ManagedKafkaKafkaClusterConfigLatestConfig(dict):
768
+ @staticmethod
769
+ def __key_warning(key: str):
770
+ suggest = None
771
+ if key == "configId":
772
+ suggest = "config_id"
773
+ elif key == "timeCreated":
774
+ suggest = "time_created"
775
+ elif key == "versionNumber":
776
+ suggest = "version_number"
777
+
778
+ if suggest:
779
+ pulumi.log.warn(f"Key '{key}' not found in ManagedKafkaKafkaClusterConfigLatestConfig. Access the value via the '{suggest}' property getter instead.")
780
+
781
+ def __getitem__(self, key: str) -> Any:
782
+ ManagedKafkaKafkaClusterConfigLatestConfig.__key_warning(key)
783
+ return super().__getitem__(key)
784
+
785
+ def get(self, key: str, default = None) -> Any:
786
+ ManagedKafkaKafkaClusterConfigLatestConfig.__key_warning(key)
787
+ return super().get(key, default)
788
+
789
+ def __init__(__self__, *,
790
+ properties: Mapping[str, _builtins.str],
791
+ config_id: Optional[_builtins.str] = None,
792
+ time_created: Optional[_builtins.str] = None,
793
+ version_number: Optional[_builtins.int] = None):
794
+ """
795
+ :param Mapping[str, _builtins.str] properties: (Updatable) Cluster configuration key-value pairs
796
+ :param _builtins.str config_id: (Updatable) ID cluster configuration
797
+ :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`
798
+ :param _builtins.int version_number: (Updatable) Version of the cluster configuration
799
+
800
+
801
+ ** IMPORTANT **
802
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
803
+ """
804
+ pulumi.set(__self__, "properties", properties)
805
+ if config_id is not None:
806
+ pulumi.set(__self__, "config_id", config_id)
807
+ if time_created is not None:
808
+ pulumi.set(__self__, "time_created", time_created)
809
+ if version_number is not None:
810
+ pulumi.set(__self__, "version_number", version_number)
811
+
812
+ @_builtins.property
813
+ @pulumi.getter
814
+ def properties(self) -> Mapping[str, _builtins.str]:
815
+ """
816
+ (Updatable) Cluster configuration key-value pairs
817
+ """
818
+ return pulumi.get(self, "properties")
819
+
820
+ @_builtins.property
821
+ @pulumi.getter(name="configId")
822
+ def config_id(self) -> Optional[_builtins.str]:
823
+ """
824
+ (Updatable) ID cluster configuration
825
+ """
826
+ return pulumi.get(self, "config_id")
827
+
828
+ @_builtins.property
829
+ @pulumi.getter(name="timeCreated")
830
+ def time_created(self) -> Optional[_builtins.str]:
831
+ """
832
+ (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`
833
+ """
834
+ return pulumi.get(self, "time_created")
835
+
836
+ @_builtins.property
837
+ @pulumi.getter(name="versionNumber")
838
+ def version_number(self) -> Optional[_builtins.int]:
839
+ """
840
+ (Updatable) Version of the cluster configuration
841
+
842
+
843
+ ** IMPORTANT **
844
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
845
+ """
846
+ return pulumi.get(self, "version_number")
847
+
848
+
849
+ @pulumi.output_type
850
+ class ManagedKafkaKafkaClusterKafkaBootstrapUrl(dict):
851
+ def __init__(__self__, *,
852
+ name: Optional[_builtins.str] = None,
853
+ url: Optional[_builtins.str] = None):
854
+ """
855
+ :param _builtins.str name: Name of the Kafka listener providing this bootstrap URL
856
+ :param _builtins.str url: Bootstrap URL
857
+ """
858
+ if name is not None:
859
+ pulumi.set(__self__, "name", name)
860
+ if url is not None:
861
+ pulumi.set(__self__, "url", url)
862
+
863
+ @_builtins.property
864
+ @pulumi.getter
865
+ def name(self) -> Optional[_builtins.str]:
866
+ """
867
+ Name of the Kafka listener providing this bootstrap URL
868
+ """
869
+ return pulumi.get(self, "name")
870
+
871
+ @_builtins.property
872
+ @pulumi.getter
873
+ def url(self) -> Optional[_builtins.str]:
874
+ """
875
+ Bootstrap URL
876
+ """
877
+ return pulumi.get(self, "url")
878
+
879
+
577
880
  @pulumi.output_type
578
881
  class GetApiPlatformApiPlatformInstanceIdcsAppResult(dict):
579
882
  def __init__(__self__, *,
@@ -2293,6 +2596,7 @@ class GetDbmulticloudMultiCloudResourceDiscoveriesMultiCloudResourceDiscoverySum
2293
2596
  oracle_db_connector_id: _builtins.str,
2294
2597
  resource_type: _builtins.str,
2295
2598
  resources: Sequence['outputs.GetDbmulticloudMultiCloudResourceDiscoveriesMultiCloudResourceDiscoverySummaryCollectionItemResourceResult'],
2599
+ resources_filter: Mapping[str, _builtins.str],
2296
2600
  state: _builtins.str,
2297
2601
  system_tags: Mapping[str, _builtins.str],
2298
2602
  time_created: _builtins.str,
@@ -2300,18 +2604,19 @@ class GetDbmulticloudMultiCloudResourceDiscoveriesMultiCloudResourceDiscoverySum
2300
2604
  """
2301
2605
  :param _builtins.str compartment_id: The [ID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
2302
2606
  :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"}`
2303
- :param _builtins.str display_name: Display Name of the Multi Cloud Discovery Resource.
2607
+ :param _builtins.str display_name: A filter to return Oracle DB Multicloud Discovery resources that match the specified display name.
2304
2608
  :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"}`
2305
- :param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Discovered Resource.
2306
- :param _builtins.str last_modification: Description of the latest modification of the Multi Cloud Discovery Resource.
2609
+ :param _builtins.str id: The ID of the Discovered Resource.
2610
+ :param _builtins.str last_modification: Description of the latest modification of the Multicloud Resource Discovery resource.
2307
2611
  :param _builtins.str lifecycle_state_details: Description of the current lifecycle state in more detail.
2308
- :param _builtins.str oracle_db_connector_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Connector Resource.
2309
- :param _builtins.str resource_type: The type of Multi Cloud Resource.
2612
+ :param _builtins.str oracle_db_connector_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Connector resource.
2613
+ :param _builtins.str resource_type: The type of Multicloud Resource.
2310
2614
  :param Sequence['GetDbmulticloudMultiCloudResourceDiscoveriesMultiCloudResourceDiscoverySummaryCollectionItemResourceArgs'] resources: List of All Discovered resources.
2311
- :param _builtins.str state: A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
2615
+ :param Mapping[str, _builtins.str] resources_filter: Specifies the type(s) of resources to discover in the target cloud provider.
2616
+ :param _builtins.str state: A filter to return only resources that match the specified lifecycle state. The state value is case-insensitive.
2312
2617
  :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"}`
2313
- :param _builtins.str time_created: Time when the Multi Cloud Discovery Resource was created in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
2314
- :param _builtins.str time_updated: Time when the Multi Cloud Discovery Resource was last modified, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
2618
+ :param _builtins.str time_created: Time when the Multicloud Discovery Resource was created in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
2619
+ :param _builtins.str time_updated: Time when the Multicloud Discovery Resource was last modified, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
2315
2620
  """
2316
2621
  pulumi.set(__self__, "compartment_id", compartment_id)
2317
2622
  pulumi.set(__self__, "defined_tags", defined_tags)
@@ -2323,6 +2628,7 @@ class GetDbmulticloudMultiCloudResourceDiscoveriesMultiCloudResourceDiscoverySum
2323
2628
  pulumi.set(__self__, "oracle_db_connector_id", oracle_db_connector_id)
2324
2629
  pulumi.set(__self__, "resource_type", resource_type)
2325
2630
  pulumi.set(__self__, "resources", resources)
2631
+ pulumi.set(__self__, "resources_filter", resources_filter)
2326
2632
  pulumi.set(__self__, "state", state)
2327
2633
  pulumi.set(__self__, "system_tags", system_tags)
2328
2634
  pulumi.set(__self__, "time_created", time_created)
@@ -2348,7 +2654,7 @@ class GetDbmulticloudMultiCloudResourceDiscoveriesMultiCloudResourceDiscoverySum
2348
2654
  @pulumi.getter(name="displayName")
2349
2655
  def display_name(self) -> _builtins.str:
2350
2656
  """
2351
- Display Name of the Multi Cloud Discovery Resource.
2657
+ A filter to return Oracle DB Multicloud Discovery resources that match the specified display name.
2352
2658
  """
2353
2659
  return pulumi.get(self, "display_name")
2354
2660
 
@@ -2364,7 +2670,7 @@ class GetDbmulticloudMultiCloudResourceDiscoveriesMultiCloudResourceDiscoverySum
2364
2670
  @pulumi.getter
2365
2671
  def id(self) -> _builtins.str:
2366
2672
  """
2367
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Discovered Resource.
2673
+ The ID of the Discovered Resource.
2368
2674
  """
2369
2675
  return pulumi.get(self, "id")
2370
2676
 
@@ -2372,7 +2678,7 @@ class GetDbmulticloudMultiCloudResourceDiscoveriesMultiCloudResourceDiscoverySum
2372
2678
  @pulumi.getter(name="lastModification")
2373
2679
  def last_modification(self) -> _builtins.str:
2374
2680
  """
2375
- Description of the latest modification of the Multi Cloud Discovery Resource.
2681
+ Description of the latest modification of the Multicloud Resource Discovery resource.
2376
2682
  """
2377
2683
  return pulumi.get(self, "last_modification")
2378
2684
 
@@ -2388,7 +2694,7 @@ class GetDbmulticloudMultiCloudResourceDiscoveriesMultiCloudResourceDiscoverySum
2388
2694
  @pulumi.getter(name="oracleDbConnectorId")
2389
2695
  def oracle_db_connector_id(self) -> _builtins.str:
2390
2696
  """
2391
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Connector Resource.
2697
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Connector resource.
2392
2698
  """
2393
2699
  return pulumi.get(self, "oracle_db_connector_id")
2394
2700
 
@@ -2396,7 +2702,7 @@ class GetDbmulticloudMultiCloudResourceDiscoveriesMultiCloudResourceDiscoverySum
2396
2702
  @pulumi.getter(name="resourceType")
2397
2703
  def resource_type(self) -> _builtins.str:
2398
2704
  """
2399
- The type of Multi Cloud Resource.
2705
+ The type of Multicloud Resource.
2400
2706
  """
2401
2707
  return pulumi.get(self, "resource_type")
2402
2708
 
@@ -2408,11 +2714,19 @@ class GetDbmulticloudMultiCloudResourceDiscoveriesMultiCloudResourceDiscoverySum
2408
2714
  """
2409
2715
  return pulumi.get(self, "resources")
2410
2716
 
2717
+ @_builtins.property
2718
+ @pulumi.getter(name="resourcesFilter")
2719
+ def resources_filter(self) -> Mapping[str, _builtins.str]:
2720
+ """
2721
+ Specifies the type(s) of resources to discover in the target cloud provider.
2722
+ """
2723
+ return pulumi.get(self, "resources_filter")
2724
+
2411
2725
  @_builtins.property
2412
2726
  @pulumi.getter
2413
2727
  def state(self) -> _builtins.str:
2414
2728
  """
2415
- A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
2729
+ A filter to return only resources that match the specified lifecycle state. The state value is case-insensitive.
2416
2730
  """
2417
2731
  return pulumi.get(self, "state")
2418
2732
 
@@ -2428,7 +2742,7 @@ class GetDbmulticloudMultiCloudResourceDiscoveriesMultiCloudResourceDiscoverySum
2428
2742
  @pulumi.getter(name="timeCreated")
2429
2743
  def time_created(self) -> _builtins.str:
2430
2744
  """
2431
- Time when the Multi Cloud Discovery Resource was created in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
2745
+ Time when the Multicloud Discovery Resource was created in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
2432
2746
  """
2433
2747
  return pulumi.get(self, "time_created")
2434
2748
 
@@ -2436,7 +2750,7 @@ class GetDbmulticloudMultiCloudResourceDiscoveriesMultiCloudResourceDiscoverySum
2436
2750
  @pulumi.getter(name="timeUpdated")
2437
2751
  def time_updated(self) -> _builtins.str:
2438
2752
  """
2439
- Time when the Multi Cloud Discovery Resource was last modified, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
2753
+ Time when the Multicloud Discovery Resource was last modified, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
2440
2754
  """
2441
2755
  return pulumi.get(self, "time_updated")
2442
2756
 
@@ -2451,7 +2765,7 @@ class GetDbmulticloudMultiCloudResourceDiscoveriesMultiCloudResourceDiscoverySum
2451
2765
  resource_group: _builtins.str,
2452
2766
  type: _builtins.str):
2453
2767
  """
2454
- :param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Discovered Resource.
2768
+ :param _builtins.str id: The ID of the Discovered Resource.
2455
2769
  :param _builtins.str location: Discovered Resource Location.
2456
2770
  :param _builtins.str name: Discovered Resource Name.
2457
2771
  :param Mapping[str, _builtins.str] properties: Discovered Resource's properties.
@@ -2469,7 +2783,7 @@ class GetDbmulticloudMultiCloudResourceDiscoveriesMultiCloudResourceDiscoverySum
2469
2783
  @pulumi.getter
2470
2784
  def id(self) -> _builtins.str:
2471
2785
  """
2472
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Discovered Resource.
2786
+ The ID of the Discovered Resource.
2473
2787
  """
2474
2788
  return pulumi.get(self, "id")
2475
2789
 
@@ -2524,7 +2838,7 @@ class GetDbmulticloudMultiCloudResourceDiscoveryResourceResult(dict):
2524
2838
  resource_group: _builtins.str,
2525
2839
  type: _builtins.str):
2526
2840
  """
2527
- :param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Discovered Resource.
2841
+ :param _builtins.str id: The ID of the Discovered Resource.
2528
2842
  :param _builtins.str location: Discovered Resource Location.
2529
2843
  :param _builtins.str name: Discovered Resource Name.
2530
2844
  :param Mapping[str, _builtins.str] properties: Discovered Resource's properties.
@@ -2542,7 +2856,7 @@ class GetDbmulticloudMultiCloudResourceDiscoveryResourceResult(dict):
2542
2856
  @pulumi.getter
2543
2857
  def id(self) -> _builtins.str:
2544
2858
  """
2545
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Discovered Resource.
2859
+ The ID of the Discovered Resource.
2546
2860
  """
2547
2861
  return pulumi.get(self, "id")
2548
2862
 
@@ -2645,16 +2959,16 @@ class GetDbmulticloudOracleDbAzureBlobContainersOracleDbAzureBlobContainerSummar
2645
2959
  time_created: _builtins.str,
2646
2960
  time_updated: _builtins.str):
2647
2961
  """
2648
- :param _builtins.str azure_storage_account_name: A filter to return Azure Blob Containers.
2649
- :param _builtins.str azure_storage_container_name: A filter to return Azure Blob containers.
2962
+ :param _builtins.str azure_storage_account_name: A filter to return Oracle DB Azure Blob Container resources that match the specified Azure Account name.
2963
+ :param _builtins.str azure_storage_container_name: A filter to return Oracle DB Azure Blob Container resources that match the specified Azure Storage name.
2650
2964
  :param _builtins.str compartment_id: The [ID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
2651
2965
  :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"}`
2652
- :param _builtins.str display_name: A filter to return Azure Containers.
2966
+ :param _builtins.str display_name: A filter to return Oracle DB Azure Blob Container resources that match the specified display name.
2653
2967
  :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"}`
2654
- :param _builtins.str id: The ID of the compartment that contains Oracle DB Azure Blob Container Resource.
2655
- :param _builtins.str last_modification: Description of the latest modification of the Oracle DB Azure Blob Container Resource.
2968
+ :param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of Oracle DB Azure Blob Container resource.
2969
+ :param _builtins.str last_modification: Description of the latest modification of the Oracle DB Azure Blob Container resource.
2656
2970
  :param _builtins.str lifecycle_state_details: Description of the current lifecycle state in more detail.
2657
- :param _builtins.str private_endpoint_dns_alias: Private endpoint DNS Alias.
2971
+ :param _builtins.str private_endpoint_dns_alias: Private endpoint's DNS Alias.
2658
2972
  :param _builtins.str private_endpoint_ip_address: Private endpoint IP.
2659
2973
  :param _builtins.str state: A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
2660
2974
  :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"}`
@@ -2681,7 +2995,7 @@ class GetDbmulticloudOracleDbAzureBlobContainersOracleDbAzureBlobContainerSummar
2681
2995
  @pulumi.getter(name="azureStorageAccountName")
2682
2996
  def azure_storage_account_name(self) -> _builtins.str:
2683
2997
  """
2684
- A filter to return Azure Blob Containers.
2998
+ A filter to return Oracle DB Azure Blob Container resources that match the specified Azure Account name.
2685
2999
  """
2686
3000
  return pulumi.get(self, "azure_storage_account_name")
2687
3001
 
@@ -2689,7 +3003,7 @@ class GetDbmulticloudOracleDbAzureBlobContainersOracleDbAzureBlobContainerSummar
2689
3003
  @pulumi.getter(name="azureStorageContainerName")
2690
3004
  def azure_storage_container_name(self) -> _builtins.str:
2691
3005
  """
2692
- A filter to return Azure Blob containers.
3006
+ A filter to return Oracle DB Azure Blob Container resources that match the specified Azure Storage name.
2693
3007
  """
2694
3008
  return pulumi.get(self, "azure_storage_container_name")
2695
3009
 
@@ -2713,7 +3027,7 @@ class GetDbmulticloudOracleDbAzureBlobContainersOracleDbAzureBlobContainerSummar
2713
3027
  @pulumi.getter(name="displayName")
2714
3028
  def display_name(self) -> _builtins.str:
2715
3029
  """
2716
- A filter to return Azure Containers.
3030
+ A filter to return Oracle DB Azure Blob Container resources that match the specified display name.
2717
3031
  """
2718
3032
  return pulumi.get(self, "display_name")
2719
3033
 
@@ -2729,7 +3043,7 @@ class GetDbmulticloudOracleDbAzureBlobContainersOracleDbAzureBlobContainerSummar
2729
3043
  @pulumi.getter
2730
3044
  def id(self) -> _builtins.str:
2731
3045
  """
2732
- The ID of the compartment that contains Oracle DB Azure Blob Container Resource.
3046
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of Oracle DB Azure Blob Container resource.
2733
3047
  """
2734
3048
  return pulumi.get(self, "id")
2735
3049
 
@@ -2737,7 +3051,7 @@ class GetDbmulticloudOracleDbAzureBlobContainersOracleDbAzureBlobContainerSummar
2737
3051
  @pulumi.getter(name="lastModification")
2738
3052
  def last_modification(self) -> _builtins.str:
2739
3053
  """
2740
- Description of the latest modification of the Oracle DB Azure Blob Container Resource.
3054
+ Description of the latest modification of the Oracle DB Azure Blob Container resource.
2741
3055
  """
2742
3056
  return pulumi.get(self, "last_modification")
2743
3057
 
@@ -2753,7 +3067,7 @@ class GetDbmulticloudOracleDbAzureBlobContainersOracleDbAzureBlobContainerSummar
2753
3067
  @pulumi.getter(name="privateEndpointDnsAlias")
2754
3068
  def private_endpoint_dns_alias(self) -> _builtins.str:
2755
3069
  """
2756
- Private endpoint DNS Alias.
3070
+ Private endpoint's DNS Alias.
2757
3071
  """
2758
3072
  return pulumi.get(self, "private_endpoint_dns_alias")
2759
3073
 
@@ -2857,14 +3171,14 @@ class GetDbmulticloudOracleDbAzureBlobMountsOracleDbAzureBlobMountSummaryCollect
2857
3171
  """
2858
3172
  :param _builtins.str compartment_id: The [ID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
2859
3173
  :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"}`
2860
- :param _builtins.str display_name: A filter to return Oracle DB Azure Blob Mount Resources.
3174
+ :param _builtins.str display_name: A filter to return Oracle DB Azure Blob Mount resources that match the specified display name.
2861
3175
  :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"}`
2862
- :param _builtins.str id: The OCID for the new Oracle DB Azure Blob Mount resource.
2863
- :param _builtins.str last_modification: Description of the latest modification of the Oracle DB Azure Blob Mount Resource.
3176
+ :param _builtins.str id: The The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Blob Mount resource.
3177
+ :param _builtins.str last_modification: Description of the latest modification of the Oracle DB Azure Blob Mount resource.
2864
3178
  :param _builtins.str lifecycle_state_details: Description of the current lifecycle state in more detail.
2865
- :param _builtins.str mount_path: Azure Container mount path.
2866
- :param _builtins.str oracle_db_azure_blob_container_id: A filter to return Oracle DB Azure Blob Mount Resources.
2867
- :param _builtins.str oracle_db_azure_connector_id: A filter to return Oracle DB Azure Blob Mount Resources.
3179
+ :param _builtins.str mount_path: Oracle DB Azure Blob Mount path.
3180
+ :param _builtins.str oracle_db_azure_blob_container_id: A filter to return Oracle DB Azure Blob Container resource.
3181
+ :param _builtins.str oracle_db_azure_connector_id: A filter to return Oracle DB Azure Azure Identity Connector resources.
2868
3182
  :param _builtins.str state: A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
2869
3183
  :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"}`
2870
3184
  :param _builtins.str time_created: Time when the Oracle DB Azure Blob Mount was created in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
@@ -2905,7 +3219,7 @@ class GetDbmulticloudOracleDbAzureBlobMountsOracleDbAzureBlobMountSummaryCollect
2905
3219
  @pulumi.getter(name="displayName")
2906
3220
  def display_name(self) -> _builtins.str:
2907
3221
  """
2908
- A filter to return Oracle DB Azure Blob Mount Resources.
3222
+ A filter to return Oracle DB Azure Blob Mount resources that match the specified display name.
2909
3223
  """
2910
3224
  return pulumi.get(self, "display_name")
2911
3225
 
@@ -2921,7 +3235,7 @@ class GetDbmulticloudOracleDbAzureBlobMountsOracleDbAzureBlobMountSummaryCollect
2921
3235
  @pulumi.getter
2922
3236
  def id(self) -> _builtins.str:
2923
3237
  """
2924
- The OCID for the new Oracle DB Azure Blob Mount resource.
3238
+ The The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Blob Mount resource.
2925
3239
  """
2926
3240
  return pulumi.get(self, "id")
2927
3241
 
@@ -2929,7 +3243,7 @@ class GetDbmulticloudOracleDbAzureBlobMountsOracleDbAzureBlobMountSummaryCollect
2929
3243
  @pulumi.getter(name="lastModification")
2930
3244
  def last_modification(self) -> _builtins.str:
2931
3245
  """
2932
- Description of the latest modification of the Oracle DB Azure Blob Mount Resource.
3246
+ Description of the latest modification of the Oracle DB Azure Blob Mount resource.
2933
3247
  """
2934
3248
  return pulumi.get(self, "last_modification")
2935
3249
 
@@ -2945,7 +3259,7 @@ class GetDbmulticloudOracleDbAzureBlobMountsOracleDbAzureBlobMountSummaryCollect
2945
3259
  @pulumi.getter(name="mountPath")
2946
3260
  def mount_path(self) -> _builtins.str:
2947
3261
  """
2948
- Azure Container mount path.
3262
+ Oracle DB Azure Blob Mount path.
2949
3263
  """
2950
3264
  return pulumi.get(self, "mount_path")
2951
3265
 
@@ -2953,7 +3267,7 @@ class GetDbmulticloudOracleDbAzureBlobMountsOracleDbAzureBlobMountSummaryCollect
2953
3267
  @pulumi.getter(name="oracleDbAzureBlobContainerId")
2954
3268
  def oracle_db_azure_blob_container_id(self) -> _builtins.str:
2955
3269
  """
2956
- A filter to return Oracle DB Azure Blob Mount Resources.
3270
+ A filter to return Oracle DB Azure Blob Container resource.
2957
3271
  """
2958
3272
  return pulumi.get(self, "oracle_db_azure_blob_container_id")
2959
3273
 
@@ -2961,7 +3275,7 @@ class GetDbmulticloudOracleDbAzureBlobMountsOracleDbAzureBlobMountSummaryCollect
2961
3275
  @pulumi.getter(name="oracleDbAzureConnectorId")
2962
3276
  def oracle_db_azure_connector_id(self) -> _builtins.str:
2963
3277
  """
2964
- A filter to return Oracle DB Azure Blob Mount Resources.
3278
+ A filter to return Oracle DB Azure Azure Identity Connector resources.
2965
3279
  """
2966
3280
  return pulumi.get(self, "oracle_db_azure_connector_id")
2967
3281
 
@@ -3007,11 +3321,11 @@ class GetDbmulticloudOracleDbAzureConnectorArcAgentNodeResult(dict):
3007
3321
  status: _builtins.str,
3008
3322
  time_last_checked: _builtins.str):
3009
3323
  """
3010
- :param _builtins.str current_arc_agent_version: Current Arc Agent Version installed on this node of VM Cluster.
3324
+ :param _builtins.str current_arc_agent_version: Current Arc Agent Version installed on this node of Oracle Cloud VM Cluster.
3011
3325
  :param _builtins.str host_id: Host ID.
3012
- :param _builtins.str host_name: Host Name or Azure Arc Agent Name.
3013
- :param _builtins.str status: The current status of the Azure Arc Agent Resource.
3014
- :param _builtins.str time_last_checked: time when the Azure Arc Agent's status was checked [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
3326
+ :param _builtins.str host_name: Host name or Azure Arc Agent name.
3327
+ :param _builtins.str status: The current status of the Azure Arc Agent resource.
3328
+ :param _builtins.str time_last_checked: Time when the Azure Arc Agent's status was checked [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
3015
3329
  """
3016
3330
  pulumi.set(__self__, "current_arc_agent_version", current_arc_agent_version)
3017
3331
  pulumi.set(__self__, "host_id", host_id)
@@ -3023,7 +3337,7 @@ class GetDbmulticloudOracleDbAzureConnectorArcAgentNodeResult(dict):
3023
3337
  @pulumi.getter(name="currentArcAgentVersion")
3024
3338
  def current_arc_agent_version(self) -> _builtins.str:
3025
3339
  """
3026
- Current Arc Agent Version installed on this node of VM Cluster.
3340
+ Current Arc Agent Version installed on this node of Oracle Cloud VM Cluster.
3027
3341
  """
3028
3342
  return pulumi.get(self, "current_arc_agent_version")
3029
3343
 
@@ -3039,7 +3353,7 @@ class GetDbmulticloudOracleDbAzureConnectorArcAgentNodeResult(dict):
3039
3353
  @pulumi.getter(name="hostName")
3040
3354
  def host_name(self) -> _builtins.str:
3041
3355
  """
3042
- Host Name or Azure Arc Agent Name.
3356
+ Host name or Azure Arc Agent name.
3043
3357
  """
3044
3358
  return pulumi.get(self, "host_name")
3045
3359
 
@@ -3047,7 +3361,7 @@ class GetDbmulticloudOracleDbAzureConnectorArcAgentNodeResult(dict):
3047
3361
  @pulumi.getter
3048
3362
  def status(self) -> _builtins.str:
3049
3363
  """
3050
- The current status of the Azure Arc Agent Resource.
3364
+ The current status of the Azure Arc Agent resource.
3051
3365
  """
3052
3366
  return pulumi.get(self, "status")
3053
3367
 
@@ -3055,7 +3369,7 @@ class GetDbmulticloudOracleDbAzureConnectorArcAgentNodeResult(dict):
3055
3369
  @pulumi.getter(name="timeLastChecked")
3056
3370
  def time_last_checked(self) -> _builtins.str:
3057
3371
  """
3058
- time when the Azure Arc Agent's status was checked [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
3372
+ Time when the Azure Arc Agent's status was checked [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
3059
3373
  """
3060
3374
  return pulumi.get(self, "time_last_checked")
3061
3375
 
@@ -3104,6 +3418,7 @@ class GetDbmulticloudOracleDbAzureConnectorsOracleDbAzureConnectorSummaryCollect
3104
3418
  def __init__(__self__, *,
3105
3419
  access_token: _builtins.str,
3106
3420
  arc_agent_nodes: Sequence['outputs.GetDbmulticloudOracleDbAzureConnectorsOracleDbAzureConnectorSummaryCollectionItemArcAgentNodeResult'],
3421
+ azure_identity_connectivity_status: _builtins.str,
3107
3422
  azure_identity_mechanism: _builtins.str,
3108
3423
  azure_resource_group: _builtins.str,
3109
3424
  azure_subscription_id: _builtins.str,
@@ -3118,24 +3433,26 @@ class GetDbmulticloudOracleDbAzureConnectorsOracleDbAzureConnectorSummaryCollect
3118
3433
  time_created: _builtins.str,
3119
3434
  time_updated: _builtins.str):
3120
3435
  """
3121
- :param _builtins.str access_token: Azure bearer access token. If bearer access token is provided then Service Principal detail is not required.
3122
- :param Sequence['GetDbmulticloudOracleDbAzureConnectorsOracleDbAzureConnectorSummaryCollectionItemArcAgentNodeArgs'] arc_agent_nodes: List of All VMs where Arc Agent is Install under VMCluster.
3123
- :param _builtins.str azure_identity_mechanism: Azure Identity Mechanism.
3124
- :param _builtins.str azure_resource_group: Azure Resource Group Name.
3436
+ :param _builtins.str access_token: Azure bearer access token.
3437
+ :param Sequence['GetDbmulticloudOracleDbAzureConnectorsOracleDbAzureConnectorSummaryCollectionItemArcAgentNodeArgs'] arc_agent_nodes: List of all VMs where Arc Agent is installed under Cloud VM Cluster.
3438
+ :param _builtins.str azure_identity_connectivity_status: The current Connectivity status of Azure Identity Connector resource.
3439
+ :param _builtins.str azure_identity_mechanism: Azure Identity mechanism.
3440
+ :param _builtins.str azure_resource_group: Azure Resource group name.
3125
3441
  :param _builtins.str azure_subscription_id: Azure Subscription ID.
3126
3442
  :param _builtins.str azure_tenant_id: Azure Tenant ID.
3127
3443
  :param _builtins.str compartment_id: The [ID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
3128
- :param _builtins.str db_cluster_resource_id: The [ID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database Resource.
3129
- :param _builtins.str display_name: A filter to return Oracle DB Azure Connector Resource that match the given display name.
3130
- :param _builtins.str id: The ID of the Oracle DB Azure Connector resource.
3131
- :param _builtins.str last_modification: Description of the latest modification of the Oracle DB Azure Connector Resource.
3444
+ :param _builtins.str db_cluster_resource_id: The [ID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database resource.
3445
+ :param _builtins.str display_name: A filter to return Oracle DB Azure Connector resources that match the specified display name.
3446
+ :param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Connector resource.
3447
+ :param _builtins.str last_modification: Description of the latest modification of the Oracle DB Azure Connector resource.
3132
3448
  :param _builtins.str lifecycle_state_details: Description of the current lifecycle state in more detail.
3133
3449
  :param _builtins.str state: A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
3134
- :param _builtins.str time_created: Time when the Oracle DB Azure Connector Resource was created expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
3135
- :param _builtins.str time_updated: Time when the Oracle DB Azure Connector Resource was last modified expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
3450
+ :param _builtins.str time_created: Time when the Oracle DB Azure Connector resource was created expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
3451
+ :param _builtins.str time_updated: Time when the Oracle DB Azure Connector resource was last modified expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
3136
3452
  """
3137
3453
  pulumi.set(__self__, "access_token", access_token)
3138
3454
  pulumi.set(__self__, "arc_agent_nodes", arc_agent_nodes)
3455
+ pulumi.set(__self__, "azure_identity_connectivity_status", azure_identity_connectivity_status)
3139
3456
  pulumi.set(__self__, "azure_identity_mechanism", azure_identity_mechanism)
3140
3457
  pulumi.set(__self__, "azure_resource_group", azure_resource_group)
3141
3458
  pulumi.set(__self__, "azure_subscription_id", azure_subscription_id)
@@ -3154,7 +3471,7 @@ class GetDbmulticloudOracleDbAzureConnectorsOracleDbAzureConnectorSummaryCollect
3154
3471
  @pulumi.getter(name="accessToken")
3155
3472
  def access_token(self) -> _builtins.str:
3156
3473
  """
3157
- Azure bearer access token. If bearer access token is provided then Service Principal detail is not required.
3474
+ Azure bearer access token.
3158
3475
  """
3159
3476
  return pulumi.get(self, "access_token")
3160
3477
 
@@ -3162,15 +3479,23 @@ class GetDbmulticloudOracleDbAzureConnectorsOracleDbAzureConnectorSummaryCollect
3162
3479
  @pulumi.getter(name="arcAgentNodes")
3163
3480
  def arc_agent_nodes(self) -> Sequence['outputs.GetDbmulticloudOracleDbAzureConnectorsOracleDbAzureConnectorSummaryCollectionItemArcAgentNodeResult']:
3164
3481
  """
3165
- List of All VMs where Arc Agent is Install under VMCluster.
3482
+ List of all VMs where Arc Agent is installed under Cloud VM Cluster.
3166
3483
  """
3167
3484
  return pulumi.get(self, "arc_agent_nodes")
3168
3485
 
3486
+ @_builtins.property
3487
+ @pulumi.getter(name="azureIdentityConnectivityStatus")
3488
+ def azure_identity_connectivity_status(self) -> _builtins.str:
3489
+ """
3490
+ The current Connectivity status of Azure Identity Connector resource.
3491
+ """
3492
+ return pulumi.get(self, "azure_identity_connectivity_status")
3493
+
3169
3494
  @_builtins.property
3170
3495
  @pulumi.getter(name="azureIdentityMechanism")
3171
3496
  def azure_identity_mechanism(self) -> _builtins.str:
3172
3497
  """
3173
- Azure Identity Mechanism.
3498
+ Azure Identity mechanism.
3174
3499
  """
3175
3500
  return pulumi.get(self, "azure_identity_mechanism")
3176
3501
 
@@ -3178,7 +3503,7 @@ class GetDbmulticloudOracleDbAzureConnectorsOracleDbAzureConnectorSummaryCollect
3178
3503
  @pulumi.getter(name="azureResourceGroup")
3179
3504
  def azure_resource_group(self) -> _builtins.str:
3180
3505
  """
3181
- Azure Resource Group Name.
3506
+ Azure Resource group name.
3182
3507
  """
3183
3508
  return pulumi.get(self, "azure_resource_group")
3184
3509
 
@@ -3210,7 +3535,7 @@ class GetDbmulticloudOracleDbAzureConnectorsOracleDbAzureConnectorSummaryCollect
3210
3535
  @pulumi.getter(name="dbClusterResourceId")
3211
3536
  def db_cluster_resource_id(self) -> _builtins.str:
3212
3537
  """
3213
- The [ID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database Resource.
3538
+ The [ID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Database resource.
3214
3539
  """
3215
3540
  return pulumi.get(self, "db_cluster_resource_id")
3216
3541
 
@@ -3218,7 +3543,7 @@ class GetDbmulticloudOracleDbAzureConnectorsOracleDbAzureConnectorSummaryCollect
3218
3543
  @pulumi.getter(name="displayName")
3219
3544
  def display_name(self) -> _builtins.str:
3220
3545
  """
3221
- A filter to return Oracle DB Azure Connector Resource that match the given display name.
3546
+ A filter to return Oracle DB Azure Connector resources that match the specified display name.
3222
3547
  """
3223
3548
  return pulumi.get(self, "display_name")
3224
3549
 
@@ -3226,7 +3551,7 @@ class GetDbmulticloudOracleDbAzureConnectorsOracleDbAzureConnectorSummaryCollect
3226
3551
  @pulumi.getter
3227
3552
  def id(self) -> _builtins.str:
3228
3553
  """
3229
- The ID of the Oracle DB Azure Connector resource.
3554
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Connector resource.
3230
3555
  """
3231
3556
  return pulumi.get(self, "id")
3232
3557
 
@@ -3234,7 +3559,7 @@ class GetDbmulticloudOracleDbAzureConnectorsOracleDbAzureConnectorSummaryCollect
3234
3559
  @pulumi.getter(name="lastModification")
3235
3560
  def last_modification(self) -> _builtins.str:
3236
3561
  """
3237
- Description of the latest modification of the Oracle DB Azure Connector Resource.
3562
+ Description of the latest modification of the Oracle DB Azure Connector resource.
3238
3563
  """
3239
3564
  return pulumi.get(self, "last_modification")
3240
3565
 
@@ -3258,7 +3583,7 @@ class GetDbmulticloudOracleDbAzureConnectorsOracleDbAzureConnectorSummaryCollect
3258
3583
  @pulumi.getter(name="timeCreated")
3259
3584
  def time_created(self) -> _builtins.str:
3260
3585
  """
3261
- Time when the Oracle DB Azure Connector Resource was created expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
3586
+ Time when the Oracle DB Azure Connector resource was created expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
3262
3587
  """
3263
3588
  return pulumi.get(self, "time_created")
3264
3589
 
@@ -3266,7 +3591,7 @@ class GetDbmulticloudOracleDbAzureConnectorsOracleDbAzureConnectorSummaryCollect
3266
3591
  @pulumi.getter(name="timeUpdated")
3267
3592
  def time_updated(self) -> _builtins.str:
3268
3593
  """
3269
- Time when the Oracle DB Azure Connector Resource was last modified expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
3594
+ Time when the Oracle DB Azure Connector resource was last modified expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
3270
3595
  """
3271
3596
  return pulumi.get(self, "time_updated")
3272
3597
 
@@ -3280,11 +3605,11 @@ class GetDbmulticloudOracleDbAzureConnectorsOracleDbAzureConnectorSummaryCollect
3280
3605
  status: _builtins.str,
3281
3606
  time_last_checked: _builtins.str):
3282
3607
  """
3283
- :param _builtins.str current_arc_agent_version: Current Arc Agent Version installed on this node of VM Cluster.
3608
+ :param _builtins.str current_arc_agent_version: Current Arc Agent Version installed on this node of Oracle Cloud VM Cluster.
3284
3609
  :param _builtins.str host_id: Host ID.
3285
- :param _builtins.str host_name: Host Name or Azure Arc Agent Name.
3286
- :param _builtins.str status: The current status of the Azure Arc Agent Resource.
3287
- :param _builtins.str time_last_checked: time when the Azure Arc Agent's status was checked [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
3610
+ :param _builtins.str host_name: Host name or Azure Arc Agent name.
3611
+ :param _builtins.str status: The current status of the Azure Arc Agent resource.
3612
+ :param _builtins.str time_last_checked: Time when the Azure Arc Agent's status was checked [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
3288
3613
  """
3289
3614
  pulumi.set(__self__, "current_arc_agent_version", current_arc_agent_version)
3290
3615
  pulumi.set(__self__, "host_id", host_id)
@@ -3296,7 +3621,7 @@ class GetDbmulticloudOracleDbAzureConnectorsOracleDbAzureConnectorSummaryCollect
3296
3621
  @pulumi.getter(name="currentArcAgentVersion")
3297
3622
  def current_arc_agent_version(self) -> _builtins.str:
3298
3623
  """
3299
- Current Arc Agent Version installed on this node of VM Cluster.
3624
+ Current Arc Agent Version installed on this node of Oracle Cloud VM Cluster.
3300
3625
  """
3301
3626
  return pulumi.get(self, "current_arc_agent_version")
3302
3627
 
@@ -3312,7 +3637,7 @@ class GetDbmulticloudOracleDbAzureConnectorsOracleDbAzureConnectorSummaryCollect
3312
3637
  @pulumi.getter(name="hostName")
3313
3638
  def host_name(self) -> _builtins.str:
3314
3639
  """
3315
- Host Name or Azure Arc Agent Name.
3640
+ Host name or Azure Arc Agent name.
3316
3641
  """
3317
3642
  return pulumi.get(self, "host_name")
3318
3643
 
@@ -3320,7 +3645,7 @@ class GetDbmulticloudOracleDbAzureConnectorsOracleDbAzureConnectorSummaryCollect
3320
3645
  @pulumi.getter
3321
3646
  def status(self) -> _builtins.str:
3322
3647
  """
3323
- The current status of the Azure Arc Agent Resource.
3648
+ The current status of the Azure Arc Agent resource.
3324
3649
  """
3325
3650
  return pulumi.get(self, "status")
3326
3651
 
@@ -3328,7 +3653,7 @@ class GetDbmulticloudOracleDbAzureConnectorsOracleDbAzureConnectorSummaryCollect
3328
3653
  @pulumi.getter(name="timeLastChecked")
3329
3654
  def time_last_checked(self) -> _builtins.str:
3330
3655
  """
3331
- time when the Azure Arc Agent's status was checked [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
3656
+ Time when the Azure Arc Agent's status was checked [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
3332
3657
  """
3333
3658
  return pulumi.get(self, "time_last_checked")
3334
3659
 
@@ -3381,27 +3706,31 @@ class GetDbmulticloudOracleDbAzureKeysOracleDbAzureKeySummaryCollectionItemResul
3381
3706
  display_name: _builtins.str,
3382
3707
  freeform_tags: Mapping[str, _builtins.str],
3383
3708
  id: _builtins.str,
3709
+ key_properties: Mapping[str, _builtins.str],
3384
3710
  last_modification: _builtins.str,
3385
3711
  lifecycle_state_details: _builtins.str,
3386
3712
  oracle_db_azure_vault_id: _builtins.str,
3713
+ resource_type: _builtins.str,
3387
3714
  state: _builtins.str,
3388
3715
  system_tags: Mapping[str, _builtins.str],
3389
3716
  time_created: _builtins.str,
3390
3717
  time_updated: _builtins.str):
3391
3718
  """
3392
- :param _builtins.str azure_key_id: The Azure ID of the Azure Key, Azure Key URL.
3719
+ :param _builtins.str azure_key_id: The ID of the Azure Key resource.
3393
3720
  :param _builtins.str compartment_id: The [ID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
3394
3721
  :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"}`
3395
- :param _builtins.str display_name: A filter to return Azure Vault Keys.
3722
+ :param _builtins.str display_name: A filter to return Oracle DB Azure Vault Keys resources that match the specified display name.
3396
3723
  :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"}`
3397
- :param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Vault Key Resource.
3398
- :param _builtins.str last_modification: Description of the latest modification of the Oracle DB Azure Vault Key Resource.
3724
+ :param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Vault Key resource.
3725
+ :param Mapping[str, _builtins.str] key_properties: Key properties
3726
+ :param _builtins.str last_modification: Description of the latest modification of the Oracle DB Azure Vault Key resource.
3399
3727
  :param _builtins.str lifecycle_state_details: Description of the current lifecycle state in more detail.
3400
- :param _builtins.str oracle_db_azure_vault_id: A filter to return Oracle DB Azure Vault Resources.
3728
+ :param _builtins.str oracle_db_azure_vault_id: A filter to return Oracle DB Azure Vault resources that match the specified [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Vault resource.
3729
+ :param _builtins.str resource_type: Key Resource type.
3401
3730
  :param _builtins.str state: A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
3402
3731
  :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"}`
3403
- :param _builtins.str time_created: Time when the Oracle DB Azure Vault Key was created in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
3404
- :param _builtins.str time_updated: Time when the Oracle DB Azure Vault Key was last modified, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
3732
+ :param _builtins.str time_created: Time when the Oracle DB Azure Vault Key resource was created in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
3733
+ :param _builtins.str time_updated: Time when the Oracle DB Azure Vault Key resource was last modified, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
3405
3734
  """
3406
3735
  pulumi.set(__self__, "azure_key_id", azure_key_id)
3407
3736
  pulumi.set(__self__, "compartment_id", compartment_id)
@@ -3409,9 +3738,11 @@ class GetDbmulticloudOracleDbAzureKeysOracleDbAzureKeySummaryCollectionItemResul
3409
3738
  pulumi.set(__self__, "display_name", display_name)
3410
3739
  pulumi.set(__self__, "freeform_tags", freeform_tags)
3411
3740
  pulumi.set(__self__, "id", id)
3741
+ pulumi.set(__self__, "key_properties", key_properties)
3412
3742
  pulumi.set(__self__, "last_modification", last_modification)
3413
3743
  pulumi.set(__self__, "lifecycle_state_details", lifecycle_state_details)
3414
3744
  pulumi.set(__self__, "oracle_db_azure_vault_id", oracle_db_azure_vault_id)
3745
+ pulumi.set(__self__, "resource_type", resource_type)
3415
3746
  pulumi.set(__self__, "state", state)
3416
3747
  pulumi.set(__self__, "system_tags", system_tags)
3417
3748
  pulumi.set(__self__, "time_created", time_created)
@@ -3421,7 +3752,7 @@ class GetDbmulticloudOracleDbAzureKeysOracleDbAzureKeySummaryCollectionItemResul
3421
3752
  @pulumi.getter(name="azureKeyId")
3422
3753
  def azure_key_id(self) -> _builtins.str:
3423
3754
  """
3424
- The Azure ID of the Azure Key, Azure Key URL.
3755
+ The ID of the Azure Key resource.
3425
3756
  """
3426
3757
  return pulumi.get(self, "azure_key_id")
3427
3758
 
@@ -3445,7 +3776,7 @@ class GetDbmulticloudOracleDbAzureKeysOracleDbAzureKeySummaryCollectionItemResul
3445
3776
  @pulumi.getter(name="displayName")
3446
3777
  def display_name(self) -> _builtins.str:
3447
3778
  """
3448
- A filter to return Azure Vault Keys.
3779
+ A filter to return Oracle DB Azure Vault Keys resources that match the specified display name.
3449
3780
  """
3450
3781
  return pulumi.get(self, "display_name")
3451
3782
 
@@ -3461,15 +3792,23 @@ class GetDbmulticloudOracleDbAzureKeysOracleDbAzureKeySummaryCollectionItemResul
3461
3792
  @pulumi.getter
3462
3793
  def id(self) -> _builtins.str:
3463
3794
  """
3464
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Vault Key Resource.
3795
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Vault Key resource.
3465
3796
  """
3466
3797
  return pulumi.get(self, "id")
3467
3798
 
3799
+ @_builtins.property
3800
+ @pulumi.getter(name="keyProperties")
3801
+ def key_properties(self) -> Mapping[str, _builtins.str]:
3802
+ """
3803
+ Key properties
3804
+ """
3805
+ return pulumi.get(self, "key_properties")
3806
+
3468
3807
  @_builtins.property
3469
3808
  @pulumi.getter(name="lastModification")
3470
3809
  def last_modification(self) -> _builtins.str:
3471
3810
  """
3472
- Description of the latest modification of the Oracle DB Azure Vault Key Resource.
3811
+ Description of the latest modification of the Oracle DB Azure Vault Key resource.
3473
3812
  """
3474
3813
  return pulumi.get(self, "last_modification")
3475
3814
 
@@ -3485,10 +3824,18 @@ class GetDbmulticloudOracleDbAzureKeysOracleDbAzureKeySummaryCollectionItemResul
3485
3824
  @pulumi.getter(name="oracleDbAzureVaultId")
3486
3825
  def oracle_db_azure_vault_id(self) -> _builtins.str:
3487
3826
  """
3488
- A filter to return Oracle DB Azure Vault Resources.
3827
+ A filter to return Oracle DB Azure Vault resources that match the specified [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Vault resource.
3489
3828
  """
3490
3829
  return pulumi.get(self, "oracle_db_azure_vault_id")
3491
3830
 
3831
+ @_builtins.property
3832
+ @pulumi.getter(name="resourceType")
3833
+ def resource_type(self) -> _builtins.str:
3834
+ """
3835
+ Key Resource type.
3836
+ """
3837
+ return pulumi.get(self, "resource_type")
3838
+
3492
3839
  @_builtins.property
3493
3840
  @pulumi.getter
3494
3841
  def state(self) -> _builtins.str:
@@ -3509,7 +3856,7 @@ class GetDbmulticloudOracleDbAzureKeysOracleDbAzureKeySummaryCollectionItemResul
3509
3856
  @pulumi.getter(name="timeCreated")
3510
3857
  def time_created(self) -> _builtins.str:
3511
3858
  """
3512
- Time when the Oracle DB Azure Vault Key was created in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
3859
+ Time when the Oracle DB Azure Vault Key resource was created in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
3513
3860
  """
3514
3861
  return pulumi.get(self, "time_created")
3515
3862
 
@@ -3517,7 +3864,7 @@ class GetDbmulticloudOracleDbAzureKeysOracleDbAzureKeySummaryCollectionItemResul
3517
3864
  @pulumi.getter(name="timeUpdated")
3518
3865
  def time_updated(self) -> _builtins.str:
3519
3866
  """
3520
- Time when the Oracle DB Azure Vault Key was last modified, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
3867
+ Time when the Oracle DB Azure Vault Key resource was last modified, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
3521
3868
  """
3522
3869
  return pulumi.get(self, "time_updated")
3523
3870
 
@@ -3581,18 +3928,18 @@ class GetDbmulticloudOracleDbAzureVaultAssociationsOracleDbAzureVaultAssociation
3581
3928
  """
3582
3929
  :param _builtins.str compartment_id: The [ID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
3583
3930
  :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"}`
3584
- :param _builtins.str display_name: A filter to return Azure Vault Association.
3931
+ :param _builtins.str display_name: A filter to return Oracle DB Azure Vault Association resources that match the specified display name.
3585
3932
  :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"}`
3586
- :param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Vault Association Resource.
3587
- :param _builtins.bool is_resource_accessible: The Associated Resources are accessible or not.
3588
- :param _builtins.str last_modification: Description of the latest modification of the Oracle DB Azure Vault Association Resource.
3933
+ :param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Vault Association resource.
3934
+ :param _builtins.bool is_resource_accessible: The Associated resource is accessible or not.
3935
+ :param _builtins.str last_modification: Description of the latest modification of the Oracle DB Azure Vault Association resource.
3589
3936
  :param _builtins.str lifecycle_state_details: Description of the current lifecycle state in more detail.
3590
- :param _builtins.str oracle_db_azure_connector_id: A filter to return Oracle DB Azure Blob Mount Resources.
3591
- :param _builtins.str oracle_db_azure_vault_id: A filter to return Oracle DB Azure Vault Resources.
3937
+ :param _builtins.str oracle_db_azure_connector_id: A filter to return Oracle DB Azure Azure Identity Connector resources.
3938
+ :param _builtins.str oracle_db_azure_vault_id: A filter to return Oracle DB Azure Vault resources that match the specified [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Vault resource.
3592
3939
  :param _builtins.str state: A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
3593
3940
  :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"}`
3594
- :param _builtins.str time_created: Time when the Oracle DB Azure Vault Association was created in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
3595
- :param _builtins.str time_updated: Time when the Oracle DB Azure Vault Association was last modified, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
3941
+ :param _builtins.str time_created: Time when the Oracle DB Azure Vault Association resource was created in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
3942
+ :param _builtins.str time_updated: Time when the Oracle DB Azure Vault Association resource was last modified, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
3596
3943
  """
3597
3944
  pulumi.set(__self__, "compartment_id", compartment_id)
3598
3945
  pulumi.set(__self__, "defined_tags", defined_tags)
@@ -3629,7 +3976,7 @@ class GetDbmulticloudOracleDbAzureVaultAssociationsOracleDbAzureVaultAssociation
3629
3976
  @pulumi.getter(name="displayName")
3630
3977
  def display_name(self) -> _builtins.str:
3631
3978
  """
3632
- A filter to return Azure Vault Association.
3979
+ A filter to return Oracle DB Azure Vault Association resources that match the specified display name.
3633
3980
  """
3634
3981
  return pulumi.get(self, "display_name")
3635
3982
 
@@ -3645,7 +3992,7 @@ class GetDbmulticloudOracleDbAzureVaultAssociationsOracleDbAzureVaultAssociation
3645
3992
  @pulumi.getter
3646
3993
  def id(self) -> _builtins.str:
3647
3994
  """
3648
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Vault Association Resource.
3995
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Vault Association resource.
3649
3996
  """
3650
3997
  return pulumi.get(self, "id")
3651
3998
 
@@ -3653,7 +4000,7 @@ class GetDbmulticloudOracleDbAzureVaultAssociationsOracleDbAzureVaultAssociation
3653
4000
  @pulumi.getter(name="isResourceAccessible")
3654
4001
  def is_resource_accessible(self) -> _builtins.bool:
3655
4002
  """
3656
- The Associated Resources are accessible or not.
4003
+ The Associated resource is accessible or not.
3657
4004
  """
3658
4005
  return pulumi.get(self, "is_resource_accessible")
3659
4006
 
@@ -3661,7 +4008,7 @@ class GetDbmulticloudOracleDbAzureVaultAssociationsOracleDbAzureVaultAssociation
3661
4008
  @pulumi.getter(name="lastModification")
3662
4009
  def last_modification(self) -> _builtins.str:
3663
4010
  """
3664
- Description of the latest modification of the Oracle DB Azure Vault Association Resource.
4011
+ Description of the latest modification of the Oracle DB Azure Vault Association resource.
3665
4012
  """
3666
4013
  return pulumi.get(self, "last_modification")
3667
4014
 
@@ -3677,7 +4024,7 @@ class GetDbmulticloudOracleDbAzureVaultAssociationsOracleDbAzureVaultAssociation
3677
4024
  @pulumi.getter(name="oracleDbAzureConnectorId")
3678
4025
  def oracle_db_azure_connector_id(self) -> _builtins.str:
3679
4026
  """
3680
- A filter to return Oracle DB Azure Blob Mount Resources.
4027
+ A filter to return Oracle DB Azure Azure Identity Connector resources.
3681
4028
  """
3682
4029
  return pulumi.get(self, "oracle_db_azure_connector_id")
3683
4030
 
@@ -3685,7 +4032,7 @@ class GetDbmulticloudOracleDbAzureVaultAssociationsOracleDbAzureVaultAssociation
3685
4032
  @pulumi.getter(name="oracleDbAzureVaultId")
3686
4033
  def oracle_db_azure_vault_id(self) -> _builtins.str:
3687
4034
  """
3688
- A filter to return Oracle DB Azure Vault Resources.
4035
+ A filter to return Oracle DB Azure Vault resources that match the specified [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Vault resource.
3689
4036
  """
3690
4037
  return pulumi.get(self, "oracle_db_azure_vault_id")
3691
4038
 
@@ -3709,7 +4056,7 @@ class GetDbmulticloudOracleDbAzureVaultAssociationsOracleDbAzureVaultAssociation
3709
4056
  @pulumi.getter(name="timeCreated")
3710
4057
  def time_created(self) -> _builtins.str:
3711
4058
  """
3712
- Time when the Oracle DB Azure Vault Association was created in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
4059
+ Time when the Oracle DB Azure Vault Association resource was created in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
3713
4060
  """
3714
4061
  return pulumi.get(self, "time_created")
3715
4062
 
@@ -3717,7 +4064,7 @@ class GetDbmulticloudOracleDbAzureVaultAssociationsOracleDbAzureVaultAssociation
3717
4064
  @pulumi.getter(name="timeUpdated")
3718
4065
  def time_updated(self) -> _builtins.str:
3719
4066
  """
3720
- Time when the Oracle DB Azure Vault Association was last modified, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
4067
+ Time when the Oracle DB Azure Vault Association resource was last modified, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
3721
4068
  """
3722
4069
  return pulumi.get(self, "time_updated")
3723
4070
 
@@ -3782,23 +4129,23 @@ class GetDbmulticloudOracleDbAzureVaultsOracleDbAzureVaultSummaryCollectionItemR
3782
4129
  time_updated: _builtins.str,
3783
4130
  type: _builtins.str):
3784
4131
  """
3785
- :param _builtins.str azure_vault_id: Azure Vault Id.
4132
+ :param _builtins.str azure_vault_id: Azure Vault ID.
3786
4133
  :param _builtins.str compartment_id: The [ID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
3787
4134
  :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"}`
3788
- :param _builtins.str display_name: A filter to return Azure Vaults.
4135
+ :param _builtins.str display_name: A filter to return Oracle DB Azure Vault resources that match the specified display name.
3789
4136
  :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"}`
3790
- :param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DB Azure Vault Resource.
3791
- :param _builtins.str last_modification: Description of the latest modification of the DB Azure Vault Resource.
4137
+ :param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the oracle DB Azure Vault resource.
4138
+ :param _builtins.str last_modification: Description of the latest modification of the Oracle DB Azure Vault resource.
3792
4139
  :param _builtins.str lifecycle_state_details: Description of the current lifecycle state in more detail.
3793
- :param _builtins.str location: Vault Resource Location.
3794
- :param _builtins.str oracle_db_azure_resource_group: A filter to return Azure Vaults.
3795
- :param _builtins.str oracle_db_connector_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DB Connector Resource.
3796
- :param Mapping[str, _builtins.str] properties: Resource's properties.
4140
+ :param _builtins.str location: Oracle DB Azure Vault resource location.
4141
+ :param _builtins.str oracle_db_azure_resource_group: A filter to return Oracle DB Azure Vault resources that match the specified Oracle DB Azure resource group name.
4142
+ :param _builtins.str oracle_db_connector_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Connector resource that contains Oracle DB Azure Vault resource.
4143
+ :param Mapping[str, _builtins.str] properties: Oracle DB Azure Vault resource's properties.
3797
4144
  :param _builtins.str state: A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
3798
4145
  :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"}`
3799
- :param _builtins.str time_created: Time when the DB Azure Vault was created in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-23T21:10:29.600Z'
3800
- :param _builtins.str time_updated: Time when the DB Azure Vault was last modified, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-23T21:10:29.600Z'
3801
- :param _builtins.str type: Vault Resource Type.
4146
+ :param _builtins.str time_created: Time when the DB Azure Vault resource was created in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-23T21:10:29.600Z'
4147
+ :param _builtins.str time_updated: Time when the DB Azure Vault resource was last modified, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-23T21:10:29.600Z'
4148
+ :param _builtins.str type: Oracle DB Azure Vault resource type.
3802
4149
  """
3803
4150
  pulumi.set(__self__, "azure_vault_id", azure_vault_id)
3804
4151
  pulumi.set(__self__, "compartment_id", compartment_id)
@@ -3822,7 +4169,7 @@ class GetDbmulticloudOracleDbAzureVaultsOracleDbAzureVaultSummaryCollectionItemR
3822
4169
  @pulumi.getter(name="azureVaultId")
3823
4170
  def azure_vault_id(self) -> _builtins.str:
3824
4171
  """
3825
- Azure Vault Id.
4172
+ Azure Vault ID.
3826
4173
  """
3827
4174
  return pulumi.get(self, "azure_vault_id")
3828
4175
 
@@ -3846,7 +4193,7 @@ class GetDbmulticloudOracleDbAzureVaultsOracleDbAzureVaultSummaryCollectionItemR
3846
4193
  @pulumi.getter(name="displayName")
3847
4194
  def display_name(self) -> _builtins.str:
3848
4195
  """
3849
- A filter to return Azure Vaults.
4196
+ A filter to return Oracle DB Azure Vault resources that match the specified display name.
3850
4197
  """
3851
4198
  return pulumi.get(self, "display_name")
3852
4199
 
@@ -3862,7 +4209,7 @@ class GetDbmulticloudOracleDbAzureVaultsOracleDbAzureVaultSummaryCollectionItemR
3862
4209
  @pulumi.getter
3863
4210
  def id(self) -> _builtins.str:
3864
4211
  """
3865
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DB Azure Vault Resource.
4212
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the oracle DB Azure Vault resource.
3866
4213
  """
3867
4214
  return pulumi.get(self, "id")
3868
4215
 
@@ -3870,7 +4217,7 @@ class GetDbmulticloudOracleDbAzureVaultsOracleDbAzureVaultSummaryCollectionItemR
3870
4217
  @pulumi.getter(name="lastModification")
3871
4218
  def last_modification(self) -> _builtins.str:
3872
4219
  """
3873
- Description of the latest modification of the DB Azure Vault Resource.
4220
+ Description of the latest modification of the Oracle DB Azure Vault resource.
3874
4221
  """
3875
4222
  return pulumi.get(self, "last_modification")
3876
4223
 
@@ -3886,7 +4233,7 @@ class GetDbmulticloudOracleDbAzureVaultsOracleDbAzureVaultSummaryCollectionItemR
3886
4233
  @pulumi.getter
3887
4234
  def location(self) -> _builtins.str:
3888
4235
  """
3889
- Vault Resource Location.
4236
+ Oracle DB Azure Vault resource location.
3890
4237
  """
3891
4238
  return pulumi.get(self, "location")
3892
4239
 
@@ -3894,7 +4241,7 @@ class GetDbmulticloudOracleDbAzureVaultsOracleDbAzureVaultSummaryCollectionItemR
3894
4241
  @pulumi.getter(name="oracleDbAzureResourceGroup")
3895
4242
  def oracle_db_azure_resource_group(self) -> _builtins.str:
3896
4243
  """
3897
- A filter to return Azure Vaults.
4244
+ A filter to return Oracle DB Azure Vault resources that match the specified Oracle DB Azure resource group name.
3898
4245
  """
3899
4246
  return pulumi.get(self, "oracle_db_azure_resource_group")
3900
4247
 
@@ -3902,7 +4249,7 @@ class GetDbmulticloudOracleDbAzureVaultsOracleDbAzureVaultSummaryCollectionItemR
3902
4249
  @pulumi.getter(name="oracleDbConnectorId")
3903
4250
  def oracle_db_connector_id(self) -> _builtins.str:
3904
4251
  """
3905
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DB Connector Resource.
4252
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Connector resource that contains Oracle DB Azure Vault resource.
3906
4253
  """
3907
4254
  return pulumi.get(self, "oracle_db_connector_id")
3908
4255
 
@@ -3910,7 +4257,7 @@ class GetDbmulticloudOracleDbAzureVaultsOracleDbAzureVaultSummaryCollectionItemR
3910
4257
  @pulumi.getter
3911
4258
  def properties(self) -> Mapping[str, _builtins.str]:
3912
4259
  """
3913
- Resource's properties.
4260
+ Oracle DB Azure Vault resource's properties.
3914
4261
  """
3915
4262
  return pulumi.get(self, "properties")
3916
4263
 
@@ -3934,7 +4281,7 @@ class GetDbmulticloudOracleDbAzureVaultsOracleDbAzureVaultSummaryCollectionItemR
3934
4281
  @pulumi.getter(name="timeCreated")
3935
4282
  def time_created(self) -> _builtins.str:
3936
4283
  """
3937
- Time when the DB Azure Vault was created in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-23T21:10:29.600Z'
4284
+ Time when the DB Azure Vault resource was created in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-23T21:10:29.600Z'
3938
4285
  """
3939
4286
  return pulumi.get(self, "time_created")
3940
4287
 
@@ -3942,7 +4289,7 @@ class GetDbmulticloudOracleDbAzureVaultsOracleDbAzureVaultSummaryCollectionItemR
3942
4289
  @pulumi.getter(name="timeUpdated")
3943
4290
  def time_updated(self) -> _builtins.str:
3944
4291
  """
3945
- Time when the DB Azure Vault was last modified, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-23T21:10:29.600Z'
4292
+ Time when the DB Azure Vault resource was last modified, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-23T21:10:29.600Z'
3946
4293
  """
3947
4294
  return pulumi.get(self, "time_updated")
3948
4295
 
@@ -3950,11 +4297,1573 @@ class GetDbmulticloudOracleDbAzureVaultsOracleDbAzureVaultSummaryCollectionItemR
3950
4297
  @pulumi.getter
3951
4298
  def type(self) -> _builtins.str:
3952
4299
  """
3953
- Vault Resource Type.
4300
+ Oracle DB Azure Vault resource type.
3954
4301
  """
3955
4302
  return pulumi.get(self, "type")
3956
4303
 
3957
4304
 
4305
+ @pulumi.output_type
4306
+ class GetDbmulticloudOracleDbGcpIdentityConnectorGcpNodeResult(dict):
4307
+ def __init__(__self__, *,
4308
+ host_id: _builtins.str,
4309
+ host_name: _builtins.str,
4310
+ status: _builtins.str,
4311
+ time_last_checked: _builtins.str):
4312
+ """
4313
+ :param _builtins.str host_id: Host ID.
4314
+ :param _builtins.str host_name: Host Name or Identity Connector name.
4315
+ :param _builtins.str status: The current status of the GCP Identity Connector resource.
4316
+ :param _builtins.str time_last_checked: time when the GCP Identity Connector's status was checked [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
4317
+ """
4318
+ pulumi.set(__self__, "host_id", host_id)
4319
+ pulumi.set(__self__, "host_name", host_name)
4320
+ pulumi.set(__self__, "status", status)
4321
+ pulumi.set(__self__, "time_last_checked", time_last_checked)
4322
+
4323
+ @_builtins.property
4324
+ @pulumi.getter(name="hostId")
4325
+ def host_id(self) -> _builtins.str:
4326
+ """
4327
+ Host ID.
4328
+ """
4329
+ return pulumi.get(self, "host_id")
4330
+
4331
+ @_builtins.property
4332
+ @pulumi.getter(name="hostName")
4333
+ def host_name(self) -> _builtins.str:
4334
+ """
4335
+ Host Name or Identity Connector name.
4336
+ """
4337
+ return pulumi.get(self, "host_name")
4338
+
4339
+ @_builtins.property
4340
+ @pulumi.getter
4341
+ def status(self) -> _builtins.str:
4342
+ """
4343
+ The current status of the GCP Identity Connector resource.
4344
+ """
4345
+ return pulumi.get(self, "status")
4346
+
4347
+ @_builtins.property
4348
+ @pulumi.getter(name="timeLastChecked")
4349
+ def time_last_checked(self) -> _builtins.str:
4350
+ """
4351
+ time when the GCP Identity Connector's status was checked [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
4352
+ """
4353
+ return pulumi.get(self, "time_last_checked")
4354
+
4355
+
4356
+ @pulumi.output_type
4357
+ class GetDbmulticloudOracleDbGcpIdentityConnectorsFilterResult(dict):
4358
+ def __init__(__self__, *,
4359
+ name: _builtins.str,
4360
+ values: Sequence[_builtins.str],
4361
+ regex: Optional[_builtins.bool] = None):
4362
+ pulumi.set(__self__, "name", name)
4363
+ pulumi.set(__self__, "values", values)
4364
+ if regex is not None:
4365
+ pulumi.set(__self__, "regex", regex)
4366
+
4367
+ @_builtins.property
4368
+ @pulumi.getter
4369
+ def name(self) -> _builtins.str:
4370
+ return pulumi.get(self, "name")
4371
+
4372
+ @_builtins.property
4373
+ @pulumi.getter
4374
+ def values(self) -> Sequence[_builtins.str]:
4375
+ return pulumi.get(self, "values")
4376
+
4377
+ @_builtins.property
4378
+ @pulumi.getter
4379
+ def regex(self) -> Optional[_builtins.bool]:
4380
+ return pulumi.get(self, "regex")
4381
+
4382
+
4383
+ @pulumi.output_type
4384
+ class GetDbmulticloudOracleDbGcpIdentityConnectorsOracleDbGcpIdentityConnectorSummaryCollectionResult(dict):
4385
+ def __init__(__self__, *,
4386
+ items: Sequence['outputs.GetDbmulticloudOracleDbGcpIdentityConnectorsOracleDbGcpIdentityConnectorSummaryCollectionItemResult']):
4387
+ pulumi.set(__self__, "items", items)
4388
+
4389
+ @_builtins.property
4390
+ @pulumi.getter
4391
+ def items(self) -> Sequence['outputs.GetDbmulticloudOracleDbGcpIdentityConnectorsOracleDbGcpIdentityConnectorSummaryCollectionItemResult']:
4392
+ return pulumi.get(self, "items")
4393
+
4394
+
4395
+ @pulumi.output_type
4396
+ class GetDbmulticloudOracleDbGcpIdentityConnectorsOracleDbGcpIdentityConnectorSummaryCollectionItemResult(dict):
4397
+ def __init__(__self__, *,
4398
+ compartment_id: _builtins.str,
4399
+ defined_tags: Mapping[str, _builtins.str],
4400
+ display_name: _builtins.str,
4401
+ freeform_tags: Mapping[str, _builtins.str],
4402
+ gcp_identity_connectivity_status: _builtins.str,
4403
+ gcp_location: _builtins.str,
4404
+ gcp_nodes: Sequence['outputs.GetDbmulticloudOracleDbGcpIdentityConnectorsOracleDbGcpIdentityConnectorSummaryCollectionItemGcpNodeResult'],
4405
+ gcp_resource_service_agent_id: _builtins.str,
4406
+ gcp_workload_identity_pool_id: _builtins.str,
4407
+ gcp_workload_identity_provider_id: _builtins.str,
4408
+ id: _builtins.str,
4409
+ issuer_url: _builtins.str,
4410
+ lifecycle_state_details: _builtins.str,
4411
+ project_id: _builtins.str,
4412
+ resource_id: _builtins.str,
4413
+ state: _builtins.str,
4414
+ system_tags: Mapping[str, _builtins.str],
4415
+ time_created: _builtins.str,
4416
+ time_updated: _builtins.str):
4417
+ """
4418
+ :param _builtins.str compartment_id: The [ID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
4419
+ :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"}`
4420
+ :param _builtins.str display_name: A filter to return Oracle DB GCP Identity Connector resources that match the specified display name.
4421
+ :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"}`
4422
+ :param _builtins.str gcp_identity_connectivity_status: The current Connectivity status of GCP Identity Connector resource.
4423
+ :param _builtins.str gcp_location: GCP Location.
4424
+ :param Sequence['GetDbmulticloudOracleDbGcpIdentityConnectorsOracleDbGcpIdentityConnectorSummaryCollectionItemGcpNodeArgs'] gcp_nodes: List of All VMs where GCP Identity Connector is configured for this VMCluster.
4425
+ :param _builtins.str gcp_resource_service_agent_id: The ID of the GCP resource service agent.
4426
+ :param _builtins.str gcp_workload_identity_pool_id: The ID of the cloud GCP Workload Identity Pool.
4427
+ :param _builtins.str gcp_workload_identity_provider_id: The ID of the GCP Workload Identity Provider.
4428
+ :param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB GCP Identity Connector resource.
4429
+ :param _builtins.str issuer_url: OIDC token issuer Url.
4430
+ :param _builtins.str lifecycle_state_details: Description of the current lifecycle state in more detail.
4431
+ :param _builtins.str project_id: Project id of the customer project.
4432
+ :param _builtins.str resource_id: A filter to return Oracle DB GCP Identity Connector resource that match the given resource [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
4433
+ :param _builtins.str state: A filter to return only resources that match the specified lifecycle state. The state value is case-insensitive.
4434
+ :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"}`
4435
+ :param _builtins.str time_created: Time when the Oracle DB GCP Identity Connector resource was created expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
4436
+ :param _builtins.str time_updated: Time when the Oracle DB GCP Identity Connector resource was last modified expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
4437
+ """
4438
+ pulumi.set(__self__, "compartment_id", compartment_id)
4439
+ pulumi.set(__self__, "defined_tags", defined_tags)
4440
+ pulumi.set(__self__, "display_name", display_name)
4441
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
4442
+ pulumi.set(__self__, "gcp_identity_connectivity_status", gcp_identity_connectivity_status)
4443
+ pulumi.set(__self__, "gcp_location", gcp_location)
4444
+ pulumi.set(__self__, "gcp_nodes", gcp_nodes)
4445
+ pulumi.set(__self__, "gcp_resource_service_agent_id", gcp_resource_service_agent_id)
4446
+ pulumi.set(__self__, "gcp_workload_identity_pool_id", gcp_workload_identity_pool_id)
4447
+ pulumi.set(__self__, "gcp_workload_identity_provider_id", gcp_workload_identity_provider_id)
4448
+ pulumi.set(__self__, "id", id)
4449
+ pulumi.set(__self__, "issuer_url", issuer_url)
4450
+ pulumi.set(__self__, "lifecycle_state_details", lifecycle_state_details)
4451
+ pulumi.set(__self__, "project_id", project_id)
4452
+ pulumi.set(__self__, "resource_id", resource_id)
4453
+ pulumi.set(__self__, "state", state)
4454
+ pulumi.set(__self__, "system_tags", system_tags)
4455
+ pulumi.set(__self__, "time_created", time_created)
4456
+ pulumi.set(__self__, "time_updated", time_updated)
4457
+
4458
+ @_builtins.property
4459
+ @pulumi.getter(name="compartmentId")
4460
+ def compartment_id(self) -> _builtins.str:
4461
+ """
4462
+ The [ID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
4463
+ """
4464
+ return pulumi.get(self, "compartment_id")
4465
+
4466
+ @_builtins.property
4467
+ @pulumi.getter(name="definedTags")
4468
+ def defined_tags(self) -> Mapping[str, _builtins.str]:
4469
+ """
4470
+ 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"}`
4471
+ """
4472
+ return pulumi.get(self, "defined_tags")
4473
+
4474
+ @_builtins.property
4475
+ @pulumi.getter(name="displayName")
4476
+ def display_name(self) -> _builtins.str:
4477
+ """
4478
+ A filter to return Oracle DB GCP Identity Connector resources that match the specified display name.
4479
+ """
4480
+ return pulumi.get(self, "display_name")
4481
+
4482
+ @_builtins.property
4483
+ @pulumi.getter(name="freeformTags")
4484
+ def freeform_tags(self) -> Mapping[str, _builtins.str]:
4485
+ """
4486
+ 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"}`
4487
+ """
4488
+ return pulumi.get(self, "freeform_tags")
4489
+
4490
+ @_builtins.property
4491
+ @pulumi.getter(name="gcpIdentityConnectivityStatus")
4492
+ def gcp_identity_connectivity_status(self) -> _builtins.str:
4493
+ """
4494
+ The current Connectivity status of GCP Identity Connector resource.
4495
+ """
4496
+ return pulumi.get(self, "gcp_identity_connectivity_status")
4497
+
4498
+ @_builtins.property
4499
+ @pulumi.getter(name="gcpLocation")
4500
+ def gcp_location(self) -> _builtins.str:
4501
+ """
4502
+ GCP Location.
4503
+ """
4504
+ return pulumi.get(self, "gcp_location")
4505
+
4506
+ @_builtins.property
4507
+ @pulumi.getter(name="gcpNodes")
4508
+ def gcp_nodes(self) -> Sequence['outputs.GetDbmulticloudOracleDbGcpIdentityConnectorsOracleDbGcpIdentityConnectorSummaryCollectionItemGcpNodeResult']:
4509
+ """
4510
+ List of All VMs where GCP Identity Connector is configured for this VMCluster.
4511
+ """
4512
+ return pulumi.get(self, "gcp_nodes")
4513
+
4514
+ @_builtins.property
4515
+ @pulumi.getter(name="gcpResourceServiceAgentId")
4516
+ def gcp_resource_service_agent_id(self) -> _builtins.str:
4517
+ """
4518
+ The ID of the GCP resource service agent.
4519
+ """
4520
+ return pulumi.get(self, "gcp_resource_service_agent_id")
4521
+
4522
+ @_builtins.property
4523
+ @pulumi.getter(name="gcpWorkloadIdentityPoolId")
4524
+ def gcp_workload_identity_pool_id(self) -> _builtins.str:
4525
+ """
4526
+ The ID of the cloud GCP Workload Identity Pool.
4527
+ """
4528
+ return pulumi.get(self, "gcp_workload_identity_pool_id")
4529
+
4530
+ @_builtins.property
4531
+ @pulumi.getter(name="gcpWorkloadIdentityProviderId")
4532
+ def gcp_workload_identity_provider_id(self) -> _builtins.str:
4533
+ """
4534
+ The ID of the GCP Workload Identity Provider.
4535
+ """
4536
+ return pulumi.get(self, "gcp_workload_identity_provider_id")
4537
+
4538
+ @_builtins.property
4539
+ @pulumi.getter
4540
+ def id(self) -> _builtins.str:
4541
+ """
4542
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB GCP Identity Connector resource.
4543
+ """
4544
+ return pulumi.get(self, "id")
4545
+
4546
+ @_builtins.property
4547
+ @pulumi.getter(name="issuerUrl")
4548
+ def issuer_url(self) -> _builtins.str:
4549
+ """
4550
+ OIDC token issuer Url.
4551
+ """
4552
+ return pulumi.get(self, "issuer_url")
4553
+
4554
+ @_builtins.property
4555
+ @pulumi.getter(name="lifecycleStateDetails")
4556
+ def lifecycle_state_details(self) -> _builtins.str:
4557
+ """
4558
+ Description of the current lifecycle state in more detail.
4559
+ """
4560
+ return pulumi.get(self, "lifecycle_state_details")
4561
+
4562
+ @_builtins.property
4563
+ @pulumi.getter(name="projectId")
4564
+ def project_id(self) -> _builtins.str:
4565
+ """
4566
+ Project id of the customer project.
4567
+ """
4568
+ return pulumi.get(self, "project_id")
4569
+
4570
+ @_builtins.property
4571
+ @pulumi.getter(name="resourceId")
4572
+ def resource_id(self) -> _builtins.str:
4573
+ """
4574
+ A filter to return Oracle DB GCP Identity Connector resource that match the given resource [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm).
4575
+ """
4576
+ return pulumi.get(self, "resource_id")
4577
+
4578
+ @_builtins.property
4579
+ @pulumi.getter
4580
+ def state(self) -> _builtins.str:
4581
+ """
4582
+ A filter to return only resources that match the specified lifecycle state. The state value is case-insensitive.
4583
+ """
4584
+ return pulumi.get(self, "state")
4585
+
4586
+ @_builtins.property
4587
+ @pulumi.getter(name="systemTags")
4588
+ def system_tags(self) -> Mapping[str, _builtins.str]:
4589
+ """
4590
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
4591
+ """
4592
+ return pulumi.get(self, "system_tags")
4593
+
4594
+ @_builtins.property
4595
+ @pulumi.getter(name="timeCreated")
4596
+ def time_created(self) -> _builtins.str:
4597
+ """
4598
+ Time when the Oracle DB GCP Identity Connector resource was created expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
4599
+ """
4600
+ return pulumi.get(self, "time_created")
4601
+
4602
+ @_builtins.property
4603
+ @pulumi.getter(name="timeUpdated")
4604
+ def time_updated(self) -> _builtins.str:
4605
+ """
4606
+ Time when the Oracle DB GCP Identity Connector resource was last modified expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
4607
+ """
4608
+ return pulumi.get(self, "time_updated")
4609
+
4610
+
4611
+ @pulumi.output_type
4612
+ class GetDbmulticloudOracleDbGcpIdentityConnectorsOracleDbGcpIdentityConnectorSummaryCollectionItemGcpNodeResult(dict):
4613
+ def __init__(__self__, *,
4614
+ host_id: _builtins.str,
4615
+ host_name: _builtins.str,
4616
+ status: _builtins.str,
4617
+ time_last_checked: _builtins.str):
4618
+ """
4619
+ :param _builtins.str host_id: Host ID.
4620
+ :param _builtins.str host_name: Host Name or Identity Connector name.
4621
+ :param _builtins.str status: The current status of the GCP Identity Connector resource.
4622
+ :param _builtins.str time_last_checked: time when the GCP Identity Connector's status was checked [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
4623
+ """
4624
+ pulumi.set(__self__, "host_id", host_id)
4625
+ pulumi.set(__self__, "host_name", host_name)
4626
+ pulumi.set(__self__, "status", status)
4627
+ pulumi.set(__self__, "time_last_checked", time_last_checked)
4628
+
4629
+ @_builtins.property
4630
+ @pulumi.getter(name="hostId")
4631
+ def host_id(self) -> _builtins.str:
4632
+ """
4633
+ Host ID.
4634
+ """
4635
+ return pulumi.get(self, "host_id")
4636
+
4637
+ @_builtins.property
4638
+ @pulumi.getter(name="hostName")
4639
+ def host_name(self) -> _builtins.str:
4640
+ """
4641
+ Host Name or Identity Connector name.
4642
+ """
4643
+ return pulumi.get(self, "host_name")
4644
+
4645
+ @_builtins.property
4646
+ @pulumi.getter
4647
+ def status(self) -> _builtins.str:
4648
+ """
4649
+ The current status of the GCP Identity Connector resource.
4650
+ """
4651
+ return pulumi.get(self, "status")
4652
+
4653
+ @_builtins.property
4654
+ @pulumi.getter(name="timeLastChecked")
4655
+ def time_last_checked(self) -> _builtins.str:
4656
+ """
4657
+ time when the GCP Identity Connector's status was checked [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
4658
+ """
4659
+ return pulumi.get(self, "time_last_checked")
4660
+
4661
+
4662
+ @pulumi.output_type
4663
+ class GetDbmulticloudOracleDbGcpKeyRingsFilterResult(dict):
4664
+ def __init__(__self__, *,
4665
+ name: _builtins.str,
4666
+ values: Sequence[_builtins.str],
4667
+ regex: Optional[_builtins.bool] = None):
4668
+ pulumi.set(__self__, "name", name)
4669
+ pulumi.set(__self__, "values", values)
4670
+ if regex is not None:
4671
+ pulumi.set(__self__, "regex", regex)
4672
+
4673
+ @_builtins.property
4674
+ @pulumi.getter
4675
+ def name(self) -> _builtins.str:
4676
+ return pulumi.get(self, "name")
4677
+
4678
+ @_builtins.property
4679
+ @pulumi.getter
4680
+ def values(self) -> Sequence[_builtins.str]:
4681
+ return pulumi.get(self, "values")
4682
+
4683
+ @_builtins.property
4684
+ @pulumi.getter
4685
+ def regex(self) -> Optional[_builtins.bool]:
4686
+ return pulumi.get(self, "regex")
4687
+
4688
+
4689
+ @pulumi.output_type
4690
+ class GetDbmulticloudOracleDbGcpKeyRingsOracleDbGcpKeyRingSummaryCollectionResult(dict):
4691
+ def __init__(__self__, *,
4692
+ items: Sequence['outputs.GetDbmulticloudOracleDbGcpKeyRingsOracleDbGcpKeyRingSummaryCollectionItemResult']):
4693
+ pulumi.set(__self__, "items", items)
4694
+
4695
+ @_builtins.property
4696
+ @pulumi.getter
4697
+ def items(self) -> Sequence['outputs.GetDbmulticloudOracleDbGcpKeyRingsOracleDbGcpKeyRingSummaryCollectionItemResult']:
4698
+ return pulumi.get(self, "items")
4699
+
4700
+
4701
+ @pulumi.output_type
4702
+ class GetDbmulticloudOracleDbGcpKeyRingsOracleDbGcpKeyRingSummaryCollectionItemResult(dict):
4703
+ def __init__(__self__, *,
4704
+ compartment_id: _builtins.str,
4705
+ defined_tags: Mapping[str, _builtins.str],
4706
+ display_name: _builtins.str,
4707
+ freeform_tags: Mapping[str, _builtins.str],
4708
+ gcp_key_ring_id: _builtins.str,
4709
+ id: _builtins.str,
4710
+ lifecycle_state_details: _builtins.str,
4711
+ location: _builtins.str,
4712
+ oracle_db_connector_id: _builtins.str,
4713
+ properties: Mapping[str, _builtins.str],
4714
+ state: _builtins.str,
4715
+ system_tags: Mapping[str, _builtins.str],
4716
+ time_created: _builtins.str,
4717
+ time_updated: _builtins.str,
4718
+ type: _builtins.str):
4719
+ """
4720
+ :param _builtins.str compartment_id: The [ID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
4721
+ :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"}`
4722
+ :param _builtins.str display_name: A filter to return Oracle DB GCP Key Ring resources that match the specified display name.
4723
+ :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"}`
4724
+ :param _builtins.str gcp_key_ring_id: GCP Key Ring ID.
4725
+ :param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DB GCP Key Ring resource.
4726
+ :param _builtins.str lifecycle_state_details: Description of the current lifecycle state in more detail.
4727
+ :param _builtins.str location: Location of the GCP Key Ring resource.
4728
+ :param _builtins.str oracle_db_connector_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment where the Oracle DB GCP Identity Connector resource resides.
4729
+ :param Mapping[str, _builtins.str] properties: Oracle DB GCP Key Ring resource's properties.
4730
+ :param _builtins.str state: A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
4731
+ :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"}`
4732
+ :param _builtins.str time_created: Time when the DB GCP Key Ring resource was created in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-23T21:10:29.600Z'
4733
+ :param _builtins.str time_updated: Time when the DB GCP Key Ring resource was last modified, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-23T21:10:29.600Z'
4734
+ :param _builtins.str type: Oracle DB GCP Key Ring resource Type.
4735
+ """
4736
+ pulumi.set(__self__, "compartment_id", compartment_id)
4737
+ pulumi.set(__self__, "defined_tags", defined_tags)
4738
+ pulumi.set(__self__, "display_name", display_name)
4739
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
4740
+ pulumi.set(__self__, "gcp_key_ring_id", gcp_key_ring_id)
4741
+ pulumi.set(__self__, "id", id)
4742
+ pulumi.set(__self__, "lifecycle_state_details", lifecycle_state_details)
4743
+ pulumi.set(__self__, "location", location)
4744
+ pulumi.set(__self__, "oracle_db_connector_id", oracle_db_connector_id)
4745
+ pulumi.set(__self__, "properties", properties)
4746
+ pulumi.set(__self__, "state", state)
4747
+ pulumi.set(__self__, "system_tags", system_tags)
4748
+ pulumi.set(__self__, "time_created", time_created)
4749
+ pulumi.set(__self__, "time_updated", time_updated)
4750
+ pulumi.set(__self__, "type", type)
4751
+
4752
+ @_builtins.property
4753
+ @pulumi.getter(name="compartmentId")
4754
+ def compartment_id(self) -> _builtins.str:
4755
+ """
4756
+ The [ID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
4757
+ """
4758
+ return pulumi.get(self, "compartment_id")
4759
+
4760
+ @_builtins.property
4761
+ @pulumi.getter(name="definedTags")
4762
+ def defined_tags(self) -> Mapping[str, _builtins.str]:
4763
+ """
4764
+ 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"}`
4765
+ """
4766
+ return pulumi.get(self, "defined_tags")
4767
+
4768
+ @_builtins.property
4769
+ @pulumi.getter(name="displayName")
4770
+ def display_name(self) -> _builtins.str:
4771
+ """
4772
+ A filter to return Oracle DB GCP Key Ring resources that match the specified display name.
4773
+ """
4774
+ return pulumi.get(self, "display_name")
4775
+
4776
+ @_builtins.property
4777
+ @pulumi.getter(name="freeformTags")
4778
+ def freeform_tags(self) -> Mapping[str, _builtins.str]:
4779
+ """
4780
+ 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"}`
4781
+ """
4782
+ return pulumi.get(self, "freeform_tags")
4783
+
4784
+ @_builtins.property
4785
+ @pulumi.getter(name="gcpKeyRingId")
4786
+ def gcp_key_ring_id(self) -> _builtins.str:
4787
+ """
4788
+ GCP Key Ring ID.
4789
+ """
4790
+ return pulumi.get(self, "gcp_key_ring_id")
4791
+
4792
+ @_builtins.property
4793
+ @pulumi.getter
4794
+ def id(self) -> _builtins.str:
4795
+ """
4796
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DB GCP Key Ring resource.
4797
+ """
4798
+ return pulumi.get(self, "id")
4799
+
4800
+ @_builtins.property
4801
+ @pulumi.getter(name="lifecycleStateDetails")
4802
+ def lifecycle_state_details(self) -> _builtins.str:
4803
+ """
4804
+ Description of the current lifecycle state in more detail.
4805
+ """
4806
+ return pulumi.get(self, "lifecycle_state_details")
4807
+
4808
+ @_builtins.property
4809
+ @pulumi.getter
4810
+ def location(self) -> _builtins.str:
4811
+ """
4812
+ Location of the GCP Key Ring resource.
4813
+ """
4814
+ return pulumi.get(self, "location")
4815
+
4816
+ @_builtins.property
4817
+ @pulumi.getter(name="oracleDbConnectorId")
4818
+ def oracle_db_connector_id(self) -> _builtins.str:
4819
+ """
4820
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment where the Oracle DB GCP Identity Connector resource resides.
4821
+ """
4822
+ return pulumi.get(self, "oracle_db_connector_id")
4823
+
4824
+ @_builtins.property
4825
+ @pulumi.getter
4826
+ def properties(self) -> Mapping[str, _builtins.str]:
4827
+ """
4828
+ Oracle DB GCP Key Ring resource's properties.
4829
+ """
4830
+ return pulumi.get(self, "properties")
4831
+
4832
+ @_builtins.property
4833
+ @pulumi.getter
4834
+ def state(self) -> _builtins.str:
4835
+ """
4836
+ A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
4837
+ """
4838
+ return pulumi.get(self, "state")
4839
+
4840
+ @_builtins.property
4841
+ @pulumi.getter(name="systemTags")
4842
+ def system_tags(self) -> Mapping[str, _builtins.str]:
4843
+ """
4844
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
4845
+ """
4846
+ return pulumi.get(self, "system_tags")
4847
+
4848
+ @_builtins.property
4849
+ @pulumi.getter(name="timeCreated")
4850
+ def time_created(self) -> _builtins.str:
4851
+ """
4852
+ Time when the DB GCP Key Ring resource was created in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-23T21:10:29.600Z'
4853
+ """
4854
+ return pulumi.get(self, "time_created")
4855
+
4856
+ @_builtins.property
4857
+ @pulumi.getter(name="timeUpdated")
4858
+ def time_updated(self) -> _builtins.str:
4859
+ """
4860
+ Time when the DB GCP Key Ring resource was last modified, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-23T21:10:29.600Z'
4861
+ """
4862
+ return pulumi.get(self, "time_updated")
4863
+
4864
+ @_builtins.property
4865
+ @pulumi.getter
4866
+ def type(self) -> _builtins.str:
4867
+ """
4868
+ Oracle DB GCP Key Ring resource Type.
4869
+ """
4870
+ return pulumi.get(self, "type")
4871
+
4872
+
4873
+ @pulumi.output_type
4874
+ class GetDbmulticloudOracleDbGcpKeysFilterResult(dict):
4875
+ def __init__(__self__, *,
4876
+ name: _builtins.str,
4877
+ values: Sequence[_builtins.str],
4878
+ regex: Optional[_builtins.bool] = None):
4879
+ pulumi.set(__self__, "name", name)
4880
+ pulumi.set(__self__, "values", values)
4881
+ if regex is not None:
4882
+ pulumi.set(__self__, "regex", regex)
4883
+
4884
+ @_builtins.property
4885
+ @pulumi.getter
4886
+ def name(self) -> _builtins.str:
4887
+ return pulumi.get(self, "name")
4888
+
4889
+ @_builtins.property
4890
+ @pulumi.getter
4891
+ def values(self) -> Sequence[_builtins.str]:
4892
+ return pulumi.get(self, "values")
4893
+
4894
+ @_builtins.property
4895
+ @pulumi.getter
4896
+ def regex(self) -> Optional[_builtins.bool]:
4897
+ return pulumi.get(self, "regex")
4898
+
4899
+
4900
+ @pulumi.output_type
4901
+ class GetDbmulticloudOracleDbGcpKeysOracleDbGcpKeySummaryCollectionResult(dict):
4902
+ def __init__(__self__, *,
4903
+ items: Sequence['outputs.GetDbmulticloudOracleDbGcpKeysOracleDbGcpKeySummaryCollectionItemResult']):
4904
+ pulumi.set(__self__, "items", items)
4905
+
4906
+ @_builtins.property
4907
+ @pulumi.getter
4908
+ def items(self) -> Sequence['outputs.GetDbmulticloudOracleDbGcpKeysOracleDbGcpKeySummaryCollectionItemResult']:
4909
+ return pulumi.get(self, "items")
4910
+
4911
+
4912
+ @pulumi.output_type
4913
+ class GetDbmulticloudOracleDbGcpKeysOracleDbGcpKeySummaryCollectionItemResult(dict):
4914
+ def __init__(__self__, *,
4915
+ compartment_id: _builtins.str,
4916
+ defined_tags: Mapping[str, _builtins.str],
4917
+ display_name: _builtins.str,
4918
+ freeform_tags: Mapping[str, _builtins.str],
4919
+ gcp_key_id: _builtins.str,
4920
+ gcp_key_properties: Mapping[str, _builtins.str],
4921
+ id: _builtins.str,
4922
+ lifecycle_state_details: _builtins.str,
4923
+ oracle_db_gcp_key_ring_id: _builtins.str,
4924
+ resource_type: _builtins.str,
4925
+ state: _builtins.str,
4926
+ system_tags: Mapping[str, _builtins.str],
4927
+ time_created: _builtins.str,
4928
+ time_updated: _builtins.str):
4929
+ """
4930
+ :param _builtins.str compartment_id: The [ID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
4931
+ :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"}`
4932
+ :param _builtins.str display_name: A filter to return Oracle DB Google Cloud Key resources that match the specified display name.
4933
+ :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"}`
4934
+ :param _builtins.str gcp_key_id: TThe Google Cloud Key ID and Key URL associated with the Google Key under the specified Key Ring resource.
4935
+ :param Mapping[str, _builtins.str] gcp_key_properties: Gcp Key properties
4936
+ :param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Google Key resource.
4937
+ :param _builtins.str lifecycle_state_details: Description of the current lifecycle state in more detail.
4938
+ :param _builtins.str oracle_db_gcp_key_ring_id: A filter to return Oracle DB GCP Key Rings.
4939
+ :param _builtins.str resource_type: Key resource type.
4940
+ :param _builtins.str state: A filter to return only resources that match the specified lifecycle state. The state value is case-insensitive.
4941
+ :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"}`
4942
+ :param _builtins.str time_created: Time when the Oracle DB Google Key resource was created in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
4943
+ :param _builtins.str time_updated: Time when the Oracle DB Google Key resource was last modified, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
4944
+ """
4945
+ pulumi.set(__self__, "compartment_id", compartment_id)
4946
+ pulumi.set(__self__, "defined_tags", defined_tags)
4947
+ pulumi.set(__self__, "display_name", display_name)
4948
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
4949
+ pulumi.set(__self__, "gcp_key_id", gcp_key_id)
4950
+ pulumi.set(__self__, "gcp_key_properties", gcp_key_properties)
4951
+ pulumi.set(__self__, "id", id)
4952
+ pulumi.set(__self__, "lifecycle_state_details", lifecycle_state_details)
4953
+ pulumi.set(__self__, "oracle_db_gcp_key_ring_id", oracle_db_gcp_key_ring_id)
4954
+ pulumi.set(__self__, "resource_type", resource_type)
4955
+ pulumi.set(__self__, "state", state)
4956
+ pulumi.set(__self__, "system_tags", system_tags)
4957
+ pulumi.set(__self__, "time_created", time_created)
4958
+ pulumi.set(__self__, "time_updated", time_updated)
4959
+
4960
+ @_builtins.property
4961
+ @pulumi.getter(name="compartmentId")
4962
+ def compartment_id(self) -> _builtins.str:
4963
+ """
4964
+ The [ID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
4965
+ """
4966
+ return pulumi.get(self, "compartment_id")
4967
+
4968
+ @_builtins.property
4969
+ @pulumi.getter(name="definedTags")
4970
+ def defined_tags(self) -> Mapping[str, _builtins.str]:
4971
+ """
4972
+ 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"}`
4973
+ """
4974
+ return pulumi.get(self, "defined_tags")
4975
+
4976
+ @_builtins.property
4977
+ @pulumi.getter(name="displayName")
4978
+ def display_name(self) -> _builtins.str:
4979
+ """
4980
+ A filter to return Oracle DB Google Cloud Key resources that match the specified display name.
4981
+ """
4982
+ return pulumi.get(self, "display_name")
4983
+
4984
+ @_builtins.property
4985
+ @pulumi.getter(name="freeformTags")
4986
+ def freeform_tags(self) -> Mapping[str, _builtins.str]:
4987
+ """
4988
+ 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"}`
4989
+ """
4990
+ return pulumi.get(self, "freeform_tags")
4991
+
4992
+ @_builtins.property
4993
+ @pulumi.getter(name="gcpKeyId")
4994
+ def gcp_key_id(self) -> _builtins.str:
4995
+ """
4996
+ TThe Google Cloud Key ID and Key URL associated with the Google Key under the specified Key Ring resource.
4997
+ """
4998
+ return pulumi.get(self, "gcp_key_id")
4999
+
5000
+ @_builtins.property
5001
+ @pulumi.getter(name="gcpKeyProperties")
5002
+ def gcp_key_properties(self) -> Mapping[str, _builtins.str]:
5003
+ """
5004
+ Gcp Key properties
5005
+ """
5006
+ return pulumi.get(self, "gcp_key_properties")
5007
+
5008
+ @_builtins.property
5009
+ @pulumi.getter
5010
+ def id(self) -> _builtins.str:
5011
+ """
5012
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Google Key resource.
5013
+ """
5014
+ return pulumi.get(self, "id")
5015
+
5016
+ @_builtins.property
5017
+ @pulumi.getter(name="lifecycleStateDetails")
5018
+ def lifecycle_state_details(self) -> _builtins.str:
5019
+ """
5020
+ Description of the current lifecycle state in more detail.
5021
+ """
5022
+ return pulumi.get(self, "lifecycle_state_details")
5023
+
5024
+ @_builtins.property
5025
+ @pulumi.getter(name="oracleDbGcpKeyRingId")
5026
+ def oracle_db_gcp_key_ring_id(self) -> _builtins.str:
5027
+ """
5028
+ A filter to return Oracle DB GCP Key Rings.
5029
+ """
5030
+ return pulumi.get(self, "oracle_db_gcp_key_ring_id")
5031
+
5032
+ @_builtins.property
5033
+ @pulumi.getter(name="resourceType")
5034
+ def resource_type(self) -> _builtins.str:
5035
+ """
5036
+ Key resource type.
5037
+ """
5038
+ return pulumi.get(self, "resource_type")
5039
+
5040
+ @_builtins.property
5041
+ @pulumi.getter
5042
+ def state(self) -> _builtins.str:
5043
+ """
5044
+ A filter to return only resources that match the specified lifecycle state. The state value is case-insensitive.
5045
+ """
5046
+ return pulumi.get(self, "state")
5047
+
5048
+ @_builtins.property
5049
+ @pulumi.getter(name="systemTags")
5050
+ def system_tags(self) -> Mapping[str, _builtins.str]:
5051
+ """
5052
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
5053
+ """
5054
+ return pulumi.get(self, "system_tags")
5055
+
5056
+ @_builtins.property
5057
+ @pulumi.getter(name="timeCreated")
5058
+ def time_created(self) -> _builtins.str:
5059
+ """
5060
+ Time when the Oracle DB Google Key resource was created in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
5061
+ """
5062
+ return pulumi.get(self, "time_created")
5063
+
5064
+ @_builtins.property
5065
+ @pulumi.getter(name="timeUpdated")
5066
+ def time_updated(self) -> _builtins.str:
5067
+ """
5068
+ Time when the Oracle DB Google Key resource was last modified, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
5069
+ """
5070
+ return pulumi.get(self, "time_updated")
5071
+
5072
+
5073
+ @pulumi.output_type
5074
+ class GetManagedKafkaKafkaClusterAccessSubnetResult(dict):
5075
+ def __init__(__self__, *,
5076
+ subnets: Sequence[_builtins.str]):
5077
+ """
5078
+ :param Sequence[_builtins.str] subnets: Subnets OCIDs
5079
+ """
5080
+ pulumi.set(__self__, "subnets", subnets)
5081
+
5082
+ @_builtins.property
5083
+ @pulumi.getter
5084
+ def subnets(self) -> Sequence[_builtins.str]:
5085
+ """
5086
+ Subnets OCIDs
5087
+ """
5088
+ return pulumi.get(self, "subnets")
5089
+
5090
+
5091
+ @pulumi.output_type
5092
+ class GetManagedKafkaKafkaClusterBrokerShapeResult(dict):
5093
+ def __init__(__self__, *,
5094
+ node_count: _builtins.int,
5095
+ ocpu_count: _builtins.int,
5096
+ storage_size_in_gbs: _builtins.int):
5097
+ """
5098
+ :param _builtins.int node_count: Number of Kafka broker nodes
5099
+ :param _builtins.int ocpu_count: Number of OCPUs per nodes
5100
+ :param _builtins.int storage_size_in_gbs: Size of the storage per nodes.
5101
+ """
5102
+ pulumi.set(__self__, "node_count", node_count)
5103
+ pulumi.set(__self__, "ocpu_count", ocpu_count)
5104
+ pulumi.set(__self__, "storage_size_in_gbs", storage_size_in_gbs)
5105
+
5106
+ @_builtins.property
5107
+ @pulumi.getter(name="nodeCount")
5108
+ def node_count(self) -> _builtins.int:
5109
+ """
5110
+ Number of Kafka broker nodes
5111
+ """
5112
+ return pulumi.get(self, "node_count")
5113
+
5114
+ @_builtins.property
5115
+ @pulumi.getter(name="ocpuCount")
5116
+ def ocpu_count(self) -> _builtins.int:
5117
+ """
5118
+ Number of OCPUs per nodes
5119
+ """
5120
+ return pulumi.get(self, "ocpu_count")
5121
+
5122
+ @_builtins.property
5123
+ @pulumi.getter(name="storageSizeInGbs")
5124
+ def storage_size_in_gbs(self) -> _builtins.int:
5125
+ """
5126
+ Size of the storage per nodes.
5127
+ """
5128
+ return pulumi.get(self, "storage_size_in_gbs")
5129
+
5130
+
5131
+ @pulumi.output_type
5132
+ class GetManagedKafkaKafkaClusterConfigLatestConfigResult(dict):
5133
+ def __init__(__self__, *,
5134
+ config_id: _builtins.str,
5135
+ properties: Mapping[str, _builtins.str],
5136
+ time_created: _builtins.str,
5137
+ version_number: _builtins.int):
5138
+ """
5139
+ :param _builtins.str config_id: ID cluster configuration
5140
+ :param Mapping[str, _builtins.str] properties: Cluster configuration key-value pairs
5141
+ :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`
5142
+ :param _builtins.int version_number: Version of the cluster configuration
5143
+ """
5144
+ pulumi.set(__self__, "config_id", config_id)
5145
+ pulumi.set(__self__, "properties", properties)
5146
+ pulumi.set(__self__, "time_created", time_created)
5147
+ pulumi.set(__self__, "version_number", version_number)
5148
+
5149
+ @_builtins.property
5150
+ @pulumi.getter(name="configId")
5151
+ def config_id(self) -> _builtins.str:
5152
+ """
5153
+ ID cluster configuration
5154
+ """
5155
+ return pulumi.get(self, "config_id")
5156
+
5157
+ @_builtins.property
5158
+ @pulumi.getter
5159
+ def properties(self) -> Mapping[str, _builtins.str]:
5160
+ """
5161
+ Cluster configuration key-value pairs
5162
+ """
5163
+ return pulumi.get(self, "properties")
5164
+
5165
+ @_builtins.property
5166
+ @pulumi.getter(name="timeCreated")
5167
+ def time_created(self) -> _builtins.str:
5168
+ """
5169
+ 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`
5170
+ """
5171
+ return pulumi.get(self, "time_created")
5172
+
5173
+ @_builtins.property
5174
+ @pulumi.getter(name="versionNumber")
5175
+ def version_number(self) -> _builtins.int:
5176
+ """
5177
+ Version of the cluster configuration
5178
+ """
5179
+ return pulumi.get(self, "version_number")
5180
+
5181
+
5182
+ @pulumi.output_type
5183
+ class GetManagedKafkaKafkaClusterConfigVersionsFilterResult(dict):
5184
+ def __init__(__self__, *,
5185
+ name: _builtins.str,
5186
+ values: Sequence[_builtins.str],
5187
+ regex: Optional[_builtins.bool] = None):
5188
+ pulumi.set(__self__, "name", name)
5189
+ pulumi.set(__self__, "values", values)
5190
+ if regex is not None:
5191
+ pulumi.set(__self__, "regex", regex)
5192
+
5193
+ @_builtins.property
5194
+ @pulumi.getter
5195
+ def name(self) -> _builtins.str:
5196
+ return pulumi.get(self, "name")
5197
+
5198
+ @_builtins.property
5199
+ @pulumi.getter
5200
+ def values(self) -> Sequence[_builtins.str]:
5201
+ return pulumi.get(self, "values")
5202
+
5203
+ @_builtins.property
5204
+ @pulumi.getter
5205
+ def regex(self) -> Optional[_builtins.bool]:
5206
+ return pulumi.get(self, "regex")
5207
+
5208
+
5209
+ @pulumi.output_type
5210
+ class GetManagedKafkaKafkaClusterConfigVersionsKafkaClusterConfigVersionCollectionResult(dict):
5211
+ def __init__(__self__, *,
5212
+ items: Sequence['outputs.GetManagedKafkaKafkaClusterConfigVersionsKafkaClusterConfigVersionCollectionItemResult']):
5213
+ pulumi.set(__self__, "items", items)
5214
+
5215
+ @_builtins.property
5216
+ @pulumi.getter
5217
+ def items(self) -> Sequence['outputs.GetManagedKafkaKafkaClusterConfigVersionsKafkaClusterConfigVersionCollectionItemResult']:
5218
+ return pulumi.get(self, "items")
5219
+
5220
+
5221
+ @pulumi.output_type
5222
+ class GetManagedKafkaKafkaClusterConfigVersionsKafkaClusterConfigVersionCollectionItemResult(dict):
5223
+ def __init__(__self__, *,
5224
+ config_id: _builtins.str,
5225
+ time_created: _builtins.str,
5226
+ version_number: _builtins.int):
5227
+ """
5228
+ :param _builtins.str config_id: ID cluster configuration
5229
+ :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`
5230
+ :param _builtins.int version_number: Version of the cluster configuration
5231
+ """
5232
+ pulumi.set(__self__, "config_id", config_id)
5233
+ pulumi.set(__self__, "time_created", time_created)
5234
+ pulumi.set(__self__, "version_number", version_number)
5235
+
5236
+ @_builtins.property
5237
+ @pulumi.getter(name="configId")
5238
+ def config_id(self) -> _builtins.str:
5239
+ """
5240
+ ID cluster configuration
5241
+ """
5242
+ return pulumi.get(self, "config_id")
5243
+
5244
+ @_builtins.property
5245
+ @pulumi.getter(name="timeCreated")
5246
+ def time_created(self) -> _builtins.str:
5247
+ """
5248
+ 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`
5249
+ """
5250
+ return pulumi.get(self, "time_created")
5251
+
5252
+ @_builtins.property
5253
+ @pulumi.getter(name="versionNumber")
5254
+ def version_number(self) -> _builtins.int:
5255
+ """
5256
+ Version of the cluster configuration
5257
+ """
5258
+ return pulumi.get(self, "version_number")
5259
+
5260
+
5261
+ @pulumi.output_type
5262
+ class GetManagedKafkaKafkaClusterConfigsFilterResult(dict):
5263
+ def __init__(__self__, *,
5264
+ name: _builtins.str,
5265
+ values: Sequence[_builtins.str],
5266
+ regex: Optional[_builtins.bool] = None):
5267
+ pulumi.set(__self__, "name", name)
5268
+ pulumi.set(__self__, "values", values)
5269
+ if regex is not None:
5270
+ pulumi.set(__self__, "regex", regex)
5271
+
5272
+ @_builtins.property
5273
+ @pulumi.getter
5274
+ def name(self) -> _builtins.str:
5275
+ return pulumi.get(self, "name")
5276
+
5277
+ @_builtins.property
5278
+ @pulumi.getter
5279
+ def values(self) -> Sequence[_builtins.str]:
5280
+ return pulumi.get(self, "values")
5281
+
5282
+ @_builtins.property
5283
+ @pulumi.getter
5284
+ def regex(self) -> Optional[_builtins.bool]:
5285
+ return pulumi.get(self, "regex")
5286
+
5287
+
5288
+ @pulumi.output_type
5289
+ class GetManagedKafkaKafkaClusterConfigsKafkaClusterConfigCollectionResult(dict):
5290
+ def __init__(__self__, *,
5291
+ items: Sequence['outputs.GetManagedKafkaKafkaClusterConfigsKafkaClusterConfigCollectionItemResult']):
5292
+ pulumi.set(__self__, "items", items)
5293
+
5294
+ @_builtins.property
5295
+ @pulumi.getter
5296
+ def items(self) -> Sequence['outputs.GetManagedKafkaKafkaClusterConfigsKafkaClusterConfigCollectionItemResult']:
5297
+ return pulumi.get(self, "items")
5298
+
5299
+
5300
+ @pulumi.output_type
5301
+ class GetManagedKafkaKafkaClusterConfigsKafkaClusterConfigCollectionItemResult(dict):
5302
+ def __init__(__self__, *,
5303
+ compartment_id: _builtins.str,
5304
+ defined_tags: Mapping[str, _builtins.str],
5305
+ display_name: _builtins.str,
5306
+ freeform_tags: Mapping[str, _builtins.str],
5307
+ id: _builtins.str,
5308
+ latest_configs: Sequence['outputs.GetManagedKafkaKafkaClusterConfigsKafkaClusterConfigCollectionItemLatestConfigResult'],
5309
+ lifecycle_details: _builtins.str,
5310
+ state: _builtins.str,
5311
+ system_tags: Mapping[str, _builtins.str],
5312
+ time_created: _builtins.str,
5313
+ time_updated: _builtins.str):
5314
+ """
5315
+ :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.
5316
+ :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"}`
5317
+ :param _builtins.str display_name: A filter to return only resources that match the given display name exactly.
5318
+ :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"}`
5319
+ :param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KafkaClusterConfig.
5320
+ :param Sequence['GetManagedKafkaKafkaClusterConfigsKafkaClusterConfigCollectionItemLatestConfigArgs'] latest_configs: A shared configuration object used by 0 or more kafka clusters.
5321
+ :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.
5322
+ :param _builtins.str state: A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
5323
+ :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"}`
5324
+ :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`
5325
+ :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`
5326
+ """
5327
+ pulumi.set(__self__, "compartment_id", compartment_id)
5328
+ pulumi.set(__self__, "defined_tags", defined_tags)
5329
+ pulumi.set(__self__, "display_name", display_name)
5330
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
5331
+ pulumi.set(__self__, "id", id)
5332
+ pulumi.set(__self__, "latest_configs", latest_configs)
5333
+ pulumi.set(__self__, "lifecycle_details", lifecycle_details)
5334
+ pulumi.set(__self__, "state", state)
5335
+ pulumi.set(__self__, "system_tags", system_tags)
5336
+ pulumi.set(__self__, "time_created", time_created)
5337
+ pulumi.set(__self__, "time_updated", time_updated)
5338
+
5339
+ @_builtins.property
5340
+ @pulumi.getter(name="compartmentId")
5341
+ def compartment_id(self) -> _builtins.str:
5342
+ """
5343
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
5344
+ """
5345
+ return pulumi.get(self, "compartment_id")
5346
+
5347
+ @_builtins.property
5348
+ @pulumi.getter(name="definedTags")
5349
+ def defined_tags(self) -> Mapping[str, _builtins.str]:
5350
+ """
5351
+ 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"}`
5352
+ """
5353
+ return pulumi.get(self, "defined_tags")
5354
+
5355
+ @_builtins.property
5356
+ @pulumi.getter(name="displayName")
5357
+ def display_name(self) -> _builtins.str:
5358
+ """
5359
+ A filter to return only resources that match the given display name exactly.
5360
+ """
5361
+ return pulumi.get(self, "display_name")
5362
+
5363
+ @_builtins.property
5364
+ @pulumi.getter(name="freeformTags")
5365
+ def freeform_tags(self) -> Mapping[str, _builtins.str]:
5366
+ """
5367
+ 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"}`
5368
+ """
5369
+ return pulumi.get(self, "freeform_tags")
5370
+
5371
+ @_builtins.property
5372
+ @pulumi.getter
5373
+ def id(self) -> _builtins.str:
5374
+ """
5375
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KafkaClusterConfig.
5376
+ """
5377
+ return pulumi.get(self, "id")
5378
+
5379
+ @_builtins.property
5380
+ @pulumi.getter(name="latestConfigs")
5381
+ def latest_configs(self) -> Sequence['outputs.GetManagedKafkaKafkaClusterConfigsKafkaClusterConfigCollectionItemLatestConfigResult']:
5382
+ """
5383
+ A shared configuration object used by 0 or more kafka clusters.
5384
+ """
5385
+ return pulumi.get(self, "latest_configs")
5386
+
5387
+ @_builtins.property
5388
+ @pulumi.getter(name="lifecycleDetails")
5389
+ def lifecycle_details(self) -> _builtins.str:
5390
+ """
5391
+ 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.
5392
+ """
5393
+ return pulumi.get(self, "lifecycle_details")
5394
+
5395
+ @_builtins.property
5396
+ @pulumi.getter
5397
+ def state(self) -> _builtins.str:
5398
+ """
5399
+ A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
5400
+ """
5401
+ return pulumi.get(self, "state")
5402
+
5403
+ @_builtins.property
5404
+ @pulumi.getter(name="systemTags")
5405
+ def system_tags(self) -> Mapping[str, _builtins.str]:
5406
+ """
5407
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
5408
+ """
5409
+ return pulumi.get(self, "system_tags")
5410
+
5411
+ @_builtins.property
5412
+ @pulumi.getter(name="timeCreated")
5413
+ def time_created(self) -> _builtins.str:
5414
+ """
5415
+ 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`
5416
+ """
5417
+ return pulumi.get(self, "time_created")
5418
+
5419
+ @_builtins.property
5420
+ @pulumi.getter(name="timeUpdated")
5421
+ def time_updated(self) -> _builtins.str:
5422
+ """
5423
+ 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`
5424
+ """
5425
+ return pulumi.get(self, "time_updated")
5426
+
5427
+
5428
+ @pulumi.output_type
5429
+ class GetManagedKafkaKafkaClusterConfigsKafkaClusterConfigCollectionItemLatestConfigResult(dict):
5430
+ def __init__(__self__, *,
5431
+ config_id: _builtins.str,
5432
+ properties: Mapping[str, _builtins.str],
5433
+ time_created: _builtins.str,
5434
+ version_number: _builtins.int):
5435
+ """
5436
+ :param _builtins.str config_id: ID cluster configuration
5437
+ :param Mapping[str, _builtins.str] properties: Cluster configuration key-value pairs
5438
+ :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`
5439
+ :param _builtins.int version_number: Version of the cluster configuration
5440
+ """
5441
+ pulumi.set(__self__, "config_id", config_id)
5442
+ pulumi.set(__self__, "properties", properties)
5443
+ pulumi.set(__self__, "time_created", time_created)
5444
+ pulumi.set(__self__, "version_number", version_number)
5445
+
5446
+ @_builtins.property
5447
+ @pulumi.getter(name="configId")
5448
+ def config_id(self) -> _builtins.str:
5449
+ """
5450
+ ID cluster configuration
5451
+ """
5452
+ return pulumi.get(self, "config_id")
5453
+
5454
+ @_builtins.property
5455
+ @pulumi.getter
5456
+ def properties(self) -> Mapping[str, _builtins.str]:
5457
+ """
5458
+ Cluster configuration key-value pairs
5459
+ """
5460
+ return pulumi.get(self, "properties")
5461
+
5462
+ @_builtins.property
5463
+ @pulumi.getter(name="timeCreated")
5464
+ def time_created(self) -> _builtins.str:
5465
+ """
5466
+ 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`
5467
+ """
5468
+ return pulumi.get(self, "time_created")
5469
+
5470
+ @_builtins.property
5471
+ @pulumi.getter(name="versionNumber")
5472
+ def version_number(self) -> _builtins.int:
5473
+ """
5474
+ Version of the cluster configuration
5475
+ """
5476
+ return pulumi.get(self, "version_number")
5477
+
5478
+
5479
+ @pulumi.output_type
5480
+ class GetManagedKafkaKafkaClusterKafkaBootstrapUrlResult(dict):
5481
+ def __init__(__self__, *,
5482
+ name: _builtins.str,
5483
+ url: _builtins.str):
5484
+ """
5485
+ :param _builtins.str name: Name of the Kafka listener providing this bootstrap URL
5486
+ :param _builtins.str url: Bootstrap URL
5487
+ """
5488
+ pulumi.set(__self__, "name", name)
5489
+ pulumi.set(__self__, "url", url)
5490
+
5491
+ @_builtins.property
5492
+ @pulumi.getter
5493
+ def name(self) -> _builtins.str:
5494
+ """
5495
+ Name of the Kafka listener providing this bootstrap URL
5496
+ """
5497
+ return pulumi.get(self, "name")
5498
+
5499
+ @_builtins.property
5500
+ @pulumi.getter
5501
+ def url(self) -> _builtins.str:
5502
+ """
5503
+ Bootstrap URL
5504
+ """
5505
+ return pulumi.get(self, "url")
5506
+
5507
+
5508
+ @pulumi.output_type
5509
+ class GetManagedKafkaKafkaClustersFilterResult(dict):
5510
+ def __init__(__self__, *,
5511
+ name: _builtins.str,
5512
+ values: Sequence[_builtins.str],
5513
+ regex: Optional[_builtins.bool] = None):
5514
+ """
5515
+ :param _builtins.str name: Name of the Kafka listener providing this bootstrap URL
5516
+ """
5517
+ pulumi.set(__self__, "name", name)
5518
+ pulumi.set(__self__, "values", values)
5519
+ if regex is not None:
5520
+ pulumi.set(__self__, "regex", regex)
5521
+
5522
+ @_builtins.property
5523
+ @pulumi.getter
5524
+ def name(self) -> _builtins.str:
5525
+ """
5526
+ Name of the Kafka listener providing this bootstrap URL
5527
+ """
5528
+ return pulumi.get(self, "name")
5529
+
5530
+ @_builtins.property
5531
+ @pulumi.getter
5532
+ def values(self) -> Sequence[_builtins.str]:
5533
+ return pulumi.get(self, "values")
5534
+
5535
+ @_builtins.property
5536
+ @pulumi.getter
5537
+ def regex(self) -> Optional[_builtins.bool]:
5538
+ return pulumi.get(self, "regex")
5539
+
5540
+
5541
+ @pulumi.output_type
5542
+ class GetManagedKafkaKafkaClustersKafkaClusterCollectionResult(dict):
5543
+ def __init__(__self__, *,
5544
+ items: Sequence['outputs.GetManagedKafkaKafkaClustersKafkaClusterCollectionItemResult']):
5545
+ pulumi.set(__self__, "items", items)
5546
+
5547
+ @_builtins.property
5548
+ @pulumi.getter
5549
+ def items(self) -> Sequence['outputs.GetManagedKafkaKafkaClustersKafkaClusterCollectionItemResult']:
5550
+ return pulumi.get(self, "items")
5551
+
5552
+
5553
+ @pulumi.output_type
5554
+ class GetManagedKafkaKafkaClustersKafkaClusterCollectionItemResult(dict):
5555
+ def __init__(__self__, *,
5556
+ access_subnets: Sequence['outputs.GetManagedKafkaKafkaClustersKafkaClusterCollectionItemAccessSubnetResult'],
5557
+ broker_shapes: Sequence['outputs.GetManagedKafkaKafkaClustersKafkaClusterCollectionItemBrokerShapeResult'],
5558
+ client_certificate_bundle: _builtins.str,
5559
+ cluster_config_id: _builtins.str,
5560
+ cluster_config_version: _builtins.int,
5561
+ cluster_type: _builtins.str,
5562
+ compartment_id: _builtins.str,
5563
+ coordination_type: _builtins.str,
5564
+ defined_tags: Mapping[str, _builtins.str],
5565
+ display_name: _builtins.str,
5566
+ freeform_tags: Mapping[str, _builtins.str],
5567
+ id: _builtins.str,
5568
+ kafka_bootstrap_urls: Sequence['outputs.GetManagedKafkaKafkaClustersKafkaClusterCollectionItemKafkaBootstrapUrlResult'],
5569
+ kafka_version: _builtins.str,
5570
+ lifecycle_details: _builtins.str,
5571
+ secret_id: _builtins.str,
5572
+ state: _builtins.str,
5573
+ system_tags: Mapping[str, _builtins.str],
5574
+ time_created: _builtins.str,
5575
+ time_updated: _builtins.str):
5576
+ """
5577
+ :param Sequence['GetManagedKafkaKafkaClustersKafkaClusterCollectionItemAccessSubnetArgs'] access_subnets: Subnets where broker/coordinator VNICs will be created.
5578
+ :param Sequence['GetManagedKafkaKafkaClustersKafkaClusterCollectionItemBrokerShapeArgs'] broker_shapes: Configuration of the broker node.
5579
+ :param _builtins.str client_certificate_bundle: CA certificate bundle for mTLS broker authentication.
5580
+ :param _builtins.str cluster_config_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of Kafka Cluster configuration object
5581
+ :param _builtins.int cluster_config_version: The version of configuration object
5582
+ :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
5583
+ :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.
5584
+ :param _builtins.str coordination_type: Kafka coordination type. Set of available types depends on Kafka version
5585
+ :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"}`
5586
+ :param _builtins.str display_name: A filter to return only resources that match the given display name exactly.
5587
+ :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"}`
5588
+ :param _builtins.str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KafkaCluster.
5589
+ :param Sequence['GetManagedKafkaKafkaClustersKafkaClusterCollectionItemKafkaBootstrapUrlArgs'] kafka_bootstrap_urls: Bootstrap URL that can be used to connect to Kafka
5590
+ :param _builtins.str kafka_version: Version of Kafka to use to spin up the cluster
5591
+ :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.
5592
+ :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.
5593
+ :param _builtins.str state: A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
5594
+ :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"}`
5595
+ :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`
5596
+ :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`
5597
+ """
5598
+ pulumi.set(__self__, "access_subnets", access_subnets)
5599
+ pulumi.set(__self__, "broker_shapes", broker_shapes)
5600
+ pulumi.set(__self__, "client_certificate_bundle", client_certificate_bundle)
5601
+ pulumi.set(__self__, "cluster_config_id", cluster_config_id)
5602
+ pulumi.set(__self__, "cluster_config_version", cluster_config_version)
5603
+ pulumi.set(__self__, "cluster_type", cluster_type)
5604
+ pulumi.set(__self__, "compartment_id", compartment_id)
5605
+ pulumi.set(__self__, "coordination_type", coordination_type)
5606
+ pulumi.set(__self__, "defined_tags", defined_tags)
5607
+ pulumi.set(__self__, "display_name", display_name)
5608
+ pulumi.set(__self__, "freeform_tags", freeform_tags)
5609
+ pulumi.set(__self__, "id", id)
5610
+ pulumi.set(__self__, "kafka_bootstrap_urls", kafka_bootstrap_urls)
5611
+ pulumi.set(__self__, "kafka_version", kafka_version)
5612
+ pulumi.set(__self__, "lifecycle_details", lifecycle_details)
5613
+ pulumi.set(__self__, "secret_id", secret_id)
5614
+ pulumi.set(__self__, "state", state)
5615
+ pulumi.set(__self__, "system_tags", system_tags)
5616
+ pulumi.set(__self__, "time_created", time_created)
5617
+ pulumi.set(__self__, "time_updated", time_updated)
5618
+
5619
+ @_builtins.property
5620
+ @pulumi.getter(name="accessSubnets")
5621
+ def access_subnets(self) -> Sequence['outputs.GetManagedKafkaKafkaClustersKafkaClusterCollectionItemAccessSubnetResult']:
5622
+ """
5623
+ Subnets where broker/coordinator VNICs will be created.
5624
+ """
5625
+ return pulumi.get(self, "access_subnets")
5626
+
5627
+ @_builtins.property
5628
+ @pulumi.getter(name="brokerShapes")
5629
+ def broker_shapes(self) -> Sequence['outputs.GetManagedKafkaKafkaClustersKafkaClusterCollectionItemBrokerShapeResult']:
5630
+ """
5631
+ Configuration of the broker node.
5632
+ """
5633
+ return pulumi.get(self, "broker_shapes")
5634
+
5635
+ @_builtins.property
5636
+ @pulumi.getter(name="clientCertificateBundle")
5637
+ def client_certificate_bundle(self) -> _builtins.str:
5638
+ """
5639
+ CA certificate bundle for mTLS broker authentication.
5640
+ """
5641
+ return pulumi.get(self, "client_certificate_bundle")
5642
+
5643
+ @_builtins.property
5644
+ @pulumi.getter(name="clusterConfigId")
5645
+ def cluster_config_id(self) -> _builtins.str:
5646
+ """
5647
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of Kafka Cluster configuration object
5648
+ """
5649
+ return pulumi.get(self, "cluster_config_id")
5650
+
5651
+ @_builtins.property
5652
+ @pulumi.getter(name="clusterConfigVersion")
5653
+ def cluster_config_version(self) -> _builtins.int:
5654
+ """
5655
+ The version of configuration object
5656
+ """
5657
+ return pulumi.get(self, "cluster_config_version")
5658
+
5659
+ @_builtins.property
5660
+ @pulumi.getter(name="clusterType")
5661
+ def cluster_type(self) -> _builtins.str:
5662
+ """
5663
+ 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
5664
+ """
5665
+ return pulumi.get(self, "cluster_type")
5666
+
5667
+ @_builtins.property
5668
+ @pulumi.getter(name="compartmentId")
5669
+ def compartment_id(self) -> _builtins.str:
5670
+ """
5671
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
5672
+ """
5673
+ return pulumi.get(self, "compartment_id")
5674
+
5675
+ @_builtins.property
5676
+ @pulumi.getter(name="coordinationType")
5677
+ def coordination_type(self) -> _builtins.str:
5678
+ """
5679
+ Kafka coordination type. Set of available types depends on Kafka version
5680
+ """
5681
+ return pulumi.get(self, "coordination_type")
5682
+
5683
+ @_builtins.property
5684
+ @pulumi.getter(name="definedTags")
5685
+ def defined_tags(self) -> Mapping[str, _builtins.str]:
5686
+ """
5687
+ 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"}`
5688
+ """
5689
+ return pulumi.get(self, "defined_tags")
5690
+
5691
+ @_builtins.property
5692
+ @pulumi.getter(name="displayName")
5693
+ def display_name(self) -> _builtins.str:
5694
+ """
5695
+ A filter to return only resources that match the given display name exactly.
5696
+ """
5697
+ return pulumi.get(self, "display_name")
5698
+
5699
+ @_builtins.property
5700
+ @pulumi.getter(name="freeformTags")
5701
+ def freeform_tags(self) -> Mapping[str, _builtins.str]:
5702
+ """
5703
+ 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"}`
5704
+ """
5705
+ return pulumi.get(self, "freeform_tags")
5706
+
5707
+ @_builtins.property
5708
+ @pulumi.getter
5709
+ def id(self) -> _builtins.str:
5710
+ """
5711
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the KafkaCluster.
5712
+ """
5713
+ return pulumi.get(self, "id")
5714
+
5715
+ @_builtins.property
5716
+ @pulumi.getter(name="kafkaBootstrapUrls")
5717
+ def kafka_bootstrap_urls(self) -> Sequence['outputs.GetManagedKafkaKafkaClustersKafkaClusterCollectionItemKafkaBootstrapUrlResult']:
5718
+ """
5719
+ Bootstrap URL that can be used to connect to Kafka
5720
+ """
5721
+ return pulumi.get(self, "kafka_bootstrap_urls")
5722
+
5723
+ @_builtins.property
5724
+ @pulumi.getter(name="kafkaVersion")
5725
+ def kafka_version(self) -> _builtins.str:
5726
+ """
5727
+ Version of Kafka to use to spin up the cluster
5728
+ """
5729
+ return pulumi.get(self, "kafka_version")
5730
+
5731
+ @_builtins.property
5732
+ @pulumi.getter(name="lifecycleDetails")
5733
+ def lifecycle_details(self) -> _builtins.str:
5734
+ """
5735
+ 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.
5736
+ """
5737
+ return pulumi.get(self, "lifecycle_details")
5738
+
5739
+ @_builtins.property
5740
+ @pulumi.getter(name="secretId")
5741
+ def secret_id(self) -> _builtins.str:
5742
+ """
5743
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret that contains superuser password.
5744
+ """
5745
+ return pulumi.get(self, "secret_id")
5746
+
5747
+ @_builtins.property
5748
+ @pulumi.getter
5749
+ def state(self) -> _builtins.str:
5750
+ """
5751
+ A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
5752
+ """
5753
+ return pulumi.get(self, "state")
5754
+
5755
+ @_builtins.property
5756
+ @pulumi.getter(name="systemTags")
5757
+ def system_tags(self) -> Mapping[str, _builtins.str]:
5758
+ """
5759
+ System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
5760
+ """
5761
+ return pulumi.get(self, "system_tags")
5762
+
5763
+ @_builtins.property
5764
+ @pulumi.getter(name="timeCreated")
5765
+ def time_created(self) -> _builtins.str:
5766
+ """
5767
+ 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`
5768
+ """
5769
+ return pulumi.get(self, "time_created")
5770
+
5771
+ @_builtins.property
5772
+ @pulumi.getter(name="timeUpdated")
5773
+ def time_updated(self) -> _builtins.str:
5774
+ """
5775
+ 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`
5776
+ """
5777
+ return pulumi.get(self, "time_updated")
5778
+
5779
+
5780
+ @pulumi.output_type
5781
+ class GetManagedKafkaKafkaClustersKafkaClusterCollectionItemAccessSubnetResult(dict):
5782
+ def __init__(__self__, *,
5783
+ subnets: Sequence[_builtins.str]):
5784
+ """
5785
+ :param Sequence[_builtins.str] subnets: Subnets OCIDs
5786
+ """
5787
+ pulumi.set(__self__, "subnets", subnets)
5788
+
5789
+ @_builtins.property
5790
+ @pulumi.getter
5791
+ def subnets(self) -> Sequence[_builtins.str]:
5792
+ """
5793
+ Subnets OCIDs
5794
+ """
5795
+ return pulumi.get(self, "subnets")
5796
+
5797
+
5798
+ @pulumi.output_type
5799
+ class GetManagedKafkaKafkaClustersKafkaClusterCollectionItemBrokerShapeResult(dict):
5800
+ def __init__(__self__, *,
5801
+ node_count: _builtins.int,
5802
+ ocpu_count: _builtins.int,
5803
+ storage_size_in_gbs: _builtins.int):
5804
+ """
5805
+ :param _builtins.int node_count: Number of Kafka broker nodes
5806
+ :param _builtins.int ocpu_count: Number of OCPUs per nodes
5807
+ :param _builtins.int storage_size_in_gbs: Size of the storage per nodes.
5808
+ """
5809
+ pulumi.set(__self__, "node_count", node_count)
5810
+ pulumi.set(__self__, "ocpu_count", ocpu_count)
5811
+ pulumi.set(__self__, "storage_size_in_gbs", storage_size_in_gbs)
5812
+
5813
+ @_builtins.property
5814
+ @pulumi.getter(name="nodeCount")
5815
+ def node_count(self) -> _builtins.int:
5816
+ """
5817
+ Number of Kafka broker nodes
5818
+ """
5819
+ return pulumi.get(self, "node_count")
5820
+
5821
+ @_builtins.property
5822
+ @pulumi.getter(name="ocpuCount")
5823
+ def ocpu_count(self) -> _builtins.int:
5824
+ """
5825
+ Number of OCPUs per nodes
5826
+ """
5827
+ return pulumi.get(self, "ocpu_count")
5828
+
5829
+ @_builtins.property
5830
+ @pulumi.getter(name="storageSizeInGbs")
5831
+ def storage_size_in_gbs(self) -> _builtins.int:
5832
+ """
5833
+ Size of the storage per nodes.
5834
+ """
5835
+ return pulumi.get(self, "storage_size_in_gbs")
5836
+
5837
+
5838
+ @pulumi.output_type
5839
+ class GetManagedKafkaKafkaClustersKafkaClusterCollectionItemKafkaBootstrapUrlResult(dict):
5840
+ def __init__(__self__, *,
5841
+ name: _builtins.str,
5842
+ url: _builtins.str):
5843
+ """
5844
+ :param _builtins.str name: Name of the Kafka listener providing this bootstrap URL
5845
+ :param _builtins.str url: Bootstrap URL
5846
+ """
5847
+ pulumi.set(__self__, "name", name)
5848
+ pulumi.set(__self__, "url", url)
5849
+
5850
+ @_builtins.property
5851
+ @pulumi.getter
5852
+ def name(self) -> _builtins.str:
5853
+ """
5854
+ Name of the Kafka listener providing this bootstrap URL
5855
+ """
5856
+ return pulumi.get(self, "name")
5857
+
5858
+ @_builtins.property
5859
+ @pulumi.getter
5860
+ def url(self) -> _builtins.str:
5861
+ """
5862
+ Bootstrap URL
5863
+ """
5864
+ return pulumi.get(self, "url")
5865
+
5866
+
3958
5867
  @pulumi.output_type
3959
5868
  class GetWlmsManagedInstanceConfigurationResult(dict):
3960
5869
  def __init__(__self__, *,