pulumi-oci 3.7.0a1757704243__py3-none-any.whl → 3.7.0a1757736103__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.
@@ -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]:
@@ -69,7 +69,7 @@ if not MYPY:
69
69
  class ExportExportOptionArgsDict(TypedDict):
70
70
  source: pulumi.Input[_builtins.str]
71
71
  """
72
- (Updatable) Clients these options should apply to. Must be a either single IPv4 address or single IPv4 CIDR block.
72
+ (Updatable) Clients these options should apply to. Must be a either single IPv4/IPv6 address or single IPv4/IPv6 CIDR block.
73
73
 
74
74
  **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.
75
75
  """
@@ -116,7 +116,7 @@ class ExportExportOptionArgs:
116
116
  is_anonymous_access_allowed: Optional[pulumi.Input[_builtins.bool]] = None,
117
117
  require_privileged_source_port: Optional[pulumi.Input[_builtins.bool]] = None):
118
118
  """
119
- :param pulumi.Input[_builtins.str] source: (Updatable) Clients these options should apply to. Must be a either single IPv4 address or single IPv4 CIDR block.
119
+ :param pulumi.Input[_builtins.str] source: (Updatable) Clients these options should apply to. Must be a either single IPv4/IPv6 address or single IPv4/IPv6 CIDR block.
120
120
 
121
121
  **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.
122
122
  :param pulumi.Input[_builtins.str] access: (Updatable) Type of access to grant clients using the file system through this export. If unspecified defaults to `READ_WRITE`.
@@ -147,7 +147,7 @@ class ExportExportOptionArgs:
147
147
  @pulumi.getter
148
148
  def source(self) -> pulumi.Input[_builtins.str]:
149
149
  """
150
- (Updatable) Clients these options should apply to. Must be a either single IPv4 address or single IPv4 CIDR block.
150
+ (Updatable) Clients these options should apply to. Must be a either single IPv4/IPv6 address or single IPv4/IPv6 CIDR block.
151
151
 
152
152
  **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.
153
153
  """
@@ -50,7 +50,11 @@ 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: 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.
53
+ Note:
54
+
55
+ If the IP address is IPv4, 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.
56
+
57
+ If the IP address is IPv6, it is stored in the [Ipv6] (https://docs.oracle.com/en-us/iaas/api/#/en/iaas/20160918/Ipv6) 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 IPv6 address (`mountTargetIpv6Ids`). Then, you can use [UpdateIpv6](https://docs.cloud.oracle.com/en-us/iaas/api/#/en/iaas/20160918/Ipv6/UpdateIpv6) to update the `hostnameLabel` value.
54
58
 
55
59
  For more information, see [DNS in Your Virtual Cloud Network](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/dns.htm).
56
60
 
@@ -174,7 +178,11 @@ class MountTargetArgs:
174
178
  """
175
179
  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
180
 
177
- Note: 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.
181
+ Note:
182
+
183
+ If the IP address is IPv4, 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.
184
+
185
+ If the IP address is IPv6, it is stored in the [Ipv6] (https://docs.oracle.com/en-us/iaas/api/#/en/iaas/20160918/Ipv6) 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 IPv6 address (`mountTargetIpv6Ids`). Then, you can use [UpdateIpv6](https://docs.cloud.oracle.com/en-us/iaas/api/#/en/iaas/20160918/Ipv6/UpdateIpv6) to update the `hostnameLabel` value.
178
186
 
179
187
  For more information, see [DNS in Your Virtual Cloud Network](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/dns.htm).
180
188
 
@@ -300,6 +308,7 @@ class _MountTargetState:
300
308
  ldap_idmap: Optional[pulumi.Input['MountTargetLdapIdmapArgs']] = None,
301
309
  lifecycle_details: Optional[pulumi.Input[_builtins.str]] = None,
302
310
  locks: Optional[pulumi.Input[Sequence[pulumi.Input['MountTargetLockArgs']]]] = None,
311
+ mount_target_ipv6ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
303
312
  nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
304
313
  observed_throughput: Optional[pulumi.Input[_builtins.str]] = None,
305
314
  private_ip_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
@@ -320,7 +329,11 @@ class _MountTargetState:
320
329
  :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
330
  :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
331
 
323
- Note: 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.
332
+ Note:
333
+
334
+ If the IP address is IPv4, 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.
335
+
336
+ If the IP address is IPv6, it is stored in the [Ipv6] (https://docs.oracle.com/en-us/iaas/api/#/en/iaas/20160918/Ipv6) 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 IPv6 address (`mountTargetIpv6Ids`). Then, you can use [UpdateIpv6](https://docs.cloud.oracle.com/en-us/iaas/api/#/en/iaas/20160918/Ipv6/UpdateIpv6) to update the `hostnameLabel` value.
324
337
 
325
338
  For more information, see [DNS in Your Virtual Cloud Network](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/dns.htm).
326
339
 
@@ -332,6 +345,7 @@ class _MountTargetState:
332
345
  :param pulumi.Input['MountTargetLdapIdmapArgs'] ldap_idmap: (Updatable) Mount target details about the LDAP ID mapping configuration.
333
346
  :param pulumi.Input[_builtins.str] lifecycle_details: Additional information about the current 'lifecycleState'.
334
347
  :param pulumi.Input[Sequence[pulumi.Input['MountTargetLockArgs']]] locks: Locks associated with this resource.
348
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] mount_target_ipv6ids: The OCIDs of the IPv6 addresses associated with this mount target.
335
349
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] nsg_ids: (Updatable) 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).
336
350
  :param pulumi.Input[_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).
337
351
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] private_ip_ids: The OCIDs of the private IP addresses associated with this mount target.
@@ -375,6 +389,8 @@ class _MountTargetState:
375
389
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
376
390
  if locks is not None:
377
391
  pulumi.set(__self__, "locks", locks)
392
+ if mount_target_ipv6ids is not None:
393
+ pulumi.set(__self__, "mount_target_ipv6ids", mount_target_ipv6ids)
378
394
  if nsg_ids is not None:
379
395
  pulumi.set(__self__, "nsg_ids", nsg_ids)
380
396
  if observed_throughput is not None:
@@ -474,7 +490,11 @@ class _MountTargetState:
474
490
  """
475
491
  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
492
 
477
- Note: 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.
493
+ Note:
494
+
495
+ If the IP address is IPv4, 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.
496
+
497
+ If the IP address is IPv6, it is stored in the [Ipv6] (https://docs.oracle.com/en-us/iaas/api/#/en/iaas/20160918/Ipv6) 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 IPv6 address (`mountTargetIpv6Ids`). Then, you can use [UpdateIpv6](https://docs.cloud.oracle.com/en-us/iaas/api/#/en/iaas/20160918/Ipv6/UpdateIpv6) to update the `hostnameLabel` value.
478
498
 
479
499
  For more information, see [DNS in Your Virtual Cloud Network](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/dns.htm).
480
500
 
@@ -570,6 +590,18 @@ class _MountTargetState:
570
590
  def locks(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['MountTargetLockArgs']]]]):
571
591
  pulumi.set(self, "locks", value)
572
592
 
593
+ @_builtins.property
594
+ @pulumi.getter(name="mountTargetIpv6ids")
595
+ def mount_target_ipv6ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
596
+ """
597
+ The OCIDs of the IPv6 addresses associated with this mount target.
598
+ """
599
+ return pulumi.get(self, "mount_target_ipv6ids")
600
+
601
+ @mount_target_ipv6ids.setter
602
+ def mount_target_ipv6ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]):
603
+ pulumi.set(self, "mount_target_ipv6ids", value)
604
+
573
605
  @_builtins.property
574
606
  @pulumi.getter(name="nsgIds")
575
607
  def nsg_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]]:
@@ -818,7 +850,11 @@ class MountTarget(pulumi.CustomResource):
818
850
  :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
851
  :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
852
 
821
- Note: 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.
853
+ Note:
854
+
855
+ If the IP address is IPv4, 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.
856
+
857
+ If the IP address is IPv6, it is stored in the [Ipv6] (https://docs.oracle.com/en-us/iaas/api/#/en/iaas/20160918/Ipv6) 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 IPv6 address (`mountTargetIpv6Ids`). Then, you can use [UpdateIpv6](https://docs.cloud.oracle.com/en-us/iaas/api/#/en/iaas/20160918/Ipv6/UpdateIpv6) to update the `hostnameLabel` value.
822
858
 
823
859
  For more information, see [DNS in Your Virtual Cloud Network](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/dns.htm).
824
860
 
@@ -997,6 +1033,7 @@ class MountTarget(pulumi.CustomResource):
997
1033
  __props__.__dict__["subnet_id"] = subnet_id
998
1034
  __props__.__dict__["export_set_id"] = None
999
1035
  __props__.__dict__["lifecycle_details"] = None
1036
+ __props__.__dict__["mount_target_ipv6ids"] = None
1000
1037
  __props__.__dict__["observed_throughput"] = None
1001
1038
  __props__.__dict__["private_ip_ids"] = None
1002
1039
  __props__.__dict__["reserved_storage_capacity"] = None
@@ -1028,6 +1065,7 @@ class MountTarget(pulumi.CustomResource):
1028
1065
  ldap_idmap: Optional[pulumi.Input[Union['MountTargetLdapIdmapArgs', 'MountTargetLdapIdmapArgsDict']]] = None,
1029
1066
  lifecycle_details: Optional[pulumi.Input[_builtins.str]] = None,
1030
1067
  locks: Optional[pulumi.Input[Sequence[pulumi.Input[Union['MountTargetLockArgs', 'MountTargetLockArgsDict']]]]] = None,
1068
+ mount_target_ipv6ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
1031
1069
  nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
1032
1070
  observed_throughput: Optional[pulumi.Input[_builtins.str]] = None,
1033
1071
  private_ip_ids: Optional[pulumi.Input[Sequence[pulumi.Input[_builtins.str]]]] = None,
@@ -1053,7 +1091,11 @@ class MountTarget(pulumi.CustomResource):
1053
1091
  :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
1092
  :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
1093
 
1056
- Note: 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.
1094
+ Note:
1095
+
1096
+ If the IP address is IPv4, 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.
1097
+
1098
+ If the IP address is IPv6, it is stored in the [Ipv6] (https://docs.oracle.com/en-us/iaas/api/#/en/iaas/20160918/Ipv6) 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 IPv6 address (`mountTargetIpv6Ids`). Then, you can use [UpdateIpv6](https://docs.cloud.oracle.com/en-us/iaas/api/#/en/iaas/20160918/Ipv6/UpdateIpv6) to update the `hostnameLabel` value.
1057
1099
 
1058
1100
  For more information, see [DNS in Your Virtual Cloud Network](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/dns.htm).
1059
1101
 
@@ -1065,6 +1107,7 @@ class MountTarget(pulumi.CustomResource):
1065
1107
  :param pulumi.Input[Union['MountTargetLdapIdmapArgs', 'MountTargetLdapIdmapArgsDict']] ldap_idmap: (Updatable) Mount target details about the LDAP ID mapping configuration.
1066
1108
  :param pulumi.Input[_builtins.str] lifecycle_details: Additional information about the current 'lifecycleState'.
1067
1109
  :param pulumi.Input[Sequence[pulumi.Input[Union['MountTargetLockArgs', 'MountTargetLockArgsDict']]]] locks: Locks associated with this resource.
1110
+ :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] mount_target_ipv6ids: The OCIDs of the IPv6 addresses associated with this mount target.
1068
1111
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] nsg_ids: (Updatable) 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).
1069
1112
  :param pulumi.Input[_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).
1070
1113
  :param pulumi.Input[Sequence[pulumi.Input[_builtins.str]]] private_ip_ids: The OCIDs of the private IP addresses associated with this mount target.
@@ -1098,6 +1141,7 @@ class MountTarget(pulumi.CustomResource):
1098
1141
  __props__.__dict__["ldap_idmap"] = ldap_idmap
1099
1142
  __props__.__dict__["lifecycle_details"] = lifecycle_details
1100
1143
  __props__.__dict__["locks"] = locks
1144
+ __props__.__dict__["mount_target_ipv6ids"] = mount_target_ipv6ids
1101
1145
  __props__.__dict__["nsg_ids"] = nsg_ids
1102
1146
  __props__.__dict__["observed_throughput"] = observed_throughput
1103
1147
  __props__.__dict__["private_ip_ids"] = private_ip_ids
@@ -1164,7 +1208,11 @@ class MountTarget(pulumi.CustomResource):
1164
1208
  """
1165
1209
  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
1210
 
1167
- Note: 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.
1211
+ Note:
1212
+
1213
+ If the IP address is IPv4, 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.
1214
+
1215
+ If the IP address is IPv6, it is stored in the [Ipv6] (https://docs.oracle.com/en-us/iaas/api/#/en/iaas/20160918/Ipv6) 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 IPv6 address (`mountTargetIpv6Ids`). Then, you can use [UpdateIpv6](https://docs.cloud.oracle.com/en-us/iaas/api/#/en/iaas/20160918/Ipv6/UpdateIpv6) to update the `hostnameLabel` value.
1168
1216
 
1169
1217
  For more information, see [DNS in Your Virtual Cloud Network](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/dns.htm).
1170
1218
 
@@ -1228,6 +1276,14 @@ class MountTarget(pulumi.CustomResource):
1228
1276
  """
1229
1277
  return pulumi.get(self, "locks")
1230
1278
 
1279
+ @_builtins.property
1280
+ @pulumi.getter(name="mountTargetIpv6ids")
1281
+ def mount_target_ipv6ids(self) -> pulumi.Output[Sequence[_builtins.str]]:
1282
+ """
1283
+ The OCIDs of the IPv6 addresses associated with this mount target.
1284
+ """
1285
+ return pulumi.get(self, "mount_target_ipv6ids")
1286
+
1231
1287
  @_builtins.property
1232
1288
  @pulumi.getter(name="nsgIds")
1233
1289
  def nsg_ids(self) -> pulumi.Output[Sequence[_builtins.str]]:
@@ -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 address or single IPv4 CIDR block.
112
+ :param _builtins.str source: (Updatable) Clients these options should apply to. Must be a either single IPv4/IPv6 address or single IPv4/IPv6 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 address or single IPv4 CIDR block.
143
+ (Updatable) Clients these options should apply to. Must be a either single IPv4/IPv6 address or single IPv4/IPv6 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 address or single IPv4 CIDR block.
1435
+ :param _builtins.str source: Clients these options should apply to. Must be a either single IPv4/IPv6 address or single IPv4/IPv6 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 address or single IPv4 CIDR block.
1506
+ Clients these options should apply to. Must be a either single IPv4/IPv6 address or single IPv4/IPv6 CIDR block.
1507
1507
  """
1508
1508
  return pulumi.get(self, "source")
1509
1509
 
@@ -2672,6 +2672,7 @@ 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],
2675
2676
  nsg_ids: Sequence[_builtins.str],
2676
2677
  observed_throughput: _builtins.str,
2677
2678
  private_ip_ids: Sequence[_builtins.str],
@@ -2695,6 +2696,7 @@ class GetMountTargetsMountTargetResult(dict):
2695
2696
  :param Sequence['GetMountTargetsMountTargetLdapIdmapArgs'] ldap_idmaps: Mount target details about the LDAP ID mapping configuration.
2696
2697
  :param _builtins.str lifecycle_details: Additional information about the current 'lifecycleState'.
2697
2698
  :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.
2698
2700
  :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).
2699
2701
  :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).
2700
2702
  :param Sequence[_builtins.str] private_ip_ids: The OCIDs of the private IP addresses associated with this mount target.
@@ -2721,6 +2723,7 @@ class GetMountTargetsMountTargetResult(dict):
2721
2723
  pulumi.set(__self__, "ldap_idmaps", ldap_idmaps)
2722
2724
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
2723
2725
  pulumi.set(__self__, "locks", locks)
2726
+ pulumi.set(__self__, "mount_target_ipv6ids", mount_target_ipv6ids)
2724
2727
  pulumi.set(__self__, "nsg_ids", nsg_ids)
2725
2728
  pulumi.set(__self__, "observed_throughput", observed_throughput)
2726
2729
  pulumi.set(__self__, "private_ip_ids", private_ip_ids)
@@ -2843,6 +2846,14 @@ class GetMountTargetsMountTargetResult(dict):
2843
2846
  """
2844
2847
  return pulumi.get(self, "locks")
2845
2848
 
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
+
2846
2857
  @_builtins.property
2847
2858
  @pulumi.getter(name="nsgIds")
2848
2859
  def nsg_ids(self) -> Sequence[_builtins.str]:
@@ -1,5 +1,5 @@
1
1
  {
2
2
  "resource": true,
3
3
  "name": "oci",
4
- "version": "3.7.0-alpha.1757704243"
4
+ "version": "3.7.0-alpha.1757736103"
5
5
  }
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: pulumi_oci
3
- Version: 3.7.0a1757704243
3
+ Version: 3.7.0a1757736103
4
4
  Summary: A Pulumi package for creating and managing Oracle Cloud Infrastructure resources.
5
5
  License: Apache-2.0
6
6
  Project-URL: Homepage, https://www.pulumi.com
@@ -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=c6GVHm-_1cptuV992U_Q46s_zeV-dzhEJVAuKC9HmVY,79
4
+ pulumi_oci/pulumi-plugin.json,sha256=7tkPPiUq9_GrRM7qjUnDZAnTWXA4UTaBpkWJFCpzIlA,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
@@ -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=2gFbtJVmqkAlsMjRqx8Bx8owIjRyYON74xHjngBBJ9I,10551
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
@@ -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=Bu5VUJFMz2xedZLlnFgIdI3TpWwKHMCNmHTyyZRMhVA,8712
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=R6UuJNNzgpuvOKojo2cPg6WifArK1TCm3UWN2XMtmVc,38328
1697
- pulumi_oci/email/email_return_path.py,sha256=ZCSxAVq1gzys8a-QpQrwdA-RyLEowlJgSfcC4cvHupY,41523
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=njfkXDVZDhz4t3eoHcRaca_RNha4-SZeg6rBoHIDHcU,12854
1702
- pulumi_oci/email/get_email_domains.py,sha256=Ggl-vXPsAyshqvoj-2ELGDboJfcgh1sGrIww0M6sn1g,8461
1703
- pulumi_oci/email/get_email_return_path.py,sha256=f5_zhsUfEAUpda5GLJ32WPwOWX53j1FZ8RMm5ucZcO8,14209
1704
- pulumi_oci/email/get_email_return_paths.py,sha256=u5ow0YcUtqxjsnI19JpLplbglrLI4vEsJoxwt2K-F8s,10438
1705
- pulumi_oci/email/get_sender.py,sha256=BQ-QUY8MYlGCs2YwPWlq7Q8oGLoV_eH129kAwnN4_Zo,9989
1706
- pulumi_oci/email/get_senders.py,sha256=dEOgNfYWU_8QKwlP7D91Lh9oUog6mtWQKEwowvptwac,8279
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=5E2TpjW1UrdIL-0cg5MwGktqf4UudS7s3k6hi8k4ApI,46521
1710
- pulumi_oci/email/sender.py,sha256=uDOb1brVtG8F5xZxMLkMLXtJc6D56ofs3bVgNVo1sqs,27033
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
@@ -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=Ohxlbdhtxogxo_Por-AmzknBzf1Dx5gnl7ZbAJC1MKE,82541
1719
+ pulumi_oci/filestorage/_inputs.py,sha256=52DkGAJNLTEtkQF09dDXXuRlVb0fQ3nZJ8skKMh55gk,82571
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=6lrQHGMyO4fmJE6JtvV0S3A9Qgbn32c524c-fu1h2zQ,85417
1741
+ pulumi_oci/filestorage/mount_target.py,sha256=YC4r2VkAJkQSYCaMH_-cOAnEVdUIz5_tKJqj285dJvo,90929
1742
1742
  pulumi_oci/filestorage/outbound_connector.py,sha256=rUwd6OnHSFMDTJdcxKZDb3f6_YggjADws38jIh5QJ18,50692
1743
- pulumi_oci/filestorage/outputs.py,sha256=cCPAuYcMKC4H1d-YCM9eurHSHPyaYc6ZJThablMmJvQ,218146
1743
+ pulumi_oci/filestorage/outputs.py,sha256=TnDYSGe_m3XbIjZTymDej6G0BG4meZ20wPom4Pplv38,218742
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.7.0a1757704243.dist-info/METADATA,sha256=zjidYoZ6Ei34i2ynXx7esOcOWqfEszLtZFaVuX3hmpQ,4751
3326
- pulumi_oci-3.7.0a1757704243.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
3327
- pulumi_oci-3.7.0a1757704243.dist-info/top_level.txt,sha256=0k-nWr_IdDNVF3qcT4ALORmmu1SNCLxWZfHDMN7TWsg,11
3328
- pulumi_oci-3.7.0a1757704243.dist-info/RECORD,,
3325
+ pulumi_oci-3.7.0a1757736103.dist-info/METADATA,sha256=sQ1kICQC9KJL_RPnTqexOnxBJgzUo5kdova1OvE866I,4751
3326
+ pulumi_oci-3.7.0a1757736103.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
3327
+ pulumi_oci-3.7.0a1757736103.dist-info/top_level.txt,sha256=0k-nWr_IdDNVF3qcT4ALORmmu1SNCLxWZfHDMN7TWsg,11
3328
+ pulumi_oci-3.7.0a1757736103.dist-info/RECORD,,