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
pulumi_oci/mysql/_inputs.py
CHANGED
@@ -19,6 +19,7 @@ __all__ = [
|
|
19
19
|
'MysqlBackupDbSystemSnapshotArgs',
|
20
20
|
'MysqlBackupDbSystemSnapshotBackupPolicyArgs',
|
21
21
|
'MysqlBackupDbSystemSnapshotBackupPolicyPitrPolicyArgs',
|
22
|
+
'MysqlBackupDbSystemSnapshotDataStorageArgs',
|
22
23
|
'MysqlBackupDbSystemSnapshotDeletionPolicyArgs',
|
23
24
|
'MysqlBackupDbSystemSnapshotEndpointArgs',
|
24
25
|
'MysqlBackupDbSystemSnapshotMaintenanceArgs',
|
@@ -36,6 +37,8 @@ __all__ = [
|
|
36
37
|
'MysqlDbSystemChannelTargetArgs',
|
37
38
|
'MysqlDbSystemChannelTargetFilterArgs',
|
38
39
|
'MysqlDbSystemCurrentPlacementArgs',
|
40
|
+
'MysqlDbSystemCustomerContactArgs',
|
41
|
+
'MysqlDbSystemDataStorageArgs',
|
39
42
|
'MysqlDbSystemDeletionPolicyArgs',
|
40
43
|
'MysqlDbSystemEndpointArgs',
|
41
44
|
'MysqlDbSystemHeatWaveClusterArgs',
|
@@ -544,6 +547,7 @@ class MysqlBackupDbSystemSnapshotArgs:
|
|
544
547
|
configuration_id: Optional[pulumi.Input[str]] = None,
|
545
548
|
crash_recovery: Optional[pulumi.Input[str]] = None,
|
546
549
|
data_storage_size_in_gb: Optional[pulumi.Input[int]] = None,
|
550
|
+
data_storages: Optional[pulumi.Input[Sequence[pulumi.Input['MysqlBackupDbSystemSnapshotDataStorageArgs']]]] = None,
|
547
551
|
database_management: Optional[pulumi.Input[str]] = None,
|
548
552
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
549
553
|
deletion_policies: Optional[pulumi.Input[Sequence[pulumi.Input['MysqlBackupDbSystemSnapshotDeletionPolicyArgs']]]] = None,
|
@@ -571,7 +575,8 @@ class MysqlBackupDbSystemSnapshotArgs:
|
|
571
575
|
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment the backup exists in.
|
572
576
|
:param pulumi.Input[str] configuration_id: The OCID of the Configuration to be used for Instances in this DB System.
|
573
577
|
:param pulumi.Input[str] crash_recovery: 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.
|
574
|
-
:param pulumi.Input[int] data_storage_size_in_gb:
|
578
|
+
:param pulumi.Input[int] data_storage_size_in_gb: DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
|
579
|
+
:param pulumi.Input[Sequence[pulumi.Input['MysqlBackupDbSystemSnapshotDataStorageArgs']]] data_storages: Data Storage information.
|
575
580
|
:param pulumi.Input[str] database_management: Whether to enable monitoring via the Database Management service.
|
576
581
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
577
582
|
:param pulumi.Input[Sequence[pulumi.Input['MysqlBackupDbSystemSnapshotDeletionPolicyArgs']]] deletion_policies: The Deletion policy for the DB System.
|
@@ -607,6 +612,8 @@ class MysqlBackupDbSystemSnapshotArgs:
|
|
607
612
|
pulumi.set(__self__, "crash_recovery", crash_recovery)
|
608
613
|
if data_storage_size_in_gb is not None:
|
609
614
|
pulumi.set(__self__, "data_storage_size_in_gb", data_storage_size_in_gb)
|
615
|
+
if data_storages is not None:
|
616
|
+
pulumi.set(__self__, "data_storages", data_storages)
|
610
617
|
if database_management is not None:
|
611
618
|
pulumi.set(__self__, "database_management", database_management)
|
612
619
|
if defined_tags is not None:
|
@@ -724,7 +731,7 @@ class MysqlBackupDbSystemSnapshotArgs:
|
|
724
731
|
@pulumi.getter(name="dataStorageSizeInGb")
|
725
732
|
def data_storage_size_in_gb(self) -> Optional[pulumi.Input[int]]:
|
726
733
|
"""
|
727
|
-
|
734
|
+
DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
|
728
735
|
"""
|
729
736
|
return pulumi.get(self, "data_storage_size_in_gb")
|
730
737
|
|
@@ -732,6 +739,18 @@ class MysqlBackupDbSystemSnapshotArgs:
|
|
732
739
|
def data_storage_size_in_gb(self, value: Optional[pulumi.Input[int]]):
|
733
740
|
pulumi.set(self, "data_storage_size_in_gb", value)
|
734
741
|
|
742
|
+
@property
|
743
|
+
@pulumi.getter(name="dataStorages")
|
744
|
+
def data_storages(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['MysqlBackupDbSystemSnapshotDataStorageArgs']]]]:
|
745
|
+
"""
|
746
|
+
Data Storage information.
|
747
|
+
"""
|
748
|
+
return pulumi.get(self, "data_storages")
|
749
|
+
|
750
|
+
@data_storages.setter
|
751
|
+
def data_storages(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['MysqlBackupDbSystemSnapshotDataStorageArgs']]]]):
|
752
|
+
pulumi.set(self, "data_storages", value)
|
753
|
+
|
735
754
|
@property
|
736
755
|
@pulumi.getter(name="databaseManagement")
|
737
756
|
def database_management(self) -> Optional[pulumi.Input[str]]:
|
@@ -1099,6 +1118,93 @@ class MysqlBackupDbSystemSnapshotBackupPolicyPitrPolicyArgs:
|
|
1099
1118
|
pulumi.set(self, "is_enabled", value)
|
1100
1119
|
|
1101
1120
|
|
1121
|
+
@pulumi.input_type
|
1122
|
+
class MysqlBackupDbSystemSnapshotDataStorageArgs:
|
1123
|
+
def __init__(__self__, *,
|
1124
|
+
allocated_storage_size_in_gbs: Optional[pulumi.Input[int]] = None,
|
1125
|
+
data_storage_size_in_gb: Optional[pulumi.Input[int]] = None,
|
1126
|
+
data_storage_size_limit_in_gbs: Optional[pulumi.Input[int]] = None,
|
1127
|
+
is_auto_expand_storage_enabled: Optional[pulumi.Input[bool]] = None,
|
1128
|
+
max_storage_size_in_gbs: Optional[pulumi.Input[int]] = None):
|
1129
|
+
"""
|
1130
|
+
:param pulumi.Input[int] allocated_storage_size_in_gbs: The actual allocated storage size for the DB System. This may be higher than dataStorageSizeInGBs if an automatic storage expansion has occurred.
|
1131
|
+
:param pulumi.Input[int] data_storage_size_in_gb: DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
|
1132
|
+
:param pulumi.Input[int] data_storage_size_limit_in_gbs: The absolute limit the DB System's storage size may ever expand to, either manually or automatically. This limit is based based on the initial dataStorageSizeInGBs when the DB System was first created. Both dataStorageSizeInGBs and maxDataStorageSizeInGBs can not exceed this value.
|
1133
|
+
:param pulumi.Input[bool] is_auto_expand_storage_enabled: Enable/disable automatic storage expansion. When set to true, the DB System will automatically add storage incrementally up to the value specified in maxStorageSizeInGBs.
|
1134
|
+
:param pulumi.Input[int] max_storage_size_in_gbs: Maximum storage size this DB System can expand to. When isAutoExpandStorageEnabled is set to true, the DB System will add storage incrementally up to this value.
|
1135
|
+
"""
|
1136
|
+
if allocated_storage_size_in_gbs is not None:
|
1137
|
+
pulumi.set(__self__, "allocated_storage_size_in_gbs", allocated_storage_size_in_gbs)
|
1138
|
+
if data_storage_size_in_gb is not None:
|
1139
|
+
pulumi.set(__self__, "data_storage_size_in_gb", data_storage_size_in_gb)
|
1140
|
+
if data_storage_size_limit_in_gbs is not None:
|
1141
|
+
pulumi.set(__self__, "data_storage_size_limit_in_gbs", data_storage_size_limit_in_gbs)
|
1142
|
+
if is_auto_expand_storage_enabled is not None:
|
1143
|
+
pulumi.set(__self__, "is_auto_expand_storage_enabled", is_auto_expand_storage_enabled)
|
1144
|
+
if max_storage_size_in_gbs is not None:
|
1145
|
+
pulumi.set(__self__, "max_storage_size_in_gbs", max_storage_size_in_gbs)
|
1146
|
+
|
1147
|
+
@property
|
1148
|
+
@pulumi.getter(name="allocatedStorageSizeInGbs")
|
1149
|
+
def allocated_storage_size_in_gbs(self) -> Optional[pulumi.Input[int]]:
|
1150
|
+
"""
|
1151
|
+
The actual allocated storage size for the DB System. This may be higher than dataStorageSizeInGBs if an automatic storage expansion has occurred.
|
1152
|
+
"""
|
1153
|
+
return pulumi.get(self, "allocated_storage_size_in_gbs")
|
1154
|
+
|
1155
|
+
@allocated_storage_size_in_gbs.setter
|
1156
|
+
def allocated_storage_size_in_gbs(self, value: Optional[pulumi.Input[int]]):
|
1157
|
+
pulumi.set(self, "allocated_storage_size_in_gbs", value)
|
1158
|
+
|
1159
|
+
@property
|
1160
|
+
@pulumi.getter(name="dataStorageSizeInGb")
|
1161
|
+
def data_storage_size_in_gb(self) -> Optional[pulumi.Input[int]]:
|
1162
|
+
"""
|
1163
|
+
DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
|
1164
|
+
"""
|
1165
|
+
return pulumi.get(self, "data_storage_size_in_gb")
|
1166
|
+
|
1167
|
+
@data_storage_size_in_gb.setter
|
1168
|
+
def data_storage_size_in_gb(self, value: Optional[pulumi.Input[int]]):
|
1169
|
+
pulumi.set(self, "data_storage_size_in_gb", value)
|
1170
|
+
|
1171
|
+
@property
|
1172
|
+
@pulumi.getter(name="dataStorageSizeLimitInGbs")
|
1173
|
+
def data_storage_size_limit_in_gbs(self) -> Optional[pulumi.Input[int]]:
|
1174
|
+
"""
|
1175
|
+
The absolute limit the DB System's storage size may ever expand to, either manually or automatically. This limit is based based on the initial dataStorageSizeInGBs when the DB System was first created. Both dataStorageSizeInGBs and maxDataStorageSizeInGBs can not exceed this value.
|
1176
|
+
"""
|
1177
|
+
return pulumi.get(self, "data_storage_size_limit_in_gbs")
|
1178
|
+
|
1179
|
+
@data_storage_size_limit_in_gbs.setter
|
1180
|
+
def data_storage_size_limit_in_gbs(self, value: Optional[pulumi.Input[int]]):
|
1181
|
+
pulumi.set(self, "data_storage_size_limit_in_gbs", value)
|
1182
|
+
|
1183
|
+
@property
|
1184
|
+
@pulumi.getter(name="isAutoExpandStorageEnabled")
|
1185
|
+
def is_auto_expand_storage_enabled(self) -> Optional[pulumi.Input[bool]]:
|
1186
|
+
"""
|
1187
|
+
Enable/disable automatic storage expansion. When set to true, the DB System will automatically add storage incrementally up to the value specified in maxStorageSizeInGBs.
|
1188
|
+
"""
|
1189
|
+
return pulumi.get(self, "is_auto_expand_storage_enabled")
|
1190
|
+
|
1191
|
+
@is_auto_expand_storage_enabled.setter
|
1192
|
+
def is_auto_expand_storage_enabled(self, value: Optional[pulumi.Input[bool]]):
|
1193
|
+
pulumi.set(self, "is_auto_expand_storage_enabled", value)
|
1194
|
+
|
1195
|
+
@property
|
1196
|
+
@pulumi.getter(name="maxStorageSizeInGbs")
|
1197
|
+
def max_storage_size_in_gbs(self) -> Optional[pulumi.Input[int]]:
|
1198
|
+
"""
|
1199
|
+
Maximum storage size this DB System can expand to. When isAutoExpandStorageEnabled is set to true, the DB System will add storage incrementally up to this value.
|
1200
|
+
"""
|
1201
|
+
return pulumi.get(self, "max_storage_size_in_gbs")
|
1202
|
+
|
1203
|
+
@max_storage_size_in_gbs.setter
|
1204
|
+
def max_storage_size_in_gbs(self, value: Optional[pulumi.Input[int]]):
|
1205
|
+
pulumi.set(self, "max_storage_size_in_gbs", value)
|
1206
|
+
|
1207
|
+
|
1102
1208
|
@pulumi.input_type
|
1103
1209
|
class MysqlBackupDbSystemSnapshotDeletionPolicyArgs:
|
1104
1210
|
def __init__(__self__, *,
|
@@ -3783,6 +3889,123 @@ class MysqlDbSystemCurrentPlacementArgs:
|
|
3783
3889
|
pulumi.set(self, "fault_domain", value)
|
3784
3890
|
|
3785
3891
|
|
3892
|
+
@pulumi.input_type
|
3893
|
+
class MysqlDbSystemCustomerContactArgs:
|
3894
|
+
def __init__(__self__, *,
|
3895
|
+
email: pulumi.Input[str]):
|
3896
|
+
"""
|
3897
|
+
:param pulumi.Input[str] email: (Updatable) The email address used by Oracle to send notifications regarding the DB System.
|
3898
|
+
"""
|
3899
|
+
pulumi.set(__self__, "email", email)
|
3900
|
+
|
3901
|
+
@property
|
3902
|
+
@pulumi.getter
|
3903
|
+
def email(self) -> pulumi.Input[str]:
|
3904
|
+
"""
|
3905
|
+
(Updatable) The email address used by Oracle to send notifications regarding the DB System.
|
3906
|
+
"""
|
3907
|
+
return pulumi.get(self, "email")
|
3908
|
+
|
3909
|
+
@email.setter
|
3910
|
+
def email(self, value: pulumi.Input[str]):
|
3911
|
+
pulumi.set(self, "email", value)
|
3912
|
+
|
3913
|
+
|
3914
|
+
@pulumi.input_type
|
3915
|
+
class MysqlDbSystemDataStorageArgs:
|
3916
|
+
def __init__(__self__, *,
|
3917
|
+
allocated_storage_size_in_gbs: Optional[pulumi.Input[int]] = None,
|
3918
|
+
data_storage_size_in_gb: Optional[pulumi.Input[int]] = None,
|
3919
|
+
data_storage_size_limit_in_gbs: Optional[pulumi.Input[int]] = None,
|
3920
|
+
is_auto_expand_storage_enabled: Optional[pulumi.Input[bool]] = None,
|
3921
|
+
max_storage_size_in_gbs: Optional[pulumi.Input[int]] = None):
|
3922
|
+
"""
|
3923
|
+
:param pulumi.Input[int] allocated_storage_size_in_gbs: The actual allocated storage size for the DB System. This may be higher than dataStorageSizeInGBs if an automatic storage expansion has occurred.
|
3924
|
+
: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.
|
3925
|
+
:param pulumi.Input[int] data_storage_size_limit_in_gbs: The absolute limit the DB System's storage size may ever expand to, either manually or automatically. This limit is based based on the initial dataStorageSizeInGBs when the DB System was first created. Both dataStorageSizeInGBs and maxDataStorageSizeInGBs can not exceed this value.
|
3926
|
+
:param pulumi.Input[bool] is_auto_expand_storage_enabled: (Updatable) Enable/disable automatic storage expansion. When set to true, the DB System will automatically add storage incrementally up to the value specified in maxStorageSizeInGBs.
|
3927
|
+
:param pulumi.Input[int] max_storage_size_in_gbs: (Updatable) Maximum storage size this DB System can expand to. When isAutoExpandStorageEnabled is set to true, the DB System will add storage incrementally up to this value.
|
3928
|
+
|
3929
|
+
DB Systems with an initial storage size of 400 GB or less can be expanded up to 32 TB. DB Systems with an initial storage size between 401-800 GB can be expanded up to 64 TB. DB Systems with an initial storage size between 801-1200 GB can be expanded up to 96 TB. DB Systems with an initial storage size of 1201 GB or more can be expanded up to 128 TB.
|
3930
|
+
|
3931
|
+
It is not possible to decrease data storage size. You cannot set the maximum data storage size to less than either current DB System dataStorageSizeInGBs or allocatedStorageSizeInGBs.
|
3932
|
+
"""
|
3933
|
+
if allocated_storage_size_in_gbs is not None:
|
3934
|
+
pulumi.set(__self__, "allocated_storage_size_in_gbs", allocated_storage_size_in_gbs)
|
3935
|
+
if data_storage_size_in_gb is not None:
|
3936
|
+
pulumi.set(__self__, "data_storage_size_in_gb", data_storage_size_in_gb)
|
3937
|
+
if data_storage_size_limit_in_gbs is not None:
|
3938
|
+
pulumi.set(__self__, "data_storage_size_limit_in_gbs", data_storage_size_limit_in_gbs)
|
3939
|
+
if is_auto_expand_storage_enabled is not None:
|
3940
|
+
pulumi.set(__self__, "is_auto_expand_storage_enabled", is_auto_expand_storage_enabled)
|
3941
|
+
if max_storage_size_in_gbs is not None:
|
3942
|
+
pulumi.set(__self__, "max_storage_size_in_gbs", max_storage_size_in_gbs)
|
3943
|
+
|
3944
|
+
@property
|
3945
|
+
@pulumi.getter(name="allocatedStorageSizeInGbs")
|
3946
|
+
def allocated_storage_size_in_gbs(self) -> Optional[pulumi.Input[int]]:
|
3947
|
+
"""
|
3948
|
+
The actual allocated storage size for the DB System. This may be higher than dataStorageSizeInGBs if an automatic storage expansion has occurred.
|
3949
|
+
"""
|
3950
|
+
return pulumi.get(self, "allocated_storage_size_in_gbs")
|
3951
|
+
|
3952
|
+
@allocated_storage_size_in_gbs.setter
|
3953
|
+
def allocated_storage_size_in_gbs(self, value: Optional[pulumi.Input[int]]):
|
3954
|
+
pulumi.set(self, "allocated_storage_size_in_gbs", value)
|
3955
|
+
|
3956
|
+
@property
|
3957
|
+
@pulumi.getter(name="dataStorageSizeInGb")
|
3958
|
+
def data_storage_size_in_gb(self) -> Optional[pulumi.Input[int]]:
|
3959
|
+
"""
|
3960
|
+
(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.
|
3961
|
+
"""
|
3962
|
+
return pulumi.get(self, "data_storage_size_in_gb")
|
3963
|
+
|
3964
|
+
@data_storage_size_in_gb.setter
|
3965
|
+
def data_storage_size_in_gb(self, value: Optional[pulumi.Input[int]]):
|
3966
|
+
pulumi.set(self, "data_storage_size_in_gb", value)
|
3967
|
+
|
3968
|
+
@property
|
3969
|
+
@pulumi.getter(name="dataStorageSizeLimitInGbs")
|
3970
|
+
def data_storage_size_limit_in_gbs(self) -> Optional[pulumi.Input[int]]:
|
3971
|
+
"""
|
3972
|
+
The absolute limit the DB System's storage size may ever expand to, either manually or automatically. This limit is based based on the initial dataStorageSizeInGBs when the DB System was first created. Both dataStorageSizeInGBs and maxDataStorageSizeInGBs can not exceed this value.
|
3973
|
+
"""
|
3974
|
+
return pulumi.get(self, "data_storage_size_limit_in_gbs")
|
3975
|
+
|
3976
|
+
@data_storage_size_limit_in_gbs.setter
|
3977
|
+
def data_storage_size_limit_in_gbs(self, value: Optional[pulumi.Input[int]]):
|
3978
|
+
pulumi.set(self, "data_storage_size_limit_in_gbs", value)
|
3979
|
+
|
3980
|
+
@property
|
3981
|
+
@pulumi.getter(name="isAutoExpandStorageEnabled")
|
3982
|
+
def is_auto_expand_storage_enabled(self) -> Optional[pulumi.Input[bool]]:
|
3983
|
+
"""
|
3984
|
+
(Updatable) Enable/disable automatic storage expansion. When set to true, the DB System will automatically add storage incrementally up to the value specified in maxStorageSizeInGBs.
|
3985
|
+
"""
|
3986
|
+
return pulumi.get(self, "is_auto_expand_storage_enabled")
|
3987
|
+
|
3988
|
+
@is_auto_expand_storage_enabled.setter
|
3989
|
+
def is_auto_expand_storage_enabled(self, value: Optional[pulumi.Input[bool]]):
|
3990
|
+
pulumi.set(self, "is_auto_expand_storage_enabled", value)
|
3991
|
+
|
3992
|
+
@property
|
3993
|
+
@pulumi.getter(name="maxStorageSizeInGbs")
|
3994
|
+
def max_storage_size_in_gbs(self) -> Optional[pulumi.Input[int]]:
|
3995
|
+
"""
|
3996
|
+
(Updatable) Maximum storage size this DB System can expand to. When isAutoExpandStorageEnabled is set to true, the DB System will add storage incrementally up to this value.
|
3997
|
+
|
3998
|
+
DB Systems with an initial storage size of 400 GB or less can be expanded up to 32 TB. DB Systems with an initial storage size between 401-800 GB can be expanded up to 64 TB. DB Systems with an initial storage size between 801-1200 GB can be expanded up to 96 TB. DB Systems with an initial storage size of 1201 GB or more can be expanded up to 128 TB.
|
3999
|
+
|
4000
|
+
It is not possible to decrease data storage size. You cannot set the maximum data storage size to less than either current DB System dataStorageSizeInGBs or allocatedStorageSizeInGBs.
|
4001
|
+
"""
|
4002
|
+
return pulumi.get(self, "max_storage_size_in_gbs")
|
4003
|
+
|
4004
|
+
@max_storage_size_in_gbs.setter
|
4005
|
+
def max_storage_size_in_gbs(self, value: Optional[pulumi.Input[int]]):
|
4006
|
+
pulumi.set(self, "max_storage_size_in_gbs", value)
|
4007
|
+
|
4008
|
+
|
3786
4009
|
@pulumi.input_type
|
3787
4010
|
class MysqlDbSystemDeletionPolicyArgs:
|
3788
4011
|
def __init__(__self__, *,
|
@@ -140,7 +140,7 @@ class GetMysqlBackupResult:
|
|
140
140
|
@pulumi.getter(name="dataStorageSizeInGb")
|
141
141
|
def data_storage_size_in_gb(self) -> int:
|
142
142
|
"""
|
143
|
-
|
143
|
+
DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
|
144
144
|
"""
|
145
145
|
return pulumi.get(self, "data_storage_size_in_gb")
|
146
146
|
|
@@ -22,7 +22,7 @@ class GetMysqlDbSystemResult:
|
|
22
22
|
"""
|
23
23
|
A collection of values returned by getMysqlDbSystem.
|
24
24
|
"""
|
25
|
-
def __init__(__self__, admin_password=None, admin_username=None, availability_domain=None, backup_policies=None, channels=None, compartment_id=None, configuration_id=None, crash_recovery=None, current_placements=None, data_storage_size_in_gb=None, database_management=None, db_system_id=None, defined_tags=None, deletion_policies=None, description=None, display_name=None, endpoints=None, fault_domain=None, freeform_tags=None, heat_wave_clusters=None, hostname_label=None, id=None, ip_address=None, is_heat_wave_cluster_attached=None, is_highly_available=None, lifecycle_details=None, maintenances=None, mysql_version=None, point_in_time_recovery_details=None, port=None, port_x=None, secure_connections=None, shape_name=None, shutdown_type=None, sources=None, state=None, subnet_id=None, time_created=None, time_updated=None):
|
25
|
+
def __init__(__self__, admin_password=None, admin_username=None, availability_domain=None, backup_policies=None, channels=None, compartment_id=None, configuration_id=None, crash_recovery=None, current_placements=None, customer_contacts=None, data_storage_size_in_gb=None, data_storages=None, database_management=None, db_system_id=None, defined_tags=None, deletion_policies=None, description=None, display_name=None, endpoints=None, fault_domain=None, freeform_tags=None, heat_wave_clusters=None, hostname_label=None, id=None, ip_address=None, is_heat_wave_cluster_attached=None, is_highly_available=None, lifecycle_details=None, maintenances=None, mysql_version=None, point_in_time_recovery_details=None, port=None, port_x=None, secure_connections=None, shape_name=None, shutdown_type=None, sources=None, state=None, subnet_id=None, time_created=None, time_updated=None):
|
26
26
|
if admin_password and not isinstance(admin_password, str):
|
27
27
|
raise TypeError("Expected argument 'admin_password' to be a str")
|
28
28
|
pulumi.set(__self__, "admin_password", admin_password)
|
@@ -50,9 +50,15 @@ class GetMysqlDbSystemResult:
|
|
50
50
|
if current_placements and not isinstance(current_placements, list):
|
51
51
|
raise TypeError("Expected argument 'current_placements' to be a list")
|
52
52
|
pulumi.set(__self__, "current_placements", current_placements)
|
53
|
+
if customer_contacts and not isinstance(customer_contacts, list):
|
54
|
+
raise TypeError("Expected argument 'customer_contacts' to be a list")
|
55
|
+
pulumi.set(__self__, "customer_contacts", customer_contacts)
|
53
56
|
if data_storage_size_in_gb and not isinstance(data_storage_size_in_gb, int):
|
54
57
|
raise TypeError("Expected argument 'data_storage_size_in_gb' to be a int")
|
55
58
|
pulumi.set(__self__, "data_storage_size_in_gb", data_storage_size_in_gb)
|
59
|
+
if data_storages and not isinstance(data_storages, list):
|
60
|
+
raise TypeError("Expected argument 'data_storages' to be a list")
|
61
|
+
pulumi.set(__self__, "data_storages", data_storages)
|
56
62
|
if database_management and not isinstance(database_management, str):
|
57
63
|
raise TypeError("Expected argument 'database_management' to be a str")
|
58
64
|
pulumi.set(__self__, "database_management", database_management)
|
@@ -207,6 +213,14 @@ class GetMysqlDbSystemResult:
|
|
207
213
|
"""
|
208
214
|
return pulumi.get(self, "current_placements")
|
209
215
|
|
216
|
+
@property
|
217
|
+
@pulumi.getter(name="customerContacts")
|
218
|
+
def customer_contacts(self) -> Sequence['outputs.GetMysqlDbSystemCustomerContactResult']:
|
219
|
+
"""
|
220
|
+
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.
|
221
|
+
"""
|
222
|
+
return pulumi.get(self, "customer_contacts")
|
223
|
+
|
210
224
|
@property
|
211
225
|
@pulumi.getter(name="dataStorageSizeInGb")
|
212
226
|
def data_storage_size_in_gb(self) -> int:
|
@@ -215,6 +229,14 @@ class GetMysqlDbSystemResult:
|
|
215
229
|
"""
|
216
230
|
return pulumi.get(self, "data_storage_size_in_gb")
|
217
231
|
|
232
|
+
@property
|
233
|
+
@pulumi.getter(name="dataStorages")
|
234
|
+
def data_storages(self) -> Sequence['outputs.GetMysqlDbSystemDataStorageResult']:
|
235
|
+
"""
|
236
|
+
Data Storage information.
|
237
|
+
"""
|
238
|
+
return pulumi.get(self, "data_storages")
|
239
|
+
|
218
240
|
@property
|
219
241
|
@pulumi.getter(name="databaseManagement")
|
220
242
|
def database_management(self) -> str:
|
@@ -460,7 +482,9 @@ class AwaitableGetMysqlDbSystemResult(GetMysqlDbSystemResult):
|
|
460
482
|
configuration_id=self.configuration_id,
|
461
483
|
crash_recovery=self.crash_recovery,
|
462
484
|
current_placements=self.current_placements,
|
485
|
+
customer_contacts=self.customer_contacts,
|
463
486
|
data_storage_size_in_gb=self.data_storage_size_in_gb,
|
487
|
+
data_storages=self.data_storages,
|
464
488
|
database_management=self.database_management,
|
465
489
|
db_system_id=self.db_system_id,
|
466
490
|
defined_tags=self.defined_tags,
|
@@ -526,7 +550,9 @@ def get_mysql_db_system(db_system_id: Optional[str] = None,
|
|
526
550
|
configuration_id=pulumi.get(__ret__, 'configuration_id'),
|
527
551
|
crash_recovery=pulumi.get(__ret__, 'crash_recovery'),
|
528
552
|
current_placements=pulumi.get(__ret__, 'current_placements'),
|
553
|
+
customer_contacts=pulumi.get(__ret__, 'customer_contacts'),
|
529
554
|
data_storage_size_in_gb=pulumi.get(__ret__, 'data_storage_size_in_gb'),
|
555
|
+
data_storages=pulumi.get(__ret__, 'data_storages'),
|
530
556
|
database_management=pulumi.get(__ret__, 'database_management'),
|
531
557
|
db_system_id=pulumi.get(__ret__, 'db_system_id'),
|
532
558
|
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
pulumi_oci/mysql/mysql_backup.py
CHANGED
@@ -209,7 +209,7 @@ class _MysqlBackupState:
|
|
209
209
|
:param pulumi.Input[str] backup_type: The type of backup.
|
210
210
|
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment the backup exists in.
|
211
211
|
:param pulumi.Input[str] creation_type: Indicates how the backup was created: manually, automatic, or by an Operator.
|
212
|
-
:param pulumi.Input[int] data_storage_size_in_gb:
|
212
|
+
:param pulumi.Input[int] data_storage_size_in_gb: DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
|
213
213
|
:param pulumi.Input[str] db_system_id: The OCID of the DB System the Backup is associated with.
|
214
214
|
:param pulumi.Input[Sequence[pulumi.Input['MysqlBackupDbSystemSnapshotArgs']]] db_system_snapshots: Snapshot of the DbSystem details at the time of the backup
|
215
215
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
@@ -327,7 +327,7 @@ class _MysqlBackupState:
|
|
327
327
|
@pulumi.getter(name="dataStorageSizeInGb")
|
328
328
|
def data_storage_size_in_gb(self) -> Optional[pulumi.Input[int]]:
|
329
329
|
"""
|
330
|
-
|
330
|
+
DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
|
331
331
|
"""
|
332
332
|
return pulumi.get(self, "data_storage_size_in_gb")
|
333
333
|
|
@@ -750,7 +750,7 @@ class MysqlBackup(pulumi.CustomResource):
|
|
750
750
|
:param pulumi.Input[str] backup_type: The type of backup.
|
751
751
|
:param pulumi.Input[str] compartment_id: (Updatable) The OCID of the compartment the backup exists in.
|
752
752
|
:param pulumi.Input[str] creation_type: Indicates how the backup was created: manually, automatic, or by an Operator.
|
753
|
-
:param pulumi.Input[int] data_storage_size_in_gb:
|
753
|
+
:param pulumi.Input[int] data_storage_size_in_gb: DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
|
754
754
|
:param pulumi.Input[str] db_system_id: The OCID of the DB System the Backup is associated with.
|
755
755
|
:param pulumi.Input[Sequence[pulumi.Input[Union['MysqlBackupDbSystemSnapshotArgs', 'MysqlBackupDbSystemSnapshotArgsDict']]]] db_system_snapshots: Snapshot of the DbSystem details at the time of the backup
|
756
756
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
@@ -834,7 +834,7 @@ class MysqlBackup(pulumi.CustomResource):
|
|
834
834
|
@pulumi.getter(name="dataStorageSizeInGb")
|
835
835
|
def data_storage_size_in_gb(self) -> pulumi.Output[int]:
|
836
836
|
"""
|
837
|
-
|
837
|
+
DEPRECATED: User specified size of the data volume. May be less than current allocatedStorageSizeInGBs. Replaced by dataStorage.dataStorageSizeInGBs.
|
838
838
|
"""
|
839
839
|
return pulumi.get(self, "data_storage_size_in_gb")
|
840
840
|
|