pulumi-oci 3.7.0a1757736103__py3-none-any.whl → 3.8.0a1758168665__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/database/cloud_exadata_infrastructure.py +7 -7
- pulumi_oci/database/data_guard_association.py +68 -0
- pulumi_oci/database/db_system.py +68 -0
- pulumi_oci/database/exadb_vm_cluster.py +4 -4
- pulumi_oci/database/exascale_db_storage_vault.py +7 -7
- pulumi_oci/database/get_autonomous_database.py +3 -0
- pulumi_oci/database/get_autonomous_databases_clones.py +3 -0
- pulumi_oci/database/get_cloud_exadata_infrastructure.py +1 -1
- pulumi_oci/database/get_cloud_exadata_infrastructures.py +1 -1
- pulumi_oci/database/get_data_guard_association.py +23 -1
- pulumi_oci/database/get_exadb_vm_cluster.py +1 -1
- pulumi_oci/database/get_exadb_vm_clusters.py +1 -1
- pulumi_oci/database/get_exascale_db_storage_vault.py +1 -1
- pulumi_oci/database/get_exascale_db_storage_vaults.py +1 -1
- pulumi_oci/database/outputs.py +51 -0
- pulumi_oci/filestorage/_inputs.py +3 -3
- pulumi_oci/filestorage/mount_target.py +7 -63
- pulumi_oci/filestorage/outputs.py +4 -15
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-3.7.0a1757736103.dist-info → pulumi_oci-3.8.0a1758168665.dist-info}/METADATA +1 -1
- {pulumi_oci-3.7.0a1757736103.dist-info → pulumi_oci-3.8.0a1758168665.dist-info}/RECORD +23 -23
- {pulumi_oci-3.7.0a1757736103.dist-info → pulumi_oci-3.8.0a1758168665.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.7.0a1757736103.dist-info → pulumi_oci-3.8.0a1758168665.dist-info}/top_level.txt +0 -0
@@ -109,7 +109,7 @@ class ExportExportOption(dict):
|
|
109
109
|
is_anonymous_access_allowed: Optional[_builtins.bool] = None,
|
110
110
|
require_privileged_source_port: Optional[_builtins.bool] = None):
|
111
111
|
"""
|
112
|
-
:param _builtins.str source: (Updatable) Clients these options should apply to. Must be a either single IPv4
|
112
|
+
:param _builtins.str source: (Updatable) Clients these options should apply to. Must be a either single IPv4 address or single IPv4 CIDR block.
|
113
113
|
|
114
114
|
**Note:** Access will also be limited by any applicable VCN security rules and the ability to route IP packets to the mount target. Mount targets do not have Internet-routable IP addresses.
|
115
115
|
:param _builtins.str access: (Updatable) Type of access to grant clients using the file system through this export. If unspecified defaults to `READ_WRITE`.
|
@@ -140,7 +140,7 @@ class ExportExportOption(dict):
|
|
140
140
|
@pulumi.getter
|
141
141
|
def source(self) -> _builtins.str:
|
142
142
|
"""
|
143
|
-
(Updatable) Clients these options should apply to. Must be a either single IPv4
|
143
|
+
(Updatable) Clients these options should apply to. Must be a either single IPv4 address or single IPv4 CIDR block.
|
144
144
|
|
145
145
|
**Note:** Access will also be limited by any applicable VCN security rules and the ability to route IP packets to the mount target. Mount targets do not have Internet-routable IP addresses.
|
146
146
|
"""
|
@@ -1432,7 +1432,7 @@ class GetExportsExportExportOptionResult(dict):
|
|
1432
1432
|
:param _builtins.str identity_squash: Used when clients accessing the file system through this export have their UID and GID remapped to 'anonymousUid' and 'anonymousGid'. If `ALL`, all users and groups are remapped; if `ROOT`, only the root user and group (UID/GID 0) are remapped; if `NONE`, no remapping is done. If unspecified, defaults to `ROOT`.
|
1433
1433
|
:param _builtins.bool is_anonymous_access_allowed: Whether or not to enable anonymous access to the file system through this export in cases where a user isn't found in the LDAP server used for ID mapping. If true, and the user is not found in the LDAP directory, the operation uses the Squash UID and Squash GID.
|
1434
1434
|
:param _builtins.bool require_privileged_source_port: If `true`, clients accessing the file system through this export must connect from a privileged source port. If unspecified, defaults to `true`.
|
1435
|
-
:param _builtins.str source: Clients these options should apply to. Must be a either single IPv4
|
1435
|
+
:param _builtins.str source: Clients these options should apply to. Must be a either single IPv4 address or single IPv4 CIDR block.
|
1436
1436
|
"""
|
1437
1437
|
pulumi.set(__self__, "access", access)
|
1438
1438
|
pulumi.set(__self__, "allowed_auths", allowed_auths)
|
@@ -1503,7 +1503,7 @@ class GetExportsExportExportOptionResult(dict):
|
|
1503
1503
|
@pulumi.getter
|
1504
1504
|
def source(self) -> _builtins.str:
|
1505
1505
|
"""
|
1506
|
-
Clients these options should apply to. Must be a either single IPv4
|
1506
|
+
Clients these options should apply to. Must be a either single IPv4 address or single IPv4 CIDR block.
|
1507
1507
|
"""
|
1508
1508
|
return pulumi.get(self, "source")
|
1509
1509
|
|
@@ -2672,7 +2672,6 @@ class GetMountTargetsMountTargetResult(dict):
|
|
2672
2672
|
ldap_idmaps: Sequence['outputs.GetMountTargetsMountTargetLdapIdmapResult'],
|
2673
2673
|
lifecycle_details: _builtins.str,
|
2674
2674
|
locks: Sequence['outputs.GetMountTargetsMountTargetLockResult'],
|
2675
|
-
mount_target_ipv6ids: Sequence[_builtins.str],
|
2676
2675
|
nsg_ids: Sequence[_builtins.str],
|
2677
2676
|
observed_throughput: _builtins.str,
|
2678
2677
|
private_ip_ids: Sequence[_builtins.str],
|
@@ -2696,7 +2695,6 @@ class GetMountTargetsMountTargetResult(dict):
|
|
2696
2695
|
:param Sequence['GetMountTargetsMountTargetLdapIdmapArgs'] ldap_idmaps: Mount target details about the LDAP ID mapping configuration.
|
2697
2696
|
:param _builtins.str lifecycle_details: Additional information about the current 'lifecycleState'.
|
2698
2697
|
:param Sequence['GetMountTargetsMountTargetLockArgs'] locks: Locks associated with this resource.
|
2699
|
-
:param Sequence[_builtins.str] mount_target_ipv6ids: The OCIDs of the IPv6 addresses associated with this mount target.
|
2700
2698
|
:param Sequence[_builtins.str] nsg_ids: A list of Network Security Group [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) associated with this mount target. A maximum of 5 is allowed. Setting this to an empty array after the list is created removes the mount target from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm).
|
2701
2699
|
:param _builtins.str observed_throughput: Current billed throughput for mount target in Gbps. This corresponds to shape of mount target. Available shapes and corresponding throughput are listed at [Mount Target Performance](https://docs.oracle.com/iaas/Content/File/Tasks/managingmounttargets.htm#performance).
|
2702
2700
|
:param Sequence[_builtins.str] private_ip_ids: The OCIDs of the private IP addresses associated with this mount target.
|
@@ -2723,7 +2721,6 @@ class GetMountTargetsMountTargetResult(dict):
|
|
2723
2721
|
pulumi.set(__self__, "ldap_idmaps", ldap_idmaps)
|
2724
2722
|
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
2725
2723
|
pulumi.set(__self__, "locks", locks)
|
2726
|
-
pulumi.set(__self__, "mount_target_ipv6ids", mount_target_ipv6ids)
|
2727
2724
|
pulumi.set(__self__, "nsg_ids", nsg_ids)
|
2728
2725
|
pulumi.set(__self__, "observed_throughput", observed_throughput)
|
2729
2726
|
pulumi.set(__self__, "private_ip_ids", private_ip_ids)
|
@@ -2846,14 +2843,6 @@ class GetMountTargetsMountTargetResult(dict):
|
|
2846
2843
|
"""
|
2847
2844
|
return pulumi.get(self, "locks")
|
2848
2845
|
|
2849
|
-
@_builtins.property
|
2850
|
-
@pulumi.getter(name="mountTargetIpv6ids")
|
2851
|
-
def mount_target_ipv6ids(self) -> Sequence[_builtins.str]:
|
2852
|
-
"""
|
2853
|
-
The OCIDs of the IPv6 addresses associated with this mount target.
|
2854
|
-
"""
|
2855
|
-
return pulumi.get(self, "mount_target_ipv6ids")
|
2856
|
-
|
2857
2846
|
@_builtins.property
|
2858
2847
|
@pulumi.getter(name="nsgIds")
|
2859
2848
|
def nsg_ids(self) -> Sequence[_builtins.str]:
|
pulumi_oci/pulumi-plugin.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
pulumi_oci/__init__.py,sha256=DslnJdTjfa0_9JQcyqU4z-VioDDg0lDn3CJ-6bbFG_Q,198587
|
2
2
|
pulumi_oci/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
3
3
|
pulumi_oci/provider.py,sha256=FfDJRW-BKLGXGNRP4PjksgYcZzQeqTfk5Wfb11nrGbk,27230
|
4
|
-
pulumi_oci/pulumi-plugin.json,sha256=
|
4
|
+
pulumi_oci/pulumi-plugin.json,sha256=zDUxNJSHynTvWfyzQjEsWADqnDULMdbrN-MFEEvWAn8,79
|
5
5
|
pulumi_oci/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
6
|
pulumi_oci/adm/__init__.py,sha256=XqF4LnJUjr1204jZQHCbrIOpZUazPPCTu4xatHtFmf4,1060
|
7
7
|
pulumi_oci/adm/_inputs.py,sha256=BIj462QVRrTRxxWerkqjhlaCH6hGP2Qy2kBONPYlnoY,75428
|
@@ -746,10 +746,10 @@ pulumi_oci/database/backup_cancel_management.py,sha256=893DFK7a4a8WZKkzBDr0Xoj-9
|
|
746
746
|
pulumi_oci/database/backup_destination.py,sha256=VsrY8o7-OoIcvVlYy22OCS0IZUwJrGgsbdbfuwGav6k,55193
|
747
747
|
pulumi_oci/database/cloud_autonomous_vm_cluster.py,sha256=50zq1CD7sDjBmIbC0FuTf4kmFrSe-o9j1pZyQbMuen8,157403
|
748
748
|
pulumi_oci/database/cloud_database_management.py,sha256=jPKxX5TdAlZd4RDJvm9KiBJOsV2KsYdEm0zlWjtNQ2Q,33394
|
749
|
-
pulumi_oci/database/cloud_exadata_infrastructure.py,sha256=
|
749
|
+
pulumi_oci/database/cloud_exadata_infrastructure.py,sha256=FTZw57GvRhVv8QEn__NU3tL2WGnqOIRlkq-HhBSdZmw,92492
|
750
750
|
pulumi_oci/database/cloud_vm_cluster.py,sha256=KvGqgiHKINvQuwiupxdXwQ1quONGBEahCvY1wyVbBm8,177588
|
751
751
|
pulumi_oci/database/cloud_vm_cluster_iorm_config.py,sha256=v9Wv3RR_tN_UsJpfbsD_R40ibcn_D-oqQ06PaRiNdXQ,17206
|
752
|
-
pulumi_oci/database/data_guard_association.py,sha256=
|
752
|
+
pulumi_oci/database/data_guard_association.py,sha256=AKiLr7x_3RwD2COLesqO5OVHKbWgDuWnqIoK0jerLHI,178675
|
753
753
|
pulumi_oci/database/database.py,sha256=ADnLSG6HR6RBu6niNsSHavXM27IZ_wAHuAaMkVMkjhc,94862
|
754
754
|
pulumi_oci/database/database_software_image.py,sha256=4l26BooVmfzBDK1OJbHPmgasb5CnKA1gjdAhRcVynmg,51221
|
755
755
|
pulumi_oci/database/database_upgrade.py,sha256=Rc0p0bf3maLQ2BS4CrOnLx0QepZyxHfTz92bzsduVUs,66388
|
@@ -757,15 +757,15 @@ pulumi_oci/database/db_home.py,sha256=zolrJc4XacvBCULmsagPvEF-ni6CqkH_3GiWZS0H1Y
|
|
757
757
|
pulumi_oci/database/db_node.py,sha256=24a0poT1xEYjKglpV_mTFwmPSY3Ie4ajIGCVJSV25P0,60050
|
758
758
|
pulumi_oci/database/db_node_console_connection.py,sha256=F8O83JfknmyZ9WwY8p9F5QqhZqAm5wZTUwsXXSeNHMQ,28436
|
759
759
|
pulumi_oci/database/db_node_console_history.py,sha256=lws7WwOvP1Chkb6KqKTRvRbc7aQY3JBffvPnZmXLOw0,25504
|
760
|
-
pulumi_oci/database/db_system.py,sha256=
|
760
|
+
pulumi_oci/database/db_system.py,sha256=PY0Ks5xbXZY4ZJpjpHGmbq6UQ1pqY3cQEgA6zyfDFjQ,211202
|
761
761
|
pulumi_oci/database/db_systems_upgrade.py,sha256=X9Jqw7u95ZX8yGWrQ3reBEsxEOzdzwXm_Px7JPu_TZw,98743
|
762
762
|
pulumi_oci/database/exadata_infrastructure.py,sha256=ooArLhD0FsbQIOOIEbXpVS81yQp6L_Hro70_t1C2hpQ,138518
|
763
763
|
pulumi_oci/database/exadata_infrastructure_compute.py,sha256=WDe-oKp2ERDuTv4yon2xkriPYfs1ZLNJCePqERXaovI,83919
|
764
764
|
pulumi_oci/database/exadata_infrastructure_configure_exascale_management.py,sha256=fIsLSC7VK1AVWwEqxqYxY9IvWw-0oAetE8xhFKd_MZo,92066
|
765
765
|
pulumi_oci/database/exadata_infrastructure_storage.py,sha256=7kEMAO5gWPee-GvkLNfuw5U5JU9clcJQxCIUtvPuaDs,55315
|
766
766
|
pulumi_oci/database/exadata_iorm_config.py,sha256=0d2n4B1GmXYefjo9-_yMPWWZbR9d7uOCZ_hrFoE8CZw,18838
|
767
|
-
pulumi_oci/database/exadb_vm_cluster.py,sha256=
|
768
|
-
pulumi_oci/database/exascale_db_storage_vault.py,sha256=
|
767
|
+
pulumi_oci/database/exadb_vm_cluster.py,sha256=KmE4eisSkzTln8ABzl1s_jEKDFcIF7pTWQ1ilJ5CcW0,135778
|
768
|
+
pulumi_oci/database/exascale_db_storage_vault.py,sha256=wMkTcNbv1QjbiyGiCi-zvmCG_dly2EocJH0FAQXKkk0,64448
|
769
769
|
pulumi_oci/database/execution_action.py,sha256=R6LOJwz7ZhqEcLPGYwU2MzHhmJwfP2vKV9Phnetolbk,44614
|
770
770
|
pulumi_oci/database/execution_window.py,sha256=jnaO1peBEHSdryCllwEbbTiEOQkJXq3OHzbUClykEtE,46347
|
771
771
|
pulumi_oci/database/external_container_database.py,sha256=0GWC1ZzFvxJWMF2zsDLJGE9cZNvYFFnP-S_gEVpJ2WI,43460
|
@@ -791,7 +791,7 @@ pulumi_oci/database/get_autonomous_container_database_resource_usage.py,sha256=c
|
|
791
791
|
pulumi_oci/database/get_autonomous_container_database_versions.py,sha256=CwWJ2xBwCeGt2abHSwPxrGOIlePvnhYVM25TNqlWYsc,8342
|
792
792
|
pulumi_oci/database/get_autonomous_container_databases.py,sha256=gSerULQOZf4UkXKT3nvG_4WPtoPC6v5SVbrxhJGBQ_U,19468
|
793
793
|
pulumi_oci/database/get_autonomous_container_patches.py,sha256=Yp6BUeJE0QP3BwbGIE_2qJcFRbOOCgy0c0gxrRt2xZo,9589
|
794
|
-
pulumi_oci/database/get_autonomous_database.py,sha256=
|
794
|
+
pulumi_oci/database/get_autonomous_database.py,sha256=05SV1dMfZtSa-MNurHNqTJEAdEP91VzHKigD1wKHbe4,136046
|
795
795
|
pulumi_oci/database/get_autonomous_database_backup.py,sha256=EFLC5hpGK07fJ-m4pdJFWNT81jfgkkbNoRRGpwBp7d8,20514
|
796
796
|
pulumi_oci/database/get_autonomous_database_backups.py,sha256=GsPVRyC1LdxoCoFknpIDfVGsvkYfN-j0gqOUD1tJQFo,11812
|
797
797
|
pulumi_oci/database/get_autonomous_database_dataguard_association.py,sha256=mRrZSSn2Tqn2w3g107RWxxhUaOc8_GCuqG8B6i40V4I,15639
|
@@ -805,7 +805,7 @@ pulumi_oci/database/get_autonomous_database_software_image.py,sha256=yByQz0tQEQR
|
|
805
805
|
pulumi_oci/database/get_autonomous_database_software_images.py,sha256=nb702X1sSaW90ocjYSHJcziLZ4-jTURhfLhgUwmxdrA,11223
|
806
806
|
pulumi_oci/database/get_autonomous_database_wallet.py,sha256=kxxiKn7PGmkLt94xJ7tsyriU4L8ZT4K_9xJbsdio-rQ,9125
|
807
807
|
pulumi_oci/database/get_autonomous_databases.py,sha256=gAbVIZua2V51s65sRw3ELOGCxM9Jww2FT09i60KGwAA,25052
|
808
|
-
pulumi_oci/database/get_autonomous_databases_clones.py,sha256=
|
808
|
+
pulumi_oci/database/get_autonomous_databases_clones.py,sha256=8lKFSThJNdgzqwBZlqu97VXKvkxLzCMAIK2CvvravNY,11597
|
809
809
|
pulumi_oci/database/get_autonomous_db_preview_versions.py,sha256=A6rDuka2eO0fSiNMFX1nI1jk5y9LU2L-5TjfaCnElK4,6943
|
810
810
|
pulumi_oci/database/get_autonomous_db_versions.py,sha256=0OaCVLerERwl2eU4BqMVHFFnsxq-_kwnu1Bg75nzwVU,7764
|
811
811
|
pulumi_oci/database/get_autonomous_exadata_infrastructure.py,sha256=rsKzli-wOHV-HqbXLiL-f384S9ADoMbuddiPSdUyYFU,21377
|
@@ -826,13 +826,13 @@ pulumi_oci/database/get_cloud_autonomous_vm_cluster.py,sha256=5mrvlmFOweh5DDjlOZ
|
|
826
826
|
pulumi_oci/database/get_cloud_autonomous_vm_cluster_acd_resource_usages.py,sha256=PIAieZLOaOmyX8ZSxgSwIzR9ACAHvCRPbSPhuplO3sw,9313
|
827
827
|
pulumi_oci/database/get_cloud_autonomous_vm_cluster_resource_usage.py,sha256=94AliW7R53JG0C1LxpZJVvQQVyynHful3v4UP76G4wo,22129
|
828
828
|
pulumi_oci/database/get_cloud_autonomous_vm_clusters.py,sha256=gl-Fr_vSvc5aG9dK4hHCZLYdOYXtp0QNWrzkfxS-Lj4,12781
|
829
|
-
pulumi_oci/database/get_cloud_exadata_infrastructure.py,sha256=
|
829
|
+
pulumi_oci/database/get_cloud_exadata_infrastructure.py,sha256=rZY0TA-LTXisgjhvrOC7aa3dG3q2BPuCHRAsCJswEmE,36070
|
830
830
|
pulumi_oci/database/get_cloud_exadata_infrastructure_un_allocated_resource.py,sha256=v5bduZ1caV9Y1KjwPnyLNAA2fkOKozdJq0-Dzcfudko,12232
|
831
|
-
pulumi_oci/database/get_cloud_exadata_infrastructures.py,sha256=
|
831
|
+
pulumi_oci/database/get_cloud_exadata_infrastructures.py,sha256=M6UwW3UMTAlXMwRRfdTmtuoQMCAzODWXp0jn_--a5n0,11282
|
832
832
|
pulumi_oci/database/get_cloud_vm_cluster.py,sha256=rk9Vqc9xFGxx3N_UhxgG6o0GsEm5cloB1TzVc7ldmeo,49629
|
833
833
|
pulumi_oci/database/get_cloud_vm_cluster_iorm_config.py,sha256=4U4PArGFWVqoExskdD1-G99NJgESIl9IFBNBqkEpW-4,7661
|
834
834
|
pulumi_oci/database/get_cloud_vm_clusters.py,sha256=315CrimtmA_lO3TEAwIUjvIrO3JM0aYrLMTMofXlHrc,11813
|
835
|
-
pulumi_oci/database/get_data_guard_association.py,sha256=
|
835
|
+
pulumi_oci/database/get_data_guard_association.py,sha256=aDJvwZChIOaxScJwtYy7KbeW46CilngkYrRqZmvkrUU,37782
|
836
836
|
pulumi_oci/database/get_data_guard_associations.py,sha256=OvkykpXdUDbFeFRenCOJU_tteoTSPJZ7hDJrrsVearE,6332
|
837
837
|
pulumi_oci/database/get_database.py,sha256=3wW5B1ZuTWqvxknhT1ixtT4PJhx6CfTeJOShu34XAGY,33537
|
838
838
|
pulumi_oci/database/get_database_maintenance_run_histories.py,sha256=wyl1i5MSmuciT9pwp52obw0i3sD-0i_AhVmlnEJrJTs,13194
|
@@ -871,14 +871,14 @@ pulumi_oci/database/get_exadata_infrastructure_download_config_file.py,sha256=7p
|
|
871
871
|
pulumi_oci/database/get_exadata_infrastructure_un_allocated_resource.py,sha256=QHif_OplyZJ1tgyAtprKI2u_PafpgbrtbD3ltnvNRto,11302
|
872
872
|
pulumi_oci/database/get_exadata_infrastructures.py,sha256=3lLQ02NxdgzNm9W_IYjqb1wSsPSkEXNdrDvE_B3U5ok,8889
|
873
873
|
pulumi_oci/database/get_exadata_iorm_config.py,sha256=z1pSv1D--XthzXGIR2kqIHNa4Ee1FjTk3YkHjZTYHek,8475
|
874
|
-
pulumi_oci/database/get_exadb_vm_cluster.py,sha256=
|
874
|
+
pulumi_oci/database/get_exadb_vm_cluster.py,sha256=16iPYqekJTfxCe4IcvOHdzWcLkp2stDVpdkmRGqoVi0,38282
|
875
875
|
pulumi_oci/database/get_exadb_vm_cluster_update.py,sha256=58Yv_Ft5vEmgkl_4DtdWjmWGkJOUvHZbyW2Pzzq23n0,10876
|
876
876
|
pulumi_oci/database/get_exadb_vm_cluster_update_history_entries.py,sha256=3gC0vnSA_2JqUj8IXCYVjcXP8sOXfd21HDFsRLdbxN8,8667
|
877
877
|
pulumi_oci/database/get_exadb_vm_cluster_update_history_entry.py,sha256=M4upmWKej1E8Lj06pmqtMuGO35-H2vj0ByAP7rTsaH8,11580
|
878
878
|
pulumi_oci/database/get_exadb_vm_cluster_updates.py,sha256=DqEXhnYAH8F_v8PL-twC5ypGm4JsjADX0F73opGV6i0,8937
|
879
|
-
pulumi_oci/database/get_exadb_vm_clusters.py,sha256
|
880
|
-
pulumi_oci/database/get_exascale_db_storage_vault.py,sha256=
|
881
|
-
pulumi_oci/database/get_exascale_db_storage_vaults.py,sha256=
|
879
|
+
pulumi_oci/database/get_exadb_vm_clusters.py,sha256=xrmPFc2_Wd72Xv4pezaWbUT4ZUoDeUniogUGceA6UVQ,12300
|
880
|
+
pulumi_oci/database/get_exascale_db_storage_vault.py,sha256=ud-2557srFXc2eaEDWllLpr1wuveAlMHv2dLvpFEOgc,21548
|
881
|
+
pulumi_oci/database/get_exascale_db_storage_vaults.py,sha256=bc8clCUxllNwodqW0R28_wisKZrGblwovcxHV8vBcpw,20231
|
882
882
|
pulumi_oci/database/get_execution_action.py,sha256=rgOEWdMTLB90rkl3VEfC806b0_sVmCuCci-DO2-8zn0,16766
|
883
883
|
pulumi_oci/database/get_execution_actions.py,sha256=fJ-k4YodNaUHuZC0kASSBBApYWGUX_QNlSy-CvzZ8YU,10069
|
884
884
|
pulumi_oci/database/get_execution_window.py,sha256=6dv0Rc8Mz3U_7-Sz3pa__wjjyBMN0mK25AGbq8JSIuM,18144
|
@@ -936,7 +936,7 @@ pulumi_oci/database/get_vm_clusters.py,sha256=GbQNz20WxVlJ4oIKKZwW83wvquKnbus4Zw
|
|
936
936
|
pulumi_oci/database/key_store.py,sha256=XZ_1KUmAE3k2ba2USgZYMDVobkjqIgg3Ut-RiJVJRbM,30982
|
937
937
|
pulumi_oci/database/maintenance_run.py,sha256=jwzqoxpzUFwYPC-dzFGRGTVeQlLNQDOgOI6SeE4hkMs,72420
|
938
938
|
pulumi_oci/database/oneoff_patch.py,sha256=3S6AEufW-zHBRgvjxYipjZXdKy0mu2mqjBdmsPV4hgw,43013
|
939
|
-
pulumi_oci/database/outputs.py,sha256=
|
939
|
+
pulumi_oci/database/outputs.py,sha256=pt9Pkx9dzvQ_EpavxYdQJCxiYEcexvyJXoj9zIthbOc,3176076
|
940
940
|
pulumi_oci/database/pluggable_database.py,sha256=zJ4LhS0JDi98bKFyr0Kma3NpyB9VJs8RsOb6xEEv7FA,82198
|
941
941
|
pulumi_oci/database/pluggable_database_managements_management.py,sha256=YwtZW8ZV3pXKe6T6U836f25oc4BPNNssGpMGF-zCHuk,55339
|
942
942
|
pulumi_oci/database/pluggable_database_snapshot.py,sha256=yp94Kzb_eZsUn81b9EC4UIgnibzfvI0hqEowoqG0gvk,29593
|
@@ -1716,7 +1716,7 @@ pulumi_oci/events/get_rules.py,sha256=bXH3aahwYhuh5RjRd3R6zZhSQYR51ifBEJmnWRdUNI
|
|
1716
1716
|
pulumi_oci/events/outputs.py,sha256=jPWittjT8rdQhQECKr6KR-lhUH51QYby8opB7sU5KB8,28187
|
1717
1717
|
pulumi_oci/events/rule.py,sha256=0IgdiPyDf7xLHdHp4iSuxrbIbssh7jEjFyclzaNzr00,45858
|
1718
1718
|
pulumi_oci/filestorage/__init__.py,sha256=jlDR2pcf252OTfNshSEezE-9UowGiAhmrtWCnuuk57I,1169
|
1719
|
-
pulumi_oci/filestorage/_inputs.py,sha256=
|
1719
|
+
pulumi_oci/filestorage/_inputs.py,sha256=Ohxlbdhtxogxo_Por-AmzknBzf1Dx5gnl7ZbAJC1MKE,82541
|
1720
1720
|
pulumi_oci/filestorage/export.py,sha256=Pi4huTseAEVaZxmP9IML66CPo3qTWNE-f1wb-Wa8BGc,40323
|
1721
1721
|
pulumi_oci/filestorage/export_set.py,sha256=a2dZGxSqdc7KMd8Os5o30hQhOC4Bq-_ct_3vJhu0BPo,30006
|
1722
1722
|
pulumi_oci/filestorage/file_system.py,sha256=mIxp9hakriXiJ077D5GpSIflCNzyvJ8XJZMUXsgWQoU,77114
|
@@ -1738,9 +1738,9 @@ pulumi_oci/filestorage/get_replication_targets.py,sha256=Im7Iya8H019JerKSSBMd8w_
|
|
1738
1738
|
pulumi_oci/filestorage/get_replications.py,sha256=1m_0u-LgLFkwPyUfnMsb52TUWxGm51HU7By6Sd3n6X4,11767
|
1739
1739
|
pulumi_oci/filestorage/get_snapshot.py,sha256=gx4s81Tu0qygZbJ_3F8dqDn9mpUjeAr0V3Pjm6Z7siA,15874
|
1740
1740
|
pulumi_oci/filestorage/get_snapshots.py,sha256=pXzuATQWK1YW5_5mXSAXab_UEbHKRH_VhJBTh_CJo9s,11397
|
1741
|
-
pulumi_oci/filestorage/mount_target.py,sha256=
|
1741
|
+
pulumi_oci/filestorage/mount_target.py,sha256=h6hf18LXzVKDJhnDp4X0VuZwF1ad12B5EmlpLmH8KoM,85417
|
1742
1742
|
pulumi_oci/filestorage/outbound_connector.py,sha256=rUwd6OnHSFMDTJdcxKZDb3f6_YggjADws38jIh5QJ18,50692
|
1743
|
-
pulumi_oci/filestorage/outputs.py,sha256=
|
1743
|
+
pulumi_oci/filestorage/outputs.py,sha256=cCPAuYcMKC4H1d-YCM9eurHSHPyaYc6ZJThablMmJvQ,218146
|
1744
1744
|
pulumi_oci/filestorage/replication.py,sha256=HeCZQW8IWB8mmHlJski0zPXDyDe1HID5Qv7MiIT1tVI,54930
|
1745
1745
|
pulumi_oci/filestorage/snapshot.py,sha256=JzMXrUxC-Tj8h0GO0sEOF1CjsK2h0igLf2wR7kKEjaI,44564
|
1746
1746
|
pulumi_oci/fleetappsmanagement/__init__.py,sha256=pU0JZhnKLI1_UwR1-oofjVslhTNMf1kEzoxb5mZOel8,2536
|
@@ -3322,7 +3322,7 @@ pulumi_oci/zpr/get_zpr_policies.py,sha256=8iDJvr5DBbBN11uWApUF1oBxsAzI_JCbOdSwHQ
|
|
3322
3322
|
pulumi_oci/zpr/get_zpr_policy.py,sha256=BAvWU7HJHYqS9Zpj997VanPL4yO0W1f6Sc4SVW2pAgQ,11764
|
3323
3323
|
pulumi_oci/zpr/outputs.py,sha256=Mp_BXNVfMCYirJhAUjln5D42Rf0WoAf0v5trTxwDkTI,9522
|
3324
3324
|
pulumi_oci/zpr/zpr_policy.py,sha256=IV9NngE9yGQfyf5UiMrpoIM5CsJj2cLEJI9dEOtFyhA,34082
|
3325
|
-
pulumi_oci-3.
|
3326
|
-
pulumi_oci-3.
|
3327
|
-
pulumi_oci-3.
|
3328
|
-
pulumi_oci-3.
|
3325
|
+
pulumi_oci-3.8.0a1758168665.dist-info/METADATA,sha256=-wH25hTmfRru4pQslX00hR2k6DttivCLQ63dCJuRpc4,4751
|
3326
|
+
pulumi_oci-3.8.0a1758168665.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
3327
|
+
pulumi_oci-3.8.0a1758168665.dist-info/top_level.txt,sha256=0k-nWr_IdDNVF3qcT4ALORmmu1SNCLxWZfHDMN7TWsg,11
|
3328
|
+
pulumi_oci-3.8.0a1758168665.dist-info/RECORD,,
|
File without changes
|
{pulumi_oci-3.7.0a1757736103.dist-info → pulumi_oci-3.8.0a1758168665.dist-info}/top_level.txt
RENAMED
File without changes
|