pulumi-oci 1.34.0a1714544127__py3-none-any.whl → 1.34.0a1714766740__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 (74) hide show
  1. pulumi_oci/__init__.py +40 -0
  2. pulumi_oci/config/__init__.pyi +2 -2
  3. pulumi_oci/config/vars.py +2 -2
  4. pulumi_oci/database/db_home.py +47 -0
  5. pulumi_oci/database/get_db_home.py +14 -1
  6. pulumi_oci/database/outputs.py +11 -0
  7. pulumi_oci/databasemanagement/__init__.py +5 -0
  8. pulumi_oci/databasemanagement/_inputs.py +1207 -2
  9. pulumi_oci/databasemanagement/database_dbm_features_management.py +275 -0
  10. pulumi_oci/databasemanagement/db_management_private_endpoint.py +28 -0
  11. pulumi_oci/databasemanagement/external_asm.py +28 -0
  12. pulumi_oci/databasemanagement/external_asm_instance.py +28 -0
  13. pulumi_oci/databasemanagement/external_cluster.py +28 -0
  14. pulumi_oci/databasemanagement/external_cluster_instance.py +28 -0
  15. pulumi_oci/databasemanagement/external_db_home.py +28 -0
  16. pulumi_oci/databasemanagement/external_db_node.py +28 -0
  17. pulumi_oci/databasemanagement/external_db_system.py +28 -0
  18. pulumi_oci/databasemanagement/external_db_system_connector.py +28 -0
  19. pulumi_oci/databasemanagement/external_db_system_discovery.py +28 -0
  20. pulumi_oci/databasemanagement/external_exadata_infrastructure.py +28 -0
  21. pulumi_oci/databasemanagement/external_exadata_storage_connector.py +28 -0
  22. pulumi_oci/databasemanagement/external_exadata_storage_grid.py +28 -0
  23. pulumi_oci/databasemanagement/external_exadata_storage_server.py +28 -0
  24. pulumi_oci/databasemanagement/external_listener.py +28 -0
  25. pulumi_oci/databasemanagement/externalcontainerdatabase_external_container_dbm_features_management.py +275 -0
  26. pulumi_oci/databasemanagement/externalnoncontainerdatabase_external_non_container_dbm_features_management.py +275 -0
  27. pulumi_oci/databasemanagement/externalpluggabledatabase_external_pluggable_dbm_features_management.py +275 -0
  28. pulumi_oci/databasemanagement/get_db_management_private_endpoint.py +14 -1
  29. pulumi_oci/databasemanagement/get_external_asm.py +14 -1
  30. pulumi_oci/databasemanagement/get_external_asm_instance.py +14 -1
  31. pulumi_oci/databasemanagement/get_external_cluster.py +14 -1
  32. pulumi_oci/databasemanagement/get_external_cluster_instance.py +14 -1
  33. pulumi_oci/databasemanagement/get_external_databases.py +18 -1
  34. pulumi_oci/databasemanagement/get_external_db_home.py +14 -1
  35. pulumi_oci/databasemanagement/get_external_db_node.py +14 -1
  36. pulumi_oci/databasemanagement/get_external_db_system.py +14 -1
  37. pulumi_oci/databasemanagement/get_external_db_system_connector.py +14 -1
  38. pulumi_oci/databasemanagement/get_external_db_system_discovery.py +14 -1
  39. pulumi_oci/databasemanagement/get_external_exadata_infrastructure.py +14 -1
  40. pulumi_oci/databasemanagement/get_external_exadata_storage_connector.py +14 -1
  41. pulumi_oci/databasemanagement/get_external_exadata_storage_grid.py +14 -1
  42. pulumi_oci/databasemanagement/get_external_exadata_storage_server.py +14 -1
  43. pulumi_oci/databasemanagement/get_external_listener.py +14 -1
  44. pulumi_oci/databasemanagement/get_managed_database_group.py +14 -1
  45. pulumi_oci/databasemanagement/get_managed_my_sql_database.py +6 -6
  46. pulumi_oci/databasemanagement/get_named_credential.py +14 -1
  47. pulumi_oci/databasemanagement/managed_database.py +28 -0
  48. pulumi_oci/databasemanagement/managed_database_group.py +28 -0
  49. pulumi_oci/databasemanagement/named_credential.py +28 -0
  50. pulumi_oci/databasemanagement/outputs.py +1723 -214
  51. pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py +275 -0
  52. pulumi_oci/datasafe/__init__.py +3 -0
  53. pulumi_oci/datasafe/_inputs.py +80 -0
  54. pulumi_oci/datasafe/get_masking_policy.py +11 -1
  55. pulumi_oci/datasafe/get_masking_policy_health_report.py +235 -0
  56. pulumi_oci/datasafe/get_masking_policy_health_report_logs.py +153 -0
  57. pulumi_oci/datasafe/get_masking_policy_health_reports.py +267 -0
  58. pulumi_oci/datasafe/masking_policy.py +75 -28
  59. pulumi_oci/datasafe/outputs.py +287 -0
  60. pulumi_oci/provider.py +8 -8
  61. pulumi_oci/recoverymod/_inputs.py +16 -0
  62. pulumi_oci/recoverymod/get_protected_database.py +25 -5
  63. pulumi_oci/recoverymod/get_protection_policies.py +1 -7
  64. pulumi_oci/recoverymod/get_protection_policy.py +15 -8
  65. pulumi_oci/recoverymod/get_recovery_service_subnet.py +32 -9
  66. pulumi_oci/recoverymod/get_recovery_service_subnets.py +3 -21
  67. pulumi_oci/recoverymod/outputs.py +96 -24
  68. pulumi_oci/recoverymod/protected_database.py +95 -16
  69. pulumi_oci/recoverymod/protection_policy.py +121 -54
  70. pulumi_oci/recoverymod/recovery_service_subnet.py +143 -55
  71. {pulumi_oci-1.34.0a1714544127.dist-info → pulumi_oci-1.34.0a1714766740.dist-info}/METADATA +1 -1
  72. {pulumi_oci-1.34.0a1714544127.dist-info → pulumi_oci-1.34.0a1714766740.dist-info}/RECORD +74 -66
  73. {pulumi_oci-1.34.0a1714544127.dist-info → pulumi_oci-1.34.0a1714766740.dist-info}/WHEEL +0 -0
  74. {pulumi_oci-1.34.0a1714544127.dist-info → pulumi_oci-1.34.0a1714766740.dist-info}/top_level.txt +0 -0
@@ -11,6 +11,11 @@ from .. import _utilities
11
11
  from . import outputs
12
12
 
13
13
  __all__ = [
14
+ 'DatabaseDbmFeaturesManagementFeatureDetails',
15
+ 'DatabaseDbmFeaturesManagementFeatureDetailsConnectorDetails',
16
+ 'DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetails',
17
+ 'DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionCredentials',
18
+ 'DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionString',
14
19
  'ExternalAsmServicedDatabase',
15
20
  'ExternalClusterNetworkConfiguration',
16
21
  'ExternalClusterScanConfiguration',
@@ -59,6 +64,12 @@ __all__ = [
59
64
  'ExternalListenerEndpoint',
60
65
  'ExternalListenerServicedAsm',
61
66
  'ExternalListenerServicedDatabase',
67
+ 'ExternalcontainerdatabaseExternalContainerDbmFeaturesManagementFeatureDetails',
68
+ 'ExternalcontainerdatabaseExternalContainerDbmFeaturesManagementFeatureDetailsConnectorDetails',
69
+ 'ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementFeatureDetails',
70
+ 'ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementFeatureDetailsConnectorDetails',
71
+ 'ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetails',
72
+ 'ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetailsConnectorDetails',
62
73
  'ManagedDatabaseGroupManagedDatabase',
63
74
  'ManagedDatabaseManagedDatabaseGroup',
64
75
  'ManagedDatabasesChangeDatabaseParameterCredentials',
@@ -67,6 +78,11 @@ __all__ = [
67
78
  'ManagedDatabasesResetDatabaseParameterCredentials',
68
79
  'ManagedDatabasesResetDatabaseParameterDatabaseCredential',
69
80
  'NamedCredentialContent',
81
+ 'PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetails',
82
+ 'PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsConnectorDetails',
83
+ 'PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetails',
84
+ 'PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionCredentials',
85
+ 'PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionString',
70
86
  'GetDbManagementPrivateEndpointAssociatedDatabaseItemResult',
71
87
  'GetDbManagementPrivateEndpointAssociatedDatabasesAssociatedDatabaseCollectionResult',
72
88
  'GetDbManagementPrivateEndpointAssociatedDatabasesAssociatedDatabaseCollectionItemResult',
@@ -386,6 +402,411 @@ __all__ = [
386
402
  'GetNamedCredentialsNamedCredentialCollectionItemContentResult',
387
403
  ]
388
404
 
405
+ @pulumi.output_type
406
+ class DatabaseDbmFeaturesManagementFeatureDetails(dict):
407
+ @staticmethod
408
+ def __key_warning(key: str):
409
+ suggest = None
410
+ if key == "connectorDetails":
411
+ suggest = "connector_details"
412
+ elif key == "databaseConnectionDetails":
413
+ suggest = "database_connection_details"
414
+ elif key == "isAutoEnablePluggableDatabase":
415
+ suggest = "is_auto_enable_pluggable_database"
416
+ elif key == "managementType":
417
+ suggest = "management_type"
418
+
419
+ if suggest:
420
+ pulumi.log.warn(f"Key '{key}' not found in DatabaseDbmFeaturesManagementFeatureDetails. Access the value via the '{suggest}' property getter instead.")
421
+
422
+ def __getitem__(self, key: str) -> Any:
423
+ DatabaseDbmFeaturesManagementFeatureDetails.__key_warning(key)
424
+ return super().__getitem__(key)
425
+
426
+ def get(self, key: str, default = None) -> Any:
427
+ DatabaseDbmFeaturesManagementFeatureDetails.__key_warning(key)
428
+ return super().get(key, default)
429
+
430
+ def __init__(__self__, *,
431
+ feature: str,
432
+ connector_details: Optional['outputs.DatabaseDbmFeaturesManagementFeatureDetailsConnectorDetails'] = None,
433
+ database_connection_details: Optional['outputs.DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetails'] = None,
434
+ is_auto_enable_pluggable_database: Optional[bool] = None,
435
+ management_type: Optional[str] = None):
436
+ """
437
+ :param str feature: The name of the Database Management feature.
438
+ :param 'DatabaseDbmFeaturesManagementFeatureDetailsConnectorDetailsArgs' connector_details: The connector details required to connect to an Oracle cloud database.
439
+ :param 'DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsArgs' database_connection_details: The connection details required to connect to the database.
440
+ :param bool is_auto_enable_pluggable_database: Indicates whether the pluggable database can be enabled automatically.
441
+ :param str management_type: The management type for the database.
442
+ """
443
+ pulumi.set(__self__, "feature", feature)
444
+ if connector_details is not None:
445
+ pulumi.set(__self__, "connector_details", connector_details)
446
+ if database_connection_details is not None:
447
+ pulumi.set(__self__, "database_connection_details", database_connection_details)
448
+ if is_auto_enable_pluggable_database is not None:
449
+ pulumi.set(__self__, "is_auto_enable_pluggable_database", is_auto_enable_pluggable_database)
450
+ if management_type is not None:
451
+ pulumi.set(__self__, "management_type", management_type)
452
+
453
+ @property
454
+ @pulumi.getter
455
+ def feature(self) -> str:
456
+ """
457
+ The name of the Database Management feature.
458
+ """
459
+ return pulumi.get(self, "feature")
460
+
461
+ @property
462
+ @pulumi.getter(name="connectorDetails")
463
+ def connector_details(self) -> Optional['outputs.DatabaseDbmFeaturesManagementFeatureDetailsConnectorDetails']:
464
+ """
465
+ The connector details required to connect to an Oracle cloud database.
466
+ """
467
+ return pulumi.get(self, "connector_details")
468
+
469
+ @property
470
+ @pulumi.getter(name="databaseConnectionDetails")
471
+ def database_connection_details(self) -> Optional['outputs.DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetails']:
472
+ """
473
+ The connection details required to connect to the database.
474
+ """
475
+ return pulumi.get(self, "database_connection_details")
476
+
477
+ @property
478
+ @pulumi.getter(name="isAutoEnablePluggableDatabase")
479
+ def is_auto_enable_pluggable_database(self) -> Optional[bool]:
480
+ """
481
+ Indicates whether the pluggable database can be enabled automatically.
482
+ """
483
+ return pulumi.get(self, "is_auto_enable_pluggable_database")
484
+
485
+ @property
486
+ @pulumi.getter(name="managementType")
487
+ def management_type(self) -> Optional[str]:
488
+ """
489
+ The management type for the database.
490
+ """
491
+ return pulumi.get(self, "management_type")
492
+
493
+
494
+ @pulumi.output_type
495
+ class DatabaseDbmFeaturesManagementFeatureDetailsConnectorDetails(dict):
496
+ @staticmethod
497
+ def __key_warning(key: str):
498
+ suggest = None
499
+ if key == "connectorType":
500
+ suggest = "connector_type"
501
+ elif key == "databaseConnectorId":
502
+ suggest = "database_connector_id"
503
+ elif key == "managementAgentId":
504
+ suggest = "management_agent_id"
505
+ elif key == "privateEndPointId":
506
+ suggest = "private_end_point_id"
507
+
508
+ if suggest:
509
+ pulumi.log.warn(f"Key '{key}' not found in DatabaseDbmFeaturesManagementFeatureDetailsConnectorDetails. Access the value via the '{suggest}' property getter instead.")
510
+
511
+ def __getitem__(self, key: str) -> Any:
512
+ DatabaseDbmFeaturesManagementFeatureDetailsConnectorDetails.__key_warning(key)
513
+ return super().__getitem__(key)
514
+
515
+ def get(self, key: str, default = None) -> Any:
516
+ DatabaseDbmFeaturesManagementFeatureDetailsConnectorDetails.__key_warning(key)
517
+ return super().get(key, default)
518
+
519
+ def __init__(__self__, *,
520
+ connector_type: Optional[str] = None,
521
+ database_connector_id: Optional[str] = None,
522
+ management_agent_id: Optional[str] = None,
523
+ private_end_point_id: Optional[str] = None):
524
+ """
525
+ :param str connector_type: The list of supported connection types:
526
+ * PE: Private endpoint
527
+ * MACS: Management agent
528
+ * EXTERNAL: External database connector
529
+ :param str database_connector_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external database connector.
530
+ :param str management_agent_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management agent.
531
+ :param str private_end_point_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private endpoint.
532
+ """
533
+ if connector_type is not None:
534
+ pulumi.set(__self__, "connector_type", connector_type)
535
+ if database_connector_id is not None:
536
+ pulumi.set(__self__, "database_connector_id", database_connector_id)
537
+ if management_agent_id is not None:
538
+ pulumi.set(__self__, "management_agent_id", management_agent_id)
539
+ if private_end_point_id is not None:
540
+ pulumi.set(__self__, "private_end_point_id", private_end_point_id)
541
+
542
+ @property
543
+ @pulumi.getter(name="connectorType")
544
+ def connector_type(self) -> Optional[str]:
545
+ """
546
+ The list of supported connection types:
547
+ * PE: Private endpoint
548
+ * MACS: Management agent
549
+ * EXTERNAL: External database connector
550
+ """
551
+ return pulumi.get(self, "connector_type")
552
+
553
+ @property
554
+ @pulumi.getter(name="databaseConnectorId")
555
+ def database_connector_id(self) -> Optional[str]:
556
+ """
557
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external database connector.
558
+ """
559
+ return pulumi.get(self, "database_connector_id")
560
+
561
+ @property
562
+ @pulumi.getter(name="managementAgentId")
563
+ def management_agent_id(self) -> Optional[str]:
564
+ """
565
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management agent.
566
+ """
567
+ return pulumi.get(self, "management_agent_id")
568
+
569
+ @property
570
+ @pulumi.getter(name="privateEndPointId")
571
+ def private_end_point_id(self) -> Optional[str]:
572
+ """
573
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private endpoint.
574
+ """
575
+ return pulumi.get(self, "private_end_point_id")
576
+
577
+
578
+ @pulumi.output_type
579
+ class DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetails(dict):
580
+ @staticmethod
581
+ def __key_warning(key: str):
582
+ suggest = None
583
+ if key == "connectionCredentials":
584
+ suggest = "connection_credentials"
585
+ elif key == "connectionString":
586
+ suggest = "connection_string"
587
+
588
+ if suggest:
589
+ pulumi.log.warn(f"Key '{key}' not found in DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetails. Access the value via the '{suggest}' property getter instead.")
590
+
591
+ def __getitem__(self, key: str) -> Any:
592
+ DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetails.__key_warning(key)
593
+ return super().__getitem__(key)
594
+
595
+ def get(self, key: str, default = None) -> Any:
596
+ DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetails.__key_warning(key)
597
+ return super().get(key, default)
598
+
599
+ def __init__(__self__, *,
600
+ connection_credentials: Optional['outputs.DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionCredentials'] = None,
601
+ connection_string: Optional['outputs.DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionString'] = None):
602
+ """
603
+ :param 'DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionCredentialsArgs' connection_credentials: The credentials used to connect to the database. Currently only the `DETAILS` type is supported for creating MACS connector credentials.
604
+ :param 'DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionStringArgs' connection_string: The details of the Oracle Database connection string.
605
+ """
606
+ if connection_credentials is not None:
607
+ pulumi.set(__self__, "connection_credentials", connection_credentials)
608
+ if connection_string is not None:
609
+ pulumi.set(__self__, "connection_string", connection_string)
610
+
611
+ @property
612
+ @pulumi.getter(name="connectionCredentials")
613
+ def connection_credentials(self) -> Optional['outputs.DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionCredentials']:
614
+ """
615
+ The credentials used to connect to the database. Currently only the `DETAILS` type is supported for creating MACS connector credentials.
616
+ """
617
+ return pulumi.get(self, "connection_credentials")
618
+
619
+ @property
620
+ @pulumi.getter(name="connectionString")
621
+ def connection_string(self) -> Optional['outputs.DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionString']:
622
+ """
623
+ The details of the Oracle Database connection string.
624
+ """
625
+ return pulumi.get(self, "connection_string")
626
+
627
+
628
+ @pulumi.output_type
629
+ class DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionCredentials(dict):
630
+ @staticmethod
631
+ def __key_warning(key: str):
632
+ suggest = None
633
+ if key == "credentialName":
634
+ suggest = "credential_name"
635
+ elif key == "credentialType":
636
+ suggest = "credential_type"
637
+ elif key == "passwordSecretId":
638
+ suggest = "password_secret_id"
639
+ elif key == "sslSecretId":
640
+ suggest = "ssl_secret_id"
641
+ elif key == "userName":
642
+ suggest = "user_name"
643
+
644
+ if suggest:
645
+ pulumi.log.warn(f"Key '{key}' not found in DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionCredentials. Access the value via the '{suggest}' property getter instead.")
646
+
647
+ def __getitem__(self, key: str) -> Any:
648
+ DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionCredentials.__key_warning(key)
649
+ return super().__getitem__(key)
650
+
651
+ def get(self, key: str, default = None) -> Any:
652
+ DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionCredentials.__key_warning(key)
653
+ return super().get(key, default)
654
+
655
+ def __init__(__self__, *,
656
+ credential_name: Optional[str] = None,
657
+ credential_type: Optional[str] = None,
658
+ password_secret_id: Optional[str] = None,
659
+ role: Optional[str] = None,
660
+ ssl_secret_id: Optional[str] = None,
661
+ user_name: Optional[str] = None):
662
+ """
663
+ :param str credential_name: The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. *IMPORTANT* - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
664
+
665
+ For example: inventorydb.abc112233445566778899
666
+ :param str credential_type: The type of credential used to connect to the database.
667
+ :param str password_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret containing the user password.
668
+ :param str role: The role of the user connecting to the database.
669
+ :param str ssl_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret containing the SSL keystore and truststore details.
670
+ :param str user_name: The user name used to connect to the database.
671
+ """
672
+ if credential_name is not None:
673
+ pulumi.set(__self__, "credential_name", credential_name)
674
+ if credential_type is not None:
675
+ pulumi.set(__self__, "credential_type", credential_type)
676
+ if password_secret_id is not None:
677
+ pulumi.set(__self__, "password_secret_id", password_secret_id)
678
+ if role is not None:
679
+ pulumi.set(__self__, "role", role)
680
+ if ssl_secret_id is not None:
681
+ pulumi.set(__self__, "ssl_secret_id", ssl_secret_id)
682
+ if user_name is not None:
683
+ pulumi.set(__self__, "user_name", user_name)
684
+
685
+ @property
686
+ @pulumi.getter(name="credentialName")
687
+ def credential_name(self) -> Optional[str]:
688
+ """
689
+ The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. *IMPORTANT* - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
690
+
691
+ For example: inventorydb.abc112233445566778899
692
+ """
693
+ return pulumi.get(self, "credential_name")
694
+
695
+ @property
696
+ @pulumi.getter(name="credentialType")
697
+ def credential_type(self) -> Optional[str]:
698
+ """
699
+ The type of credential used to connect to the database.
700
+ """
701
+ return pulumi.get(self, "credential_type")
702
+
703
+ @property
704
+ @pulumi.getter(name="passwordSecretId")
705
+ def password_secret_id(self) -> Optional[str]:
706
+ """
707
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret containing the user password.
708
+ """
709
+ return pulumi.get(self, "password_secret_id")
710
+
711
+ @property
712
+ @pulumi.getter
713
+ def role(self) -> Optional[str]:
714
+ """
715
+ The role of the user connecting to the database.
716
+ """
717
+ return pulumi.get(self, "role")
718
+
719
+ @property
720
+ @pulumi.getter(name="sslSecretId")
721
+ def ssl_secret_id(self) -> Optional[str]:
722
+ """
723
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret containing the SSL keystore and truststore details.
724
+ """
725
+ return pulumi.get(self, "ssl_secret_id")
726
+
727
+ @property
728
+ @pulumi.getter(name="userName")
729
+ def user_name(self) -> Optional[str]:
730
+ """
731
+ The user name used to connect to the database.
732
+ """
733
+ return pulumi.get(self, "user_name")
734
+
735
+
736
+ @pulumi.output_type
737
+ class DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionString(dict):
738
+ @staticmethod
739
+ def __key_warning(key: str):
740
+ suggest = None
741
+ if key == "connectionType":
742
+ suggest = "connection_type"
743
+
744
+ if suggest:
745
+ pulumi.log.warn(f"Key '{key}' not found in DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionString. Access the value via the '{suggest}' property getter instead.")
746
+
747
+ def __getitem__(self, key: str) -> Any:
748
+ DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionString.__key_warning(key)
749
+ return super().__getitem__(key)
750
+
751
+ def get(self, key: str, default = None) -> Any:
752
+ DatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionString.__key_warning(key)
753
+ return super().get(key, default)
754
+
755
+ def __init__(__self__, *,
756
+ connection_type: Optional[str] = None,
757
+ port: Optional[int] = None,
758
+ protocol: Optional[str] = None,
759
+ service: Optional[str] = None):
760
+ """
761
+ :param str connection_type: The list of supported connection types:
762
+ * BASIC: Basic connection details
763
+ :param int port: The port number used to connect to the database.
764
+ :param str protocol: The protocol used to connect to the database.
765
+ :param str service: The service name of the database.
766
+ """
767
+ if connection_type is not None:
768
+ pulumi.set(__self__, "connection_type", connection_type)
769
+ if port is not None:
770
+ pulumi.set(__self__, "port", port)
771
+ if protocol is not None:
772
+ pulumi.set(__self__, "protocol", protocol)
773
+ if service is not None:
774
+ pulumi.set(__self__, "service", service)
775
+
776
+ @property
777
+ @pulumi.getter(name="connectionType")
778
+ def connection_type(self) -> Optional[str]:
779
+ """
780
+ The list of supported connection types:
781
+ * BASIC: Basic connection details
782
+ """
783
+ return pulumi.get(self, "connection_type")
784
+
785
+ @property
786
+ @pulumi.getter
787
+ def port(self) -> Optional[int]:
788
+ """
789
+ The port number used to connect to the database.
790
+ """
791
+ return pulumi.get(self, "port")
792
+
793
+ @property
794
+ @pulumi.getter
795
+ def protocol(self) -> Optional[str]:
796
+ """
797
+ The protocol used to connect to the database.
798
+ """
799
+ return pulumi.get(self, "protocol")
800
+
801
+ @property
802
+ @pulumi.getter
803
+ def service(self) -> Optional[str]:
804
+ """
805
+ The service name of the database.
806
+ """
807
+ return pulumi.get(self, "service")
808
+
809
+
389
810
  @pulumi.output_type
390
811
  class ExternalAsmServicedDatabase(dict):
391
812
  @staticmethod
@@ -4794,6 +5215,8 @@ class ExternalExadataStorageGridStorageServer(dict):
4794
5215
  suggest = "memory_gb"
4795
5216
  elif key == "resourceType":
4796
5217
  suggest = "resource_type"
5218
+ elif key == "systemTags":
5219
+ suggest = "system_tags"
4797
5220
  elif key == "timeCreated":
4798
5221
  suggest = "time_created"
4799
5222
  elif key == "timeUpdated":
@@ -4830,6 +5253,7 @@ class ExternalExadataStorageGridStorageServer(dict):
4830
5253
  resource_type: Optional[str] = None,
4831
5254
  state: Optional[str] = None,
4832
5255
  status: Optional[str] = None,
5256
+ system_tags: Optional[Mapping[str, Any]] = None,
4833
5257
  time_created: Optional[str] = None,
4834
5258
  time_updated: Optional[str] = None,
4835
5259
  version: Optional[str] = None):
@@ -4857,6 +5281,7 @@ class ExternalExadataStorageGridStorageServer(dict):
4857
5281
  :param str resource_type: The type of Exadata resource.
4858
5282
  :param str state: The current lifecycle state of the database resource.
4859
5283
  :param str status: The status of the Exadata resource.
5284
+ :param Mapping[str, Any] system_tags: System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
4860
5285
  :param str time_created: The timestamp of the creation of the Exadata resource.
4861
5286
  :param str time_updated: The timestamp of the last update of the Exadata resource.
4862
5287
  :param str version: The version of the Exadata resource.
@@ -4899,6 +5324,8 @@ class ExternalExadataStorageGridStorageServer(dict):
4899
5324
  pulumi.set(__self__, "state", state)
4900
5325
  if status is not None:
4901
5326
  pulumi.set(__self__, "status", status)
5327
+ if system_tags is not None:
5328
+ pulumi.set(__self__, "system_tags", system_tags)
4902
5329
  if time_created is not None:
4903
5330
  pulumi.set(__self__, "time_created", time_created)
4904
5331
  if time_updated is not None:
@@ -5062,6 +5489,14 @@ class ExternalExadataStorageGridStorageServer(dict):
5062
5489
  """
5063
5490
  return pulumi.get(self, "status")
5064
5491
 
5492
+ @property
5493
+ @pulumi.getter(name="systemTags")
5494
+ def system_tags(self) -> Optional[Mapping[str, Any]]:
5495
+ """
5496
+ System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
5497
+ """
5498
+ return pulumi.get(self, "system_tags")
5499
+
5065
5500
  @property
5066
5501
  @pulumi.getter(name="timeCreated")
5067
5502
  def time_created(self) -> Optional[str]:
@@ -5112,6 +5547,8 @@ class ExternalExadataStorageServerConnector(dict):
5112
5547
  suggest = "resource_type"
5113
5548
  elif key == "storageServerId":
5114
5549
  suggest = "storage_server_id"
5550
+ elif key == "systemTags":
5551
+ suggest = "system_tags"
5115
5552
  elif key == "timeCreated":
5116
5553
  suggest = "time_created"
5117
5554
  elif key == "timeUpdated":
@@ -5142,6 +5579,7 @@ class ExternalExadataStorageServerConnector(dict):
5142
5579
  state: Optional[str] = None,
5143
5580
  status: Optional[str] = None,
5144
5581
  storage_server_id: Optional[str] = None,
5582
+ system_tags: Optional[Mapping[str, Any]] = None,
5145
5583
  time_created: Optional[str] = None,
5146
5584
  time_updated: Optional[str] = None,
5147
5585
  version: Optional[str] = None):
@@ -5163,6 +5601,7 @@ class ExternalExadataStorageServerConnector(dict):
5163
5601
  :param str state: The current lifecycle state of the database resource.
5164
5602
  :param str status: The status of the Exadata resource.
5165
5603
  :param str storage_server_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata storage server.
5604
+ :param Mapping[str, Any] system_tags: System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
5166
5605
  :param str time_created: The timestamp of the creation of the Exadata resource.
5167
5606
  :param str time_updated: The timestamp of the last update of the Exadata resource.
5168
5607
  :param str version: The version of the Exadata resource.
@@ -5193,6 +5632,8 @@ class ExternalExadataStorageServerConnector(dict):
5193
5632
  pulumi.set(__self__, "status", status)
5194
5633
  if storage_server_id is not None:
5195
5634
  pulumi.set(__self__, "storage_server_id", storage_server_id)
5635
+ if system_tags is not None:
5636
+ pulumi.set(__self__, "system_tags", system_tags)
5196
5637
  if time_created is not None:
5197
5638
  pulumi.set(__self__, "time_created", time_created)
5198
5639
  if time_updated is not None:
@@ -5308,6 +5749,14 @@ class ExternalExadataStorageServerConnector(dict):
5308
5749
  """
5309
5750
  return pulumi.get(self, "storage_server_id")
5310
5751
 
5752
+ @property
5753
+ @pulumi.getter(name="systemTags")
5754
+ def system_tags(self) -> Optional[Mapping[str, Any]]:
5755
+ """
5756
+ System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
5757
+ """
5758
+ return pulumi.get(self, "system_tags")
5759
+
5311
5760
  @property
5312
5761
  @pulumi.getter(name="timeCreated")
5313
5762
  def time_created(self) -> Optional[str]:
@@ -5551,33 +6000,454 @@ class ExternalListenerServicedDatabase(dict):
5551
6000
  @pulumi.getter(name="dbUniqueName")
5552
6001
  def db_unique_name(self) -> Optional[str]:
5553
6002
  """
5554
- The unique name of the external database.
6003
+ The unique name of the external database.
6004
+ """
6005
+ return pulumi.get(self, "db_unique_name")
6006
+
6007
+ @property
6008
+ @pulumi.getter(name="displayName")
6009
+ def display_name(self) -> Optional[str]:
6010
+ """
6011
+ The user-friendly name for the database. The name does not have to be unique.
6012
+ """
6013
+ return pulumi.get(self, "display_name")
6014
+
6015
+ @property
6016
+ @pulumi.getter
6017
+ def id(self) -> Optional[str]:
6018
+ """
6019
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external database.
6020
+ """
6021
+ return pulumi.get(self, "id")
6022
+
6023
+ @property
6024
+ @pulumi.getter(name="isManaged")
6025
+ def is_managed(self) -> Optional[bool]:
6026
+ """
6027
+ Indicates whether the database is a Managed Database or not.
6028
+ """
6029
+ return pulumi.get(self, "is_managed")
6030
+
6031
+
6032
+ @pulumi.output_type
6033
+ class ExternalcontainerdatabaseExternalContainerDbmFeaturesManagementFeatureDetails(dict):
6034
+ @staticmethod
6035
+ def __key_warning(key: str):
6036
+ suggest = None
6037
+ if key == "connectorDetails":
6038
+ suggest = "connector_details"
6039
+ elif key == "licenseModel":
6040
+ suggest = "license_model"
6041
+
6042
+ if suggest:
6043
+ pulumi.log.warn(f"Key '{key}' not found in ExternalcontainerdatabaseExternalContainerDbmFeaturesManagementFeatureDetails. Access the value via the '{suggest}' property getter instead.")
6044
+
6045
+ def __getitem__(self, key: str) -> Any:
6046
+ ExternalcontainerdatabaseExternalContainerDbmFeaturesManagementFeatureDetails.__key_warning(key)
6047
+ return super().__getitem__(key)
6048
+
6049
+ def get(self, key: str, default = None) -> Any:
6050
+ ExternalcontainerdatabaseExternalContainerDbmFeaturesManagementFeatureDetails.__key_warning(key)
6051
+ return super().get(key, default)
6052
+
6053
+ def __init__(__self__, *,
6054
+ feature: str,
6055
+ connector_details: Optional['outputs.ExternalcontainerdatabaseExternalContainerDbmFeaturesManagementFeatureDetailsConnectorDetails'] = None,
6056
+ license_model: Optional[str] = None):
6057
+ """
6058
+ :param str feature: The name of the Database Management feature.
6059
+ :param 'ExternalcontainerdatabaseExternalContainerDbmFeaturesManagementFeatureDetailsConnectorDetailsArgs' connector_details: The connector details required to connect to an Oracle cloud database.
6060
+ :param str license_model: The Oracle license model that applies to the external database.
6061
+ """
6062
+ pulumi.set(__self__, "feature", feature)
6063
+ if connector_details is not None:
6064
+ pulumi.set(__self__, "connector_details", connector_details)
6065
+ if license_model is not None:
6066
+ pulumi.set(__self__, "license_model", license_model)
6067
+
6068
+ @property
6069
+ @pulumi.getter
6070
+ def feature(self) -> str:
6071
+ """
6072
+ The name of the Database Management feature.
6073
+ """
6074
+ return pulumi.get(self, "feature")
6075
+
6076
+ @property
6077
+ @pulumi.getter(name="connectorDetails")
6078
+ def connector_details(self) -> Optional['outputs.ExternalcontainerdatabaseExternalContainerDbmFeaturesManagementFeatureDetailsConnectorDetails']:
6079
+ """
6080
+ The connector details required to connect to an Oracle cloud database.
6081
+ """
6082
+ return pulumi.get(self, "connector_details")
6083
+
6084
+ @property
6085
+ @pulumi.getter(name="licenseModel")
6086
+ def license_model(self) -> Optional[str]:
6087
+ """
6088
+ The Oracle license model that applies to the external database.
6089
+ """
6090
+ return pulumi.get(self, "license_model")
6091
+
6092
+
6093
+ @pulumi.output_type
6094
+ class ExternalcontainerdatabaseExternalContainerDbmFeaturesManagementFeatureDetailsConnectorDetails(dict):
6095
+ @staticmethod
6096
+ def __key_warning(key: str):
6097
+ suggest = None
6098
+ if key == "connectorType":
6099
+ suggest = "connector_type"
6100
+ elif key == "databaseConnectorId":
6101
+ suggest = "database_connector_id"
6102
+ elif key == "managementAgentId":
6103
+ suggest = "management_agent_id"
6104
+ elif key == "privateEndPointId":
6105
+ suggest = "private_end_point_id"
6106
+
6107
+ if suggest:
6108
+ pulumi.log.warn(f"Key '{key}' not found in ExternalcontainerdatabaseExternalContainerDbmFeaturesManagementFeatureDetailsConnectorDetails. Access the value via the '{suggest}' property getter instead.")
6109
+
6110
+ def __getitem__(self, key: str) -> Any:
6111
+ ExternalcontainerdatabaseExternalContainerDbmFeaturesManagementFeatureDetailsConnectorDetails.__key_warning(key)
6112
+ return super().__getitem__(key)
6113
+
6114
+ def get(self, key: str, default = None) -> Any:
6115
+ ExternalcontainerdatabaseExternalContainerDbmFeaturesManagementFeatureDetailsConnectorDetails.__key_warning(key)
6116
+ return super().get(key, default)
6117
+
6118
+ def __init__(__self__, *,
6119
+ connector_type: Optional[str] = None,
6120
+ database_connector_id: Optional[str] = None,
6121
+ management_agent_id: Optional[str] = None,
6122
+ private_end_point_id: Optional[str] = None):
6123
+ """
6124
+ :param str connector_type: The list of supported connection types:
6125
+ * PE: Private endpoint
6126
+ * MACS: Management agent
6127
+ * EXTERNAL: External database connector
6128
+ :param str database_connector_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external database connector.
6129
+ :param str management_agent_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management agent.
6130
+ :param str private_end_point_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private endpoint.
6131
+ """
6132
+ if connector_type is not None:
6133
+ pulumi.set(__self__, "connector_type", connector_type)
6134
+ if database_connector_id is not None:
6135
+ pulumi.set(__self__, "database_connector_id", database_connector_id)
6136
+ if management_agent_id is not None:
6137
+ pulumi.set(__self__, "management_agent_id", management_agent_id)
6138
+ if private_end_point_id is not None:
6139
+ pulumi.set(__self__, "private_end_point_id", private_end_point_id)
6140
+
6141
+ @property
6142
+ @pulumi.getter(name="connectorType")
6143
+ def connector_type(self) -> Optional[str]:
6144
+ """
6145
+ The list of supported connection types:
6146
+ * PE: Private endpoint
6147
+ * MACS: Management agent
6148
+ * EXTERNAL: External database connector
6149
+ """
6150
+ return pulumi.get(self, "connector_type")
6151
+
6152
+ @property
6153
+ @pulumi.getter(name="databaseConnectorId")
6154
+ def database_connector_id(self) -> Optional[str]:
6155
+ """
6156
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external database connector.
6157
+ """
6158
+ return pulumi.get(self, "database_connector_id")
6159
+
6160
+ @property
6161
+ @pulumi.getter(name="managementAgentId")
6162
+ def management_agent_id(self) -> Optional[str]:
6163
+ """
6164
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management agent.
6165
+ """
6166
+ return pulumi.get(self, "management_agent_id")
6167
+
6168
+ @property
6169
+ @pulumi.getter(name="privateEndPointId")
6170
+ def private_end_point_id(self) -> Optional[str]:
6171
+ """
6172
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private endpoint.
6173
+ """
6174
+ return pulumi.get(self, "private_end_point_id")
6175
+
6176
+
6177
+ @pulumi.output_type
6178
+ class ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementFeatureDetails(dict):
6179
+ @staticmethod
6180
+ def __key_warning(key: str):
6181
+ suggest = None
6182
+ if key == "connectorDetails":
6183
+ suggest = "connector_details"
6184
+ elif key == "licenseModel":
6185
+ suggest = "license_model"
6186
+
6187
+ if suggest:
6188
+ pulumi.log.warn(f"Key '{key}' not found in ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementFeatureDetails. Access the value via the '{suggest}' property getter instead.")
6189
+
6190
+ def __getitem__(self, key: str) -> Any:
6191
+ ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementFeatureDetails.__key_warning(key)
6192
+ return super().__getitem__(key)
6193
+
6194
+ def get(self, key: str, default = None) -> Any:
6195
+ ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementFeatureDetails.__key_warning(key)
6196
+ return super().get(key, default)
6197
+
6198
+ def __init__(__self__, *,
6199
+ feature: str,
6200
+ connector_details: Optional['outputs.ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementFeatureDetailsConnectorDetails'] = None,
6201
+ license_model: Optional[str] = None):
6202
+ """
6203
+ :param str feature: The name of the Database Management feature.
6204
+ :param 'ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementFeatureDetailsConnectorDetailsArgs' connector_details: The connector details required to connect to an Oracle cloud database.
6205
+ :param str license_model: The Oracle license model that applies to the external database.
6206
+ """
6207
+ pulumi.set(__self__, "feature", feature)
6208
+ if connector_details is not None:
6209
+ pulumi.set(__self__, "connector_details", connector_details)
6210
+ if license_model is not None:
6211
+ pulumi.set(__self__, "license_model", license_model)
6212
+
6213
+ @property
6214
+ @pulumi.getter
6215
+ def feature(self) -> str:
6216
+ """
6217
+ The name of the Database Management feature.
6218
+ """
6219
+ return pulumi.get(self, "feature")
6220
+
6221
+ @property
6222
+ @pulumi.getter(name="connectorDetails")
6223
+ def connector_details(self) -> Optional['outputs.ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementFeatureDetailsConnectorDetails']:
6224
+ """
6225
+ The connector details required to connect to an Oracle cloud database.
6226
+ """
6227
+ return pulumi.get(self, "connector_details")
6228
+
6229
+ @property
6230
+ @pulumi.getter(name="licenseModel")
6231
+ def license_model(self) -> Optional[str]:
6232
+ """
6233
+ The Oracle license model that applies to the external database.
6234
+ """
6235
+ return pulumi.get(self, "license_model")
6236
+
6237
+
6238
+ @pulumi.output_type
6239
+ class ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementFeatureDetailsConnectorDetails(dict):
6240
+ @staticmethod
6241
+ def __key_warning(key: str):
6242
+ suggest = None
6243
+ if key == "connectorType":
6244
+ suggest = "connector_type"
6245
+ elif key == "databaseConnectorId":
6246
+ suggest = "database_connector_id"
6247
+ elif key == "managementAgentId":
6248
+ suggest = "management_agent_id"
6249
+ elif key == "privateEndPointId":
6250
+ suggest = "private_end_point_id"
6251
+
6252
+ if suggest:
6253
+ pulumi.log.warn(f"Key '{key}' not found in ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementFeatureDetailsConnectorDetails. Access the value via the '{suggest}' property getter instead.")
6254
+
6255
+ def __getitem__(self, key: str) -> Any:
6256
+ ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementFeatureDetailsConnectorDetails.__key_warning(key)
6257
+ return super().__getitem__(key)
6258
+
6259
+ def get(self, key: str, default = None) -> Any:
6260
+ ExternalnoncontainerdatabaseExternalNonContainerDbmFeaturesManagementFeatureDetailsConnectorDetails.__key_warning(key)
6261
+ return super().get(key, default)
6262
+
6263
+ def __init__(__self__, *,
6264
+ connector_type: Optional[str] = None,
6265
+ database_connector_id: Optional[str] = None,
6266
+ management_agent_id: Optional[str] = None,
6267
+ private_end_point_id: Optional[str] = None):
6268
+ """
6269
+ :param str connector_type: The list of supported connection types:
6270
+ * PE: Private endpoint
6271
+ * MACS: Management agent
6272
+ * EXTERNAL: External database connector
6273
+ :param str database_connector_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external database connector.
6274
+ :param str management_agent_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management agent.
6275
+ :param str private_end_point_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private endpoint.
6276
+ """
6277
+ if connector_type is not None:
6278
+ pulumi.set(__self__, "connector_type", connector_type)
6279
+ if database_connector_id is not None:
6280
+ pulumi.set(__self__, "database_connector_id", database_connector_id)
6281
+ if management_agent_id is not None:
6282
+ pulumi.set(__self__, "management_agent_id", management_agent_id)
6283
+ if private_end_point_id is not None:
6284
+ pulumi.set(__self__, "private_end_point_id", private_end_point_id)
6285
+
6286
+ @property
6287
+ @pulumi.getter(name="connectorType")
6288
+ def connector_type(self) -> Optional[str]:
6289
+ """
6290
+ The list of supported connection types:
6291
+ * PE: Private endpoint
6292
+ * MACS: Management agent
6293
+ * EXTERNAL: External database connector
6294
+ """
6295
+ return pulumi.get(self, "connector_type")
6296
+
6297
+ @property
6298
+ @pulumi.getter(name="databaseConnectorId")
6299
+ def database_connector_id(self) -> Optional[str]:
6300
+ """
6301
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external database connector.
6302
+ """
6303
+ return pulumi.get(self, "database_connector_id")
6304
+
6305
+ @property
6306
+ @pulumi.getter(name="managementAgentId")
6307
+ def management_agent_id(self) -> Optional[str]:
6308
+ """
6309
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management agent.
6310
+ """
6311
+ return pulumi.get(self, "management_agent_id")
6312
+
6313
+ @property
6314
+ @pulumi.getter(name="privateEndPointId")
6315
+ def private_end_point_id(self) -> Optional[str]:
6316
+ """
6317
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private endpoint.
6318
+ """
6319
+ return pulumi.get(self, "private_end_point_id")
6320
+
6321
+
6322
+ @pulumi.output_type
6323
+ class ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetails(dict):
6324
+ @staticmethod
6325
+ def __key_warning(key: str):
6326
+ suggest = None
6327
+ if key == "connectorDetails":
6328
+ suggest = "connector_details"
6329
+
6330
+ if suggest:
6331
+ pulumi.log.warn(f"Key '{key}' not found in ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetails. Access the value via the '{suggest}' property getter instead.")
6332
+
6333
+ def __getitem__(self, key: str) -> Any:
6334
+ ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetails.__key_warning(key)
6335
+ return super().__getitem__(key)
6336
+
6337
+ def get(self, key: str, default = None) -> Any:
6338
+ ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetails.__key_warning(key)
6339
+ return super().get(key, default)
6340
+
6341
+ def __init__(__self__, *,
6342
+ feature: str,
6343
+ connector_details: Optional['outputs.ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetailsConnectorDetails'] = None):
6344
+ """
6345
+ :param str feature: The name of the Database Management feature.
6346
+ :param 'ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetailsConnectorDetailsArgs' connector_details: The connector details required to connect to an Oracle cloud database.
6347
+ """
6348
+ pulumi.set(__self__, "feature", feature)
6349
+ if connector_details is not None:
6350
+ pulumi.set(__self__, "connector_details", connector_details)
6351
+
6352
+ @property
6353
+ @pulumi.getter
6354
+ def feature(self) -> str:
6355
+ """
6356
+ The name of the Database Management feature.
6357
+ """
6358
+ return pulumi.get(self, "feature")
6359
+
6360
+ @property
6361
+ @pulumi.getter(name="connectorDetails")
6362
+ def connector_details(self) -> Optional['outputs.ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetailsConnectorDetails']:
6363
+ """
6364
+ The connector details required to connect to an Oracle cloud database.
6365
+ """
6366
+ return pulumi.get(self, "connector_details")
6367
+
6368
+
6369
+ @pulumi.output_type
6370
+ class ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetailsConnectorDetails(dict):
6371
+ @staticmethod
6372
+ def __key_warning(key: str):
6373
+ suggest = None
6374
+ if key == "connectorType":
6375
+ suggest = "connector_type"
6376
+ elif key == "databaseConnectorId":
6377
+ suggest = "database_connector_id"
6378
+ elif key == "managementAgentId":
6379
+ suggest = "management_agent_id"
6380
+ elif key == "privateEndPointId":
6381
+ suggest = "private_end_point_id"
6382
+
6383
+ if suggest:
6384
+ pulumi.log.warn(f"Key '{key}' not found in ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetailsConnectorDetails. Access the value via the '{suggest}' property getter instead.")
6385
+
6386
+ def __getitem__(self, key: str) -> Any:
6387
+ ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetailsConnectorDetails.__key_warning(key)
6388
+ return super().__getitem__(key)
6389
+
6390
+ def get(self, key: str, default = None) -> Any:
6391
+ ExternalpluggabledatabaseExternalPluggableDbmFeaturesManagementFeatureDetailsConnectorDetails.__key_warning(key)
6392
+ return super().get(key, default)
6393
+
6394
+ def __init__(__self__, *,
6395
+ connector_type: Optional[str] = None,
6396
+ database_connector_id: Optional[str] = None,
6397
+ management_agent_id: Optional[str] = None,
6398
+ private_end_point_id: Optional[str] = None):
6399
+ """
6400
+ :param str connector_type: The list of supported connection types:
6401
+ * PE: Private endpoint
6402
+ * MACS: Management agent
6403
+ * EXTERNAL: External database connector
6404
+ :param str database_connector_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external database connector.
6405
+ :param str management_agent_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management agent.
6406
+ :param str private_end_point_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private endpoint.
6407
+ """
6408
+ if connector_type is not None:
6409
+ pulumi.set(__self__, "connector_type", connector_type)
6410
+ if database_connector_id is not None:
6411
+ pulumi.set(__self__, "database_connector_id", database_connector_id)
6412
+ if management_agent_id is not None:
6413
+ pulumi.set(__self__, "management_agent_id", management_agent_id)
6414
+ if private_end_point_id is not None:
6415
+ pulumi.set(__self__, "private_end_point_id", private_end_point_id)
6416
+
6417
+ @property
6418
+ @pulumi.getter(name="connectorType")
6419
+ def connector_type(self) -> Optional[str]:
6420
+ """
6421
+ The list of supported connection types:
6422
+ * PE: Private endpoint
6423
+ * MACS: Management agent
6424
+ * EXTERNAL: External database connector
5555
6425
  """
5556
- return pulumi.get(self, "db_unique_name")
6426
+ return pulumi.get(self, "connector_type")
5557
6427
 
5558
6428
  @property
5559
- @pulumi.getter(name="displayName")
5560
- def display_name(self) -> Optional[str]:
6429
+ @pulumi.getter(name="databaseConnectorId")
6430
+ def database_connector_id(self) -> Optional[str]:
5561
6431
  """
5562
- The user-friendly name for the database. The name does not have to be unique.
6432
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external database connector.
5563
6433
  """
5564
- return pulumi.get(self, "display_name")
6434
+ return pulumi.get(self, "database_connector_id")
5565
6435
 
5566
6436
  @property
5567
- @pulumi.getter
5568
- def id(self) -> Optional[str]:
6437
+ @pulumi.getter(name="managementAgentId")
6438
+ def management_agent_id(self) -> Optional[str]:
5569
6439
  """
5570
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external database.
6440
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management agent.
5571
6441
  """
5572
- return pulumi.get(self, "id")
6442
+ return pulumi.get(self, "management_agent_id")
5573
6443
 
5574
6444
  @property
5575
- @pulumi.getter(name="isManaged")
5576
- def is_managed(self) -> Optional[bool]:
6445
+ @pulumi.getter(name="privateEndPointId")
6446
+ def private_end_point_id(self) -> Optional[str]:
5577
6447
  """
5578
- Indicates whether the database is a Managed Database or not.
6448
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private endpoint.
5579
6449
  """
5580
- return pulumi.get(self, "is_managed")
6450
+ return pulumi.get(self, "private_end_point_id")
5581
6451
 
5582
6452
 
5583
6453
  @pulumi.output_type
@@ -5597,6 +6467,8 @@ class ManagedDatabaseGroupManagedDatabase(dict):
5597
6467
  suggest = "deployment_type"
5598
6468
  elif key == "freeformTags":
5599
6469
  suggest = "freeform_tags"
6470
+ elif key == "systemTags":
6471
+ suggest = "system_tags"
5600
6472
  elif key == "timeAdded":
5601
6473
  suggest = "time_added"
5602
6474
  elif key == "workloadType":
@@ -5622,6 +6494,7 @@ class ManagedDatabaseGroupManagedDatabase(dict):
5622
6494
  freeform_tags: Optional[Mapping[str, Any]] = None,
5623
6495
  id: Optional[str] = None,
5624
6496
  name: Optional[str] = None,
6497
+ system_tags: Optional[Mapping[str, Any]] = None,
5625
6498
  time_added: Optional[str] = None,
5626
6499
  workload_type: Optional[str] = None):
5627
6500
  """
@@ -5637,6 +6510,7 @@ class ManagedDatabaseGroupManagedDatabase(dict):
5637
6510
  ** IMPORTANT **
5638
6511
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
5639
6512
  :param str name: The name of the Managed Database Group. Valid characters are uppercase or lowercase letters, numbers, and "_". The name of the Managed Database Group cannot be modified. It must be unique in the compartment and must begin with an alphabetic character.
6513
+ :param Mapping[str, Any] system_tags: System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
5640
6514
  :param str time_added: The date and time the Managed Database was added to the group.
5641
6515
  :param str workload_type: The workload type of the Autonomous Database.
5642
6516
  """
@@ -5656,6 +6530,8 @@ class ManagedDatabaseGroupManagedDatabase(dict):
5656
6530
  pulumi.set(__self__, "id", id)
5657
6531
  if name is not None:
5658
6532
  pulumi.set(__self__, "name", name)
6533
+ if system_tags is not None:
6534
+ pulumi.set(__self__, "system_tags", system_tags)
5659
6535
  if time_added is not None:
5660
6536
  pulumi.set(__self__, "time_added", time_added)
5661
6537
  if workload_type is not None:
@@ -5729,6 +6605,14 @@ class ManagedDatabaseGroupManagedDatabase(dict):
5729
6605
  """
5730
6606
  return pulumi.get(self, "name")
5731
6607
 
6608
+ @property
6609
+ @pulumi.getter(name="systemTags")
6610
+ def system_tags(self) -> Optional[Mapping[str, Any]]:
6611
+ """
6612
+ System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
6613
+ """
6614
+ return pulumi.get(self, "system_tags")
6615
+
5732
6616
  @property
5733
6617
  @pulumi.getter(name="timeAdded")
5734
6618
  def time_added(self) -> Optional[str]:
@@ -5747,67 +6631,298 @@ class ManagedDatabaseGroupManagedDatabase(dict):
5747
6631
 
5748
6632
 
5749
6633
  @pulumi.output_type
5750
- class ManagedDatabaseManagedDatabaseGroup(dict):
6634
+ class ManagedDatabaseManagedDatabaseGroup(dict):
6635
+ @staticmethod
6636
+ def __key_warning(key: str):
6637
+ suggest = None
6638
+ if key == "compartmentId":
6639
+ suggest = "compartment_id"
6640
+
6641
+ if suggest:
6642
+ pulumi.log.warn(f"Key '{key}' not found in ManagedDatabaseManagedDatabaseGroup. Access the value via the '{suggest}' property getter instead.")
6643
+
6644
+ def __getitem__(self, key: str) -> Any:
6645
+ ManagedDatabaseManagedDatabaseGroup.__key_warning(key)
6646
+ return super().__getitem__(key)
6647
+
6648
+ def get(self, key: str, default = None) -> Any:
6649
+ ManagedDatabaseManagedDatabaseGroup.__key_warning(key)
6650
+ return super().get(key, default)
6651
+
6652
+ def __init__(__self__, *,
6653
+ compartment_id: Optional[str] = None,
6654
+ id: Optional[str] = None,
6655
+ name: Optional[str] = None):
6656
+ """
6657
+ :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which the Managed Database Group resides.
6658
+ :param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Managed Database Group.
6659
+ :param str name: The name of the Managed Database.
6660
+ """
6661
+ if compartment_id is not None:
6662
+ pulumi.set(__self__, "compartment_id", compartment_id)
6663
+ if id is not None:
6664
+ pulumi.set(__self__, "id", id)
6665
+ if name is not None:
6666
+ pulumi.set(__self__, "name", name)
6667
+
6668
+ @property
6669
+ @pulumi.getter(name="compartmentId")
6670
+ def compartment_id(self) -> Optional[str]:
6671
+ """
6672
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which the Managed Database Group resides.
6673
+ """
6674
+ return pulumi.get(self, "compartment_id")
6675
+
6676
+ @property
6677
+ @pulumi.getter
6678
+ def id(self) -> Optional[str]:
6679
+ """
6680
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Managed Database Group.
6681
+ """
6682
+ return pulumi.get(self, "id")
6683
+
6684
+ @property
6685
+ @pulumi.getter
6686
+ def name(self) -> Optional[str]:
6687
+ """
6688
+ The name of the Managed Database.
6689
+ """
6690
+ return pulumi.get(self, "name")
6691
+
6692
+
6693
+ @pulumi.output_type
6694
+ class ManagedDatabasesChangeDatabaseParameterCredentials(dict):
6695
+ @staticmethod
6696
+ def __key_warning(key: str):
6697
+ suggest = None
6698
+ if key == "secretId":
6699
+ suggest = "secret_id"
6700
+ elif key == "userName":
6701
+ suggest = "user_name"
6702
+
6703
+ if suggest:
6704
+ pulumi.log.warn(f"Key '{key}' not found in ManagedDatabasesChangeDatabaseParameterCredentials. Access the value via the '{suggest}' property getter instead.")
6705
+
6706
+ def __getitem__(self, key: str) -> Any:
6707
+ ManagedDatabasesChangeDatabaseParameterCredentials.__key_warning(key)
6708
+ return super().__getitem__(key)
6709
+
6710
+ def get(self, key: str, default = None) -> Any:
6711
+ ManagedDatabasesChangeDatabaseParameterCredentials.__key_warning(key)
6712
+ return super().get(key, default)
6713
+
6714
+ def __init__(__self__, *,
6715
+ password: Optional[str] = None,
6716
+ role: Optional[str] = None,
6717
+ secret_id: Optional[str] = None,
6718
+ user_name: Optional[str] = None):
6719
+ """
6720
+ :param str password: The database user's password encoded using BASE64 scheme.
6721
+ :param str role: The role of the database user.
6722
+ :param str secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret containing the user password.
6723
+ :param str user_name: The database user name used to perform management activity.
6724
+ """
6725
+ if password is not None:
6726
+ pulumi.set(__self__, "password", password)
6727
+ if role is not None:
6728
+ pulumi.set(__self__, "role", role)
6729
+ if secret_id is not None:
6730
+ pulumi.set(__self__, "secret_id", secret_id)
6731
+ if user_name is not None:
6732
+ pulumi.set(__self__, "user_name", user_name)
6733
+
6734
+ @property
6735
+ @pulumi.getter
6736
+ def password(self) -> Optional[str]:
6737
+ """
6738
+ The database user's password encoded using BASE64 scheme.
6739
+ """
6740
+ return pulumi.get(self, "password")
6741
+
6742
+ @property
6743
+ @pulumi.getter
6744
+ def role(self) -> Optional[str]:
6745
+ """
6746
+ The role of the database user.
6747
+ """
6748
+ return pulumi.get(self, "role")
6749
+
6750
+ @property
6751
+ @pulumi.getter(name="secretId")
6752
+ def secret_id(self) -> Optional[str]:
6753
+ """
6754
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret containing the user password.
6755
+ """
6756
+ return pulumi.get(self, "secret_id")
6757
+
6758
+ @property
6759
+ @pulumi.getter(name="userName")
6760
+ def user_name(self) -> Optional[str]:
6761
+ """
6762
+ The database user name used to perform management activity.
6763
+ """
6764
+ return pulumi.get(self, "user_name")
6765
+
6766
+
6767
+ @pulumi.output_type
6768
+ class ManagedDatabasesChangeDatabaseParameterDatabaseCredential(dict):
6769
+ @staticmethod
6770
+ def __key_warning(key: str):
6771
+ suggest = None
6772
+ if key == "credentialType":
6773
+ suggest = "credential_type"
6774
+ elif key == "namedCredentialId":
6775
+ suggest = "named_credential_id"
6776
+ elif key == "passwordSecretId":
6777
+ suggest = "password_secret_id"
6778
+
6779
+ if suggest:
6780
+ pulumi.log.warn(f"Key '{key}' not found in ManagedDatabasesChangeDatabaseParameterDatabaseCredential. Access the value via the '{suggest}' property getter instead.")
6781
+
6782
+ def __getitem__(self, key: str) -> Any:
6783
+ ManagedDatabasesChangeDatabaseParameterDatabaseCredential.__key_warning(key)
6784
+ return super().__getitem__(key)
6785
+
6786
+ def get(self, key: str, default = None) -> Any:
6787
+ ManagedDatabasesChangeDatabaseParameterDatabaseCredential.__key_warning(key)
6788
+ return super().get(key, default)
6789
+
6790
+ def __init__(__self__, *,
6791
+ credential_type: str,
6792
+ named_credential_id: Optional[str] = None,
6793
+ password: Optional[str] = None,
6794
+ password_secret_id: Optional[str] = None,
6795
+ role: Optional[str] = None,
6796
+ username: Optional[str] = None):
6797
+ """
6798
+ :param str credential_type: The type of the credential for tablespace administration tasks.
6799
+ :param str named_credential_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the named credential where the database password metadata is stored.
6800
+ :param str password: The database user's password encoded using BASE64 scheme.
6801
+ :param str password_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the database password is stored.
6802
+ :param str role: The role of the database user.
6803
+ :param str username: The user to connect to the database.
6804
+ """
6805
+ pulumi.set(__self__, "credential_type", credential_type)
6806
+ if named_credential_id is not None:
6807
+ pulumi.set(__self__, "named_credential_id", named_credential_id)
6808
+ if password is not None:
6809
+ pulumi.set(__self__, "password", password)
6810
+ if password_secret_id is not None:
6811
+ pulumi.set(__self__, "password_secret_id", password_secret_id)
6812
+ if role is not None:
6813
+ pulumi.set(__self__, "role", role)
6814
+ if username is not None:
6815
+ pulumi.set(__self__, "username", username)
6816
+
6817
+ @property
6818
+ @pulumi.getter(name="credentialType")
6819
+ def credential_type(self) -> str:
6820
+ """
6821
+ The type of the credential for tablespace administration tasks.
6822
+ """
6823
+ return pulumi.get(self, "credential_type")
6824
+
6825
+ @property
6826
+ @pulumi.getter(name="namedCredentialId")
6827
+ def named_credential_id(self) -> Optional[str]:
6828
+ """
6829
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the named credential where the database password metadata is stored.
6830
+ """
6831
+ return pulumi.get(self, "named_credential_id")
6832
+
6833
+ @property
6834
+ @pulumi.getter
6835
+ def password(self) -> Optional[str]:
6836
+ """
6837
+ The database user's password encoded using BASE64 scheme.
6838
+ """
6839
+ return pulumi.get(self, "password")
6840
+
6841
+ @property
6842
+ @pulumi.getter(name="passwordSecretId")
6843
+ def password_secret_id(self) -> Optional[str]:
6844
+ """
6845
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the database password is stored.
6846
+ """
6847
+ return pulumi.get(self, "password_secret_id")
6848
+
6849
+ @property
6850
+ @pulumi.getter
6851
+ def role(self) -> Optional[str]:
6852
+ """
6853
+ The role of the database user.
6854
+ """
6855
+ return pulumi.get(self, "role")
6856
+
6857
+ @property
6858
+ @pulumi.getter
6859
+ def username(self) -> Optional[str]:
6860
+ """
6861
+ The user to connect to the database.
6862
+ """
6863
+ return pulumi.get(self, "username")
6864
+
6865
+
6866
+ @pulumi.output_type
6867
+ class ManagedDatabasesChangeDatabaseParameterParameter(dict):
5751
6868
  @staticmethod
5752
6869
  def __key_warning(key: str):
5753
6870
  suggest = None
5754
- if key == "compartmentId":
5755
- suggest = "compartment_id"
6871
+ if key == "updateComment":
6872
+ suggest = "update_comment"
5756
6873
 
5757
6874
  if suggest:
5758
- pulumi.log.warn(f"Key '{key}' not found in ManagedDatabaseManagedDatabaseGroup. Access the value via the '{suggest}' property getter instead.")
6875
+ pulumi.log.warn(f"Key '{key}' not found in ManagedDatabasesChangeDatabaseParameterParameter. Access the value via the '{suggest}' property getter instead.")
5759
6876
 
5760
6877
  def __getitem__(self, key: str) -> Any:
5761
- ManagedDatabaseManagedDatabaseGroup.__key_warning(key)
6878
+ ManagedDatabasesChangeDatabaseParameterParameter.__key_warning(key)
5762
6879
  return super().__getitem__(key)
5763
6880
 
5764
6881
  def get(self, key: str, default = None) -> Any:
5765
- ManagedDatabaseManagedDatabaseGroup.__key_warning(key)
6882
+ ManagedDatabasesChangeDatabaseParameterParameter.__key_warning(key)
5766
6883
  return super().get(key, default)
5767
6884
 
5768
6885
  def __init__(__self__, *,
5769
- compartment_id: Optional[str] = None,
5770
- id: Optional[str] = None,
5771
- name: Optional[str] = None):
6886
+ name: str,
6887
+ value: str,
6888
+ update_comment: Optional[str] = None):
5772
6889
  """
5773
- :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which the Managed Database Group resides.
5774
- :param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Managed Database Group.
5775
- :param str name: The name of the Managed Database.
6890
+ :param str name: The parameter name.
6891
+ :param str value: The parameter value.
6892
+ :param str update_comment: A comment string to associate with the change in parameter value. It cannot contain control characters or a line break.
5776
6893
  """
5777
- if compartment_id is not None:
5778
- pulumi.set(__self__, "compartment_id", compartment_id)
5779
- if id is not None:
5780
- pulumi.set(__self__, "id", id)
5781
- if name is not None:
5782
- pulumi.set(__self__, "name", name)
6894
+ pulumi.set(__self__, "name", name)
6895
+ pulumi.set(__self__, "value", value)
6896
+ if update_comment is not None:
6897
+ pulumi.set(__self__, "update_comment", update_comment)
5783
6898
 
5784
6899
  @property
5785
- @pulumi.getter(name="compartmentId")
5786
- def compartment_id(self) -> Optional[str]:
6900
+ @pulumi.getter
6901
+ def name(self) -> str:
5787
6902
  """
5788
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which the Managed Database Group resides.
6903
+ The parameter name.
5789
6904
  """
5790
- return pulumi.get(self, "compartment_id")
6905
+ return pulumi.get(self, "name")
5791
6906
 
5792
6907
  @property
5793
6908
  @pulumi.getter
5794
- def id(self) -> Optional[str]:
6909
+ def value(self) -> str:
5795
6910
  """
5796
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Managed Database Group.
6911
+ The parameter value.
5797
6912
  """
5798
- return pulumi.get(self, "id")
6913
+ return pulumi.get(self, "value")
5799
6914
 
5800
6915
  @property
5801
- @pulumi.getter
5802
- def name(self) -> Optional[str]:
6916
+ @pulumi.getter(name="updateComment")
6917
+ def update_comment(self) -> Optional[str]:
5803
6918
  """
5804
- The name of the Managed Database.
6919
+ A comment string to associate with the change in parameter value. It cannot contain control characters or a line break.
5805
6920
  """
5806
- return pulumi.get(self, "name")
6921
+ return pulumi.get(self, "update_comment")
5807
6922
 
5808
6923
 
5809
6924
  @pulumi.output_type
5810
- class ManagedDatabasesChangeDatabaseParameterCredentials(dict):
6925
+ class ManagedDatabasesResetDatabaseParameterCredentials(dict):
5811
6926
  @staticmethod
5812
6927
  def __key_warning(key: str):
5813
6928
  suggest = None
@@ -5817,14 +6932,14 @@ class ManagedDatabasesChangeDatabaseParameterCredentials(dict):
5817
6932
  suggest = "user_name"
5818
6933
 
5819
6934
  if suggest:
5820
- pulumi.log.warn(f"Key '{key}' not found in ManagedDatabasesChangeDatabaseParameterCredentials. Access the value via the '{suggest}' property getter instead.")
6935
+ pulumi.log.warn(f"Key '{key}' not found in ManagedDatabasesResetDatabaseParameterCredentials. Access the value via the '{suggest}' property getter instead.")
5821
6936
 
5822
6937
  def __getitem__(self, key: str) -> Any:
5823
- ManagedDatabasesChangeDatabaseParameterCredentials.__key_warning(key)
6938
+ ManagedDatabasesResetDatabaseParameterCredentials.__key_warning(key)
5824
6939
  return super().__getitem__(key)
5825
6940
 
5826
6941
  def get(self, key: str, default = None) -> Any:
5827
- ManagedDatabasesChangeDatabaseParameterCredentials.__key_warning(key)
6942
+ ManagedDatabasesResetDatabaseParameterCredentials.__key_warning(key)
5828
6943
  return super().get(key, default)
5829
6944
 
5830
6945
  def __init__(__self__, *,
@@ -5881,7 +6996,7 @@ class ManagedDatabasesChangeDatabaseParameterCredentials(dict):
5881
6996
 
5882
6997
 
5883
6998
  @pulumi.output_type
5884
- class ManagedDatabasesChangeDatabaseParameterDatabaseCredential(dict):
6999
+ class ManagedDatabasesResetDatabaseParameterDatabaseCredential(dict):
5885
7000
  @staticmethod
5886
7001
  def __key_warning(key: str):
5887
7002
  suggest = None
@@ -5893,14 +7008,14 @@ class ManagedDatabasesChangeDatabaseParameterDatabaseCredential(dict):
5893
7008
  suggest = "password_secret_id"
5894
7009
 
5895
7010
  if suggest:
5896
- pulumi.log.warn(f"Key '{key}' not found in ManagedDatabasesChangeDatabaseParameterDatabaseCredential. Access the value via the '{suggest}' property getter instead.")
7011
+ pulumi.log.warn(f"Key '{key}' not found in ManagedDatabasesResetDatabaseParameterDatabaseCredential. Access the value via the '{suggest}' property getter instead.")
5897
7012
 
5898
7013
  def __getitem__(self, key: str) -> Any:
5899
- ManagedDatabasesChangeDatabaseParameterDatabaseCredential.__key_warning(key)
7014
+ ManagedDatabasesResetDatabaseParameterDatabaseCredential.__key_warning(key)
5900
7015
  return super().__getitem__(key)
5901
7016
 
5902
7017
  def get(self, key: str, default = None) -> Any:
5903
- ManagedDatabasesChangeDatabaseParameterDatabaseCredential.__key_warning(key)
7018
+ ManagedDatabasesResetDatabaseParameterDatabaseCredential.__key_warning(key)
5904
7019
  return super().get(key, default)
5905
7020
 
5906
7021
  def __init__(__self__, *,
@@ -5980,216 +7095,393 @@ class ManagedDatabasesChangeDatabaseParameterDatabaseCredential(dict):
5980
7095
 
5981
7096
 
5982
7097
  @pulumi.output_type
5983
- class ManagedDatabasesChangeDatabaseParameterParameter(dict):
7098
+ class NamedCredentialContent(dict):
5984
7099
  @staticmethod
5985
7100
  def __key_warning(key: str):
5986
7101
  suggest = None
5987
- if key == "updateComment":
5988
- suggest = "update_comment"
7102
+ if key == "credentialType":
7103
+ suggest = "credential_type"
7104
+ elif key == "passwordSecretAccessMode":
7105
+ suggest = "password_secret_access_mode"
7106
+ elif key == "passwordSecretId":
7107
+ suggest = "password_secret_id"
7108
+ elif key == "userName":
7109
+ suggest = "user_name"
5989
7110
 
5990
7111
  if suggest:
5991
- pulumi.log.warn(f"Key '{key}' not found in ManagedDatabasesChangeDatabaseParameterParameter. Access the value via the '{suggest}' property getter instead.")
7112
+ pulumi.log.warn(f"Key '{key}' not found in NamedCredentialContent. Access the value via the '{suggest}' property getter instead.")
5992
7113
 
5993
7114
  def __getitem__(self, key: str) -> Any:
5994
- ManagedDatabasesChangeDatabaseParameterParameter.__key_warning(key)
7115
+ NamedCredentialContent.__key_warning(key)
5995
7116
  return super().__getitem__(key)
5996
7117
 
5997
7118
  def get(self, key: str, default = None) -> Any:
5998
- ManagedDatabasesChangeDatabaseParameterParameter.__key_warning(key)
7119
+ NamedCredentialContent.__key_warning(key)
5999
7120
  return super().get(key, default)
6000
7121
 
6001
7122
  def __init__(__self__, *,
6002
- name: str,
6003
- value: str,
6004
- update_comment: Optional[str] = None):
7123
+ credential_type: str,
7124
+ password_secret_access_mode: str,
7125
+ password_secret_id: str,
7126
+ role: str,
7127
+ user_name: str):
6005
7128
  """
6006
- :param str name: The parameter name.
6007
- :param str value: The parameter value.
6008
- :param str update_comment: A comment string to associate with the change in parameter value. It cannot contain control characters or a line break.
7129
+ :param str credential_type: (Updatable) The type of named credential. Only 'BASIC' is supported currently.
7130
+ :param str password_secret_access_mode: (Updatable) The mechanism used to access the password plain text value.
7131
+ :param str password_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Vault service secret that contains the database user password.
7132
+ :param str role: (Updatable) The role of the database user.
7133
+ :param str user_name: (Updatable) The user name used to connect to the database.
6009
7134
  """
6010
- pulumi.set(__self__, "name", name)
6011
- pulumi.set(__self__, "value", value)
6012
- if update_comment is not None:
6013
- pulumi.set(__self__, "update_comment", update_comment)
7135
+ pulumi.set(__self__, "credential_type", credential_type)
7136
+ pulumi.set(__self__, "password_secret_access_mode", password_secret_access_mode)
7137
+ pulumi.set(__self__, "password_secret_id", password_secret_id)
7138
+ pulumi.set(__self__, "role", role)
7139
+ pulumi.set(__self__, "user_name", user_name)
6014
7140
 
6015
7141
  @property
6016
- @pulumi.getter
6017
- def name(self) -> str:
7142
+ @pulumi.getter(name="credentialType")
7143
+ def credential_type(self) -> str:
6018
7144
  """
6019
- The parameter name.
7145
+ (Updatable) The type of named credential. Only 'BASIC' is supported currently.
6020
7146
  """
6021
- return pulumi.get(self, "name")
7147
+ return pulumi.get(self, "credential_type")
7148
+
7149
+ @property
7150
+ @pulumi.getter(name="passwordSecretAccessMode")
7151
+ def password_secret_access_mode(self) -> str:
7152
+ """
7153
+ (Updatable) The mechanism used to access the password plain text value.
7154
+ """
7155
+ return pulumi.get(self, "password_secret_access_mode")
7156
+
7157
+ @property
7158
+ @pulumi.getter(name="passwordSecretId")
7159
+ def password_secret_id(self) -> str:
7160
+ """
7161
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Vault service secret that contains the database user password.
7162
+ """
7163
+ return pulumi.get(self, "password_secret_id")
6022
7164
 
6023
7165
  @property
6024
7166
  @pulumi.getter
6025
- def value(self) -> str:
7167
+ def role(self) -> str:
6026
7168
  """
6027
- The parameter value.
7169
+ (Updatable) The role of the database user.
6028
7170
  """
6029
- return pulumi.get(self, "value")
7171
+ return pulumi.get(self, "role")
6030
7172
 
6031
7173
  @property
6032
- @pulumi.getter(name="updateComment")
6033
- def update_comment(self) -> Optional[str]:
7174
+ @pulumi.getter(name="userName")
7175
+ def user_name(self) -> str:
6034
7176
  """
6035
- A comment string to associate with the change in parameter value. It cannot contain control characters or a line break.
7177
+ (Updatable) The user name used to connect to the database.
6036
7178
  """
6037
- return pulumi.get(self, "update_comment")
7179
+ return pulumi.get(self, "user_name")
6038
7180
 
6039
7181
 
6040
7182
  @pulumi.output_type
6041
- class ManagedDatabasesResetDatabaseParameterCredentials(dict):
7183
+ class PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetails(dict):
6042
7184
  @staticmethod
6043
7185
  def __key_warning(key: str):
6044
7186
  suggest = None
6045
- if key == "secretId":
6046
- suggest = "secret_id"
6047
- elif key == "userName":
6048
- suggest = "user_name"
7187
+ if key == "connectorDetails":
7188
+ suggest = "connector_details"
7189
+ elif key == "databaseConnectionDetails":
7190
+ suggest = "database_connection_details"
7191
+ elif key == "isAutoEnablePluggableDatabase":
7192
+ suggest = "is_auto_enable_pluggable_database"
7193
+ elif key == "managementType":
7194
+ suggest = "management_type"
6049
7195
 
6050
7196
  if suggest:
6051
- pulumi.log.warn(f"Key '{key}' not found in ManagedDatabasesResetDatabaseParameterCredentials. Access the value via the '{suggest}' property getter instead.")
7197
+ pulumi.log.warn(f"Key '{key}' not found in PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetails. Access the value via the '{suggest}' property getter instead.")
6052
7198
 
6053
7199
  def __getitem__(self, key: str) -> Any:
6054
- ManagedDatabasesResetDatabaseParameterCredentials.__key_warning(key)
7200
+ PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetails.__key_warning(key)
6055
7201
  return super().__getitem__(key)
6056
7202
 
6057
7203
  def get(self, key: str, default = None) -> Any:
6058
- ManagedDatabasesResetDatabaseParameterCredentials.__key_warning(key)
7204
+ PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetails.__key_warning(key)
6059
7205
  return super().get(key, default)
6060
7206
 
6061
7207
  def __init__(__self__, *,
6062
- password: Optional[str] = None,
6063
- role: Optional[str] = None,
6064
- secret_id: Optional[str] = None,
6065
- user_name: Optional[str] = None):
7208
+ feature: str,
7209
+ connector_details: Optional['outputs.PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsConnectorDetails'] = None,
7210
+ database_connection_details: Optional['outputs.PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetails'] = None,
7211
+ is_auto_enable_pluggable_database: Optional[bool] = None,
7212
+ management_type: Optional[str] = None):
6066
7213
  """
6067
- :param str password: The database user's password encoded using BASE64 scheme.
6068
- :param str role: The role of the database user.
6069
- :param str secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret containing the user password.
6070
- :param str user_name: The database user name used to perform management activity.
7214
+ :param str feature: The name of the Database Management feature.
7215
+ :param 'PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsConnectorDetailsArgs' connector_details: The connector details required to connect to an Oracle cloud database.
7216
+ :param 'PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsArgs' database_connection_details: The connection details required to connect to the database.
7217
+ :param bool is_auto_enable_pluggable_database: Indicates whether the pluggable database can be enabled automatically.
7218
+ :param str management_type: The management type for the database.
6071
7219
  """
6072
- if password is not None:
6073
- pulumi.set(__self__, "password", password)
6074
- if role is not None:
6075
- pulumi.set(__self__, "role", role)
6076
- if secret_id is not None:
6077
- pulumi.set(__self__, "secret_id", secret_id)
6078
- if user_name is not None:
6079
- pulumi.set(__self__, "user_name", user_name)
7220
+ pulumi.set(__self__, "feature", feature)
7221
+ if connector_details is not None:
7222
+ pulumi.set(__self__, "connector_details", connector_details)
7223
+ if database_connection_details is not None:
7224
+ pulumi.set(__self__, "database_connection_details", database_connection_details)
7225
+ if is_auto_enable_pluggable_database is not None:
7226
+ pulumi.set(__self__, "is_auto_enable_pluggable_database", is_auto_enable_pluggable_database)
7227
+ if management_type is not None:
7228
+ pulumi.set(__self__, "management_type", management_type)
6080
7229
 
6081
7230
  @property
6082
7231
  @pulumi.getter
6083
- def password(self) -> Optional[str]:
7232
+ def feature(self) -> str:
6084
7233
  """
6085
- The database user's password encoded using BASE64 scheme.
7234
+ The name of the Database Management feature.
6086
7235
  """
6087
- return pulumi.get(self, "password")
7236
+ return pulumi.get(self, "feature")
6088
7237
 
6089
7238
  @property
6090
- @pulumi.getter
6091
- def role(self) -> Optional[str]:
7239
+ @pulumi.getter(name="connectorDetails")
7240
+ def connector_details(self) -> Optional['outputs.PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsConnectorDetails']:
7241
+ """
7242
+ The connector details required to connect to an Oracle cloud database.
7243
+ """
7244
+ return pulumi.get(self, "connector_details")
7245
+
7246
+ @property
7247
+ @pulumi.getter(name="databaseConnectionDetails")
7248
+ def database_connection_details(self) -> Optional['outputs.PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetails']:
7249
+ """
7250
+ The connection details required to connect to the database.
7251
+ """
7252
+ return pulumi.get(self, "database_connection_details")
7253
+
7254
+ @property
7255
+ @pulumi.getter(name="isAutoEnablePluggableDatabase")
7256
+ def is_auto_enable_pluggable_database(self) -> Optional[bool]:
7257
+ """
7258
+ Indicates whether the pluggable database can be enabled automatically.
7259
+ """
7260
+ return pulumi.get(self, "is_auto_enable_pluggable_database")
7261
+
7262
+ @property
7263
+ @pulumi.getter(name="managementType")
7264
+ def management_type(self) -> Optional[str]:
7265
+ """
7266
+ The management type for the database.
7267
+ """
7268
+ return pulumi.get(self, "management_type")
7269
+
7270
+
7271
+ @pulumi.output_type
7272
+ class PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsConnectorDetails(dict):
7273
+ @staticmethod
7274
+ def __key_warning(key: str):
7275
+ suggest = None
7276
+ if key == "connectorType":
7277
+ suggest = "connector_type"
7278
+ elif key == "databaseConnectorId":
7279
+ suggest = "database_connector_id"
7280
+ elif key == "managementAgentId":
7281
+ suggest = "management_agent_id"
7282
+ elif key == "privateEndPointId":
7283
+ suggest = "private_end_point_id"
7284
+
7285
+ if suggest:
7286
+ pulumi.log.warn(f"Key '{key}' not found in PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsConnectorDetails. Access the value via the '{suggest}' property getter instead.")
7287
+
7288
+ def __getitem__(self, key: str) -> Any:
7289
+ PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsConnectorDetails.__key_warning(key)
7290
+ return super().__getitem__(key)
7291
+
7292
+ def get(self, key: str, default = None) -> Any:
7293
+ PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsConnectorDetails.__key_warning(key)
7294
+ return super().get(key, default)
7295
+
7296
+ def __init__(__self__, *,
7297
+ connector_type: Optional[str] = None,
7298
+ database_connector_id: Optional[str] = None,
7299
+ management_agent_id: Optional[str] = None,
7300
+ private_end_point_id: Optional[str] = None):
7301
+ """
7302
+ :param str connector_type: The list of supported connection types:
7303
+ * PE: Private endpoint
7304
+ * MACS: Management agent
7305
+ * EXTERNAL: External database connector
7306
+ :param str database_connector_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external database connector.
7307
+ :param str management_agent_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management agent.
7308
+ :param str private_end_point_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private endpoint.
7309
+ """
7310
+ if connector_type is not None:
7311
+ pulumi.set(__self__, "connector_type", connector_type)
7312
+ if database_connector_id is not None:
7313
+ pulumi.set(__self__, "database_connector_id", database_connector_id)
7314
+ if management_agent_id is not None:
7315
+ pulumi.set(__self__, "management_agent_id", management_agent_id)
7316
+ if private_end_point_id is not None:
7317
+ pulumi.set(__self__, "private_end_point_id", private_end_point_id)
7318
+
7319
+ @property
7320
+ @pulumi.getter(name="connectorType")
7321
+ def connector_type(self) -> Optional[str]:
7322
+ """
7323
+ The list of supported connection types:
7324
+ * PE: Private endpoint
7325
+ * MACS: Management agent
7326
+ * EXTERNAL: External database connector
7327
+ """
7328
+ return pulumi.get(self, "connector_type")
7329
+
7330
+ @property
7331
+ @pulumi.getter(name="databaseConnectorId")
7332
+ def database_connector_id(self) -> Optional[str]:
7333
+ """
7334
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external database connector.
7335
+ """
7336
+ return pulumi.get(self, "database_connector_id")
7337
+
7338
+ @property
7339
+ @pulumi.getter(name="managementAgentId")
7340
+ def management_agent_id(self) -> Optional[str]:
7341
+ """
7342
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the management agent.
7343
+ """
7344
+ return pulumi.get(self, "management_agent_id")
7345
+
7346
+ @property
7347
+ @pulumi.getter(name="privateEndPointId")
7348
+ def private_end_point_id(self) -> Optional[str]:
7349
+ """
7350
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the private endpoint.
7351
+ """
7352
+ return pulumi.get(self, "private_end_point_id")
7353
+
7354
+
7355
+ @pulumi.output_type
7356
+ class PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetails(dict):
7357
+ @staticmethod
7358
+ def __key_warning(key: str):
7359
+ suggest = None
7360
+ if key == "connectionCredentials":
7361
+ suggest = "connection_credentials"
7362
+ elif key == "connectionString":
7363
+ suggest = "connection_string"
7364
+
7365
+ if suggest:
7366
+ pulumi.log.warn(f"Key '{key}' not found in PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetails. Access the value via the '{suggest}' property getter instead.")
7367
+
7368
+ def __getitem__(self, key: str) -> Any:
7369
+ PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetails.__key_warning(key)
7370
+ return super().__getitem__(key)
7371
+
7372
+ def get(self, key: str, default = None) -> Any:
7373
+ PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetails.__key_warning(key)
7374
+ return super().get(key, default)
7375
+
7376
+ def __init__(__self__, *,
7377
+ connection_credentials: Optional['outputs.PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionCredentials'] = None,
7378
+ connection_string: Optional['outputs.PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionString'] = None):
6092
7379
  """
6093
- The role of the database user.
7380
+ :param 'PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionCredentialsArgs' connection_credentials: The credentials used to connect to the database. Currently only the `DETAILS` type is supported for creating MACS connector credentials.
7381
+ :param 'PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionStringArgs' connection_string: The details of the Oracle Database connection string.
6094
7382
  """
6095
- return pulumi.get(self, "role")
7383
+ if connection_credentials is not None:
7384
+ pulumi.set(__self__, "connection_credentials", connection_credentials)
7385
+ if connection_string is not None:
7386
+ pulumi.set(__self__, "connection_string", connection_string)
6096
7387
 
6097
7388
  @property
6098
- @pulumi.getter(name="secretId")
6099
- def secret_id(self) -> Optional[str]:
7389
+ @pulumi.getter(name="connectionCredentials")
7390
+ def connection_credentials(self) -> Optional['outputs.PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionCredentials']:
6100
7391
  """
6101
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret containing the user password.
7392
+ The credentials used to connect to the database. Currently only the `DETAILS` type is supported for creating MACS connector credentials.
6102
7393
  """
6103
- return pulumi.get(self, "secret_id")
7394
+ return pulumi.get(self, "connection_credentials")
6104
7395
 
6105
7396
  @property
6106
- @pulumi.getter(name="userName")
6107
- def user_name(self) -> Optional[str]:
7397
+ @pulumi.getter(name="connectionString")
7398
+ def connection_string(self) -> Optional['outputs.PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionString']:
6108
7399
  """
6109
- The database user name used to perform management activity.
7400
+ The details of the Oracle Database connection string.
6110
7401
  """
6111
- return pulumi.get(self, "user_name")
7402
+ return pulumi.get(self, "connection_string")
6112
7403
 
6113
7404
 
6114
7405
  @pulumi.output_type
6115
- class ManagedDatabasesResetDatabaseParameterDatabaseCredential(dict):
7406
+ class PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionCredentials(dict):
6116
7407
  @staticmethod
6117
7408
  def __key_warning(key: str):
6118
7409
  suggest = None
6119
- if key == "credentialType":
7410
+ if key == "credentialName":
7411
+ suggest = "credential_name"
7412
+ elif key == "credentialType":
6120
7413
  suggest = "credential_type"
6121
- elif key == "namedCredentialId":
6122
- suggest = "named_credential_id"
6123
7414
  elif key == "passwordSecretId":
6124
7415
  suggest = "password_secret_id"
7416
+ elif key == "sslSecretId":
7417
+ suggest = "ssl_secret_id"
7418
+ elif key == "userName":
7419
+ suggest = "user_name"
6125
7420
 
6126
7421
  if suggest:
6127
- pulumi.log.warn(f"Key '{key}' not found in ManagedDatabasesResetDatabaseParameterDatabaseCredential. Access the value via the '{suggest}' property getter instead.")
7422
+ pulumi.log.warn(f"Key '{key}' not found in PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionCredentials. Access the value via the '{suggest}' property getter instead.")
6128
7423
 
6129
7424
  def __getitem__(self, key: str) -> Any:
6130
- ManagedDatabasesResetDatabaseParameterDatabaseCredential.__key_warning(key)
7425
+ PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionCredentials.__key_warning(key)
6131
7426
  return super().__getitem__(key)
6132
7427
 
6133
7428
  def get(self, key: str, default = None) -> Any:
6134
- ManagedDatabasesResetDatabaseParameterDatabaseCredential.__key_warning(key)
7429
+ PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionCredentials.__key_warning(key)
6135
7430
  return super().get(key, default)
6136
7431
 
6137
7432
  def __init__(__self__, *,
6138
- credential_type: str,
6139
- named_credential_id: Optional[str] = None,
6140
- password: Optional[str] = None,
7433
+ credential_name: Optional[str] = None,
7434
+ credential_type: Optional[str] = None,
6141
7435
  password_secret_id: Optional[str] = None,
6142
7436
  role: Optional[str] = None,
6143
- username: Optional[str] = None):
7437
+ ssl_secret_id: Optional[str] = None,
7438
+ user_name: Optional[str] = None):
6144
7439
  """
6145
- :param str credential_type: The type of the credential for tablespace administration tasks.
6146
- :param str named_credential_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the named credential where the database password metadata is stored.
6147
- :param str password: The database user's password encoded using BASE64 scheme.
6148
- :param str password_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the database password is stored.
6149
- :param str role: The role of the database user.
6150
- :param str username: The user to connect to the database.
7440
+ :param str credential_name: The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. *IMPORTANT* - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
7441
+
7442
+ For example: inventorydb.abc112233445566778899
7443
+ :param str credential_type: The type of credential used to connect to the database.
7444
+ :param str password_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret containing the user password.
7445
+ :param str role: The role of the user connecting to the database.
7446
+ :param str ssl_secret_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret containing the SSL keystore and truststore details.
7447
+ :param str user_name: The user name used to connect to the database.
6151
7448
  """
6152
- pulumi.set(__self__, "credential_type", credential_type)
6153
- if named_credential_id is not None:
6154
- pulumi.set(__self__, "named_credential_id", named_credential_id)
6155
- if password is not None:
6156
- pulumi.set(__self__, "password", password)
7449
+ if credential_name is not None:
7450
+ pulumi.set(__self__, "credential_name", credential_name)
7451
+ if credential_type is not None:
7452
+ pulumi.set(__self__, "credential_type", credential_type)
6157
7453
  if password_secret_id is not None:
6158
7454
  pulumi.set(__self__, "password_secret_id", password_secret_id)
6159
7455
  if role is not None:
6160
7456
  pulumi.set(__self__, "role", role)
6161
- if username is not None:
6162
- pulumi.set(__self__, "username", username)
7457
+ if ssl_secret_id is not None:
7458
+ pulumi.set(__self__, "ssl_secret_id", ssl_secret_id)
7459
+ if user_name is not None:
7460
+ pulumi.set(__self__, "user_name", user_name)
6163
7461
 
6164
7462
  @property
6165
- @pulumi.getter(name="credentialType")
6166
- def credential_type(self) -> str:
6167
- """
6168
- The type of the credential for tablespace administration tasks.
7463
+ @pulumi.getter(name="credentialName")
7464
+ def credential_name(self) -> Optional[str]:
6169
7465
  """
6170
- return pulumi.get(self, "credential_type")
7466
+ The name of the credential information that used to connect to the DB system resource. The name should be in "x.y" format, where the length of "x" has a maximum of 64 characters, and length of "y" has a maximum of 199 characters. The name strings can contain letters, numbers and the underscore character only. Other characters are not valid, except for the "." character that separates the "x" and "y" portions of the name. *IMPORTANT* - The name must be unique within the Oracle Cloud Infrastructure region the credential is being created in. If you specify a name that duplicates the name of another credential within the same Oracle Cloud Infrastructure region, you may overwrite or corrupt the credential that is already using the name.
6171
7467
 
6172
- @property
6173
- @pulumi.getter(name="namedCredentialId")
6174
- def named_credential_id(self) -> Optional[str]:
6175
- """
6176
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the named credential where the database password metadata is stored.
7468
+ For example: inventorydb.abc112233445566778899
6177
7469
  """
6178
- return pulumi.get(self, "named_credential_id")
7470
+ return pulumi.get(self, "credential_name")
6179
7471
 
6180
7472
  @property
6181
- @pulumi.getter
6182
- def password(self) -> Optional[str]:
7473
+ @pulumi.getter(name="credentialType")
7474
+ def credential_type(self) -> Optional[str]:
6183
7475
  """
6184
- The database user's password encoded using BASE64 scheme.
7476
+ The type of credential used to connect to the database.
6185
7477
  """
6186
- return pulumi.get(self, "password")
7478
+ return pulumi.get(self, "credential_type")
6187
7479
 
6188
7480
  @property
6189
7481
  @pulumi.getter(name="passwordSecretId")
6190
7482
  def password_secret_id(self) -> Optional[str]:
6191
7483
  """
6192
- The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Secret where the database password is stored.
7484
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret containing the user password.
6193
7485
  """
6194
7486
  return pulumi.get(self, "password_secret_id")
6195
7487
 
@@ -6197,102 +7489,99 @@ class ManagedDatabasesResetDatabaseParameterDatabaseCredential(dict):
6197
7489
  @pulumi.getter
6198
7490
  def role(self) -> Optional[str]:
6199
7491
  """
6200
- The role of the database user.
7492
+ The role of the user connecting to the database.
6201
7493
  """
6202
7494
  return pulumi.get(self, "role")
6203
7495
 
6204
7496
  @property
6205
- @pulumi.getter
6206
- def username(self) -> Optional[str]:
7497
+ @pulumi.getter(name="sslSecretId")
7498
+ def ssl_secret_id(self) -> Optional[str]:
6207
7499
  """
6208
- The user to connect to the database.
7500
+ The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the secret containing the SSL keystore and truststore details.
6209
7501
  """
6210
- return pulumi.get(self, "username")
7502
+ return pulumi.get(self, "ssl_secret_id")
7503
+
7504
+ @property
7505
+ @pulumi.getter(name="userName")
7506
+ def user_name(self) -> Optional[str]:
7507
+ """
7508
+ The user name used to connect to the database.
7509
+ """
7510
+ return pulumi.get(self, "user_name")
6211
7511
 
6212
7512
 
6213
7513
  @pulumi.output_type
6214
- class NamedCredentialContent(dict):
7514
+ class PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionString(dict):
6215
7515
  @staticmethod
6216
7516
  def __key_warning(key: str):
6217
7517
  suggest = None
6218
- if key == "credentialType":
6219
- suggest = "credential_type"
6220
- elif key == "passwordSecretAccessMode":
6221
- suggest = "password_secret_access_mode"
6222
- elif key == "passwordSecretId":
6223
- suggest = "password_secret_id"
6224
- elif key == "userName":
6225
- suggest = "user_name"
7518
+ if key == "connectionType":
7519
+ suggest = "connection_type"
6226
7520
 
6227
7521
  if suggest:
6228
- pulumi.log.warn(f"Key '{key}' not found in NamedCredentialContent. Access the value via the '{suggest}' property getter instead.")
7522
+ pulumi.log.warn(f"Key '{key}' not found in PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionString. Access the value via the '{suggest}' property getter instead.")
6229
7523
 
6230
7524
  def __getitem__(self, key: str) -> Any:
6231
- NamedCredentialContent.__key_warning(key)
7525
+ PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionString.__key_warning(key)
6232
7526
  return super().__getitem__(key)
6233
7527
 
6234
7528
  def get(self, key: str, default = None) -> Any:
6235
- NamedCredentialContent.__key_warning(key)
7529
+ PluggabledatabasePluggableDatabaseDbmFeaturesManagementFeatureDetailsDatabaseConnectionDetailsConnectionString.__key_warning(key)
6236
7530
  return super().get(key, default)
6237
7531
 
6238
7532
  def __init__(__self__, *,
6239
- credential_type: str,
6240
- password_secret_access_mode: str,
6241
- password_secret_id: str,
6242
- role: str,
6243
- user_name: str):
6244
- """
6245
- :param str credential_type: (Updatable) The type of named credential. Only 'BASIC' is supported currently.
6246
- :param str password_secret_access_mode: (Updatable) The mechanism used to access the password plain text value.
6247
- :param str password_secret_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Vault service secret that contains the database user password.
6248
- :param str role: (Updatable) The role of the database user.
6249
- :param str user_name: (Updatable) The user name used to connect to the database.
6250
- """
6251
- pulumi.set(__self__, "credential_type", credential_type)
6252
- pulumi.set(__self__, "password_secret_access_mode", password_secret_access_mode)
6253
- pulumi.set(__self__, "password_secret_id", password_secret_id)
6254
- pulumi.set(__self__, "role", role)
6255
- pulumi.set(__self__, "user_name", user_name)
6256
-
6257
- @property
6258
- @pulumi.getter(name="credentialType")
6259
- def credential_type(self) -> str:
7533
+ connection_type: Optional[str] = None,
7534
+ port: Optional[int] = None,
7535
+ protocol: Optional[str] = None,
7536
+ service: Optional[str] = None):
6260
7537
  """
6261
- (Updatable) The type of named credential. Only 'BASIC' is supported currently.
7538
+ :param str connection_type: The list of supported connection types:
7539
+ * BASIC: Basic connection details
7540
+ :param int port: The port number used to connect to the database.
7541
+ :param str protocol: The protocol used to connect to the database.
7542
+ :param str service: The service name of the database.
6262
7543
  """
6263
- return pulumi.get(self, "credential_type")
7544
+ if connection_type is not None:
7545
+ pulumi.set(__self__, "connection_type", connection_type)
7546
+ if port is not None:
7547
+ pulumi.set(__self__, "port", port)
7548
+ if protocol is not None:
7549
+ pulumi.set(__self__, "protocol", protocol)
7550
+ if service is not None:
7551
+ pulumi.set(__self__, "service", service)
6264
7552
 
6265
7553
  @property
6266
- @pulumi.getter(name="passwordSecretAccessMode")
6267
- def password_secret_access_mode(self) -> str:
7554
+ @pulumi.getter(name="connectionType")
7555
+ def connection_type(self) -> Optional[str]:
6268
7556
  """
6269
- (Updatable) The mechanism used to access the password plain text value.
7557
+ The list of supported connection types:
7558
+ * BASIC: Basic connection details
6270
7559
  """
6271
- return pulumi.get(self, "password_secret_access_mode")
7560
+ return pulumi.get(self, "connection_type")
6272
7561
 
6273
7562
  @property
6274
- @pulumi.getter(name="passwordSecretId")
6275
- def password_secret_id(self) -> str:
7563
+ @pulumi.getter
7564
+ def port(self) -> Optional[int]:
6276
7565
  """
6277
- (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Vault service secret that contains the database user password.
7566
+ The port number used to connect to the database.
6278
7567
  """
6279
- return pulumi.get(self, "password_secret_id")
7568
+ return pulumi.get(self, "port")
6280
7569
 
6281
7570
  @property
6282
7571
  @pulumi.getter
6283
- def role(self) -> str:
7572
+ def protocol(self) -> Optional[str]:
6284
7573
  """
6285
- (Updatable) The role of the database user.
7574
+ The protocol used to connect to the database.
6286
7575
  """
6287
- return pulumi.get(self, "role")
7576
+ return pulumi.get(self, "protocol")
6288
7577
 
6289
7578
  @property
6290
- @pulumi.getter(name="userName")
6291
- def user_name(self) -> str:
7579
+ @pulumi.getter
7580
+ def service(self) -> Optional[str]:
6292
7581
  """
6293
- (Updatable) The user name used to connect to the database.
7582
+ The service name of the database.
6294
7583
  """
6295
- return pulumi.get(self, "user_name")
7584
+ return pulumi.get(self, "service")
6296
7585
 
6297
7586
 
6298
7587
  @pulumi.output_type
@@ -6474,6 +7763,7 @@ class GetDbManagementPrivateEndpointsDbManagementPrivateEndpointCollectionItemRe
6474
7763
  private_ip: str,
6475
7764
  state: str,
6476
7765
  subnet_id: str,
7766
+ system_tags: Mapping[str, Any],
6477
7767
  time_created: str,
6478
7768
  vcn_id: str):
6479
7769
  """
@@ -6488,6 +7778,7 @@ class GetDbManagementPrivateEndpointsDbManagementPrivateEndpointCollectionItemRe
6488
7778
  :param str private_ip: The IP addresses assigned to the Database Management private endpoint.
6489
7779
  :param str state: The lifecycle state of a resource.
6490
7780
  :param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet.
7781
+ :param Mapping[str, Any] system_tags: System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
6491
7782
  :param str time_created: The date and time the Database Managament private endpoint was created, in the format defined by [RFC3339](https://tools.ietf.org/html/rfc3339).
6492
7783
  :param str vcn_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the VCN.
6493
7784
  """
@@ -6502,6 +7793,7 @@ class GetDbManagementPrivateEndpointsDbManagementPrivateEndpointCollectionItemRe
6502
7793
  pulumi.set(__self__, "private_ip", private_ip)
6503
7794
  pulumi.set(__self__, "state", state)
6504
7795
  pulumi.set(__self__, "subnet_id", subnet_id)
7796
+ pulumi.set(__self__, "system_tags", system_tags)
6505
7797
  pulumi.set(__self__, "time_created", time_created)
6506
7798
  pulumi.set(__self__, "vcn_id", vcn_id)
6507
7799
 
@@ -6593,6 +7885,14 @@ class GetDbManagementPrivateEndpointsDbManagementPrivateEndpointCollectionItemRe
6593
7885
  """
6594
7886
  return pulumi.get(self, "subnet_id")
6595
7887
 
7888
+ @property
7889
+ @pulumi.getter(name="systemTags")
7890
+ def system_tags(self) -> Mapping[str, Any]:
7891
+ """
7892
+ System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
7893
+ """
7894
+ return pulumi.get(self, "system_tags")
7895
+
6596
7896
  @property
6597
7897
  @pulumi.getter(name="timeCreated")
6598
7898
  def time_created(self) -> str:
@@ -6902,6 +8202,7 @@ class GetExternalAsmInstancesExternalAsmInstanceCollectionItemResult(dict):
6902
8202
  id: str,
6903
8203
  lifecycle_details: str,
6904
8204
  state: str,
8205
+ system_tags: Mapping[str, Any],
6905
8206
  time_created: str,
6906
8207
  time_updated: str):
6907
8208
  """
@@ -6918,6 +8219,7 @@ class GetExternalAsmInstancesExternalAsmInstanceCollectionItemResult(dict):
6918
8219
  :param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external ASM instance.
6919
8220
  :param str lifecycle_details: Additional information about the current lifecycle state.
6920
8221
  :param str state: The current lifecycle state of the external ASM instance.
8222
+ :param Mapping[str, Any] system_tags: System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
6921
8223
  :param str time_created: The date and time the external ASM instance was created.
6922
8224
  :param str time_updated: The date and time the external ASM instance was last updated.
6923
8225
  """
@@ -6935,6 +8237,7 @@ class GetExternalAsmInstancesExternalAsmInstanceCollectionItemResult(dict):
6935
8237
  pulumi.set(__self__, "id", id)
6936
8238
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
6937
8239
  pulumi.set(__self__, "state", state)
8240
+ pulumi.set(__self__, "system_tags", system_tags)
6938
8241
  pulumi.set(__self__, "time_created", time_created)
6939
8242
  pulumi.set(__self__, "time_updated", time_updated)
6940
8243
 
@@ -7047,6 +8350,14 @@ class GetExternalAsmInstancesExternalAsmInstanceCollectionItemResult(dict):
7047
8350
  """
7048
8351
  return pulumi.get(self, "state")
7049
8352
 
8353
+ @property
8354
+ @pulumi.getter(name="systemTags")
8355
+ def system_tags(self) -> Mapping[str, Any]:
8356
+ """
8357
+ System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
8358
+ """
8359
+ return pulumi.get(self, "system_tags")
8360
+
7050
8361
  @property
7051
8362
  @pulumi.getter(name="timeCreated")
7052
8363
  def time_created(self) -> str:
@@ -7308,6 +8619,7 @@ class GetExternalAsmsExternalAsmCollectionItemResult(dict):
7308
8619
  lifecycle_details: str,
7309
8620
  serviced_databases: Sequence['outputs.GetExternalAsmsExternalAsmCollectionItemServicedDatabaseResult'],
7310
8621
  state: str,
8622
+ system_tags: Mapping[str, Any],
7311
8623
  time_created: str,
7312
8624
  time_updated: str,
7313
8625
  version: str):
@@ -7327,6 +8639,7 @@ class GetExternalAsmsExternalAsmCollectionItemResult(dict):
7327
8639
  :param str lifecycle_details: Additional information about the current lifecycle state.
7328
8640
  :param Sequence['GetExternalAsmsExternalAsmCollectionItemServicedDatabaseArgs'] serviced_databases: The list of databases that are serviced by the ASM.
7329
8641
  :param str state: The current lifecycle state of the external ASM.
8642
+ :param Mapping[str, Any] system_tags: System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
7330
8643
  :param str time_created: The date and time the external ASM was created.
7331
8644
  :param str time_updated: The date and time the external ASM was last updated.
7332
8645
  :param str version: The ASM version.
@@ -7347,6 +8660,7 @@ class GetExternalAsmsExternalAsmCollectionItemResult(dict):
7347
8660
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
7348
8661
  pulumi.set(__self__, "serviced_databases", serviced_databases)
7349
8662
  pulumi.set(__self__, "state", state)
8663
+ pulumi.set(__self__, "system_tags", system_tags)
7350
8664
  pulumi.set(__self__, "time_created", time_created)
7351
8665
  pulumi.set(__self__, "time_updated", time_updated)
7352
8666
  pulumi.set(__self__, "version", version)
@@ -7476,6 +8790,14 @@ class GetExternalAsmsExternalAsmCollectionItemResult(dict):
7476
8790
  """
7477
8791
  return pulumi.get(self, "state")
7478
8792
 
8793
+ @property
8794
+ @pulumi.getter(name="systemTags")
8795
+ def system_tags(self) -> Mapping[str, Any]:
8796
+ """
8797
+ System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
8798
+ """
8799
+ return pulumi.get(self, "system_tags")
8800
+
7479
8801
  @property
7480
8802
  @pulumi.getter(name="timeCreated")
7481
8803
  def time_created(self) -> str:
@@ -7655,6 +8977,7 @@ class GetExternalClusterInstancesExternalClusterInstanceCollectionItemResult(dic
7655
8977
  lifecycle_details: str,
7656
8978
  node_role: str,
7657
8979
  state: str,
8980
+ system_tags: Mapping[str, Any],
7658
8981
  time_created: str,
7659
8982
  time_updated: str):
7660
8983
  """
@@ -7674,6 +8997,7 @@ class GetExternalClusterInstancesExternalClusterInstanceCollectionItemResult(dic
7674
8997
  :param str lifecycle_details: Additional information about the current lifecycle state.
7675
8998
  :param str node_role: The role of the cluster node.
7676
8999
  :param str state: The current lifecycle state of the external cluster instance.
9000
+ :param Mapping[str, Any] system_tags: System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
7677
9001
  :param str time_created: The date and time the external cluster instance was created.
7678
9002
  :param str time_updated: The date and time the external cluster instance was last updated.
7679
9003
  """
@@ -7694,6 +9018,7 @@ class GetExternalClusterInstancesExternalClusterInstanceCollectionItemResult(dic
7694
9018
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
7695
9019
  pulumi.set(__self__, "node_role", node_role)
7696
9020
  pulumi.set(__self__, "state", state)
9021
+ pulumi.set(__self__, "system_tags", system_tags)
7697
9022
  pulumi.set(__self__, "time_created", time_created)
7698
9023
  pulumi.set(__self__, "time_updated", time_updated)
7699
9024
 
@@ -7830,6 +9155,14 @@ class GetExternalClusterInstancesExternalClusterInstanceCollectionItemResult(dic
7830
9155
  """
7831
9156
  return pulumi.get(self, "state")
7832
9157
 
9158
+ @property
9159
+ @pulumi.getter(name="systemTags")
9160
+ def system_tags(self) -> Mapping[str, Any]:
9161
+ """
9162
+ System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
9163
+ """
9164
+ return pulumi.get(self, "system_tags")
9165
+
7833
9166
  @property
7834
9167
  @pulumi.getter(name="timeCreated")
7835
9168
  def time_created(self) -> str:
@@ -8037,6 +9370,7 @@ class GetExternalClustersExternalClusterCollectionItemResult(dict):
8037
9370
  ocr_file_location: str,
8038
9371
  scan_configurations: Sequence['outputs.GetExternalClustersExternalClusterCollectionItemScanConfigurationResult'],
8039
9372
  state: str,
9373
+ system_tags: Mapping[str, Any],
8040
9374
  time_created: str,
8041
9375
  time_updated: str,
8042
9376
  version: str,
@@ -8058,6 +9392,7 @@ class GetExternalClustersExternalClusterCollectionItemResult(dict):
8058
9392
  :param str ocr_file_location: The location of the Oracle Cluster Registry (OCR).
8059
9393
  :param Sequence['GetExternalClustersExternalClusterCollectionItemScanConfigurationArgs'] scan_configurations: The list of Single Client Access Name (SCAN) configurations of the external cluster.
8060
9394
  :param str state: The current lifecycle state of the external cluster.
9395
+ :param Mapping[str, Any] system_tags: System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
8061
9396
  :param str time_created: The date and time the external cluster was created.
8062
9397
  :param str time_updated: The date and time the external cluster was last updated.
8063
9398
  :param str version: The cluster version.
@@ -8080,6 +9415,7 @@ class GetExternalClustersExternalClusterCollectionItemResult(dict):
8080
9415
  pulumi.set(__self__, "ocr_file_location", ocr_file_location)
8081
9416
  pulumi.set(__self__, "scan_configurations", scan_configurations)
8082
9417
  pulumi.set(__self__, "state", state)
9418
+ pulumi.set(__self__, "system_tags", system_tags)
8083
9419
  pulumi.set(__self__, "time_created", time_created)
8084
9420
  pulumi.set(__self__, "time_updated", time_updated)
8085
9421
  pulumi.set(__self__, "version", version)
@@ -8218,6 +9554,14 @@ class GetExternalClustersExternalClusterCollectionItemResult(dict):
8218
9554
  """
8219
9555
  return pulumi.get(self, "state")
8220
9556
 
9557
+ @property
9558
+ @pulumi.getter(name="systemTags")
9559
+ def system_tags(self) -> Mapping[str, Any]:
9560
+ """
9561
+ System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
9562
+ """
9563
+ return pulumi.get(self, "system_tags")
9564
+
8221
9565
  @property
8222
9566
  @pulumi.getter(name="timeCreated")
8223
9567
  def time_created(self) -> str:
@@ -8444,6 +9788,7 @@ class GetExternalDatabasesExternalDatabaseCollectionItemResult(dict):
8444
9788
  id: str,
8445
9789
  instance_details: Sequence['outputs.GetExternalDatabasesExternalDatabaseCollectionItemInstanceDetailResult'],
8446
9790
  state: str,
9791
+ system_tags: Mapping[str, Any],
8447
9792
  time_created: str):
8448
9793
  """
8449
9794
  :param str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
@@ -8460,6 +9805,7 @@ class GetExternalDatabasesExternalDatabaseCollectionItemResult(dict):
8460
9805
  :param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external DB system.
8461
9806
  :param Sequence['GetExternalDatabasesExternalDatabaseCollectionItemInstanceDetailArgs'] instance_details: The list of database instances if the database is a RAC database.
8462
9807
  :param str state: The current lifecycle state of the external database resource.
9808
+ :param Mapping[str, Any] system_tags: System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
8463
9809
  :param str time_created: The date and time the external DB system was created.
8464
9810
  """
8465
9811
  pulumi.set(__self__, "compartment_id", compartment_id)
@@ -8476,6 +9822,7 @@ class GetExternalDatabasesExternalDatabaseCollectionItemResult(dict):
8476
9822
  pulumi.set(__self__, "id", id)
8477
9823
  pulumi.set(__self__, "instance_details", instance_details)
8478
9824
  pulumi.set(__self__, "state", state)
9825
+ pulumi.set(__self__, "system_tags", system_tags)
8479
9826
  pulumi.set(__self__, "time_created", time_created)
8480
9827
 
8481
9828
  @property
@@ -8590,6 +9937,14 @@ class GetExternalDatabasesExternalDatabaseCollectionItemResult(dict):
8590
9937
  """
8591
9938
  return pulumi.get(self, "state")
8592
9939
 
9940
+ @property
9941
+ @pulumi.getter(name="systemTags")
9942
+ def system_tags(self) -> Mapping[str, Any]:
9943
+ """
9944
+ System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
9945
+ """
9946
+ return pulumi.get(self, "system_tags")
9947
+
8593
9948
  @property
8594
9949
  @pulumi.getter(name="timeCreated")
8595
9950
  def time_created(self) -> str:
@@ -8824,6 +10179,7 @@ class GetExternalDbHomesExternalDbHomeCollectionItemResult(dict):
8824
10179
  id: str,
8825
10180
  lifecycle_details: str,
8826
10181
  state: str,
10182
+ system_tags: Mapping[str, Any],
8827
10183
  time_created: str,
8828
10184
  time_updated: str):
8829
10185
  """
@@ -8838,6 +10194,7 @@ class GetExternalDbHomesExternalDbHomeCollectionItemResult(dict):
8838
10194
  :param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external DB home.
8839
10195
  :param str lifecycle_details: Additional information about the current lifecycle state.
8840
10196
  :param str state: The current lifecycle state of the external DB home.
10197
+ :param Mapping[str, Any] system_tags: System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
8841
10198
  :param str time_created: The date and time the external DB home was created.
8842
10199
  :param str time_updated: The date and time the external DB home was last updated.
8843
10200
  """
@@ -8853,6 +10210,7 @@ class GetExternalDbHomesExternalDbHomeCollectionItemResult(dict):
8853
10210
  pulumi.set(__self__, "id", id)
8854
10211
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
8855
10212
  pulumi.set(__self__, "state", state)
10213
+ pulumi.set(__self__, "system_tags", system_tags)
8856
10214
  pulumi.set(__self__, "time_created", time_created)
8857
10215
  pulumi.set(__self__, "time_updated", time_updated)
8858
10216
 
@@ -8949,6 +10307,14 @@ class GetExternalDbHomesExternalDbHomeCollectionItemResult(dict):
8949
10307
  """
8950
10308
  return pulumi.get(self, "state")
8951
10309
 
10310
+ @property
10311
+ @pulumi.getter(name="systemTags")
10312
+ def system_tags(self) -> Mapping[str, Any]:
10313
+ """
10314
+ System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
10315
+ """
10316
+ return pulumi.get(self, "system_tags")
10317
+
8952
10318
  @property
8953
10319
  @pulumi.getter(name="timeCreated")
8954
10320
  def time_created(self) -> str:
@@ -9024,6 +10390,7 @@ class GetExternalDbNodesExternalDbNodeCollectionItemResult(dict):
9024
10390
  lifecycle_details: str,
9025
10391
  memory_size_in_gbs: float,
9026
10392
  state: str,
10393
+ system_tags: Mapping[str, Any],
9027
10394
  time_created: str,
9028
10395
  time_updated: str):
9029
10396
  """
@@ -9042,6 +10409,7 @@ class GetExternalDbNodesExternalDbNodeCollectionItemResult(dict):
9042
10409
  :param str lifecycle_details: Additional information about the current lifecycle state.
9043
10410
  :param float memory_size_in_gbs: The total memory in gigabytes (GB) on the DB node.
9044
10411
  :param str state: The current lifecycle state of the external DB node.
10412
+ :param Mapping[str, Any] system_tags: System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
9045
10413
  :param str time_created: The date and time the external DB node was created.
9046
10414
  :param str time_updated: The date and time the external DB node was last updated.
9047
10415
  """
@@ -9061,6 +10429,7 @@ class GetExternalDbNodesExternalDbNodeCollectionItemResult(dict):
9061
10429
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
9062
10430
  pulumi.set(__self__, "memory_size_in_gbs", memory_size_in_gbs)
9063
10431
  pulumi.set(__self__, "state", state)
10432
+ pulumi.set(__self__, "system_tags", system_tags)
9064
10433
  pulumi.set(__self__, "time_created", time_created)
9065
10434
  pulumi.set(__self__, "time_updated", time_updated)
9066
10435
 
@@ -9189,6 +10558,14 @@ class GetExternalDbNodesExternalDbNodeCollectionItemResult(dict):
9189
10558
  """
9190
10559
  return pulumi.get(self, "state")
9191
10560
 
10561
+ @property
10562
+ @pulumi.getter(name="systemTags")
10563
+ def system_tags(self) -> Mapping[str, Any]:
10564
+ """
10565
+ System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
10566
+ """
10567
+ return pulumi.get(self, "system_tags")
10568
+
9192
10569
  @property
9193
10570
  @pulumi.getter(name="timeCreated")
9194
10571
  def time_created(self) -> str:
@@ -9520,6 +10897,7 @@ class GetExternalDbSystemConnectorsExternalDbSystemConnectorCollectionItemResult
9520
10897
  id: str,
9521
10898
  lifecycle_details: str,
9522
10899
  state: str,
10900
+ system_tags: Mapping[str, Any],
9523
10901
  time_connection_status_last_updated: str,
9524
10902
  time_created: str,
9525
10903
  time_updated: str):
@@ -9537,6 +10915,7 @@ class GetExternalDbSystemConnectorsExternalDbSystemConnectorCollectionItemResult
9537
10915
  :param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the external DB system connector.
9538
10916
  :param str lifecycle_details: Additional information about the current lifecycle state.
9539
10917
  :param str state: The current lifecycle state of the external DB system connector.
10918
+ :param Mapping[str, Any] system_tags: System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
9540
10919
  :param str time_connection_status_last_updated: The date and time the connectionStatus of the external DB system connector was last updated.
9541
10920
  :param str time_created: The date and time the external DB system connector was created.
9542
10921
  :param str time_updated: The date and time the external DB system connector was last updated.
@@ -9554,6 +10933,7 @@ class GetExternalDbSystemConnectorsExternalDbSystemConnectorCollectionItemResult
9554
10933
  pulumi.set(__self__, "id", id)
9555
10934
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
9556
10935
  pulumi.set(__self__, "state", state)
10936
+ pulumi.set(__self__, "system_tags", system_tags)
9557
10937
  pulumi.set(__self__, "time_connection_status_last_updated", time_connection_status_last_updated)
9558
10938
  pulumi.set(__self__, "time_created", time_created)
9559
10939
  pulumi.set(__self__, "time_updated", time_updated)
@@ -9662,6 +11042,14 @@ class GetExternalDbSystemConnectorsExternalDbSystemConnectorCollectionItemResult
9662
11042
  """
9663
11043
  return pulumi.get(self, "state")
9664
11044
 
11045
+ @property
11046
+ @pulumi.getter(name="systemTags")
11047
+ def system_tags(self) -> Mapping[str, Any]:
11048
+ """
11049
+ System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
11050
+ """
11051
+ return pulumi.get(self, "system_tags")
11052
+
9665
11053
  @property
9666
11054
  @pulumi.getter(name="timeConnectionStatusLastUpdated")
9667
11055
  def time_connection_status_last_updated(self) -> str:
@@ -10019,6 +11407,7 @@ class GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemResul
10019
11407
  patch_operations: Sequence['outputs.GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemPatchOperationResult'],
10020
11408
  resource_id: str,
10021
11409
  state: str,
11410
+ system_tags: Mapping[str, Any],
10022
11411
  time_created: str,
10023
11412
  time_updated: str):
10024
11413
  """
@@ -10033,6 +11422,7 @@ class GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemResul
10033
11422
  :param str lifecycle_details: Additional information about the current lifecycle state.
10034
11423
  :param str resource_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the existing Oracle Cloud Infrastructure resource matching the discovered DB system.
10035
11424
  :param str state: The current lifecycle state of the external DB system discovery resource.
11425
+ :param Mapping[str, Any] system_tags: System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
10036
11426
  :param str time_created: The date and time the external DB system discovery was created.
10037
11427
  :param str time_updated: The date and time the external DB system discovery was last updated.
10038
11428
  """
@@ -10049,6 +11439,7 @@ class GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemResul
10049
11439
  pulumi.set(__self__, "patch_operations", patch_operations)
10050
11440
  pulumi.set(__self__, "resource_id", resource_id)
10051
11441
  pulumi.set(__self__, "state", state)
11442
+ pulumi.set(__self__, "system_tags", system_tags)
10052
11443
  pulumi.set(__self__, "time_created", time_created)
10053
11444
  pulumi.set(__self__, "time_updated", time_updated)
10054
11445
 
@@ -10150,6 +11541,14 @@ class GetExternalDbSystemDiscoveriesExternalDbSystemDiscoveryCollectionItemResul
10150
11541
  """
10151
11542
  return pulumi.get(self, "state")
10152
11543
 
11544
+ @property
11545
+ @pulumi.getter(name="systemTags")
11546
+ def system_tags(self) -> Mapping[str, Any]:
11547
+ """
11548
+ System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
11549
+ """
11550
+ return pulumi.get(self, "system_tags")
11551
+
10153
11552
  @property
10154
11553
  @pulumi.getter(name="timeCreated")
10155
11554
  def time_created(self) -> str:
@@ -14741,6 +16140,7 @@ class GetExternalDbSystemsExternalDbSystemCollectionItemResult(dict):
14741
16140
  lifecycle_details: str,
14742
16141
  stack_monitoring_configs: Sequence['outputs.GetExternalDbSystemsExternalDbSystemCollectionItemStackMonitoringConfigResult'],
14743
16142
  state: str,
16143
+ system_tags: Mapping[str, Any],
14744
16144
  time_created: str,
14745
16145
  time_updated: str):
14746
16146
  """
@@ -14757,6 +16157,7 @@ class GetExternalDbSystemsExternalDbSystemCollectionItemResult(dict):
14757
16157
  :param str lifecycle_details: Additional information about the current lifecycle state.
14758
16158
  :param Sequence['GetExternalDbSystemsExternalDbSystemCollectionItemStackMonitoringConfigArgs'] stack_monitoring_configs: The configuration details of Stack Monitoring for an external DB system.
14759
16159
  :param str state: The current lifecycle state of the external DB system resource.
16160
+ :param Mapping[str, Any] system_tags: System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
14760
16161
  :param str time_created: The date and time the external DB system was created.
14761
16162
  :param str time_updated: The date and time the external DB system was last updated.
14762
16163
  """
@@ -14773,6 +16174,7 @@ class GetExternalDbSystemsExternalDbSystemCollectionItemResult(dict):
14773
16174
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
14774
16175
  pulumi.set(__self__, "stack_monitoring_configs", stack_monitoring_configs)
14775
16176
  pulumi.set(__self__, "state", state)
16177
+ pulumi.set(__self__, "system_tags", system_tags)
14776
16178
  pulumi.set(__self__, "time_created", time_created)
14777
16179
  pulumi.set(__self__, "time_updated", time_updated)
14778
16180
 
@@ -14880,6 +16282,14 @@ class GetExternalDbSystemsExternalDbSystemCollectionItemResult(dict):
14880
16282
  """
14881
16283
  return pulumi.get(self, "state")
14882
16284
 
16285
+ @property
16286
+ @pulumi.getter(name="systemTags")
16287
+ def system_tags(self) -> Mapping[str, Any]:
16288
+ """
16289
+ System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
16290
+ """
16291
+ return pulumi.get(self, "system_tags")
16292
+
14883
16293
  @property
14884
16294
  @pulumi.getter(name="timeCreated")
14885
16295
  def time_created(self) -> str:
@@ -15271,6 +16681,7 @@ class GetExternalExadataInfrastructuresExternalExadataInfrastructureCollectionIt
15271
16681
  status: str,
15272
16682
  storage_grids: Sequence['outputs.GetExternalExadataInfrastructuresExternalExadataInfrastructureCollectionItemStorageGridResult'],
15273
16683
  storage_server_names: Sequence[str],
16684
+ system_tags: Mapping[str, Any],
15274
16685
  time_created: str,
15275
16686
  time_updated: str,
15276
16687
  version: str):
@@ -15290,6 +16701,7 @@ class GetExternalExadataInfrastructuresExternalExadataInfrastructureCollectionIt
15290
16701
  :param str state: The current lifecycle state of the database resource.
15291
16702
  :param str status: The status of the Exadata resource.
15292
16703
  :param Sequence['GetExternalExadataInfrastructuresExternalExadataInfrastructureCollectionItemStorageGridArgs'] storage_grids: The Exadata storage server grid of the Exadata infrastructure.
16704
+ :param Mapping[str, Any] system_tags: System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
15293
16705
  :param str time_created: The timestamp of the creation of the Exadata resource.
15294
16706
  :param str time_updated: The timestamp of the last update of the Exadata resource.
15295
16707
  :param str version: The version of the Exadata resource.
@@ -15312,6 +16724,7 @@ class GetExternalExadataInfrastructuresExternalExadataInfrastructureCollectionIt
15312
16724
  pulumi.set(__self__, "status", status)
15313
16725
  pulumi.set(__self__, "storage_grids", storage_grids)
15314
16726
  pulumi.set(__self__, "storage_server_names", storage_server_names)
16727
+ pulumi.set(__self__, "system_tags", system_tags)
15315
16728
  pulumi.set(__self__, "time_created", time_created)
15316
16729
  pulumi.set(__self__, "time_updated", time_updated)
15317
16730
  pulumi.set(__self__, "version", version)
@@ -15451,6 +16864,14 @@ class GetExternalExadataInfrastructuresExternalExadataInfrastructureCollectionIt
15451
16864
  def storage_server_names(self) -> Sequence[str]:
15452
16865
  return pulumi.get(self, "storage_server_names")
15453
16866
 
16867
+ @property
16868
+ @pulumi.getter(name="systemTags")
16869
+ def system_tags(self) -> Mapping[str, Any]:
16870
+ """
16871
+ System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
16872
+ """
16873
+ return pulumi.get(self, "system_tags")
16874
+
15454
16875
  @property
15455
16876
  @pulumi.getter(name="timeCreated")
15456
16877
  def time_created(self) -> str:
@@ -15840,6 +17261,7 @@ class GetExternalExadataStorageConnectorsExternalExadataStorageConnectorCollecti
15840
17261
  state: str,
15841
17262
  status: str,
15842
17263
  storage_server_id: str,
17264
+ system_tags: Mapping[str, Any],
15843
17265
  time_created: str,
15844
17266
  time_updated: str,
15845
17267
  version: str):
@@ -15857,6 +17279,7 @@ class GetExternalExadataStorageConnectorsExternalExadataStorageConnectorCollecti
15857
17279
  :param str state: The current lifecycle state of the database resource.
15858
17280
  :param str status: The status of the Exadata resource.
15859
17281
  :param str storage_server_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata storage server.
17282
+ :param Mapping[str, Any] system_tags: System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
15860
17283
  :param str time_created: The timestamp of the creation of the Exadata resource.
15861
17284
  :param str time_updated: The timestamp of the last update of the Exadata resource.
15862
17285
  :param str version: The version of the Exadata resource.
@@ -15876,6 +17299,7 @@ class GetExternalExadataStorageConnectorsExternalExadataStorageConnectorCollecti
15876
17299
  pulumi.set(__self__, "state", state)
15877
17300
  pulumi.set(__self__, "status", status)
15878
17301
  pulumi.set(__self__, "storage_server_id", storage_server_id)
17302
+ pulumi.set(__self__, "system_tags", system_tags)
15879
17303
  pulumi.set(__self__, "time_created", time_created)
15880
17304
  pulumi.set(__self__, "time_updated", time_updated)
15881
17305
  pulumi.set(__self__, "version", version)
@@ -15994,6 +17418,14 @@ class GetExternalExadataStorageConnectorsExternalExadataStorageConnectorCollecti
15994
17418
  """
15995
17419
  return pulumi.get(self, "storage_server_id")
15996
17420
 
17421
+ @property
17422
+ @pulumi.getter(name="systemTags")
17423
+ def system_tags(self) -> Mapping[str, Any]:
17424
+ """
17425
+ System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
17426
+ """
17427
+ return pulumi.get(self, "system_tags")
17428
+
15997
17429
  @property
15998
17430
  @pulumi.getter(name="timeCreated")
15999
17431
  def time_created(self) -> str:
@@ -16108,6 +17540,7 @@ class GetExternalExadataStorageGridStorageServerResult(dict):
16108
17540
  resource_type: str,
16109
17541
  state: str,
16110
17542
  status: str,
17543
+ system_tags: Mapping[str, Any],
16111
17544
  time_created: str,
16112
17545
  time_updated: str,
16113
17546
  version: str):
@@ -16131,6 +17564,7 @@ class GetExternalExadataStorageGridStorageServerResult(dict):
16131
17564
  :param str resource_type: The type of Exadata resource.
16132
17565
  :param str state: The current lifecycle state of the database resource.
16133
17566
  :param str status: The status of the Exadata resource.
17567
+ :param Mapping[str, Any] system_tags: System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
16134
17568
  :param str time_created: The timestamp of the creation of the Exadata resource.
16135
17569
  :param str time_updated: The timestamp of the last update of the Exadata resource.
16136
17570
  :param str version: The version of the Exadata resource.
@@ -16154,6 +17588,7 @@ class GetExternalExadataStorageGridStorageServerResult(dict):
16154
17588
  pulumi.set(__self__, "resource_type", resource_type)
16155
17589
  pulumi.set(__self__, "state", state)
16156
17590
  pulumi.set(__self__, "status", status)
17591
+ pulumi.set(__self__, "system_tags", system_tags)
16157
17592
  pulumi.set(__self__, "time_created", time_created)
16158
17593
  pulumi.set(__self__, "time_updated", time_updated)
16159
17594
  pulumi.set(__self__, "version", version)
@@ -16310,6 +17745,14 @@ class GetExternalExadataStorageGridStorageServerResult(dict):
16310
17745
  """
16311
17746
  return pulumi.get(self, "status")
16312
17747
 
17748
+ @property
17749
+ @pulumi.getter(name="systemTags")
17750
+ def system_tags(self) -> Mapping[str, Any]:
17751
+ """
17752
+ System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
17753
+ """
17754
+ return pulumi.get(self, "system_tags")
17755
+
16313
17756
  @property
16314
17757
  @pulumi.getter(name="timeCreated")
16315
17758
  def time_created(self) -> str:
@@ -16351,6 +17794,7 @@ class GetExternalExadataStorageServerConnectorResult(dict):
16351
17794
  state: str,
16352
17795
  status: str,
16353
17796
  storage_server_id: str,
17797
+ system_tags: Mapping[str, Any],
16354
17798
  time_created: str,
16355
17799
  time_updated: str,
16356
17800
  version: str):
@@ -16368,6 +17812,7 @@ class GetExternalExadataStorageServerConnectorResult(dict):
16368
17812
  :param str state: The current lifecycle state of the database resource.
16369
17813
  :param str status: The status of the Exadata resource.
16370
17814
  :param str storage_server_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata storage server.
17815
+ :param Mapping[str, Any] system_tags: System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
16371
17816
  :param str time_created: The timestamp of the creation of the Exadata resource.
16372
17817
  :param str time_updated: The timestamp of the last update of the Exadata resource.
16373
17818
  :param str version: The version of the Exadata resource.
@@ -16385,6 +17830,7 @@ class GetExternalExadataStorageServerConnectorResult(dict):
16385
17830
  pulumi.set(__self__, "state", state)
16386
17831
  pulumi.set(__self__, "status", status)
16387
17832
  pulumi.set(__self__, "storage_server_id", storage_server_id)
17833
+ pulumi.set(__self__, "system_tags", system_tags)
16388
17834
  pulumi.set(__self__, "time_created", time_created)
16389
17835
  pulumi.set(__self__, "time_updated", time_updated)
16390
17836
  pulumi.set(__self__, "version", version)
@@ -16493,6 +17939,14 @@ class GetExternalExadataStorageServerConnectorResult(dict):
16493
17939
  """
16494
17940
  return pulumi.get(self, "storage_server_id")
16495
17941
 
17942
+ @property
17943
+ @pulumi.getter(name="systemTags")
17944
+ def system_tags(self) -> Mapping[str, Any]:
17945
+ """
17946
+ System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
17947
+ """
17948
+ return pulumi.get(self, "system_tags")
17949
+
16496
17950
  @property
16497
17951
  @pulumi.getter(name="timeCreated")
16498
17952
  def time_created(self) -> str:
@@ -17454,6 +18908,7 @@ class GetExternalListenersExternalListenerCollectionItemResult(dict):
17454
18908
  serviced_asms: Sequence['outputs.GetExternalListenersExternalListenerCollectionItemServicedAsmResult'],
17455
18909
  serviced_databases: Sequence['outputs.GetExternalListenersExternalListenerCollectionItemServicedDatabaseResult'],
17456
18910
  state: str,
18911
+ system_tags: Mapping[str, Any],
17457
18912
  time_created: str,
17458
18913
  time_updated: str,
17459
18914
  trace_directory: str,
@@ -17482,6 +18937,7 @@ class GetExternalListenersExternalListenerCollectionItemResult(dict):
17482
18937
  :param Sequence['GetExternalListenersExternalListenerCollectionItemServicedAsmArgs'] serviced_asms: The list of ASMs that are serviced by the listener.
17483
18938
  :param Sequence['GetExternalListenersExternalListenerCollectionItemServicedDatabaseArgs'] serviced_databases: The list of databases that are serviced by the listener.
17484
18939
  :param str state: The current lifecycle state of the external listener.
18940
+ :param Mapping[str, Any] system_tags: System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
17485
18941
  :param str time_created: The date and time the external listener was created.
17486
18942
  :param str time_updated: The date and time the external listener was last updated.
17487
18943
  :param str trace_directory: The destination directory of the listener trace file.
@@ -17511,6 +18967,7 @@ class GetExternalListenersExternalListenerCollectionItemResult(dict):
17511
18967
  pulumi.set(__self__, "serviced_asms", serviced_asms)
17512
18968
  pulumi.set(__self__, "serviced_databases", serviced_databases)
17513
18969
  pulumi.set(__self__, "state", state)
18970
+ pulumi.set(__self__, "system_tags", system_tags)
17514
18971
  pulumi.set(__self__, "time_created", time_created)
17515
18972
  pulumi.set(__self__, "time_updated", time_updated)
17516
18973
  pulumi.set(__self__, "trace_directory", trace_directory)
@@ -17705,6 +19162,14 @@ class GetExternalListenersExternalListenerCollectionItemResult(dict):
17705
19162
  """
17706
19163
  return pulumi.get(self, "state")
17707
19164
 
19165
+ @property
19166
+ @pulumi.getter(name="systemTags")
19167
+ def system_tags(self) -> Mapping[str, Any]:
19168
+ """
19169
+ System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
19170
+ """
19171
+ return pulumi.get(self, "system_tags")
19172
+
17708
19173
  @property
17709
19174
  @pulumi.getter(name="timeCreated")
17710
19175
  def time_created(self) -> str:
@@ -18685,6 +20150,7 @@ class GetManagedDatabaseGroupManagedDatabaseResult(dict):
18685
20150
  freeform_tags: Mapping[str, Any],
18686
20151
  id: str,
18687
20152
  name: str,
20153
+ system_tags: Mapping[str, Any],
18688
20154
  time_added: str,
18689
20155
  workload_type: str):
18690
20156
  """
@@ -18696,6 +20162,7 @@ class GetManagedDatabaseGroupManagedDatabaseResult(dict):
18696
20162
  :param Mapping[str, Any] 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"}`
18697
20163
  :param str id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Managed Database.
18698
20164
  :param str name: The name of the Managed Database Group.
20165
+ :param Mapping[str, Any] system_tags: System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
18699
20166
  :param str time_added: The date and time the Managed Database was added to the group.
18700
20167
  :param str workload_type: The workload type of the Autonomous Database.
18701
20168
  """
@@ -18707,6 +20174,7 @@ class GetManagedDatabaseGroupManagedDatabaseResult(dict):
18707
20174
  pulumi.set(__self__, "freeform_tags", freeform_tags)
18708
20175
  pulumi.set(__self__, "id", id)
18709
20176
  pulumi.set(__self__, "name", name)
20177
+ pulumi.set(__self__, "system_tags", system_tags)
18710
20178
  pulumi.set(__self__, "time_added", time_added)
18711
20179
  pulumi.set(__self__, "workload_type", workload_type)
18712
20180
 
@@ -18774,6 +20242,14 @@ class GetManagedDatabaseGroupManagedDatabaseResult(dict):
18774
20242
  """
18775
20243
  return pulumi.get(self, "name")
18776
20244
 
20245
+ @property
20246
+ @pulumi.getter(name="systemTags")
20247
+ def system_tags(self) -> Mapping[str, Any]:
20248
+ """
20249
+ System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
20250
+ """
20251
+ return pulumi.get(self, "system_tags")
20252
+
18777
20253
  @property
18778
20254
  @pulumi.getter(name="timeAdded")
18779
20255
  def time_added(self) -> str:
@@ -18847,6 +20323,7 @@ class GetManagedDatabaseGroupsManagedDatabaseGroupCollectionItemResult(dict):
18847
20323
  managed_databases: Sequence['outputs.GetManagedDatabaseGroupsManagedDatabaseGroupCollectionItemManagedDatabaseResult'],
18848
20324
  name: str,
18849
20325
  state: str,
20326
+ system_tags: Mapping[str, Any],
18850
20327
  time_created: str,
18851
20328
  time_updated: str):
18852
20329
  """
@@ -18858,6 +20335,7 @@ class GetManagedDatabaseGroupsManagedDatabaseGroupCollectionItemResult(dict):
18858
20335
  :param Sequence['GetManagedDatabaseGroupsManagedDatabaseGroupCollectionItemManagedDatabaseArgs'] managed_databases: A list of Managed Databases in the Managed Database Group.
18859
20336
  :param str name: A filter to return only resources that match the entire name. Only one of the parameters, id or name should be provided
18860
20337
  :param str state: The lifecycle state of a resource.
20338
+ :param Mapping[str, Any] system_tags: System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
18861
20339
  :param str time_created: The date and time the Managed Database Group was created.
18862
20340
  :param str time_updated: The date and time the Managed Database Group was last updated.
18863
20341
  """
@@ -18869,6 +20347,7 @@ class GetManagedDatabaseGroupsManagedDatabaseGroupCollectionItemResult(dict):
18869
20347
  pulumi.set(__self__, "managed_databases", managed_databases)
18870
20348
  pulumi.set(__self__, "name", name)
18871
20349
  pulumi.set(__self__, "state", state)
20350
+ pulumi.set(__self__, "system_tags", system_tags)
18872
20351
  pulumi.set(__self__, "time_created", time_created)
18873
20352
  pulumi.set(__self__, "time_updated", time_updated)
18874
20353
 
@@ -18936,6 +20415,14 @@ class GetManagedDatabaseGroupsManagedDatabaseGroupCollectionItemResult(dict):
18936
20415
  """
18937
20416
  return pulumi.get(self, "state")
18938
20417
 
20418
+ @property
20419
+ @pulumi.getter(name="systemTags")
20420
+ def system_tags(self) -> Mapping[str, Any]:
20421
+ """
20422
+ System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
20423
+ """
20424
+ return pulumi.get(self, "system_tags")
20425
+
18939
20426
  @property
18940
20427
  @pulumi.getter(name="timeCreated")
18941
20428
  def time_created(self) -> str:
@@ -18964,6 +20451,7 @@ class GetManagedDatabaseGroupsManagedDatabaseGroupCollectionItemManagedDatabaseR
18964
20451
  freeform_tags: Mapping[str, Any],
18965
20452
  id: str,
18966
20453
  name: str,
20454
+ system_tags: Mapping[str, Any],
18967
20455
  time_added: str,
18968
20456
  workload_type: str):
18969
20457
  """
@@ -18975,6 +20463,7 @@ class GetManagedDatabaseGroupsManagedDatabaseGroupCollectionItemManagedDatabaseR
18975
20463
  :param Mapping[str, Any] 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"}`
18976
20464
  :param str id: The identifier of the resource. Only one of the parameters, id or name should be provided.
18977
20465
  :param str name: A filter to return only resources that match the entire name. Only one of the parameters, id or name should be provided
20466
+ :param Mapping[str, Any] system_tags: System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
18978
20467
  :param str time_added: The date and time the Managed Database was added to the group.
18979
20468
  :param str workload_type: The workload type of the Autonomous Database.
18980
20469
  """
@@ -18986,6 +20475,7 @@ class GetManagedDatabaseGroupsManagedDatabaseGroupCollectionItemManagedDatabaseR
18986
20475
  pulumi.set(__self__, "freeform_tags", freeform_tags)
18987
20476
  pulumi.set(__self__, "id", id)
18988
20477
  pulumi.set(__self__, "name", name)
20478
+ pulumi.set(__self__, "system_tags", system_tags)
18989
20479
  pulumi.set(__self__, "time_added", time_added)
18990
20480
  pulumi.set(__self__, "workload_type", workload_type)
18991
20481
 
@@ -19053,6 +20543,14 @@ class GetManagedDatabaseGroupsManagedDatabaseGroupCollectionItemManagedDatabaseR
19053
20543
  """
19054
20544
  return pulumi.get(self, "name")
19055
20545
 
20546
+ @property
20547
+ @pulumi.getter(name="systemTags")
20548
+ def system_tags(self) -> Mapping[str, Any]:
20549
+ """
20550
+ System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
20551
+ """
20552
+ return pulumi.get(self, "system_tags")
20553
+
19056
20554
  @property
19057
20555
  @pulumi.getter(name="timeAdded")
19058
20556
  def time_added(self) -> str:
@@ -26087,7 +27585,7 @@ class GetManagedMySqlDatabaseHeatWaveNodeResult(dict):
26087
27585
  """
26088
27586
  :param str id: The ID associated with the HeatWave node.
26089
27587
  :param str status: The status of the HeatWave node. Indicates whether the status of the node is UP, DOWN, or UNKNOWN at the current time.
26090
- :param str time_created: The date and time the node was created.
27588
+ :param str time_created: The date and time the HeatWave node was created.
26091
27589
  """
26092
27590
  pulumi.set(__self__, "id", id)
26093
27591
  pulumi.set(__self__, "status", status)
@@ -26113,7 +27611,7 @@ class GetManagedMySqlDatabaseHeatWaveNodeResult(dict):
26113
27611
  @pulumi.getter(name="timeCreated")
26114
27612
  def time_created(self) -> str:
26115
27613
  """
26116
- The date and time the node was created.
27614
+ The date and time the HeatWave node was created.
26117
27615
  """
26118
27616
  return pulumi.get(self, "time_created")
26119
27617
 
@@ -26911,6 +28409,7 @@ class GetNamedCredentialsNamedCredentialCollectionItemResult(dict):
26911
28409
  name: str,
26912
28410
  scope: str,
26913
28411
  state: str,
28412
+ system_tags: Mapping[str, Any],
26914
28413
  time_created: str,
26915
28414
  time_updated: str,
26916
28415
  type: str):
@@ -26926,6 +28425,7 @@ class GetNamedCredentialsNamedCredentialCollectionItemResult(dict):
26926
28425
  :param str name: The name of the named credential.
26927
28426
  :param str scope: The scope of named credential.
26928
28427
  :param str state: The current lifecycle state of the named credential.
28428
+ :param Mapping[str, Any] system_tags: System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
26929
28429
  :param str time_created: The date and time the named credential was created.
26930
28430
  :param str time_updated: The date and time the named credential was last updated.
26931
28431
  :param str type: The type of database that is associated to the named credential.
@@ -26941,6 +28441,7 @@ class GetNamedCredentialsNamedCredentialCollectionItemResult(dict):
26941
28441
  pulumi.set(__self__, "name", name)
26942
28442
  pulumi.set(__self__, "scope", scope)
26943
28443
  pulumi.set(__self__, "state", state)
28444
+ pulumi.set(__self__, "system_tags", system_tags)
26944
28445
  pulumi.set(__self__, "time_created", time_created)
26945
28446
  pulumi.set(__self__, "time_updated", time_updated)
26946
28447
  pulumi.set(__self__, "type", type)
@@ -27033,6 +28534,14 @@ class GetNamedCredentialsNamedCredentialCollectionItemResult(dict):
27033
28534
  """
27034
28535
  return pulumi.get(self, "state")
27035
28536
 
28537
+ @property
28538
+ @pulumi.getter(name="systemTags")
28539
+ def system_tags(self) -> Mapping[str, Any]:
28540
+ """
28541
+ System 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). System tags can be viewed by users, but can only be created by the system. Example: `{"orcl-cloud.free-tier-retained": "true"}`
28542
+ """
28543
+ return pulumi.get(self, "system_tags")
28544
+
27036
28545
  @property
27037
28546
  @pulumi.getter(name="timeCreated")
27038
28547
  def time_created(self) -> str: