pulumi-oci 3.7.0a1757720206__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_db_system_storage_performances.py +26 -2
- 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/email/_inputs.py +342 -0
- pulumi_oci/email/email_domain.py +26 -4
- pulumi_oci/email/email_return_path.py +34 -4
- pulumi_oci/email/get_email_domain.py +17 -2
- pulumi_oci/email/get_email_domains.py +1 -1
- pulumi_oci/email/get_email_return_path.py +17 -2
- pulumi_oci/email/get_email_return_paths.py +1 -1
- pulumi_oci/email/get_sender.py +17 -2
- pulumi_oci/email/get_senders.py +1 -1
- pulumi_oci/email/outputs.py +678 -0
- pulumi_oci/email/sender.py +30 -0
- pulumi_oci/filestorage/mount_target.py +14 -14
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-3.7.0a1757720206.dist-info → pulumi_oci-3.8.0a1758168665.dist-info}/METADATA +1 -1
- {pulumi_oci-3.7.0a1757720206.dist-info → pulumi_oci-3.8.0a1758168665.dist-info}/RECORD +33 -33
- {pulumi_oci-3.7.0a1757720206.dist-info → pulumi_oci-3.8.0a1758168665.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.7.0a1757720206.dist-info → pulumi_oci-3.8.0a1758168665.dist-info}/top_level.txt +0 -0
pulumi_oci/email/sender.py
CHANGED
@@ -13,6 +13,8 @@ if sys.version_info >= (3, 11):
|
|
13
13
|
else:
|
14
14
|
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
15
15
|
from .. import _utilities
|
16
|
+
from . import outputs
|
17
|
+
from ._inputs import *
|
16
18
|
|
17
19
|
__all__ = ['SenderArgs', 'Sender']
|
18
20
|
|
@@ -103,6 +105,7 @@ class _SenderState:
|
|
103
105
|
email_domain_id: Optional[pulumi.Input[_builtins.str]] = None,
|
104
106
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
105
107
|
is_spf: Optional[pulumi.Input[_builtins.bool]] = None,
|
108
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input['SenderLockArgs']]]] = None,
|
106
109
|
state: Optional[pulumi.Input[_builtins.str]] = None,
|
107
110
|
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
108
111
|
time_created: Optional[pulumi.Input[_builtins.str]] = None):
|
@@ -118,6 +121,7 @@ class _SenderState:
|
|
118
121
|
** IMPORTANT **
|
119
122
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
120
123
|
:param pulumi.Input[_builtins.bool] is_spf: Value of the SPF field. For more information about SPF, please see [SPF Authentication](https://docs.cloud.oracle.com/iaas/Content/Email/Concepts/overview.htm#components).
|
124
|
+
:param pulumi.Input[Sequence[pulumi.Input['SenderLockArgs']]] locks: Locks associated with this resource.
|
121
125
|
:param pulumi.Input[_builtins.str] state: The current status of the approved sender.
|
122
126
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
123
127
|
:param pulumi.Input[_builtins.str] time_created: The date and time the approved sender was added in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by [RFC 3339](https://tools.ietf.org/html/rfc3339).
|
@@ -134,6 +138,8 @@ class _SenderState:
|
|
134
138
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
135
139
|
if is_spf is not None:
|
136
140
|
pulumi.set(__self__, "is_spf", is_spf)
|
141
|
+
if locks is not None:
|
142
|
+
pulumi.set(__self__, "locks", locks)
|
137
143
|
if state is not None:
|
138
144
|
pulumi.set(__self__, "state", state)
|
139
145
|
if system_tags is not None:
|
@@ -217,6 +223,18 @@ class _SenderState:
|
|
217
223
|
def is_spf(self, value: Optional[pulumi.Input[_builtins.bool]]):
|
218
224
|
pulumi.set(self, "is_spf", value)
|
219
225
|
|
226
|
+
@_builtins.property
|
227
|
+
@pulumi.getter
|
228
|
+
def locks(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['SenderLockArgs']]]]:
|
229
|
+
"""
|
230
|
+
Locks associated with this resource.
|
231
|
+
"""
|
232
|
+
return pulumi.get(self, "locks")
|
233
|
+
|
234
|
+
@locks.setter
|
235
|
+
def locks(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['SenderLockArgs']]]]):
|
236
|
+
pulumi.set(self, "locks", value)
|
237
|
+
|
220
238
|
@_builtins.property
|
221
239
|
@pulumi.getter
|
222
240
|
def state(self) -> Optional[pulumi.Input[_builtins.str]]:
|
@@ -380,6 +398,7 @@ class Sender(pulumi.CustomResource):
|
|
380
398
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
381
399
|
__props__.__dict__["email_domain_id"] = None
|
382
400
|
__props__.__dict__["is_spf"] = None
|
401
|
+
__props__.__dict__["locks"] = None
|
383
402
|
__props__.__dict__["state"] = None
|
384
403
|
__props__.__dict__["system_tags"] = None
|
385
404
|
__props__.__dict__["time_created"] = None
|
@@ -399,6 +418,7 @@ class Sender(pulumi.CustomResource):
|
|
399
418
|
email_domain_id: Optional[pulumi.Input[_builtins.str]] = None,
|
400
419
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
401
420
|
is_spf: Optional[pulumi.Input[_builtins.bool]] = None,
|
421
|
+
locks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['SenderLockArgs', 'SenderLockArgsDict']]]]] = None,
|
402
422
|
state: Optional[pulumi.Input[_builtins.str]] = None,
|
403
423
|
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]]] = None,
|
404
424
|
time_created: Optional[pulumi.Input[_builtins.str]] = None) -> 'Sender':
|
@@ -419,6 +439,7 @@ class Sender(pulumi.CustomResource):
|
|
419
439
|
** IMPORTANT **
|
420
440
|
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
421
441
|
:param pulumi.Input[_builtins.bool] is_spf: Value of the SPF field. For more information about SPF, please see [SPF Authentication](https://docs.cloud.oracle.com/iaas/Content/Email/Concepts/overview.htm#components).
|
442
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['SenderLockArgs', 'SenderLockArgsDict']]]] locks: Locks associated with this resource.
|
422
443
|
:param pulumi.Input[_builtins.str] state: The current status of the approved sender.
|
423
444
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] system_tags: Usage of system tag keys. These predefined keys are scoped to namespaces. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
424
445
|
:param pulumi.Input[_builtins.str] time_created: The date and time the approved sender was added in "YYYY-MM-ddThh:mmZ" format with a Z offset, as defined by [RFC 3339](https://tools.ietf.org/html/rfc3339).
|
@@ -433,6 +454,7 @@ class Sender(pulumi.CustomResource):
|
|
433
454
|
__props__.__dict__["email_domain_id"] = email_domain_id
|
434
455
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
435
456
|
__props__.__dict__["is_spf"] = is_spf
|
457
|
+
__props__.__dict__["locks"] = locks
|
436
458
|
__props__.__dict__["state"] = state
|
437
459
|
__props__.__dict__["system_tags"] = system_tags
|
438
460
|
__props__.__dict__["time_created"] = time_created
|
@@ -490,6 +512,14 @@ class Sender(pulumi.CustomResource):
|
|
490
512
|
"""
|
491
513
|
return pulumi.get(self, "is_spf")
|
492
514
|
|
515
|
+
@_builtins.property
|
516
|
+
@pulumi.getter
|
517
|
+
def locks(self) -> pulumi.Output[Sequence['outputs.SenderLock']]:
|
518
|
+
"""
|
519
|
+
Locks associated with this resource.
|
520
|
+
"""
|
521
|
+
return pulumi.get(self, "locks")
|
522
|
+
|
493
523
|
@_builtins.property
|
494
524
|
@pulumi.getter
|
495
525
|
def state(self) -> pulumi.Output[_builtins.str]:
|
@@ -50,9 +50,9 @@ class MountTargetArgs:
|
|
50
50
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: (Updatable) 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"}`
|
51
51
|
:param pulumi.Input[_builtins.str] hostname_label: The hostname for the mount target's IP address, used for DNS resolution. The value is the hostname portion of the private IP address's fully qualified domain name (FQDN). For example, `files-1` in the FQDN `files-1.subnet123.vcn1.oraclevcn.com`. Must be unique across all VNICs in the subnet and comply with [RFC 952](https://tools.ietf.org/html/rfc952) and [RFC 1123](https://tools.ietf.org/html/rfc1123).
|
52
52
|
|
53
|
-
Note:
|
53
|
+
Note:
|
54
54
|
|
55
|
-
For more information, see [DNS in Your Virtual Cloud Network](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/dns.htm).
|
55
|
+
This attribute value is stored in the [PrivateIp](https://docs.cloud.oracle.com/en-us/iaas/api/#/en/iaas/20160918/PrivateIp/) resource, not in the `mountTarget` resource. To update the `hostnameLabel`, use `GetMountTarget` to obtain the [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the mount target's private IPs (`privateIpIds`). Then, you can use [UpdatePrivateIp](https://docs.cloud.oracle.com/en-us/iaas/api/#/en/iaas/20160918/PrivateIp/UpdatePrivateIp) to update the `hostnameLabel` value. For more information, see [DNS in Your Virtual Cloud Network](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/dns.htm).
|
56
56
|
|
57
57
|
Example: `files-1`
|
58
58
|
:param pulumi.Input[_builtins.str] idmap_type: (Updatable) The method used to map a Unix UID to secondary groups, if any.
|
@@ -174,9 +174,9 @@ class MountTargetArgs:
|
|
174
174
|
"""
|
175
175
|
The hostname for the mount target's IP address, used for DNS resolution. The value is the hostname portion of the private IP address's fully qualified domain name (FQDN). For example, `files-1` in the FQDN `files-1.subnet123.vcn1.oraclevcn.com`. Must be unique across all VNICs in the subnet and comply with [RFC 952](https://tools.ietf.org/html/rfc952) and [RFC 1123](https://tools.ietf.org/html/rfc1123).
|
176
176
|
|
177
|
-
Note:
|
177
|
+
Note:
|
178
178
|
|
179
|
-
For more information, see [DNS in Your Virtual Cloud Network](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/dns.htm).
|
179
|
+
This attribute value is stored in the [PrivateIp](https://docs.cloud.oracle.com/en-us/iaas/api/#/en/iaas/20160918/PrivateIp/) resource, not in the `mountTarget` resource. To update the `hostnameLabel`, use `GetMountTarget` to obtain the [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the mount target's private IPs (`privateIpIds`). Then, you can use [UpdatePrivateIp](https://docs.cloud.oracle.com/en-us/iaas/api/#/en/iaas/20160918/PrivateIp/UpdatePrivateIp) to update the `hostnameLabel` value. For more information, see [DNS in Your Virtual Cloud Network](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/dns.htm).
|
180
180
|
|
181
181
|
Example: `files-1`
|
182
182
|
"""
|
@@ -320,9 +320,9 @@ class _MountTargetState:
|
|
320
320
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: (Updatable) 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"}`
|
321
321
|
:param pulumi.Input[_builtins.str] hostname_label: The hostname for the mount target's IP address, used for DNS resolution. The value is the hostname portion of the private IP address's fully qualified domain name (FQDN). For example, `files-1` in the FQDN `files-1.subnet123.vcn1.oraclevcn.com`. Must be unique across all VNICs in the subnet and comply with [RFC 952](https://tools.ietf.org/html/rfc952) and [RFC 1123](https://tools.ietf.org/html/rfc1123).
|
322
322
|
|
323
|
-
Note:
|
323
|
+
Note:
|
324
324
|
|
325
|
-
For more information, see [DNS in Your Virtual Cloud Network](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/dns.htm).
|
325
|
+
This attribute value is stored in the [PrivateIp](https://docs.cloud.oracle.com/en-us/iaas/api/#/en/iaas/20160918/PrivateIp/) resource, not in the `mountTarget` resource. To update the `hostnameLabel`, use `GetMountTarget` to obtain the [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the mount target's private IPs (`privateIpIds`). Then, you can use [UpdatePrivateIp](https://docs.cloud.oracle.com/en-us/iaas/api/#/en/iaas/20160918/PrivateIp/UpdatePrivateIp) to update the `hostnameLabel` value. For more information, see [DNS in Your Virtual Cloud Network](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/dns.htm).
|
326
326
|
|
327
327
|
Example: `files-1`
|
328
328
|
:param pulumi.Input[_builtins.str] idmap_type: (Updatable) The method used to map a Unix UID to secondary groups, if any.
|
@@ -474,9 +474,9 @@ class _MountTargetState:
|
|
474
474
|
"""
|
475
475
|
The hostname for the mount target's IP address, used for DNS resolution. The value is the hostname portion of the private IP address's fully qualified domain name (FQDN). For example, `files-1` in the FQDN `files-1.subnet123.vcn1.oraclevcn.com`. Must be unique across all VNICs in the subnet and comply with [RFC 952](https://tools.ietf.org/html/rfc952) and [RFC 1123](https://tools.ietf.org/html/rfc1123).
|
476
476
|
|
477
|
-
Note:
|
477
|
+
Note:
|
478
478
|
|
479
|
-
For more information, see [DNS in Your Virtual Cloud Network](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/dns.htm).
|
479
|
+
This attribute value is stored in the [PrivateIp](https://docs.cloud.oracle.com/en-us/iaas/api/#/en/iaas/20160918/PrivateIp/) resource, not in the `mountTarget` resource. To update the `hostnameLabel`, use `GetMountTarget` to obtain the [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the mount target's private IPs (`privateIpIds`). Then, you can use [UpdatePrivateIp](https://docs.cloud.oracle.com/en-us/iaas/api/#/en/iaas/20160918/PrivateIp/UpdatePrivateIp) to update the `hostnameLabel` value. For more information, see [DNS in Your Virtual Cloud Network](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/dns.htm).
|
480
480
|
|
481
481
|
Example: `files-1`
|
482
482
|
"""
|
@@ -818,9 +818,9 @@ class MountTarget(pulumi.CustomResource):
|
|
818
818
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: (Updatable) 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"}`
|
819
819
|
:param pulumi.Input[_builtins.str] hostname_label: The hostname for the mount target's IP address, used for DNS resolution. The value is the hostname portion of the private IP address's fully qualified domain name (FQDN). For example, `files-1` in the FQDN `files-1.subnet123.vcn1.oraclevcn.com`. Must be unique across all VNICs in the subnet and comply with [RFC 952](https://tools.ietf.org/html/rfc952) and [RFC 1123](https://tools.ietf.org/html/rfc1123).
|
820
820
|
|
821
|
-
Note:
|
821
|
+
Note:
|
822
822
|
|
823
|
-
For more information, see [DNS in Your Virtual Cloud Network](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/dns.htm).
|
823
|
+
This attribute value is stored in the [PrivateIp](https://docs.cloud.oracle.com/en-us/iaas/api/#/en/iaas/20160918/PrivateIp/) resource, not in the `mountTarget` resource. To update the `hostnameLabel`, use `GetMountTarget` to obtain the [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the mount target's private IPs (`privateIpIds`). Then, you can use [UpdatePrivateIp](https://docs.cloud.oracle.com/en-us/iaas/api/#/en/iaas/20160918/PrivateIp/UpdatePrivateIp) to update the `hostnameLabel` value. For more information, see [DNS in Your Virtual Cloud Network](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/dns.htm).
|
824
824
|
|
825
825
|
Example: `files-1`
|
826
826
|
:param pulumi.Input[_builtins.str] idmap_type: (Updatable) The method used to map a Unix UID to secondary groups, if any.
|
@@ -1053,9 +1053,9 @@ class MountTarget(pulumi.CustomResource):
|
|
1053
1053
|
:param pulumi.Input[Mapping[str, pulumi.Input[_builtins.str]]] freeform_tags: (Updatable) 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"}`
|
1054
1054
|
:param pulumi.Input[_builtins.str] hostname_label: The hostname for the mount target's IP address, used for DNS resolution. The value is the hostname portion of the private IP address's fully qualified domain name (FQDN). For example, `files-1` in the FQDN `files-1.subnet123.vcn1.oraclevcn.com`. Must be unique across all VNICs in the subnet and comply with [RFC 952](https://tools.ietf.org/html/rfc952) and [RFC 1123](https://tools.ietf.org/html/rfc1123).
|
1055
1055
|
|
1056
|
-
Note:
|
1056
|
+
Note:
|
1057
1057
|
|
1058
|
-
For more information, see [DNS in Your Virtual Cloud Network](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/dns.htm).
|
1058
|
+
This attribute value is stored in the [PrivateIp](https://docs.cloud.oracle.com/en-us/iaas/api/#/en/iaas/20160918/PrivateIp/) resource, not in the `mountTarget` resource. To update the `hostnameLabel`, use `GetMountTarget` to obtain the [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the mount target's private IPs (`privateIpIds`). Then, you can use [UpdatePrivateIp](https://docs.cloud.oracle.com/en-us/iaas/api/#/en/iaas/20160918/PrivateIp/UpdatePrivateIp) to update the `hostnameLabel` value. For more information, see [DNS in Your Virtual Cloud Network](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/dns.htm).
|
1059
1059
|
|
1060
1060
|
Example: `files-1`
|
1061
1061
|
:param pulumi.Input[_builtins.str] idmap_type: (Updatable) The method used to map a Unix UID to secondary groups, if any.
|
@@ -1164,9 +1164,9 @@ class MountTarget(pulumi.CustomResource):
|
|
1164
1164
|
"""
|
1165
1165
|
The hostname for the mount target's IP address, used for DNS resolution. The value is the hostname portion of the private IP address's fully qualified domain name (FQDN). For example, `files-1` in the FQDN `files-1.subnet123.vcn1.oraclevcn.com`. Must be unique across all VNICs in the subnet and comply with [RFC 952](https://tools.ietf.org/html/rfc952) and [RFC 1123](https://tools.ietf.org/html/rfc1123).
|
1166
1166
|
|
1167
|
-
Note:
|
1167
|
+
Note:
|
1168
1168
|
|
1169
|
-
For more information, see [DNS in Your Virtual Cloud Network](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/dns.htm).
|
1169
|
+
This attribute value is stored in the [PrivateIp](https://docs.cloud.oracle.com/en-us/iaas/api/#/en/iaas/20160918/PrivateIp/) resource, not in the `mountTarget` resource. To update the `hostnameLabel`, use `GetMountTarget` to obtain the [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the mount target's private IPs (`privateIpIds`). Then, you can use [UpdatePrivateIp](https://docs.cloud.oracle.com/en-us/iaas/api/#/en/iaas/20160918/PrivateIp/UpdatePrivateIp) to update the `hostnameLabel` value. For more information, see [DNS in Your Virtual Cloud Network](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/dns.htm).
|
1170
1170
|
|
1171
1171
|
Example: `files-1`
|
1172
1172
|
"""
|
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
|
@@ -861,7 +861,7 @@ pulumi_oci/database/get_db_system_compute_performances.py,sha256=GscxCA_UiLzqSRy
|
|
861
861
|
pulumi_oci/database/get_db_system_history_entries.py,sha256=JS_RK9S0P9edKKdyBf0TEMA_SdNYfHglx0RqipXkaAo,6279
|
862
862
|
pulumi_oci/database/get_db_system_patches.py,sha256=KftapUjm3IEVxAUrBjVJFm_gbctj_v1y7EL0skHYukg,5694
|
863
863
|
pulumi_oci/database/get_db_system_shapes.py,sha256=DBDBbgFu_UozIY3CCEhZ6kIALQNmVMtop9KlkjUHmb4,8738
|
864
|
-
pulumi_oci/database/get_db_system_storage_performances.py,sha256=
|
864
|
+
pulumi_oci/database/get_db_system_storage_performances.py,sha256=d6pmJix2yepBP4D1hq1vTsTOi9aXns5jdjLpNTvxw58,11425
|
865
865
|
pulumi_oci/database/get_db_systems.py,sha256=wSVUov_CRigL142O9lT_9wVrdP96mA2aPhSRV_9LvZU,12160
|
866
866
|
pulumi_oci/database/get_db_systems_upgrade_history_entries.py,sha256=WIQBGiyxQooWp73ktjFKadgVmVNwHkn388mScPwqVKk,9166
|
867
867
|
pulumi_oci/database/get_db_systems_upgrade_history_entry.py,sha256=kc3f73J6siH77R-JvG-LjFcNQN2okGFddevVVMmkddg,12990
|
@@ -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
|
@@ -1691,23 +1691,23 @@ pulumi_oci/dns/zone.py,sha256=5-Z66fcLpC5r6VXJaYwroJFw1PentKbtHN687_GxiQk,63132
|
|
1691
1691
|
pulumi_oci/dns/zone_promote_dnssec_key_version.py,sha256=gC5sZxLp1Sz13MWTSiYsHIXEyJyzVUxl2_H6L0iR4YA,14845
|
1692
1692
|
pulumi_oci/dns/zone_stage_dnssec_key_version.py,sha256=8AObzUSwYY6MzQ-ya4urz9qtntrg1wwmfgBPiEh4eTs,14903
|
1693
1693
|
pulumi_oci/email/__init__.py,sha256=uDxtZ4nSOKyBP6SM_W_p68BQ-_a0n1ZlKehf4fth0Fk,793
|
1694
|
-
pulumi_oci/email/_inputs.py,sha256=
|
1694
|
+
pulumi_oci/email/_inputs.py,sha256=Hbn2gb4W2eQ6dOegjBMoBHq-pO73ha4CUEwEVW8dlmA,23995
|
1695
1695
|
pulumi_oci/email/dkim.py,sha256=wrRd8kZTxFa5CWf8MPTSUHRlkbqA30hvHJbzN20WrS0,48494
|
1696
|
-
pulumi_oci/email/email_domain.py,sha256=
|
1697
|
-
pulumi_oci/email/email_return_path.py,sha256
|
1696
|
+
pulumi_oci/email/email_domain.py,sha256=y51nJTQ13TuN53ZsrJhlyVoKu_hKMPUexd0BTF0s8ek,39466
|
1697
|
+
pulumi_oci/email/email_return_path.py,sha256=-fD2DJnO9KxKFgQLYZhZekVlnpjgLozEOUXC0JBaH0Y,42435
|
1698
1698
|
pulumi_oci/email/get_configuration.py,sha256=07q_g21Rp5C4-rJhHkWsT9xMWWOAx5gUwealTfCFpOg,5877
|
1699
1699
|
pulumi_oci/email/get_dkim.py,sha256=miki3o3CyQSOzJE2u_8iZ_jFdSHRCFtnNygEkxj6smY,16040
|
1700
1700
|
pulumi_oci/email/get_dkims.py,sha256=CQgmKNif2rHpdMcdH2TGPb3hKKqwwQTVqwgVxH4tzcE,8167
|
1701
|
-
pulumi_oci/email/get_email_domain.py,sha256=
|
1702
|
-
pulumi_oci/email/get_email_domains.py,sha256=
|
1703
|
-
pulumi_oci/email/get_email_return_path.py,sha256=
|
1704
|
-
pulumi_oci/email/get_email_return_paths.py,sha256=
|
1705
|
-
pulumi_oci/email/get_sender.py,sha256=
|
1706
|
-
pulumi_oci/email/get_senders.py,sha256=
|
1701
|
+
pulumi_oci/email/get_email_domain.py,sha256=8l8WCgHHFMKieU-TeNly5QzkeksCFcPvQnsf8-fzLto,13284
|
1702
|
+
pulumi_oci/email/get_email_domains.py,sha256=xqxDhVLwUZ1ap4SSawN8hMxjYCYLu2f9Z9hzgOtY860,8346
|
1703
|
+
pulumi_oci/email/get_email_return_path.py,sha256=yMbsfdx3Sv5Iq3HTLtw-O8pFm0pegh-PR_efLPDWTP4,14638
|
1704
|
+
pulumi_oci/email/get_email_return_paths.py,sha256=zSIdv9nX-E2IPVw6yr0Rf3D1vgQ9AUjTGjK14YZ6dNk,10318
|
1705
|
+
pulumi_oci/email/get_sender.py,sha256=czt_PjMqJABdSr8pj1zZxJrSlLOEMggLz80FBldf4kY,10524
|
1706
|
+
pulumi_oci/email/get_senders.py,sha256=8thp3A3R8KOCfLLyeCZYmQoMtrkkK3shLIeM7T89Bpo,8274
|
1707
1707
|
pulumi_oci/email/get_suppression.py,sha256=gDT5HauPkkTE3xOx0I9wQdlr_KdduHBGCdrLEuMZR6s,10216
|
1708
1708
|
pulumi_oci/email/get_suppressions.py,sha256=qi35vllnO21CJj-uuB1xoXT5FgDzhcAkYziSSExU-3Y,12033
|
1709
|
-
pulumi_oci/email/outputs.py,sha256=
|
1710
|
-
pulumi_oci/email/sender.py,sha256=
|
1709
|
+
pulumi_oci/email/outputs.py,sha256=wwMPJo3wYJSTK0wax_pZXxvNXBeWXz2AgV5YFdhw0WQ,75220
|
1710
|
+
pulumi_oci/email/sender.py,sha256=ls4hNIGN1mRISpU_83zb63ZxHfY31KHDA67LtIHJFwY,28344
|
1711
1711
|
pulumi_oci/email/suppression.py,sha256=luPp9XTpSKvdYwqT_f8GLHwrblqnowsnwcuK2yvC6c0,23255
|
1712
1712
|
pulumi_oci/events/__init__.py,sha256=EZRTdblVJsqFHNsvleXb1ixofl4KdQ9mzzL1OtWQP-U,394
|
1713
1713
|
pulumi_oci/events/_inputs.py,sha256=dPoSR6n0PvFk8X8bwVKofPHz7eHI2SAhkt6R7eXLKCM,12643
|
@@ -1738,7 +1738,7 @@ 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
1743
|
pulumi_oci/filestorage/outputs.py,sha256=cCPAuYcMKC4H1d-YCM9eurHSHPyaYc6ZJThablMmJvQ,218146
|
1744
1744
|
pulumi_oci/filestorage/replication.py,sha256=HeCZQW8IWB8mmHlJski0zPXDyDe1HID5Qv7MiIT1tVI,54930
|
@@ -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.0a1757720206.dist-info → pulumi_oci-3.8.0a1758168665.dist-info}/top_level.txt
RENAMED
File without changes
|