pulumi-oci 2.9.0a1724479778__py3-none-any.whl → 2.10.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (123) hide show
  1. pulumi_oci/__init__.py +86 -38
  2. pulumi_oci/announcementsservice/__init__.py +1 -0
  3. pulumi_oci/announcementsservice/_inputs.py +46 -6
  4. pulumi_oci/announcementsservice/announcement_subscription.py +14 -14
  5. pulumi_oci/announcementsservice/get_announcement_subscription.py +2 -2
  6. pulumi_oci/announcementsservice/get_services.py +173 -0
  7. pulumi_oci/announcementsservice/outputs.py +195 -18
  8. pulumi_oci/bigdataservice/_inputs.py +1 -49
  9. pulumi_oci/bigdataservice/bds_instance.py +0 -128
  10. pulumi_oci/bigdataservice/get_bds_instance.py +1 -31
  11. pulumi_oci/bigdataservice/outputs.py +3 -132
  12. pulumi_oci/database/_inputs.py +64 -24
  13. pulumi_oci/database/autonomous_database.py +28 -0
  14. pulumi_oci/database/data_guard_association.py +49 -0
  15. pulumi_oci/database/get_autonomous_database.py +14 -1
  16. pulumi_oci/database/get_autonomous_databases.py +32 -95
  17. pulumi_oci/database/get_data_guard_association.py +11 -1
  18. pulumi_oci/database/outputs.py +195 -66
  19. pulumi_oci/database/vm_cluster_network.py +7 -20
  20. pulumi_oci/databasemanagement/__init__.py +1 -0
  21. pulumi_oci/databasemanagement/_inputs.py +873 -10
  22. pulumi_oci/databasemanagement/autonomous_database_autonomous_database_dbm_features_management.py +275 -0
  23. pulumi_oci/databasemanagement/database_dbm_features_management.py +37 -3
  24. pulumi_oci/databasemanagement/db_management_private_endpoint.py +49 -0
  25. pulumi_oci/databasemanagement/get_db_management_private_endpoint.py +14 -1
  26. pulumi_oci/databasemanagement/get_db_management_private_endpoints.py +21 -1
  27. pulumi_oci/databasemanagement/get_managed_database.py +47 -3
  28. pulumi_oci/databasemanagement/managed_database.py +56 -0
  29. pulumi_oci/databasemanagement/outputs.py +3331 -1397
  30. pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py +35 -1
  31. pulumi_oci/datasafe/__init__.py +6 -0
  32. pulumi_oci/datasafe/_inputs.py +18 -0
  33. pulumi_oci/datasafe/database_security_config_management.py +244 -2
  34. pulumi_oci/datasafe/masking_policy_health_report_management.py +453 -0
  35. pulumi_oci/datasafe/masking_report_management.py +693 -0
  36. pulumi_oci/datasafe/outputs.py +18 -0
  37. pulumi_oci/datasafe/security_policy_deployment_management.py +180 -2
  38. pulumi_oci/datasafe/security_policy_management.py +172 -2
  39. pulumi_oci/datasafe/set_security_assessment_baseline_management.py +304 -0
  40. pulumi_oci/datasafe/set_user_assessment_baseline_management.py +304 -0
  41. pulumi_oci/datasafe/sql_firewall_policy_management.py +354 -2
  42. pulumi_oci/datasafe/unset_security_assessment_baseline_management.py +264 -0
  43. pulumi_oci/datasafe/unset_user_assessment_baseline_management.py +264 -0
  44. pulumi_oci/delegateaccesscontrol/__init__.py +24 -0
  45. pulumi_oci/delegateaccesscontrol/_inputs.py +306 -0
  46. pulumi_oci/delegateaccesscontrol/delegation_control.py +1082 -0
  47. pulumi_oci/{globallydistributeddatabase/private_endpoint.py → delegateaccesscontrol/delegation_subscription.py} +162 -267
  48. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request.py +535 -0
  49. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_audit_log_report.py +174 -0
  50. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_request_histories.py +133 -0
  51. pulumi_oci/delegateaccesscontrol/get_delegated_resource_access_requests.py +250 -0
  52. pulumi_oci/delegateaccesscontrol/get_delegation_control.py +378 -0
  53. pulumi_oci/delegateaccesscontrol/get_delegation_control_resources.py +133 -0
  54. pulumi_oci/delegateaccesscontrol/get_delegation_controls.py +213 -0
  55. pulumi_oci/{globallydistributeddatabase/get_private_endpoint.py → delegateaccesscontrol/get_delegation_subscription.py} +66 -105
  56. pulumi_oci/delegateaccesscontrol/get_delegation_subscriptions.py +176 -0
  57. pulumi_oci/delegateaccesscontrol/get_service_provider.py +274 -0
  58. pulumi_oci/delegateaccesscontrol/get_service_provider_action.py +210 -0
  59. pulumi_oci/delegateaccesscontrol/get_service_provider_actions.py +210 -0
  60. pulumi_oci/delegateaccesscontrol/get_service_providers.py +213 -0
  61. pulumi_oci/delegateaccesscontrol/outputs.py +1679 -0
  62. pulumi_oci/{fleetsoftwareupdate → desktops}/__init__.py +7 -6
  63. pulumi_oci/desktops/_inputs.py +483 -0
  64. pulumi_oci/desktops/desktop_pool.py +1348 -0
  65. pulumi_oci/desktops/get_desktop.py +223 -0
  66. pulumi_oci/desktops/get_desktop_pool.py +418 -0
  67. pulumi_oci/desktops/get_desktop_pool_desktops.py +208 -0
  68. pulumi_oci/desktops/get_desktop_pool_volumes.py +214 -0
  69. pulumi_oci/desktops/get_desktop_pools.py +203 -0
  70. pulumi_oci/desktops/get_desktops.py +214 -0
  71. pulumi_oci/desktops/outputs.py +1738 -0
  72. pulumi_oci/filestorage/mount_target.py +143 -38
  73. pulumi_oci/filestorage/outputs.py +44 -0
  74. pulumi_oci/identity/domains_group.py +34 -0
  75. pulumi_oci/identity/domains_user.py +34 -0
  76. pulumi_oci/identity/get_domains_group.py +11 -1
  77. pulumi_oci/identity/get_domains_user.py +11 -1
  78. pulumi_oci/identity/outputs.py +14 -0
  79. pulumi_oci/kms/_inputs.py +10 -10
  80. pulumi_oci/kms/get_vault.py +14 -1
  81. pulumi_oci/kms/outputs.py +41 -30
  82. pulumi_oci/kms/vault.py +28 -0
  83. pulumi_oci/loadbalancer/load_balancer.py +224 -0
  84. pulumi_oci/loadbalancer/outputs.py +22 -0
  85. pulumi_oci/managementagent/_inputs.py +44 -0
  86. pulumi_oci/managementagent/management_agent.py +45 -21
  87. pulumi_oci/managementagent/outputs.py +44 -0
  88. pulumi_oci/mysql/_inputs.py +23 -0
  89. pulumi_oci/mysql/get_mysql_db_system.py +15 -2
  90. pulumi_oci/mysql/mysql_db_system.py +53 -0
  91. pulumi_oci/mysql/outputs.py +74 -6
  92. pulumi_oci/ocvp/get_cluster.py +2 -2
  93. pulumi_oci/ocvp/get_exsi_hosts.py +2 -2
  94. pulumi_oci/ocvp/get_supported_vmware_software_versions.py +22 -5
  95. pulumi_oci/ocvp/outputs.py +2 -2
  96. pulumi_oci/pulumi-plugin.json +1 -1
  97. pulumi_oci/recoverymod/_inputs.py +0 -8
  98. pulumi_oci/recoverymod/get_protected_database.py +14 -1
  99. pulumi_oci/recoverymod/get_protection_policy.py +14 -1
  100. pulumi_oci/recoverymod/outputs.py +22 -8
  101. pulumi_oci/recoverymod/protected_database.py +80 -3
  102. pulumi_oci/recoverymod/protection_policy.py +49 -0
  103. pulumi_oci/waf/_inputs.py +29 -16
  104. pulumi_oci/waf/outputs.py +33 -10
  105. {pulumi_oci-2.9.0a1724479778.dist-info → pulumi_oci-2.10.0.dist-info}/METADATA +1 -1
  106. {pulumi_oci-2.9.0a1724479778.dist-info → pulumi_oci-2.10.0.dist-info}/RECORD +108 -90
  107. {pulumi_oci-2.9.0a1724479778.dist-info → pulumi_oci-2.10.0.dist-info}/WHEEL +1 -1
  108. pulumi_oci/fleetsoftwareupdate/_inputs.py +0 -553
  109. pulumi_oci/fleetsoftwareupdate/fsu_collection.py +0 -514
  110. pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +0 -812
  111. pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py +0 -225
  112. pulumi_oci/fleetsoftwareupdate/get_fsu_collections.py +0 -141
  113. pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +0 -325
  114. pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +0 -167
  115. pulumi_oci/fleetsoftwareupdate/outputs.py +0 -1481
  116. pulumi_oci/globallydistributeddatabase/__init__.py +0 -15
  117. pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1003
  118. pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -176
  119. pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -610
  120. pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -176
  121. pulumi_oci/globallydistributeddatabase/outputs.py +0 -2058
  122. pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1816
  123. {pulumi_oci-2.9.0a1724479778.dist-info → pulumi_oci-2.10.0.dist-info}/top_level.txt +0 -0
@@ -27,7 +27,8 @@ class MountTargetArgs:
27
27
  ip_address: Optional[pulumi.Input[str]] = None,
28
28
  kerberos: Optional[pulumi.Input['MountTargetKerberosArgs']] = None,
29
29
  ldap_idmap: Optional[pulumi.Input['MountTargetLdapIdmapArgs']] = None,
30
- nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
30
+ nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
31
+ requested_throughput: Optional[pulumi.Input[str]] = None):
31
32
  """
32
33
  The set of arguments for constructing a MountTarget resource.
33
34
  :param pulumi.Input[str] availability_domain: The availability domain in which to create the mount target. Example: `Uocm:PHX-AD-1`
@@ -48,14 +49,11 @@ class MountTargetArgs:
48
49
 
49
50
  Example: `files-1`
50
51
  :param pulumi.Input[str] idmap_type: (Updatable) The method used to map a Unix UID to secondary groups, if any.
51
- :param pulumi.Input[str] ip_address: A private IP address of your choice. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet.
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 `ipAddress`, 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 `ipAddress` value.
54
-
55
- Example: `10.0.3.3`
52
+ :param pulumi.Input[str] ip_address: A private IP address of your choice. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. Example: `10.0.3.3`
56
53
  :param pulumi.Input['MountTargetKerberosArgs'] kerberos: (Updatable) Kerberos details needed to create configuration.
57
54
  :param pulumi.Input['MountTargetLdapIdmapArgs'] ldap_idmap: (Updatable) Mount target details about the LDAP ID mapping configuration.
58
55
  :param pulumi.Input[Sequence[pulumi.Input[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).
56
+ :param pulumi.Input[str] requested_throughput: (Updatable) Throughput for mount target in Gbps. Currently only 1 Gbps of requestedThroughput is supported during create MountTarget. Available shapes and corresponding throughput are listed at [Mount Target Performance](https://docs.oracle.com/iaas/Content/File/Tasks/managingmounttargets.htm#performance).
59
57
  """
60
58
  pulumi.set(__self__, "availability_domain", availability_domain)
61
59
  pulumi.set(__self__, "compartment_id", compartment_id)
@@ -78,6 +76,8 @@ class MountTargetArgs:
78
76
  pulumi.set(__self__, "ldap_idmap", ldap_idmap)
79
77
  if nsg_ids is not None:
80
78
  pulumi.set(__self__, "nsg_ids", nsg_ids)
79
+ if requested_throughput is not None:
80
+ pulumi.set(__self__, "requested_throughput", requested_throughput)
81
81
 
82
82
  @property
83
83
  @pulumi.getter(name="availabilityDomain")
@@ -189,11 +189,7 @@ class MountTargetArgs:
189
189
  @pulumi.getter(name="ipAddress")
190
190
  def ip_address(self) -> Optional[pulumi.Input[str]]:
191
191
  """
192
- A private IP address of your choice. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet.
193
-
194
- 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 `ipAddress`, 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 `ipAddress` value.
195
-
196
- Example: `10.0.3.3`
192
+ A private IP address of your choice. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. Example: `10.0.3.3`
197
193
  """
198
194
  return pulumi.get(self, "ip_address")
199
195
 
@@ -237,6 +233,18 @@ class MountTargetArgs:
237
233
  def nsg_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
238
234
  pulumi.set(self, "nsg_ids", value)
239
235
 
236
+ @property
237
+ @pulumi.getter(name="requestedThroughput")
238
+ def requested_throughput(self) -> Optional[pulumi.Input[str]]:
239
+ """
240
+ (Updatable) Throughput for mount target in Gbps. Currently only 1 Gbps of requestedThroughput is supported during create MountTarget. Available shapes and corresponding throughput are listed at [Mount Target Performance](https://docs.oracle.com/iaas/Content/File/Tasks/managingmounttargets.htm#performance).
241
+ """
242
+ return pulumi.get(self, "requested_throughput")
243
+
244
+ @requested_throughput.setter
245
+ def requested_throughput(self, value: Optional[pulumi.Input[str]]):
246
+ pulumi.set(self, "requested_throughput", value)
247
+
240
248
 
241
249
  @pulumi.input_type
242
250
  class _MountTargetState:
@@ -254,9 +262,13 @@ class _MountTargetState:
254
262
  ldap_idmap: Optional[pulumi.Input['MountTargetLdapIdmapArgs']] = None,
255
263
  lifecycle_details: Optional[pulumi.Input[str]] = None,
256
264
  nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
265
+ observed_throughput: Optional[pulumi.Input[str]] = None,
257
266
  private_ip_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
267
+ requested_throughput: Optional[pulumi.Input[str]] = None,
268
+ reserved_storage_capacity: Optional[pulumi.Input[str]] = None,
258
269
  state: Optional[pulumi.Input[str]] = None,
259
270
  subnet_id: Optional[pulumi.Input[str]] = None,
271
+ time_billing_cycle_end: Optional[pulumi.Input[str]] = None,
260
272
  time_created: Optional[pulumi.Input[str]] = None):
261
273
  """
262
274
  Input properties used for looking up and filtering MountTarget resources.
@@ -274,22 +286,22 @@ class _MountTargetState:
274
286
 
275
287
  Example: `files-1`
276
288
  :param pulumi.Input[str] idmap_type: (Updatable) The method used to map a Unix UID to secondary groups, if any.
277
- :param pulumi.Input[str] ip_address: A private IP address of your choice. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet.
278
-
279
- 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 `ipAddress`, 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 `ipAddress` value.
280
-
281
- Example: `10.0.3.3`
289
+ :param pulumi.Input[str] ip_address: A private IP address of your choice. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. Example: `10.0.3.3`
282
290
  :param pulumi.Input['MountTargetKerberosArgs'] kerberos: (Updatable) Kerberos details needed to create configuration.
283
291
  :param pulumi.Input['MountTargetLdapIdmapArgs'] ldap_idmap: (Updatable) Mount target details about the LDAP ID mapping configuration.
284
292
  :param pulumi.Input[str] lifecycle_details: Additional information about the current 'lifecycleState'.
285
293
  :param pulumi.Input[Sequence[pulumi.Input[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).
294
+ :param pulumi.Input[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).
286
295
  :param pulumi.Input[Sequence[pulumi.Input[str]]] private_ip_ids: The OCIDs of the private IP addresses associated with this mount target.
296
+ :param pulumi.Input[str] requested_throughput: (Updatable) Throughput for mount target in Gbps. Currently only 1 Gbps of requestedThroughput is supported during create MountTarget. Available shapes and corresponding throughput are listed at [Mount Target Performance](https://docs.oracle.com/iaas/Content/File/Tasks/managingmounttargets.htm#performance).
297
+ :param pulumi.Input[str] reserved_storage_capacity: * Reserved capacity (GB) associated with this mount target. Reserved capacity depends on observedThroughput value of mount target. Value is listed at [Mount Target Performance](https://docs.oracle.com/iaas/Content/File/Tasks/managingmounttargets.htm#performance).
287
298
  :param pulumi.Input[str] state: The current state of the mount target.
288
299
  :param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet in which to create the mount target.
289
300
 
290
301
 
291
302
  ** IMPORTANT **
292
303
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
304
+ :param pulumi.Input[str] time_billing_cycle_end: The date and time the mount target current billing cycle will end, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Once a cycle ends, it is updated automatically to next timestamp which is after 30 days. Example: `2016-08-25T21:10:29.600Z`
293
305
  :param pulumi.Input[str] time_created: The date and time the mount target was created, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
294
306
  """
295
307
  if availability_domain is not None:
@@ -318,12 +330,20 @@ class _MountTargetState:
318
330
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
319
331
  if nsg_ids is not None:
320
332
  pulumi.set(__self__, "nsg_ids", nsg_ids)
333
+ if observed_throughput is not None:
334
+ pulumi.set(__self__, "observed_throughput", observed_throughput)
321
335
  if private_ip_ids is not None:
322
336
  pulumi.set(__self__, "private_ip_ids", private_ip_ids)
337
+ if requested_throughput is not None:
338
+ pulumi.set(__self__, "requested_throughput", requested_throughput)
339
+ if reserved_storage_capacity is not None:
340
+ pulumi.set(__self__, "reserved_storage_capacity", reserved_storage_capacity)
323
341
  if state is not None:
324
342
  pulumi.set(__self__, "state", state)
325
343
  if subnet_id is not None:
326
344
  pulumi.set(__self__, "subnet_id", subnet_id)
345
+ if time_billing_cycle_end is not None:
346
+ pulumi.set(__self__, "time_billing_cycle_end", time_billing_cycle_end)
327
347
  if time_created is not None:
328
348
  pulumi.set(__self__, "time_created", time_created)
329
349
 
@@ -433,11 +453,7 @@ class _MountTargetState:
433
453
  @pulumi.getter(name="ipAddress")
434
454
  def ip_address(self) -> Optional[pulumi.Input[str]]:
435
455
  """
436
- A private IP address of your choice. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet.
437
-
438
- 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 `ipAddress`, 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 `ipAddress` value.
439
-
440
- Example: `10.0.3.3`
456
+ A private IP address of your choice. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. Example: `10.0.3.3`
441
457
  """
442
458
  return pulumi.get(self, "ip_address")
443
459
 
@@ -493,6 +509,18 @@ class _MountTargetState:
493
509
  def nsg_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
494
510
  pulumi.set(self, "nsg_ids", value)
495
511
 
512
+ @property
513
+ @pulumi.getter(name="observedThroughput")
514
+ def observed_throughput(self) -> Optional[pulumi.Input[str]]:
515
+ """
516
+ 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).
517
+ """
518
+ return pulumi.get(self, "observed_throughput")
519
+
520
+ @observed_throughput.setter
521
+ def observed_throughput(self, value: Optional[pulumi.Input[str]]):
522
+ pulumi.set(self, "observed_throughput", value)
523
+
496
524
  @property
497
525
  @pulumi.getter(name="privateIpIds")
498
526
  def private_ip_ids(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
@@ -505,6 +533,30 @@ class _MountTargetState:
505
533
  def private_ip_ids(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
506
534
  pulumi.set(self, "private_ip_ids", value)
507
535
 
536
+ @property
537
+ @pulumi.getter(name="requestedThroughput")
538
+ def requested_throughput(self) -> Optional[pulumi.Input[str]]:
539
+ """
540
+ (Updatable) Throughput for mount target in Gbps. Currently only 1 Gbps of requestedThroughput is supported during create MountTarget. Available shapes and corresponding throughput are listed at [Mount Target Performance](https://docs.oracle.com/iaas/Content/File/Tasks/managingmounttargets.htm#performance).
541
+ """
542
+ return pulumi.get(self, "requested_throughput")
543
+
544
+ @requested_throughput.setter
545
+ def requested_throughput(self, value: Optional[pulumi.Input[str]]):
546
+ pulumi.set(self, "requested_throughput", value)
547
+
548
+ @property
549
+ @pulumi.getter(name="reservedStorageCapacity")
550
+ def reserved_storage_capacity(self) -> Optional[pulumi.Input[str]]:
551
+ """
552
+ * Reserved capacity (GB) associated with this mount target. Reserved capacity depends on observedThroughput value of mount target. Value is listed at [Mount Target Performance](https://docs.oracle.com/iaas/Content/File/Tasks/managingmounttargets.htm#performance).
553
+ """
554
+ return pulumi.get(self, "reserved_storage_capacity")
555
+
556
+ @reserved_storage_capacity.setter
557
+ def reserved_storage_capacity(self, value: Optional[pulumi.Input[str]]):
558
+ pulumi.set(self, "reserved_storage_capacity", value)
559
+
508
560
  @property
509
561
  @pulumi.getter
510
562
  def state(self) -> Optional[pulumi.Input[str]]:
@@ -533,6 +585,18 @@ class _MountTargetState:
533
585
  def subnet_id(self, value: Optional[pulumi.Input[str]]):
534
586
  pulumi.set(self, "subnet_id", value)
535
587
 
588
+ @property
589
+ @pulumi.getter(name="timeBillingCycleEnd")
590
+ def time_billing_cycle_end(self) -> Optional[pulumi.Input[str]]:
591
+ """
592
+ The date and time the mount target current billing cycle will end, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Once a cycle ends, it is updated automatically to next timestamp which is after 30 days. Example: `2016-08-25T21:10:29.600Z`
593
+ """
594
+ return pulumi.get(self, "time_billing_cycle_end")
595
+
596
+ @time_billing_cycle_end.setter
597
+ def time_billing_cycle_end(self, value: Optional[pulumi.Input[str]]):
598
+ pulumi.set(self, "time_billing_cycle_end", value)
599
+
536
600
  @property
537
601
  @pulumi.getter(name="timeCreated")
538
602
  def time_created(self) -> Optional[pulumi.Input[str]]:
@@ -562,6 +626,7 @@ class MountTarget(pulumi.CustomResource):
562
626
  kerberos: Optional[pulumi.Input[Union['MountTargetKerberosArgs', 'MountTargetKerberosArgsDict']]] = None,
563
627
  ldap_idmap: Optional[pulumi.Input[Union['MountTargetLdapIdmapArgs', 'MountTargetLdapIdmapArgsDict']]] = None,
564
628
  nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
629
+ requested_throughput: Optional[pulumi.Input[str]] = None,
565
630
  subnet_id: Optional[pulumi.Input[str]] = None,
566
631
  __props__=None):
567
632
  """
@@ -637,7 +702,8 @@ class MountTarget(pulumi.CustomResource):
637
702
  "schema_type": mount_target_ldap_idmap_schema_type,
638
703
  "user_search_base": mount_target_ldap_idmap_user_search_base,
639
704
  },
640
- nsg_ids=mount_target_nsg_ids)
705
+ nsg_ids=mount_target_nsg_ids,
706
+ requested_throughput=mount_target_requested_throughput)
641
707
  ```
642
708
 
643
709
  ## Import
@@ -663,14 +729,11 @@ class MountTarget(pulumi.CustomResource):
663
729
 
664
730
  Example: `files-1`
665
731
  :param pulumi.Input[str] idmap_type: (Updatable) The method used to map a Unix UID to secondary groups, if any.
666
- :param pulumi.Input[str] ip_address: A private IP address of your choice. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet.
667
-
668
- 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 `ipAddress`, 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 `ipAddress` value.
669
-
670
- Example: `10.0.3.3`
732
+ :param pulumi.Input[str] ip_address: A private IP address of your choice. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. Example: `10.0.3.3`
671
733
  :param pulumi.Input[Union['MountTargetKerberosArgs', 'MountTargetKerberosArgsDict']] kerberos: (Updatable) Kerberos details needed to create configuration.
672
734
  :param pulumi.Input[Union['MountTargetLdapIdmapArgs', 'MountTargetLdapIdmapArgsDict']] ldap_idmap: (Updatable) Mount target details about the LDAP ID mapping configuration.
673
735
  :param pulumi.Input[Sequence[pulumi.Input[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).
736
+ :param pulumi.Input[str] requested_throughput: (Updatable) Throughput for mount target in Gbps. Currently only 1 Gbps of requestedThroughput is supported during create MountTarget. Available shapes and corresponding throughput are listed at [Mount Target Performance](https://docs.oracle.com/iaas/Content/File/Tasks/managingmounttargets.htm#performance).
674
737
  :param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet in which to create the mount target.
675
738
 
676
739
 
@@ -756,7 +819,8 @@ class MountTarget(pulumi.CustomResource):
756
819
  "schema_type": mount_target_ldap_idmap_schema_type,
757
820
  "user_search_base": mount_target_ldap_idmap_user_search_base,
758
821
  },
759
- nsg_ids=mount_target_nsg_ids)
822
+ nsg_ids=mount_target_nsg_ids,
823
+ requested_throughput=mount_target_requested_throughput)
760
824
  ```
761
825
 
762
826
  ## Import
@@ -793,6 +857,7 @@ class MountTarget(pulumi.CustomResource):
793
857
  kerberos: Optional[pulumi.Input[Union['MountTargetKerberosArgs', 'MountTargetKerberosArgsDict']]] = None,
794
858
  ldap_idmap: Optional[pulumi.Input[Union['MountTargetLdapIdmapArgs', 'MountTargetLdapIdmapArgsDict']]] = None,
795
859
  nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
860
+ requested_throughput: Optional[pulumi.Input[str]] = None,
796
861
  subnet_id: Optional[pulumi.Input[str]] = None,
797
862
  __props__=None):
798
863
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
@@ -818,13 +883,17 @@ class MountTarget(pulumi.CustomResource):
818
883
  __props__.__dict__["kerberos"] = kerberos
819
884
  __props__.__dict__["ldap_idmap"] = ldap_idmap
820
885
  __props__.__dict__["nsg_ids"] = nsg_ids
886
+ __props__.__dict__["requested_throughput"] = requested_throughput
821
887
  if subnet_id is None and not opts.urn:
822
888
  raise TypeError("Missing required property 'subnet_id'")
823
889
  __props__.__dict__["subnet_id"] = subnet_id
824
890
  __props__.__dict__["export_set_id"] = None
825
891
  __props__.__dict__["lifecycle_details"] = None
892
+ __props__.__dict__["observed_throughput"] = None
826
893
  __props__.__dict__["private_ip_ids"] = None
894
+ __props__.__dict__["reserved_storage_capacity"] = None
827
895
  __props__.__dict__["state"] = None
896
+ __props__.__dict__["time_billing_cycle_end"] = None
828
897
  __props__.__dict__["time_created"] = None
829
898
  super(MountTarget, __self__).__init__(
830
899
  'oci:FileStorage/mountTarget:MountTarget',
@@ -849,9 +918,13 @@ class MountTarget(pulumi.CustomResource):
849
918
  ldap_idmap: Optional[pulumi.Input[Union['MountTargetLdapIdmapArgs', 'MountTargetLdapIdmapArgsDict']]] = None,
850
919
  lifecycle_details: Optional[pulumi.Input[str]] = None,
851
920
  nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
921
+ observed_throughput: Optional[pulumi.Input[str]] = None,
852
922
  private_ip_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
923
+ requested_throughput: Optional[pulumi.Input[str]] = None,
924
+ reserved_storage_capacity: Optional[pulumi.Input[str]] = None,
853
925
  state: Optional[pulumi.Input[str]] = None,
854
926
  subnet_id: Optional[pulumi.Input[str]] = None,
927
+ time_billing_cycle_end: Optional[pulumi.Input[str]] = None,
855
928
  time_created: Optional[pulumi.Input[str]] = None) -> 'MountTarget':
856
929
  """
857
930
  Get an existing MountTarget resource's state with the given name, id, and optional extra
@@ -874,22 +947,22 @@ class MountTarget(pulumi.CustomResource):
874
947
 
875
948
  Example: `files-1`
876
949
  :param pulumi.Input[str] idmap_type: (Updatable) The method used to map a Unix UID to secondary groups, if any.
877
- :param pulumi.Input[str] ip_address: A private IP address of your choice. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet.
878
-
879
- 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 `ipAddress`, 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 `ipAddress` value.
880
-
881
- Example: `10.0.3.3`
950
+ :param pulumi.Input[str] ip_address: A private IP address of your choice. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. Example: `10.0.3.3`
882
951
  :param pulumi.Input[Union['MountTargetKerberosArgs', 'MountTargetKerberosArgsDict']] kerberos: (Updatable) Kerberos details needed to create configuration.
883
952
  :param pulumi.Input[Union['MountTargetLdapIdmapArgs', 'MountTargetLdapIdmapArgsDict']] ldap_idmap: (Updatable) Mount target details about the LDAP ID mapping configuration.
884
953
  :param pulumi.Input[str] lifecycle_details: Additional information about the current 'lifecycleState'.
885
954
  :param pulumi.Input[Sequence[pulumi.Input[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).
955
+ :param pulumi.Input[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).
886
956
  :param pulumi.Input[Sequence[pulumi.Input[str]]] private_ip_ids: The OCIDs of the private IP addresses associated with this mount target.
957
+ :param pulumi.Input[str] requested_throughput: (Updatable) Throughput for mount target in Gbps. Currently only 1 Gbps of requestedThroughput is supported during create MountTarget. Available shapes and corresponding throughput are listed at [Mount Target Performance](https://docs.oracle.com/iaas/Content/File/Tasks/managingmounttargets.htm#performance).
958
+ :param pulumi.Input[str] reserved_storage_capacity: * Reserved capacity (GB) associated with this mount target. Reserved capacity depends on observedThroughput value of mount target. Value is listed at [Mount Target Performance](https://docs.oracle.com/iaas/Content/File/Tasks/managingmounttargets.htm#performance).
887
959
  :param pulumi.Input[str] state: The current state of the mount target.
888
960
  :param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet in which to create the mount target.
889
961
 
890
962
 
891
963
  ** IMPORTANT **
892
964
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
965
+ :param pulumi.Input[str] time_billing_cycle_end: The date and time the mount target current billing cycle will end, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Once a cycle ends, it is updated automatically to next timestamp which is after 30 days. Example: `2016-08-25T21:10:29.600Z`
893
966
  :param pulumi.Input[str] time_created: The date and time the mount target was created, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
894
967
  """
895
968
  opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
@@ -909,9 +982,13 @@ class MountTarget(pulumi.CustomResource):
909
982
  __props__.__dict__["ldap_idmap"] = ldap_idmap
910
983
  __props__.__dict__["lifecycle_details"] = lifecycle_details
911
984
  __props__.__dict__["nsg_ids"] = nsg_ids
985
+ __props__.__dict__["observed_throughput"] = observed_throughput
912
986
  __props__.__dict__["private_ip_ids"] = private_ip_ids
987
+ __props__.__dict__["requested_throughput"] = requested_throughput
988
+ __props__.__dict__["reserved_storage_capacity"] = reserved_storage_capacity
913
989
  __props__.__dict__["state"] = state
914
990
  __props__.__dict__["subnet_id"] = subnet_id
991
+ __props__.__dict__["time_billing_cycle_end"] = time_billing_cycle_end
915
992
  __props__.__dict__["time_created"] = time_created
916
993
  return MountTarget(resource_name, opts=opts, __props__=__props__)
917
994
 
@@ -989,11 +1066,7 @@ class MountTarget(pulumi.CustomResource):
989
1066
  @pulumi.getter(name="ipAddress")
990
1067
  def ip_address(self) -> pulumi.Output[str]:
991
1068
  """
992
- A private IP address of your choice. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet.
993
-
994
- 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 `ipAddress`, 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 `ipAddress` value.
995
-
996
- Example: `10.0.3.3`
1069
+ A private IP address of your choice. Must be an available IP address within the subnet's CIDR. If you don't specify a value, Oracle automatically assigns a private IP address from the subnet. Example: `10.0.3.3`
997
1070
  """
998
1071
  return pulumi.get(self, "ip_address")
999
1072
 
@@ -1029,6 +1102,14 @@ class MountTarget(pulumi.CustomResource):
1029
1102
  """
1030
1103
  return pulumi.get(self, "nsg_ids")
1031
1104
 
1105
+ @property
1106
+ @pulumi.getter(name="observedThroughput")
1107
+ def observed_throughput(self) -> pulumi.Output[str]:
1108
+ """
1109
+ 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).
1110
+ """
1111
+ return pulumi.get(self, "observed_throughput")
1112
+
1032
1113
  @property
1033
1114
  @pulumi.getter(name="privateIpIds")
1034
1115
  def private_ip_ids(self) -> pulumi.Output[Sequence[str]]:
@@ -1037,6 +1118,22 @@ class MountTarget(pulumi.CustomResource):
1037
1118
  """
1038
1119
  return pulumi.get(self, "private_ip_ids")
1039
1120
 
1121
+ @property
1122
+ @pulumi.getter(name="requestedThroughput")
1123
+ def requested_throughput(self) -> pulumi.Output[str]:
1124
+ """
1125
+ (Updatable) Throughput for mount target in Gbps. Currently only 1 Gbps of requestedThroughput is supported during create MountTarget. Available shapes and corresponding throughput are listed at [Mount Target Performance](https://docs.oracle.com/iaas/Content/File/Tasks/managingmounttargets.htm#performance).
1126
+ """
1127
+ return pulumi.get(self, "requested_throughput")
1128
+
1129
+ @property
1130
+ @pulumi.getter(name="reservedStorageCapacity")
1131
+ def reserved_storage_capacity(self) -> pulumi.Output[str]:
1132
+ """
1133
+ * Reserved capacity (GB) associated with this mount target. Reserved capacity depends on observedThroughput value of mount target. Value is listed at [Mount Target Performance](https://docs.oracle.com/iaas/Content/File/Tasks/managingmounttargets.htm#performance).
1134
+ """
1135
+ return pulumi.get(self, "reserved_storage_capacity")
1136
+
1040
1137
  @property
1041
1138
  @pulumi.getter
1042
1139
  def state(self) -> pulumi.Output[str]:
@@ -1057,6 +1154,14 @@ class MountTarget(pulumi.CustomResource):
1057
1154
  """
1058
1155
  return pulumi.get(self, "subnet_id")
1059
1156
 
1157
+ @property
1158
+ @pulumi.getter(name="timeBillingCycleEnd")
1159
+ def time_billing_cycle_end(self) -> pulumi.Output[str]:
1160
+ """
1161
+ The date and time the mount target current billing cycle will end, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Once a cycle ends, it is updated automatically to next timestamp which is after 30 days. Example: `2016-08-25T21:10:29.600Z`
1162
+ """
1163
+ return pulumi.get(self, "time_billing_cycle_end")
1164
+
1060
1165
  @property
1061
1166
  @pulumi.getter(name="timeCreated")
1062
1167
  def time_created(self) -> pulumi.Output[str]:
@@ -1671,9 +1671,13 @@ class GetMountTargetsMountTargetResult(dict):
1671
1671
  ldap_idmaps: Sequence['outputs.GetMountTargetsMountTargetLdapIdmapResult'],
1672
1672
  lifecycle_details: str,
1673
1673
  nsg_ids: Sequence[str],
1674
+ observed_throughput: str,
1674
1675
  private_ip_ids: Sequence[str],
1676
+ requested_throughput: str,
1677
+ reserved_storage_capacity: str,
1675
1678
  state: str,
1676
1679
  subnet_id: str,
1680
+ time_billing_cycle_end: str,
1677
1681
  time_created: str):
1678
1682
  """
1679
1683
  :param str availability_domain: The name of the availability domain. Example: `Uocm:PHX-AD-1`
@@ -1688,9 +1692,13 @@ class GetMountTargetsMountTargetResult(dict):
1688
1692
  :param Sequence['GetMountTargetsMountTargetLdapIdmapArgs'] ldap_idmaps: Mount target details about the LDAP ID mapping configuration.
1689
1693
  :param str lifecycle_details: Additional information about the current 'lifecycleState'.
1690
1694
  :param Sequence[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).
1695
+ :param 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).
1691
1696
  :param Sequence[str] private_ip_ids: The OCIDs of the private IP addresses associated with this mount target.
1697
+ :param str requested_throughput: * New throughput for mount target at the end of billing cycle in Gbps.
1698
+ :param str reserved_storage_capacity: * Reserved capacity (GB) associated with this mount target. Reserved capacity depends on observedThroughput value of mount target. Value is listed at [Mount Target Performance](https://docs.oracle.com/iaas/Content/File/Tasks/managingmounttargets.htm#performance).
1692
1699
  :param str state: Filter results by the specified lifecycle state. Must be a valid state for the resource type.
1693
1700
  :param str subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the mount target is in.
1701
+ :param str time_billing_cycle_end: The date and time the mount target current billing cycle will end, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Once a cycle ends, it is updated automatically to next timestamp which is after 30 days. Example: `2016-08-25T21:10:29.600Z`
1694
1702
  :param str time_created: The date and time the mount target was created, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Example: `2016-08-25T21:10:29.600Z`
1695
1703
  """
1696
1704
  pulumi.set(__self__, "availability_domain", availability_domain)
@@ -1707,9 +1715,13 @@ class GetMountTargetsMountTargetResult(dict):
1707
1715
  pulumi.set(__self__, "ldap_idmaps", ldap_idmaps)
1708
1716
  pulumi.set(__self__, "lifecycle_details", lifecycle_details)
1709
1717
  pulumi.set(__self__, "nsg_ids", nsg_ids)
1718
+ pulumi.set(__self__, "observed_throughput", observed_throughput)
1710
1719
  pulumi.set(__self__, "private_ip_ids", private_ip_ids)
1720
+ pulumi.set(__self__, "requested_throughput", requested_throughput)
1721
+ pulumi.set(__self__, "reserved_storage_capacity", reserved_storage_capacity)
1711
1722
  pulumi.set(__self__, "state", state)
1712
1723
  pulumi.set(__self__, "subnet_id", subnet_id)
1724
+ pulumi.set(__self__, "time_billing_cycle_end", time_billing_cycle_end)
1713
1725
  pulumi.set(__self__, "time_created", time_created)
1714
1726
 
1715
1727
  @property
@@ -1818,6 +1830,14 @@ class GetMountTargetsMountTargetResult(dict):
1818
1830
  """
1819
1831
  return pulumi.get(self, "nsg_ids")
1820
1832
 
1833
+ @property
1834
+ @pulumi.getter(name="observedThroughput")
1835
+ def observed_throughput(self) -> str:
1836
+ """
1837
+ 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).
1838
+ """
1839
+ return pulumi.get(self, "observed_throughput")
1840
+
1821
1841
  @property
1822
1842
  @pulumi.getter(name="privateIpIds")
1823
1843
  def private_ip_ids(self) -> Sequence[str]:
@@ -1826,6 +1846,22 @@ class GetMountTargetsMountTargetResult(dict):
1826
1846
  """
1827
1847
  return pulumi.get(self, "private_ip_ids")
1828
1848
 
1849
+ @property
1850
+ @pulumi.getter(name="requestedThroughput")
1851
+ def requested_throughput(self) -> str:
1852
+ """
1853
+ * New throughput for mount target at the end of billing cycle in Gbps.
1854
+ """
1855
+ return pulumi.get(self, "requested_throughput")
1856
+
1857
+ @property
1858
+ @pulumi.getter(name="reservedStorageCapacity")
1859
+ def reserved_storage_capacity(self) -> str:
1860
+ """
1861
+ * Reserved capacity (GB) associated with this mount target. Reserved capacity depends on observedThroughput value of mount target. Value is listed at [Mount Target Performance](https://docs.oracle.com/iaas/Content/File/Tasks/managingmounttargets.htm#performance).
1862
+ """
1863
+ return pulumi.get(self, "reserved_storage_capacity")
1864
+
1829
1865
  @property
1830
1866
  @pulumi.getter
1831
1867
  def state(self) -> str:
@@ -1842,6 +1878,14 @@ class GetMountTargetsMountTargetResult(dict):
1842
1878
  """
1843
1879
  return pulumi.get(self, "subnet_id")
1844
1880
 
1881
+ @property
1882
+ @pulumi.getter(name="timeBillingCycleEnd")
1883
+ def time_billing_cycle_end(self) -> str:
1884
+ """
1885
+ The date and time the mount target current billing cycle will end, expressed in [RFC 3339](https://tools.ietf.org/rfc/rfc3339) timestamp format. Once a cycle ends, it is updated automatically to next timestamp which is after 30 days. Example: `2016-08-25T21:10:29.600Z`
1886
+ """
1887
+ return pulumi.get(self, "time_billing_cycle_end")
1888
+
1845
1889
  @property
1846
1890
  @pulumi.getter(name="timeCreated")
1847
1891
  def time_created(self) -> str:
@@ -23,6 +23,7 @@ class DomainsGroupArgs:
23
23
  attributes: Optional[pulumi.Input[str]] = None,
24
24
  authorization: Optional[pulumi.Input[str]] = None,
25
25
  external_id: Optional[pulumi.Input[str]] = None,
26
+ force_delete: Optional[pulumi.Input[bool]] = None,
26
27
  members: Optional[pulumi.Input[Sequence[pulumi.Input['DomainsGroupMemberArgs']]]] = None,
27
28
  non_unique_display_name: Optional[pulumi.Input[str]] = None,
28
29
  ocid: Optional[pulumi.Input[str]] = None,
@@ -141,6 +142,8 @@ class DomainsGroupArgs:
141
142
  pulumi.set(__self__, "authorization", authorization)
142
143
  if external_id is not None:
143
144
  pulumi.set(__self__, "external_id", external_id)
145
+ if force_delete is not None:
146
+ pulumi.set(__self__, "force_delete", force_delete)
144
147
  if members is not None:
145
148
  pulumi.set(__self__, "members", members)
146
149
  if non_unique_display_name is not None:
@@ -278,6 +281,15 @@ class DomainsGroupArgs:
278
281
  def external_id(self, value: Optional[pulumi.Input[str]]):
279
282
  pulumi.set(self, "external_id", value)
280
283
 
284
+ @property
285
+ @pulumi.getter(name="forceDelete")
286
+ def force_delete(self) -> Optional[pulumi.Input[bool]]:
287
+ return pulumi.get(self, "force_delete")
288
+
289
+ @force_delete.setter
290
+ def force_delete(self, value: Optional[pulumi.Input[bool]]):
291
+ pulumi.set(self, "force_delete", value)
292
+
281
293
  @property
282
294
  @pulumi.getter
283
295
  def members(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DomainsGroupMemberArgs']]]]:
@@ -455,6 +467,7 @@ class _DomainsGroupState:
455
467
  display_name: Optional[pulumi.Input[str]] = None,
456
468
  domain_ocid: Optional[pulumi.Input[str]] = None,
457
469
  external_id: Optional[pulumi.Input[str]] = None,
470
+ force_delete: Optional[pulumi.Input[bool]] = None,
458
471
  idcs_created_bies: Optional[pulumi.Input[Sequence[pulumi.Input['DomainsGroupIdcsCreatedByArgs']]]] = None,
459
472
  idcs_endpoint: Optional[pulumi.Input[str]] = None,
460
473
  idcs_last_modified_bies: Optional[pulumi.Input[Sequence[pulumi.Input['DomainsGroupIdcsLastModifiedByArgs']]]] = None,
@@ -682,6 +695,8 @@ class _DomainsGroupState:
682
695
  pulumi.set(__self__, "domain_ocid", domain_ocid)
683
696
  if external_id is not None:
684
697
  pulumi.set(__self__, "external_id", external_id)
698
+ if force_delete is not None:
699
+ pulumi.set(__self__, "force_delete", force_delete)
685
700
  if idcs_created_bies is not None:
686
701
  pulumi.set(__self__, "idcs_created_bies", idcs_created_bies)
687
702
  if idcs_endpoint is not None:
@@ -869,6 +884,15 @@ class _DomainsGroupState:
869
884
  def external_id(self, value: Optional[pulumi.Input[str]]):
870
885
  pulumi.set(self, "external_id", value)
871
886
 
887
+ @property
888
+ @pulumi.getter(name="forceDelete")
889
+ def force_delete(self) -> Optional[pulumi.Input[bool]]:
890
+ return pulumi.get(self, "force_delete")
891
+
892
+ @force_delete.setter
893
+ def force_delete(self, value: Optional[pulumi.Input[bool]]):
894
+ pulumi.set(self, "force_delete", value)
895
+
872
896
  @property
873
897
  @pulumi.getter(name="idcsCreatedBies")
874
898
  def idcs_created_bies(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['DomainsGroupIdcsCreatedByArgs']]]]:
@@ -1218,6 +1242,7 @@ class DomainsGroup(pulumi.CustomResource):
1218
1242
  authorization: Optional[pulumi.Input[str]] = None,
1219
1243
  display_name: Optional[pulumi.Input[str]] = None,
1220
1244
  external_id: Optional[pulumi.Input[str]] = None,
1245
+ force_delete: Optional[pulumi.Input[bool]] = None,
1221
1246
  idcs_endpoint: Optional[pulumi.Input[str]] = None,
1222
1247
  members: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DomainsGroupMemberArgs', 'DomainsGroupMemberArgsDict']]]]] = None,
1223
1248
  non_unique_display_name: Optional[pulumi.Input[str]] = None,
@@ -1380,6 +1405,7 @@ class DomainsGroup(pulumi.CustomResource):
1380
1405
  authorization: Optional[pulumi.Input[str]] = None,
1381
1406
  display_name: Optional[pulumi.Input[str]] = None,
1382
1407
  external_id: Optional[pulumi.Input[str]] = None,
1408
+ force_delete: Optional[pulumi.Input[bool]] = None,
1383
1409
  idcs_endpoint: Optional[pulumi.Input[str]] = None,
1384
1410
  members: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DomainsGroupMemberArgs', 'DomainsGroupMemberArgsDict']]]]] = None,
1385
1411
  non_unique_display_name: Optional[pulumi.Input[str]] = None,
@@ -1408,6 +1434,7 @@ class DomainsGroup(pulumi.CustomResource):
1408
1434
  raise TypeError("Missing required property 'display_name'")
1409
1435
  __props__.__dict__["display_name"] = display_name
1410
1436
  __props__.__dict__["external_id"] = external_id
1437
+ __props__.__dict__["force_delete"] = force_delete
1411
1438
  if idcs_endpoint is None and not opts.urn:
1412
1439
  raise TypeError("Missing required property 'idcs_endpoint'")
1413
1440
  __props__.__dict__["idcs_endpoint"] = idcs_endpoint
@@ -1452,6 +1479,7 @@ class DomainsGroup(pulumi.CustomResource):
1452
1479
  display_name: Optional[pulumi.Input[str]] = None,
1453
1480
  domain_ocid: Optional[pulumi.Input[str]] = None,
1454
1481
  external_id: Optional[pulumi.Input[str]] = None,
1482
+ force_delete: Optional[pulumi.Input[bool]] = None,
1455
1483
  idcs_created_bies: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DomainsGroupIdcsCreatedByArgs', 'DomainsGroupIdcsCreatedByArgsDict']]]]] = None,
1456
1484
  idcs_endpoint: Optional[pulumi.Input[str]] = None,
1457
1485
  idcs_last_modified_bies: Optional[pulumi.Input[Sequence[pulumi.Input[Union['DomainsGroupIdcsLastModifiedByArgs', 'DomainsGroupIdcsLastModifiedByArgsDict']]]]] = None,
@@ -1680,6 +1708,7 @@ class DomainsGroup(pulumi.CustomResource):
1680
1708
  __props__.__dict__["display_name"] = display_name
1681
1709
  __props__.__dict__["domain_ocid"] = domain_ocid
1682
1710
  __props__.__dict__["external_id"] = external_id
1711
+ __props__.__dict__["force_delete"] = force_delete
1683
1712
  __props__.__dict__["idcs_created_bies"] = idcs_created_bies
1684
1713
  __props__.__dict__["idcs_endpoint"] = idcs_endpoint
1685
1714
  __props__.__dict__["idcs_last_modified_bies"] = idcs_last_modified_bies
@@ -1817,6 +1846,11 @@ class DomainsGroup(pulumi.CustomResource):
1817
1846
  """
1818
1847
  return pulumi.get(self, "external_id")
1819
1848
 
1849
+ @property
1850
+ @pulumi.getter(name="forceDelete")
1851
+ def force_delete(self) -> pulumi.Output[Optional[bool]]:
1852
+ return pulumi.get(self, "force_delete")
1853
+
1820
1854
  @property
1821
1855
  @pulumi.getter(name="idcsCreatedBies")
1822
1856
  def idcs_created_bies(self) -> pulumi.Output[Sequence['outputs.DomainsGroupIdcsCreatedBy']]: