pulumi-oci 2.8.0a1724220787__py3-none-any.whl → 2.9.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +86 -38
- pulumi_oci/analytics/_inputs.py +4 -4
- pulumi_oci/analytics/analytics_instance.py +199 -25
- pulumi_oci/analytics/get_analytics_instance.py +51 -2
- pulumi_oci/analytics/get_analytics_instances.py +1 -1
- pulumi_oci/analytics/outputs.py +52 -12
- pulumi_oci/announcementsservice/__init__.py +1 -0
- pulumi_oci/announcementsservice/_inputs.py +46 -6
- pulumi_oci/announcementsservice/announcement_subscription.py +14 -14
- pulumi_oci/announcementsservice/get_announcement_subscription.py +2 -2
- pulumi_oci/announcementsservice/get_services.py +173 -0
- pulumi_oci/announcementsservice/outputs.py +195 -18
- pulumi_oci/bigdataservice/_inputs.py +1 -49
- pulumi_oci/bigdataservice/bds_instance.py +0 -128
- pulumi_oci/bigdataservice/get_bds_instance.py +1 -31
- pulumi_oci/bigdataservice/outputs.py +3 -132
- pulumi_oci/database/_inputs.py +32 -0
- pulumi_oci/database/autonomous_database.py +28 -0
- pulumi_oci/database/data_guard_association.py +49 -0
- pulumi_oci/database/get_autonomous_database.py +14 -1
- pulumi_oci/database/get_autonomous_databases.py +32 -95
- pulumi_oci/database/get_data_guard_association.py +11 -1
- pulumi_oci/database/get_maintenance_run.py +14 -1
- pulumi_oci/database/maintenance_run.py +56 -7
- pulumi_oci/database/outputs.py +196 -42
- pulumi_oci/databasemanagement/__init__.py +1 -0
- pulumi_oci/databasemanagement/_inputs.py +873 -10
- pulumi_oci/databasemanagement/autonomous_database_autonomous_database_dbm_features_management.py +275 -0
- pulumi_oci/databasemanagement/database_dbm_features_management.py +37 -3
- pulumi_oci/databasemanagement/db_management_private_endpoint.py +49 -0
- pulumi_oci/databasemanagement/get_db_management_private_endpoint.py +14 -1
- pulumi_oci/databasemanagement/get_db_management_private_endpoints.py +21 -1
- pulumi_oci/databasemanagement/get_managed_database.py +47 -3
- pulumi_oci/databasemanagement/managed_database.py +56 -0
- pulumi_oci/databasemanagement/outputs.py +3331 -1397
- pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py +35 -1
- pulumi_oci/datasafe/__init__.py +6 -0
- pulumi_oci/datasafe/_inputs.py +18 -0
- pulumi_oci/datasafe/database_security_config_management.py +244 -2
- pulumi_oci/datasafe/masking_policy_health_report_management.py +453 -0
- pulumi_oci/datasafe/masking_report_management.py +693 -0
- pulumi_oci/datasafe/outputs.py +18 -0
- pulumi_oci/datasafe/security_policy_deployment_management.py +180 -2
- pulumi_oci/datasafe/security_policy_management.py +172 -2
- pulumi_oci/datasafe/set_security_assessment_baseline_management.py +304 -0
- pulumi_oci/datasafe/set_user_assessment_baseline_management.py +304 -0
- pulumi_oci/datasafe/sql_firewall_policy_management.py +354 -2
- pulumi_oci/datasafe/unset_security_assessment_baseline_management.py +264 -0
- pulumi_oci/datasafe/unset_user_assessment_baseline_management.py +264 -0
- pulumi_oci/delegateaccesscontrol/__init__.py +24 -0
- pulumi_oci/delegateaccesscontrol/_inputs.py +306 -0
- pulumi_oci/delegateaccesscontrol/delegation_control.py +1082 -0
- pulumi_oci/{globallydistributeddatabase/private_endpoint.py → delegateaccesscontrol/delegation_subscription.py} +162 -267
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request.py +535 -0
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_audit_log_report.py +174 -0
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_histories.py +133 -0
- pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_requests.py +250 -0
- pulumi_oci/delegateaccesscontrol/get_delegation_control.py +378 -0
- pulumi_oci/delegateaccesscontrol/get_delegation_control_resources.py +133 -0
- pulumi_oci/delegateaccesscontrol/get_delegation_controls.py +213 -0
- pulumi_oci/{globallydistributeddatabase/get_private_endpoint.py → delegateaccesscontrol/get_delegation_subscription.py} +66 -105
- pulumi_oci/delegateaccesscontrol/get_delegation_subscriptions.py +176 -0
- pulumi_oci/delegateaccesscontrol/get_service_provider.py +274 -0
- pulumi_oci/delegateaccesscontrol/get_service_provider_action.py +210 -0
- pulumi_oci/delegateaccesscontrol/get_service_provider_actions.py +210 -0
- pulumi_oci/delegateaccesscontrol/get_service_providers.py +213 -0
- pulumi_oci/delegateaccesscontrol/outputs.py +1679 -0
- pulumi_oci/{fleetsoftwareupdate → desktops}/__init__.py +7 -6
- pulumi_oci/desktops/_inputs.py +483 -0
- pulumi_oci/desktops/desktop_pool.py +1348 -0
- pulumi_oci/desktops/get_desktop.py +223 -0
- pulumi_oci/desktops/get_desktop_pool.py +418 -0
- pulumi_oci/desktops/get_desktop_pool_desktops.py +208 -0
- pulumi_oci/desktops/get_desktop_pool_volumes.py +214 -0
- pulumi_oci/desktops/get_desktop_pools.py +203 -0
- pulumi_oci/desktops/get_desktops.py +214 -0
- pulumi_oci/desktops/outputs.py +1738 -0
- pulumi_oci/disasterrecovery/_inputs.py +66 -2
- pulumi_oci/disasterrecovery/dr_protection_group.py +8 -0
- pulumi_oci/disasterrecovery/get_dr_plan_executions.py +24 -0
- pulumi_oci/disasterrecovery/outputs.py +150 -10
- pulumi_oci/filestorage/mount_target.py +143 -38
- pulumi_oci/filestorage/outputs.py +44 -0
- pulumi_oci/identity/domains_group.py +34 -0
- pulumi_oci/identity/domains_user.py +34 -0
- pulumi_oci/identity/get_domains_group.py +11 -1
- pulumi_oci/identity/get_domains_user.py +11 -1
- pulumi_oci/identity/outputs.py +14 -0
- pulumi_oci/integration/get_integration_instance.py +25 -2
- pulumi_oci/integration/integration_instance.py +88 -0
- pulumi_oci/integration/outputs.py +24 -6
- pulumi_oci/kms/_inputs.py +10 -10
- pulumi_oci/kms/get_vault.py +14 -1
- pulumi_oci/kms/outputs.py +41 -30
- pulumi_oci/kms/vault.py +28 -0
- pulumi_oci/loadbalancer/load_balancer.py +224 -0
- pulumi_oci/loadbalancer/outputs.py +22 -0
- pulumi_oci/mysql/_inputs.py +225 -2
- pulumi_oci/mysql/get_mysql_backup.py +1 -1
- pulumi_oci/mysql/get_mysql_db_system.py +27 -1
- pulumi_oci/mysql/mysql_backup.py +4 -4
- pulumi_oci/mysql/mysql_db_system.py +108 -0
- pulumi_oci/mysql/outputs.py +569 -8
- pulumi_oci/ocvp/get_cluster.py +2 -2
- pulumi_oci/ocvp/get_exsi_hosts.py +2 -2
- pulumi_oci/ocvp/get_supported_vmware_software_versions.py +22 -5
- pulumi_oci/ocvp/outputs.py +2 -2
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/recoverymod/_inputs.py +0 -8
- pulumi_oci/recoverymod/get_protected_database.py +14 -1
- pulumi_oci/recoverymod/get_protection_policy.py +14 -1
- pulumi_oci/recoverymod/outputs.py +22 -8
- pulumi_oci/recoverymod/protected_database.py +80 -3
- pulumi_oci/recoverymod/protection_policy.py +49 -0
- pulumi_oci/redis/__init__.py +1 -0
- pulumi_oci/redis/_inputs.py +40 -0
- pulumi_oci/redis/get_redis_cluster.py +47 -21
- pulumi_oci/redis/get_redis_cluster_nodes.py +156 -0
- pulumi_oci/redis/get_redis_clusters.py +8 -8
- pulumi_oci/redis/outputs.py +160 -28
- pulumi_oci/redis/redis_cluster.py +177 -79
- pulumi_oci/waf/_inputs.py +29 -16
- pulumi_oci/waf/outputs.py +33 -10
- {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.9.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.9.0.dist-info}/RECORD +127 -108
- {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.9.0.dist-info}/WHEEL +1 -1
- pulumi_oci/fleetsoftwareupdate/_inputs.py +0 -553
- pulumi_oci/fleetsoftwareupdate/fsu_collection.py +0 -514
- pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +0 -812
- pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +0 -225
- pulumi_oci/fleetsoftwareupdate/get_fsu_collections.py +0 -141
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +0 -325
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +0 -167
- pulumi_oci/fleetsoftwareupdate/outputs.py +0 -1481
- pulumi_oci/globallydistributeddatabase/__init__.py +0 -15
- pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1003
- pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -176
- pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -610
- pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -176
- pulumi_oci/globallydistributeddatabase/outputs.py +0 -2058
- pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1816
- {pulumi_oci-2.8.0a1724220787.dist-info → pulumi_oci-2.9.0.dist-info}/top_level.txt +0 -0
@@ -25,6 +25,8 @@ class MysqlDbSystemArgs:
|
|
25
25
|
backup_policy: Optional[pulumi.Input['MysqlDbSystemBackupPolicyArgs']] = None,
|
26
26
|
configuration_id: Optional[pulumi.Input[str]] = None,
|
27
27
|
crash_recovery: Optional[pulumi.Input[str]] = None,
|
28
|
+
customer_contacts: Optional[pulumi.Input[Sequence[pulumi.Input['MysqlDbSystemCustomerContactArgs']]]] = None,
|
29
|
+
data_storage: Optional[pulumi.Input['MysqlDbSystemDataStorageArgs']] = None,
|
28
30
|
data_storage_size_in_gb: Optional[pulumi.Input[int]] = None,
|
29
31
|
database_management: Optional[pulumi.Input[str]] = None,
|
30
32
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -60,6 +62,8 @@ class MysqlDbSystemArgs:
|
|
60
62
|
:param pulumi.Input['MysqlDbSystemBackupPolicyArgs'] backup_policy: (Updatable) Backup policy as optionally used for DB System Creation.
|
61
63
|
:param pulumi.Input[str] configuration_id: (Updatable) The OCID of the Configuration to be used for this DB System.
|
62
64
|
:param pulumi.Input[str] crash_recovery: (Updatable) Whether to run the DB System with InnoDB Redo Logs and the Double Write Buffer enabled or disabled, and whether to enable or disable syncing of the Binary Logs.
|
65
|
+
:param pulumi.Input[Sequence[pulumi.Input['MysqlDbSystemCustomerContactArgs']]] customer_contacts: (Updatable) The list of customer email addresses that receive information from Oracle about the specified Oracle Cloud Infrastructure DB System resource. Oracle uses these email addresses to send notifications about planned and unplanned software maintenance updates, information about system hardware, and other information needed by administrators. Up to 10 email addresses can be added to the customer contacts for a DB System.
|
66
|
+
:param pulumi.Input['MysqlDbSystemDataStorageArgs'] data_storage: (Updatable) Data Storage configuration properties.
|
63
67
|
:param pulumi.Input[int] data_storage_size_in_gb: (Updatable) Initial size of the data volume in GBs that will be created and attached. Keep in mind that this only specifies the size of the database data volume, the log volume for the database will be scaled appropriately with its shape. It is required if you are creating a new database. It cannot be set if you are creating a database from a backup.
|
64
68
|
:param pulumi.Input[str] database_management: (Updatable) Whether to enable monitoring via the Database Management service.
|
65
69
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{"foo-namespace.bar-key": "value"}`
|
@@ -107,6 +111,10 @@ class MysqlDbSystemArgs:
|
|
107
111
|
pulumi.set(__self__, "configuration_id", configuration_id)
|
108
112
|
if crash_recovery is not None:
|
109
113
|
pulumi.set(__self__, "crash_recovery", crash_recovery)
|
114
|
+
if customer_contacts is not None:
|
115
|
+
pulumi.set(__self__, "customer_contacts", customer_contacts)
|
116
|
+
if data_storage is not None:
|
117
|
+
pulumi.set(__self__, "data_storage", data_storage)
|
110
118
|
if data_storage_size_in_gb is not None:
|
111
119
|
pulumi.set(__self__, "data_storage_size_in_gb", data_storage_size_in_gb)
|
112
120
|
if database_management is not None:
|
@@ -259,6 +267,30 @@ class MysqlDbSystemArgs:
|
|
259
267
|
def crash_recovery(self, value: Optional[pulumi.Input[str]]):
|
260
268
|
pulumi.set(self, "crash_recovery", value)
|
261
269
|
|
270
|
+
@property
|
271
|
+
@pulumi.getter(name="customerContacts")
|
272
|
+
def customer_contacts(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['MysqlDbSystemCustomerContactArgs']]]]:
|
273
|
+
"""
|
274
|
+
(Updatable) The list of customer email addresses that receive information from Oracle about the specified Oracle Cloud Infrastructure DB System resource. Oracle uses these email addresses to send notifications about planned and unplanned software maintenance updates, information about system hardware, and other information needed by administrators. Up to 10 email addresses can be added to the customer contacts for a DB System.
|
275
|
+
"""
|
276
|
+
return pulumi.get(self, "customer_contacts")
|
277
|
+
|
278
|
+
@customer_contacts.setter
|
279
|
+
def customer_contacts(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['MysqlDbSystemCustomerContactArgs']]]]):
|
280
|
+
pulumi.set(self, "customer_contacts", value)
|
281
|
+
|
282
|
+
@property
|
283
|
+
@pulumi.getter(name="dataStorage")
|
284
|
+
def data_storage(self) -> Optional[pulumi.Input['MysqlDbSystemDataStorageArgs']]:
|
285
|
+
"""
|
286
|
+
(Updatable) Data Storage configuration properties.
|
287
|
+
"""
|
288
|
+
return pulumi.get(self, "data_storage")
|
289
|
+
|
290
|
+
@data_storage.setter
|
291
|
+
def data_storage(self, value: Optional[pulumi.Input['MysqlDbSystemDataStorageArgs']]):
|
292
|
+
pulumi.set(self, "data_storage", value)
|
293
|
+
|
262
294
|
@property
|
263
295
|
@pulumi.getter(name="dataStorageSizeInGb")
|
264
296
|
def data_storage_size_in_gb(self) -> Optional[pulumi.Input[int]]:
|
@@ -513,6 +545,8 @@ class _MysqlDbSystemState:
|
|
513
545
|
configuration_id: Optional[pulumi.Input[str]] = None,
|
514
546
|
crash_recovery: Optional[pulumi.Input[str]] = None,
|
515
547
|
current_placements: Optional[pulumi.Input[Sequence[pulumi.Input['MysqlDbSystemCurrentPlacementArgs']]]] = None,
|
548
|
+
customer_contacts: Optional[pulumi.Input[Sequence[pulumi.Input['MysqlDbSystemCustomerContactArgs']]]] = None,
|
549
|
+
data_storage: Optional[pulumi.Input['MysqlDbSystemDataStorageArgs']] = None,
|
516
550
|
data_storage_size_in_gb: Optional[pulumi.Input[int]] = None,
|
517
551
|
database_management: Optional[pulumi.Input[str]] = None,
|
518
552
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -556,6 +590,8 @@ class _MysqlDbSystemState:
|
|
556
590
|
:param pulumi.Input[str] configuration_id: (Updatable) The OCID of the Configuration to be used for this DB System.
|
557
591
|
:param pulumi.Input[str] crash_recovery: (Updatable) Whether to run the DB System with InnoDB Redo Logs and the Double Write Buffer enabled or disabled, and whether to enable or disable syncing of the Binary Logs.
|
558
592
|
:param pulumi.Input[Sequence[pulumi.Input['MysqlDbSystemCurrentPlacementArgs']]] current_placements: The availability domain and fault domain a DB System is placed in.
|
593
|
+
:param pulumi.Input[Sequence[pulumi.Input['MysqlDbSystemCustomerContactArgs']]] customer_contacts: (Updatable) The list of customer email addresses that receive information from Oracle about the specified Oracle Cloud Infrastructure DB System resource. Oracle uses these email addresses to send notifications about planned and unplanned software maintenance updates, information about system hardware, and other information needed by administrators. Up to 10 email addresses can be added to the customer contacts for a DB System.
|
594
|
+
:param pulumi.Input['MysqlDbSystemDataStorageArgs'] data_storage: (Updatable) Data Storage configuration properties.
|
559
595
|
:param pulumi.Input[int] data_storage_size_in_gb: (Updatable) Initial size of the data volume in GBs that will be created and attached. Keep in mind that this only specifies the size of the database data volume, the log volume for the database will be scaled appropriately with its shape. It is required if you are creating a new database. It cannot be set if you are creating a database from a backup.
|
560
596
|
:param pulumi.Input[str] database_management: (Updatable) Whether to enable monitoring via the Database Management service.
|
561
597
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{"foo-namespace.bar-key": "value"}`
|
@@ -617,6 +653,10 @@ class _MysqlDbSystemState:
|
|
617
653
|
pulumi.set(__self__, "crash_recovery", crash_recovery)
|
618
654
|
if current_placements is not None:
|
619
655
|
pulumi.set(__self__, "current_placements", current_placements)
|
656
|
+
if customer_contacts is not None:
|
657
|
+
pulumi.set(__self__, "customer_contacts", customer_contacts)
|
658
|
+
if data_storage is not None:
|
659
|
+
pulumi.set(__self__, "data_storage", data_storage)
|
620
660
|
if data_storage_size_in_gb is not None:
|
621
661
|
pulumi.set(__self__, "data_storage_size_in_gb", data_storage_size_in_gb)
|
622
662
|
if database_management is not None:
|
@@ -786,6 +826,30 @@ class _MysqlDbSystemState:
|
|
786
826
|
def current_placements(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['MysqlDbSystemCurrentPlacementArgs']]]]):
|
787
827
|
pulumi.set(self, "current_placements", value)
|
788
828
|
|
829
|
+
@property
|
830
|
+
@pulumi.getter(name="customerContacts")
|
831
|
+
def customer_contacts(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['MysqlDbSystemCustomerContactArgs']]]]:
|
832
|
+
"""
|
833
|
+
(Updatable) The list of customer email addresses that receive information from Oracle about the specified Oracle Cloud Infrastructure DB System resource. Oracle uses these email addresses to send notifications about planned and unplanned software maintenance updates, information about system hardware, and other information needed by administrators. Up to 10 email addresses can be added to the customer contacts for a DB System.
|
834
|
+
"""
|
835
|
+
return pulumi.get(self, "customer_contacts")
|
836
|
+
|
837
|
+
@customer_contacts.setter
|
838
|
+
def customer_contacts(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['MysqlDbSystemCustomerContactArgs']]]]):
|
839
|
+
pulumi.set(self, "customer_contacts", value)
|
840
|
+
|
841
|
+
@property
|
842
|
+
@pulumi.getter(name="dataStorage")
|
843
|
+
def data_storage(self) -> Optional[pulumi.Input['MysqlDbSystemDataStorageArgs']]:
|
844
|
+
"""
|
845
|
+
(Updatable) Data Storage configuration properties.
|
846
|
+
"""
|
847
|
+
return pulumi.get(self, "data_storage")
|
848
|
+
|
849
|
+
@data_storage.setter
|
850
|
+
def data_storage(self, value: Optional[pulumi.Input['MysqlDbSystemDataStorageArgs']]):
|
851
|
+
pulumi.set(self, "data_storage", value)
|
852
|
+
|
789
853
|
@property
|
790
854
|
@pulumi.getter(name="dataStorageSizeInGb")
|
791
855
|
def data_storage_size_in_gb(self) -> Optional[pulumi.Input[int]]:
|
@@ -1149,6 +1213,8 @@ class MysqlDbSystem(pulumi.CustomResource):
|
|
1149
1213
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
1150
1214
|
configuration_id: Optional[pulumi.Input[str]] = None,
|
1151
1215
|
crash_recovery: Optional[pulumi.Input[str]] = None,
|
1216
|
+
customer_contacts: Optional[pulumi.Input[Sequence[pulumi.Input[Union['MysqlDbSystemCustomerContactArgs', 'MysqlDbSystemCustomerContactArgsDict']]]]] = None,
|
1217
|
+
data_storage: Optional[pulumi.Input[Union['MysqlDbSystemDataStorageArgs', 'MysqlDbSystemDataStorageArgsDict']]] = None,
|
1152
1218
|
data_storage_size_in_gb: Optional[pulumi.Input[int]] = None,
|
1153
1219
|
database_management: Optional[pulumi.Input[str]] = None,
|
1154
1220
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -1205,6 +1271,13 @@ class MysqlDbSystem(pulumi.CustomResource):
|
|
1205
1271
|
},
|
1206
1272
|
configuration_id=test_configuration["id"],
|
1207
1273
|
crash_recovery=mysql_db_system_crash_recovery,
|
1274
|
+
customer_contacts=[{
|
1275
|
+
"email": mysql_db_system_customer_contacts_email,
|
1276
|
+
}],
|
1277
|
+
data_storage={
|
1278
|
+
"is_auto_expand_storage_enabled": mysql_db_system_data_storage_is_auto_expand_storage_enabled,
|
1279
|
+
"max_storage_size_in_gbs": mysql_db_system_data_storage_max_storage_size_in_gbs,
|
1280
|
+
},
|
1208
1281
|
data_storage_size_in_gb=mysql_db_system_data_storage_size_in_gb,
|
1209
1282
|
database_management=mysql_db_system_database_management,
|
1210
1283
|
defined_tags={
|
@@ -1260,6 +1333,8 @@ class MysqlDbSystem(pulumi.CustomResource):
|
|
1260
1333
|
:param pulumi.Input[str] compartment_id: The OCID of the compartment.
|
1261
1334
|
:param pulumi.Input[str] configuration_id: (Updatable) The OCID of the Configuration to be used for this DB System.
|
1262
1335
|
:param pulumi.Input[str] crash_recovery: (Updatable) Whether to run the DB System with InnoDB Redo Logs and the Double Write Buffer enabled or disabled, and whether to enable or disable syncing of the Binary Logs.
|
1336
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['MysqlDbSystemCustomerContactArgs', 'MysqlDbSystemCustomerContactArgsDict']]]] customer_contacts: (Updatable) The list of customer email addresses that receive information from Oracle about the specified Oracle Cloud Infrastructure DB System resource. Oracle uses these email addresses to send notifications about planned and unplanned software maintenance updates, information about system hardware, and other information needed by administrators. Up to 10 email addresses can be added to the customer contacts for a DB System.
|
1337
|
+
:param pulumi.Input[Union['MysqlDbSystemDataStorageArgs', 'MysqlDbSystemDataStorageArgsDict']] data_storage: (Updatable) Data Storage configuration properties.
|
1263
1338
|
:param pulumi.Input[int] data_storage_size_in_gb: (Updatable) Initial size of the data volume in GBs that will be created and attached. Keep in mind that this only specifies the size of the database data volume, the log volume for the database will be scaled appropriately with its shape. It is required if you are creating a new database. It cannot be set if you are creating a database from a backup.
|
1264
1339
|
:param pulumi.Input[str] database_management: (Updatable) Whether to enable monitoring via the Database Management service.
|
1265
1340
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{"foo-namespace.bar-key": "value"}`
|
@@ -1336,6 +1411,13 @@ class MysqlDbSystem(pulumi.CustomResource):
|
|
1336
1411
|
},
|
1337
1412
|
configuration_id=test_configuration["id"],
|
1338
1413
|
crash_recovery=mysql_db_system_crash_recovery,
|
1414
|
+
customer_contacts=[{
|
1415
|
+
"email": mysql_db_system_customer_contacts_email,
|
1416
|
+
}],
|
1417
|
+
data_storage={
|
1418
|
+
"is_auto_expand_storage_enabled": mysql_db_system_data_storage_is_auto_expand_storage_enabled,
|
1419
|
+
"max_storage_size_in_gbs": mysql_db_system_data_storage_max_storage_size_in_gbs,
|
1420
|
+
},
|
1339
1421
|
data_storage_size_in_gb=mysql_db_system_data_storage_size_in_gb,
|
1340
1422
|
database_management=mysql_db_system_database_management,
|
1341
1423
|
defined_tags={
|
@@ -1400,6 +1482,8 @@ class MysqlDbSystem(pulumi.CustomResource):
|
|
1400
1482
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
1401
1483
|
configuration_id: Optional[pulumi.Input[str]] = None,
|
1402
1484
|
crash_recovery: Optional[pulumi.Input[str]] = None,
|
1485
|
+
customer_contacts: Optional[pulumi.Input[Sequence[pulumi.Input[Union['MysqlDbSystemCustomerContactArgs', 'MysqlDbSystemCustomerContactArgsDict']]]]] = None,
|
1486
|
+
data_storage: Optional[pulumi.Input[Union['MysqlDbSystemDataStorageArgs', 'MysqlDbSystemDataStorageArgsDict']]] = None,
|
1403
1487
|
data_storage_size_in_gb: Optional[pulumi.Input[int]] = None,
|
1404
1488
|
database_management: Optional[pulumi.Input[str]] = None,
|
1405
1489
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -1441,6 +1525,8 @@ class MysqlDbSystem(pulumi.CustomResource):
|
|
1441
1525
|
__props__.__dict__["compartment_id"] = compartment_id
|
1442
1526
|
__props__.__dict__["configuration_id"] = configuration_id
|
1443
1527
|
__props__.__dict__["crash_recovery"] = crash_recovery
|
1528
|
+
__props__.__dict__["customer_contacts"] = customer_contacts
|
1529
|
+
__props__.__dict__["data_storage"] = data_storage
|
1444
1530
|
__props__.__dict__["data_storage_size_in_gb"] = data_storage_size_in_gb
|
1445
1531
|
__props__.__dict__["database_management"] = database_management
|
1446
1532
|
__props__.__dict__["defined_tags"] = defined_tags
|
@@ -1496,6 +1582,8 @@ class MysqlDbSystem(pulumi.CustomResource):
|
|
1496
1582
|
configuration_id: Optional[pulumi.Input[str]] = None,
|
1497
1583
|
crash_recovery: Optional[pulumi.Input[str]] = None,
|
1498
1584
|
current_placements: Optional[pulumi.Input[Sequence[pulumi.Input[Union['MysqlDbSystemCurrentPlacementArgs', 'MysqlDbSystemCurrentPlacementArgsDict']]]]] = None,
|
1585
|
+
customer_contacts: Optional[pulumi.Input[Sequence[pulumi.Input[Union['MysqlDbSystemCustomerContactArgs', 'MysqlDbSystemCustomerContactArgsDict']]]]] = None,
|
1586
|
+
data_storage: Optional[pulumi.Input[Union['MysqlDbSystemDataStorageArgs', 'MysqlDbSystemDataStorageArgsDict']]] = None,
|
1499
1587
|
data_storage_size_in_gb: Optional[pulumi.Input[int]] = None,
|
1500
1588
|
database_management: Optional[pulumi.Input[str]] = None,
|
1501
1589
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -1544,6 +1632,8 @@ class MysqlDbSystem(pulumi.CustomResource):
|
|
1544
1632
|
:param pulumi.Input[str] configuration_id: (Updatable) The OCID of the Configuration to be used for this DB System.
|
1545
1633
|
:param pulumi.Input[str] crash_recovery: (Updatable) Whether to run the DB System with InnoDB Redo Logs and the Double Write Buffer enabled or disabled, and whether to enable or disable syncing of the Binary Logs.
|
1546
1634
|
:param pulumi.Input[Sequence[pulumi.Input[Union['MysqlDbSystemCurrentPlacementArgs', 'MysqlDbSystemCurrentPlacementArgsDict']]]] current_placements: The availability domain and fault domain a DB System is placed in.
|
1635
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['MysqlDbSystemCustomerContactArgs', 'MysqlDbSystemCustomerContactArgsDict']]]] customer_contacts: (Updatable) The list of customer email addresses that receive information from Oracle about the specified Oracle Cloud Infrastructure DB System resource. Oracle uses these email addresses to send notifications about planned and unplanned software maintenance updates, information about system hardware, and other information needed by administrators. Up to 10 email addresses can be added to the customer contacts for a DB System.
|
1636
|
+
:param pulumi.Input[Union['MysqlDbSystemDataStorageArgs', 'MysqlDbSystemDataStorageArgsDict']] data_storage: (Updatable) Data Storage configuration properties.
|
1547
1637
|
:param pulumi.Input[int] data_storage_size_in_gb: (Updatable) Initial size of the data volume in GBs that will be created and attached. Keep in mind that this only specifies the size of the database data volume, the log volume for the database will be scaled appropriately with its shape. It is required if you are creating a new database. It cannot be set if you are creating a database from a backup.
|
1548
1638
|
:param pulumi.Input[str] database_management: (Updatable) Whether to enable monitoring via the Database Management service.
|
1549
1639
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Usage of predefined tag keys. These predefined keys are scoped to namespaces. Example: `{"foo-namespace.bar-key": "value"}`
|
@@ -1600,6 +1690,8 @@ class MysqlDbSystem(pulumi.CustomResource):
|
|
1600
1690
|
__props__.__dict__["configuration_id"] = configuration_id
|
1601
1691
|
__props__.__dict__["crash_recovery"] = crash_recovery
|
1602
1692
|
__props__.__dict__["current_placements"] = current_placements
|
1693
|
+
__props__.__dict__["customer_contacts"] = customer_contacts
|
1694
|
+
__props__.__dict__["data_storage"] = data_storage
|
1603
1695
|
__props__.__dict__["data_storage_size_in_gb"] = data_storage_size_in_gb
|
1604
1696
|
__props__.__dict__["database_management"] = database_management
|
1605
1697
|
__props__.__dict__["defined_tags"] = defined_tags
|
@@ -1706,6 +1798,22 @@ class MysqlDbSystem(pulumi.CustomResource):
|
|
1706
1798
|
"""
|
1707
1799
|
return pulumi.get(self, "current_placements")
|
1708
1800
|
|
1801
|
+
@property
|
1802
|
+
@pulumi.getter(name="customerContacts")
|
1803
|
+
def customer_contacts(self) -> pulumi.Output[Sequence['outputs.MysqlDbSystemCustomerContact']]:
|
1804
|
+
"""
|
1805
|
+
(Updatable) The list of customer email addresses that receive information from Oracle about the specified Oracle Cloud Infrastructure DB System resource. Oracle uses these email addresses to send notifications about planned and unplanned software maintenance updates, information about system hardware, and other information needed by administrators. Up to 10 email addresses can be added to the customer contacts for a DB System.
|
1806
|
+
"""
|
1807
|
+
return pulumi.get(self, "customer_contacts")
|
1808
|
+
|
1809
|
+
@property
|
1810
|
+
@pulumi.getter(name="dataStorage")
|
1811
|
+
def data_storage(self) -> pulumi.Output['outputs.MysqlDbSystemDataStorage']:
|
1812
|
+
"""
|
1813
|
+
(Updatable) Data Storage configuration properties.
|
1814
|
+
"""
|
1815
|
+
return pulumi.get(self, "data_storage")
|
1816
|
+
|
1709
1817
|
@property
|
1710
1818
|
@pulumi.getter(name="dataStorageSizeInGb")
|
1711
1819
|
def data_storage_size_in_gb(self) -> pulumi.Output[int]:
|