pulumi-oci 2.12.0a1728593306__py3-none-any.whl → 2.13.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 (220) hide show
  1. pulumi_oci/__init__.py +169 -19
  2. pulumi_oci/analytics/analytics_instance.py +54 -5
  3. pulumi_oci/analytics/get_analytics_instance.py +18 -4
  4. pulumi_oci/analytics/outputs.py +12 -1
  5. pulumi_oci/containerengine/_inputs.py +341 -0
  6. pulumi_oci/containerengine/cluster.py +64 -0
  7. pulumi_oci/containerengine/get_cluster.py +12 -1
  8. pulumi_oci/containerengine/outputs.py +582 -0
  9. pulumi_oci/core/_inputs.py +947 -196
  10. pulumi_oci/core/boot_volume.py +90 -5
  11. pulumi_oci/core/cluster_network.py +7 -7
  12. pulumi_oci/core/get_block_volume_replica.py +15 -1
  13. pulumi_oci/core/get_boot_volume.py +15 -4
  14. pulumi_oci/core/get_boot_volume_replica.py +15 -1
  15. pulumi_oci/core/get_instance.py +29 -1
  16. pulumi_oci/core/get_vcn.py +15 -1
  17. pulumi_oci/core/get_vnic.py +15 -1
  18. pulumi_oci/core/get_volume.py +18 -4
  19. pulumi_oci/core/instance.py +87 -0
  20. pulumi_oci/core/instance_configuration.py +16 -0
  21. pulumi_oci/core/ipsec.py +183 -23
  22. pulumi_oci/core/network_security_group_security_rule.py +2 -2
  23. pulumi_oci/core/outputs.py +1282 -153
  24. pulumi_oci/core/service_gateway.py +13 -7
  25. pulumi_oci/core/vcn.py +65 -23
  26. pulumi_oci/core/virtual_network.py +35 -1
  27. pulumi_oci/core/vnic_attachment.py +2 -0
  28. pulumi_oci/core/volume.py +110 -12
  29. pulumi_oci/core/volume_backup_policy_assignment.py +68 -19
  30. pulumi_oci/core/volume_group.py +56 -5
  31. pulumi_oci/database/_inputs.py +905 -27
  32. pulumi_oci/database/autonomous_database.py +48 -28
  33. pulumi_oci/database/autonomous_database_backup.py +12 -12
  34. pulumi_oci/database/autonomous_exadata_infrastructure.py +2 -0
  35. pulumi_oci/database/autonomous_vm_cluster.py +2 -0
  36. pulumi_oci/database/backup.py +12 -12
  37. pulumi_oci/database/cloud_autonomous_vm_cluster.py +2 -0
  38. pulumi_oci/database/cloud_exadata_infrastructure.py +2 -0
  39. pulumi_oci/database/cloud_vm_cluster.py +71 -0
  40. pulumi_oci/database/database.py +15 -15
  41. pulumi_oci/database/database_upgrade.py +12 -12
  42. pulumi_oci/database/db_system.py +9 -9
  43. pulumi_oci/database/exadata_infrastructure.py +2 -0
  44. pulumi_oci/database/get_autonomous_container_database.py +1 -1
  45. pulumi_oci/database/get_autonomous_database.py +18 -4
  46. pulumi_oci/database/get_autonomous_database_backup.py +3 -3
  47. pulumi_oci/database/get_autonomous_databases.py +88 -5
  48. pulumi_oci/database/get_cloud_vm_cluster.py +15 -1
  49. pulumi_oci/database/get_database.py +3 -3
  50. pulumi_oci/database/get_pluggable_database.py +12 -1
  51. pulumi_oci/database/get_vm_cluster.py +15 -1
  52. pulumi_oci/database/outputs.py +1431 -74
  53. pulumi_oci/database/pluggable_database.py +34 -0
  54. pulumi_oci/database/vm_cluster.py +71 -0
  55. pulumi_oci/database/vm_cluster_add_virtual_network.py +28 -0
  56. pulumi_oci/database/vm_cluster_remove_virtual_machine.py +28 -0
  57. pulumi_oci/datasafe/__init__.py +13 -0
  58. pulumi_oci/datasafe/_inputs.py +441 -0
  59. pulumi_oci/datasafe/generate_on_prem_connector_configuration.py +271 -0
  60. pulumi_oci/datasafe/get_reports.py +23 -1
  61. pulumi_oci/datasafe/get_sql_collection.py +392 -0
  62. pulumi_oci/datasafe/get_sql_collection_analytics.py +309 -0
  63. pulumi_oci/datasafe/get_sql_collection_log_insights.py +207 -0
  64. pulumi_oci/datasafe/get_sql_collections.py +364 -0
  65. pulumi_oci/datasafe/get_sql_firewall_allowed_sql.py +337 -0
  66. pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py +250 -0
  67. pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py +234 -0
  68. pulumi_oci/datasafe/get_sql_firewall_policies.py +386 -0
  69. pulumi_oci/datasafe/get_sql_firewall_policy.py +393 -0
  70. pulumi_oci/datasafe/get_sql_firewall_policy_analytics.py +305 -0
  71. pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py +306 -0
  72. pulumi_oci/datasafe/get_sql_firewall_violations.py +208 -0
  73. pulumi_oci/datasafe/outputs.py +1808 -2
  74. pulumi_oci/desktops/_inputs.py +395 -17
  75. pulumi_oci/desktops/desktop_pool.py +253 -21
  76. pulumi_oci/desktops/get_desktop_pool.py +62 -5
  77. pulumi_oci/desktops/outputs.py +807 -25
  78. pulumi_oci/dns/__init__.py +2 -0
  79. pulumi_oci/dns/_inputs.py +1157 -12
  80. pulumi_oci/dns/action_create_zone_from_zone_file.py +42 -2
  81. pulumi_oci/dns/get_records.py +45 -13
  82. pulumi_oci/dns/get_resolver.py +8 -6
  83. pulumi_oci/dns/get_resolver_endpoint.py +8 -6
  84. pulumi_oci/dns/get_resolver_endpoints.py +2 -2
  85. pulumi_oci/dns/get_resolvers.py +12 -12
  86. pulumi_oci/dns/get_rrset.py +16 -16
  87. pulumi_oci/dns/get_rrsets.py +12 -10
  88. pulumi_oci/dns/get_view.py +8 -4
  89. pulumi_oci/dns/get_views.py +12 -12
  90. pulumi_oci/dns/get_zones.py +33 -13
  91. pulumi_oci/dns/outputs.py +1388 -79
  92. pulumi_oci/dns/record.py +12 -12
  93. pulumi_oci/dns/resolver.py +7 -7
  94. pulumi_oci/dns/resolver_endpoint.py +2 -2
  95. pulumi_oci/dns/rrset.py +50 -41
  96. pulumi_oci/dns/zone.py +176 -17
  97. pulumi_oci/dns/zone_promote_dnssec_key_version.py +328 -0
  98. pulumi_oci/dns/zone_stage_dnssec_key_version.py +318 -0
  99. pulumi_oci/fleetappsmanagement/__init__.py +43 -0
  100. pulumi_oci/fleetappsmanagement/_inputs.py +2057 -0
  101. pulumi_oci/fleetappsmanagement/fleet.py +955 -0
  102. pulumi_oci/fleetappsmanagement/fleet_credential.py +615 -0
  103. pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
  104. pulumi_oci/fleetappsmanagement/fleet_resource.py +851 -0
  105. pulumi_oci/fleetappsmanagement/get_announcements.py +166 -0
  106. pulumi_oci/fleetappsmanagement/get_fleet.py +394 -0
  107. pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +164 -0
  108. pulumi_oci/fleetappsmanagement/get_fleet_credential.py +273 -0
  109. pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +240 -0
  110. pulumi_oci/fleetappsmanagement/get_fleet_products.py +232 -0
  111. pulumi_oci/fleetappsmanagement/get_fleet_properties.py +218 -0
  112. pulumi_oci/fleetappsmanagement/get_fleet_property.py +286 -0
  113. pulumi_oci/fleetappsmanagement/get_fleet_resource.py +398 -0
  114. pulumi_oci/fleetappsmanagement/get_fleet_resources.py +237 -0
  115. pulumi_oci/fleetappsmanagement/get_fleet_targets.py +232 -0
  116. pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
  117. pulumi_oci/fleetappsmanagement/get_inventory_resources.py +311 -0
  118. pulumi_oci/fleetappsmanagement/get_maintenance_window.py +365 -0
  119. pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +199 -0
  120. pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +123 -0
  121. pulumi_oci/fleetappsmanagement/get_onboardings.py +177 -0
  122. pulumi_oci/fleetappsmanagement/get_properties.py +221 -0
  123. pulumi_oci/fleetappsmanagement/get_property.py +323 -0
  124. pulumi_oci/fleetappsmanagement/get_runbook.py +377 -0
  125. pulumi_oci/fleetappsmanagement/get_runbooks.py +284 -0
  126. pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +436 -0
  127. pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +185 -0
  128. pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +262 -0
  129. pulumi_oci/fleetappsmanagement/get_task_record.py +307 -0
  130. pulumi_oci/fleetappsmanagement/get_task_records.py +240 -0
  131. pulumi_oci/fleetappsmanagement/maintenance_window.py +935 -0
  132. pulumi_oci/fleetappsmanagement/onboarding.py +477 -0
  133. pulumi_oci/fleetappsmanagement/outputs.py +8128 -0
  134. pulumi_oci/fleetappsmanagement/property.py +697 -0
  135. pulumi_oci/fleetappsmanagement/scheduler_definition.py +1035 -0
  136. pulumi_oci/functions/get_fusion_environment_refresh_activity.py +15 -1
  137. pulumi_oci/functions/outputs.py +11 -0
  138. pulumi_oci/fusionapps/_inputs.py +21 -20
  139. pulumi_oci/fusionapps/fusion_environment.py +2 -2
  140. pulumi_oci/fusionapps/fusion_environment_admin_user.py +21 -22
  141. pulumi_oci/fusionapps/fusion_environment_refresh_activity.py +48 -51
  142. pulumi_oci/fusionapps/outputs.py +11 -10
  143. pulumi_oci/goldengate/__init__.py +1 -0
  144. pulumi_oci/goldengate/_inputs.py +165 -0
  145. pulumi_oci/goldengate/connection.py +49 -35
  146. pulumi_oci/goldengate/database_registration.py +7 -7
  147. pulumi_oci/goldengate/deployment.py +79 -4
  148. pulumi_oci/goldengate/get_deployment.py +30 -2
  149. pulumi_oci/goldengate/get_deployment_environments.py +144 -0
  150. pulumi_oci/goldengate/outputs.py +409 -2
  151. pulumi_oci/integration/__init__.py +1 -0
  152. pulumi_oci/integration/_inputs.py +289 -2
  153. pulumi_oci/integration/get_integration_instance.py +65 -1
  154. pulumi_oci/integration/integration_instance.py +172 -0
  155. pulumi_oci/integration/oracle_managed_custom_endpoint.py +307 -0
  156. pulumi_oci/integration/outputs.py +587 -19
  157. pulumi_oci/loadbalancer/_inputs.py +20 -0
  158. pulumi_oci/loadbalancer/listener.py +4 -2
  159. pulumi_oci/loadbalancer/outputs.py +16 -2
  160. pulumi_oci/monitoring/_inputs.py +137 -16
  161. pulumi_oci/monitoring/alarm_suppression.py +164 -35
  162. pulumi_oci/monitoring/get_alarm_statuses.py +5 -3
  163. pulumi_oci/monitoring/get_alarm_suppression.py +33 -3
  164. pulumi_oci/monitoring/get_alarm_suppressions.py +137 -14
  165. pulumi_oci/monitoring/outputs.py +291 -18
  166. pulumi_oci/mysql/mysql_db_system.py +7 -7
  167. pulumi_oci/objectstorage/__init__.py +3 -0
  168. pulumi_oci/objectstorage/_inputs.py +97 -0
  169. pulumi_oci/objectstorage/get_object_versions.py +6 -6
  170. pulumi_oci/objectstorage/get_objects.py +6 -6
  171. pulumi_oci/objectstorage/get_private_endpoint.py +263 -0
  172. pulumi_oci/objectstorage/get_private_endpoint_summaries.py +128 -0
  173. pulumi_oci/objectstorage/outputs.py +258 -0
  174. pulumi_oci/objectstorage/private_endpoint.py +630 -0
  175. pulumi_oci/objectstorage/storage_object.py +7 -7
  176. pulumi_oci/opsi/_inputs.py +268 -114
  177. pulumi_oci/opsi/database_insight.py +162 -21
  178. pulumi_oci/opsi/exadata_insight.py +44 -0
  179. pulumi_oci/opsi/get_database_insight.py +40 -1
  180. pulumi_oci/opsi/get_host_insights.py +2 -2
  181. pulumi_oci/opsi/host_insight.py +0 -48
  182. pulumi_oci/opsi/outputs.py +405 -109
  183. pulumi_oci/pulumi-plugin.json +1 -1
  184. pulumi_oci/securityattribute/__init__.py +15 -0
  185. pulumi_oci/securityattribute/_inputs.py +209 -0
  186. pulumi_oci/securityattribute/get_security_attribute.py +262 -0
  187. pulumi_oci/securityattribute/get_security_attribute_namespace.py +253 -0
  188. pulumi_oci/securityattribute/get_security_attribute_namespaces.py +210 -0
  189. pulumi_oci/securityattribute/get_security_attributes.py +169 -0
  190. pulumi_oci/securityattribute/outputs.py +466 -0
  191. pulumi_oci/securityattribute/security_attribute.py +588 -0
  192. pulumi_oci/securityattribute/security_attribute_namespace.py +609 -0
  193. pulumi_oci/stackmonitoring/__init__.py +5 -0
  194. pulumi_oci/stackmonitoring/_inputs.py +330 -0
  195. pulumi_oci/stackmonitoring/get_maintenance_window.py +254 -0
  196. pulumi_oci/stackmonitoring/get_maintenance_windows.py +210 -0
  197. pulumi_oci/stackmonitoring/maintenance_window.py +551 -0
  198. pulumi_oci/stackmonitoring/maintenance_windows_retry_failed_operation.py +217 -0
  199. pulumi_oci/stackmonitoring/maintenance_windows_stop.py +217 -0
  200. pulumi_oci/stackmonitoring/outputs.py +603 -0
  201. pulumi_oci/{globallydistributeddatabase → zpr}/__init__.py +5 -6
  202. pulumi_oci/zpr/_inputs.py +79 -0
  203. pulumi_oci/zpr/configuration.py +516 -0
  204. pulumi_oci/zpr/get_configuration.py +230 -0
  205. pulumi_oci/zpr/get_zpr_policies.py +191 -0
  206. pulumi_oci/zpr/get_zpr_policy.py +264 -0
  207. pulumi_oci/zpr/outputs.py +203 -0
  208. pulumi_oci/zpr/zpr_policy.py +614 -0
  209. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.13.0.dist-info}/METADATA +1 -1
  210. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.13.0.dist-info}/RECORD +212 -142
  211. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.13.0.dist-info}/WHEEL +1 -1
  212. pulumi_oci/globallydistributeddatabase/_inputs.py +0 -1289
  213. pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +0 -323
  214. pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +0 -191
  215. pulumi_oci/globallydistributeddatabase/get_sharded_database.py +0 -660
  216. pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +0 -191
  217. pulumi_oci/globallydistributeddatabase/outputs.py +0 -2063
  218. pulumi_oci/globallydistributeddatabase/private_endpoint.py +0 -747
  219. pulumi_oci/globallydistributeddatabase/sharded_database.py +0 -1821
  220. {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.13.0.dist-info}/top_level.txt +0 -0
@@ -30,7 +30,7 @@ class ServiceGatewayArgs:
30
30
  route_table_id: Optional[pulumi.Input[str]] = None):
31
31
  """
32
32
  The set of arguments for constructing a ServiceGateway resource.
33
- :param pulumi.Input[str] compartment_id: (Updatable) The [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to contain the service gateway.
33
+ :param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to contain the service gateway.
34
34
  :param pulumi.Input[Sequence[pulumi.Input['ServiceGatewayServiceArgs']]] services: (Updatable) List of the OCIDs of the [Service](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Service/) objects to enable for the service gateway. This list can be empty if you don't want to enable any `Service` objects when you create the gateway. You can enable a `Service` object later by using either [AttachServiceId](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/ServiceGateway/AttachServiceId) or [UpdateServiceGateway](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/ServiceGateway/UpdateServiceGateway).
35
35
 
36
36
  For each enabled `Service`, make sure there's a route rule with the `Service` object's `cidrBlock` as the rule's destination and the service gateway as the rule's target. See [Route Table](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/RouteTable/).
@@ -64,7 +64,7 @@ class ServiceGatewayArgs:
64
64
  @pulumi.getter(name="compartmentId")
65
65
  def compartment_id(self) -> pulumi.Input[str]:
66
66
  """
67
- (Updatable) The [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to contain the service gateway.
67
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to contain the service gateway.
68
68
  """
69
69
  return pulumi.get(self, "compartment_id")
70
70
 
@@ -171,7 +171,7 @@ class _ServiceGatewayState:
171
171
  """
172
172
  Input properties used for looking up and filtering ServiceGateway resources.
173
173
  :param pulumi.Input[bool] block_traffic: Whether the service gateway blocks all traffic through it. The default is `false`. When this is `true`, traffic is not routed to any services, regardless of route rules. Example: `true`
174
- :param pulumi.Input[str] compartment_id: (Updatable) The [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to contain the service gateway.
174
+ :param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to contain the service gateway.
175
175
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
176
176
  :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
177
177
  :param pulumi.Input[Mapping[str, pulumi.Input[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"}`
@@ -228,7 +228,7 @@ class _ServiceGatewayState:
228
228
  @pulumi.getter(name="compartmentId")
229
229
  def compartment_id(self) -> Optional[pulumi.Input[str]]:
230
230
  """
231
- (Updatable) The [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to contain the service gateway.
231
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to contain the service gateway.
232
232
  """
233
233
  return pulumi.get(self, "compartment_id")
234
234
 
@@ -369,6 +369,9 @@ class ServiceGateway(pulumi.CustomResource):
369
369
  You may optionally specify a *display name* for the service gateway, otherwise a default is provided.
370
370
  It does not have to be unique, and you can change it. Avoid entering confidential information.
371
371
 
372
+ Use the [ListServices](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Service/ListServices) operation to find service CIDR labels
373
+ available in the region.
374
+
372
375
  ## Example Usage
373
376
 
374
377
  ```python
@@ -401,7 +404,7 @@ class ServiceGateway(pulumi.CustomResource):
401
404
 
402
405
  :param str resource_name: The name of the resource.
403
406
  :param pulumi.ResourceOptions opts: Options for the resource.
404
- :param pulumi.Input[str] compartment_id: (Updatable) The [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to contain the service gateway.
407
+ :param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to contain the service gateway.
405
408
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
406
409
  :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
407
410
  :param pulumi.Input[Mapping[str, pulumi.Input[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"}`
@@ -438,6 +441,9 @@ class ServiceGateway(pulumi.CustomResource):
438
441
  You may optionally specify a *display name* for the service gateway, otherwise a default is provided.
439
442
  It does not have to be unique, and you can change it. Avoid entering confidential information.
440
443
 
444
+ Use the [ListServices](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Service/ListServices) operation to find service CIDR labels
445
+ available in the region.
446
+
441
447
  ## Example Usage
442
448
 
443
449
  ```python
@@ -543,7 +549,7 @@ class ServiceGateway(pulumi.CustomResource):
543
549
  :param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
544
550
  :param pulumi.ResourceOptions opts: Options for the resource.
545
551
  :param pulumi.Input[bool] block_traffic: Whether the service gateway blocks all traffic through it. The default is `false`. When this is `true`, traffic is not routed to any services, regardless of route rules. Example: `true`
546
- :param pulumi.Input[str] compartment_id: (Updatable) The [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to contain the service gateway.
552
+ :param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to contain the service gateway.
547
553
  :param pulumi.Input[Mapping[str, pulumi.Input[str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
548
554
  :param pulumi.Input[str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
549
555
  :param pulumi.Input[Mapping[str, pulumi.Input[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"}`
@@ -591,7 +597,7 @@ class ServiceGateway(pulumi.CustomResource):
591
597
  @pulumi.getter(name="compartmentId")
592
598
  def compartment_id(self) -> pulumi.Output[str]:
593
599
  """
594
- (Updatable) The [OCID] (https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to contain the service gateway.
600
+ (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to contain the service gateway.
595
601
  """
596
602
  return pulumi.get(self, "compartment_id")
597
603
 
pulumi_oci/core/vcn.py CHANGED
@@ -31,7 +31,8 @@ class VcnArgs:
31
31
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
32
32
  ipv6private_cidr_blocks: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
33
33
  is_ipv6enabled: Optional[pulumi.Input[bool]] = None,
34
- is_oracle_gua_allocation_enabled: Optional[pulumi.Input[bool]] = None):
34
+ is_oracle_gua_allocation_enabled: Optional[pulumi.Input[bool]] = None,
35
+ security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
35
36
  """
36
37
  The set of arguments for constructing a Vcn resource.
37
38
  :param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to contain the VCN.
@@ -58,8 +59,8 @@ class VcnArgs:
58
59
 
59
60
  **Important:** Do *not* specify a value for `ipv6cidr_block`. Use this parameter instead.
60
61
  :param pulumi.Input[bool] is_ipv6enabled: Whether IPv6 is enabled for the VCN. Default is `false`. If enabled, Oracle will assign the VCN a IPv6 /56 CIDR block. You may skip having Oracle allocate the VCN a IPv6 /56 CIDR block by setting isOracleGuaAllocationEnabled to `false`. For important details about IPv6 addressing in a VCN, see [IPv6 Addresses](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/ipv6.htm). Example: `true`
61
- :param pulumi.Input[bool] is_oracle_gua_allocation_enabled: Specifies whether to skip Oracle allocated IPv6 GUA. By default, Oracle will allocate one GUA of /56 size for an IPv6 enabled VCN.
62
-
62
+ :param pulumi.Input[bool] is_oracle_gua_allocation_enabled: Specifies whether to skip Oracle allocated IPv6 GUA. By default, Oracle will allocate one GUA of /56 size for an IPv6 enabled VCN.
63
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR.MaxEgressCount.value": "42", "Oracle-DataSecurity-ZPR.MaxEgressCount.mode": "audit"}`
63
64
 
64
65
  ** IMPORTANT **
65
66
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
@@ -85,6 +86,8 @@ class VcnArgs:
85
86
  pulumi.set(__self__, "is_ipv6enabled", is_ipv6enabled)
86
87
  if is_oracle_gua_allocation_enabled is not None:
87
88
  pulumi.set(__self__, "is_oracle_gua_allocation_enabled", is_oracle_gua_allocation_enabled)
89
+ if security_attributes is not None:
90
+ pulumi.set(__self__, "security_attributes", security_attributes)
88
91
 
89
92
  @property
90
93
  @pulumi.getter(name="compartmentId")
@@ -224,11 +227,7 @@ class VcnArgs:
224
227
  @pulumi.getter(name="isOracleGuaAllocationEnabled")
225
228
  def is_oracle_gua_allocation_enabled(self) -> Optional[pulumi.Input[bool]]:
226
229
  """
227
- Specifies whether to skip Oracle allocated IPv6 GUA. By default, Oracle will allocate one GUA of /56 size for an IPv6 enabled VCN.
228
-
229
-
230
- ** IMPORTANT **
231
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
230
+ Specifies whether to skip Oracle allocated IPv6 GUA. By default, Oracle will allocate one GUA of /56 size for an IPv6 enabled VCN.
232
231
  """
233
232
  return pulumi.get(self, "is_oracle_gua_allocation_enabled")
234
233
 
@@ -236,6 +235,21 @@ class VcnArgs:
236
235
  def is_oracle_gua_allocation_enabled(self, value: Optional[pulumi.Input[bool]]):
237
236
  pulumi.set(self, "is_oracle_gua_allocation_enabled", value)
238
237
 
238
+ @property
239
+ @pulumi.getter(name="securityAttributes")
240
+ def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
241
+ """
242
+ (Updatable) Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR.MaxEgressCount.value": "42", "Oracle-DataSecurity-ZPR.MaxEgressCount.mode": "audit"}`
243
+
244
+ ** IMPORTANT **
245
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
246
+ """
247
+ return pulumi.get(self, "security_attributes")
248
+
249
+ @security_attributes.setter
250
+ def security_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
251
+ pulumi.set(self, "security_attributes", value)
252
+
239
253
 
240
254
  @pulumi.input_type
241
255
  class _VcnState:
@@ -256,6 +270,7 @@ class _VcnState:
256
270
  ipv6private_cidr_blocks: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
257
271
  is_ipv6enabled: Optional[pulumi.Input[bool]] = None,
258
272
  is_oracle_gua_allocation_enabled: Optional[pulumi.Input[bool]] = None,
273
+ security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
259
274
  state: Optional[pulumi.Input[str]] = None,
260
275
  time_created: Optional[pulumi.Input[str]] = None,
261
276
  vcn_domain_name: Optional[pulumi.Input[str]] = None):
@@ -290,8 +305,8 @@ class _VcnState:
290
305
 
291
306
  **Important:** Do *not* specify a value for `ipv6cidr_block`. Use this parameter instead.
292
307
  :param pulumi.Input[bool] is_ipv6enabled: Whether IPv6 is enabled for the VCN. Default is `false`. If enabled, Oracle will assign the VCN a IPv6 /56 CIDR block. You may skip having Oracle allocate the VCN a IPv6 /56 CIDR block by setting isOracleGuaAllocationEnabled to `false`. For important details about IPv6 addressing in a VCN, see [IPv6 Addresses](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/ipv6.htm). Example: `true`
293
- :param pulumi.Input[bool] is_oracle_gua_allocation_enabled: Specifies whether to skip Oracle allocated IPv6 GUA. By default, Oracle will allocate one GUA of /56 size for an IPv6 enabled VCN.
294
-
308
+ :param pulumi.Input[bool] is_oracle_gua_allocation_enabled: Specifies whether to skip Oracle allocated IPv6 GUA. By default, Oracle will allocate one GUA of /56 size for an IPv6 enabled VCN.
309
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR.MaxEgressCount.value": "42", "Oracle-DataSecurity-ZPR.MaxEgressCount.mode": "audit"}`
295
310
 
296
311
  ** IMPORTANT **
297
312
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
@@ -331,6 +346,8 @@ class _VcnState:
331
346
  pulumi.set(__self__, "is_ipv6enabled", is_ipv6enabled)
332
347
  if is_oracle_gua_allocation_enabled is not None:
333
348
  pulumi.set(__self__, "is_oracle_gua_allocation_enabled", is_oracle_gua_allocation_enabled)
349
+ if security_attributes is not None:
350
+ pulumi.set(__self__, "security_attributes", security_attributes)
334
351
  if state is not None:
335
352
  pulumi.set(__self__, "state", state)
336
353
  if time_created is not None:
@@ -536,11 +553,7 @@ class _VcnState:
536
553
  @pulumi.getter(name="isOracleGuaAllocationEnabled")
537
554
  def is_oracle_gua_allocation_enabled(self) -> Optional[pulumi.Input[bool]]:
538
555
  """
539
- Specifies whether to skip Oracle allocated IPv6 GUA. By default, Oracle will allocate one GUA of /56 size for an IPv6 enabled VCN.
540
-
541
-
542
- ** IMPORTANT **
543
- Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
556
+ Specifies whether to skip Oracle allocated IPv6 GUA. By default, Oracle will allocate one GUA of /56 size for an IPv6 enabled VCN.
544
557
  """
545
558
  return pulumi.get(self, "is_oracle_gua_allocation_enabled")
546
559
 
@@ -548,6 +561,21 @@ class _VcnState:
548
561
  def is_oracle_gua_allocation_enabled(self, value: Optional[pulumi.Input[bool]]):
549
562
  pulumi.set(self, "is_oracle_gua_allocation_enabled", value)
550
563
 
564
+ @property
565
+ @pulumi.getter(name="securityAttributes")
566
+ def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
567
+ """
568
+ (Updatable) Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR.MaxEgressCount.value": "42", "Oracle-DataSecurity-ZPR.MaxEgressCount.mode": "audit"}`
569
+
570
+ ** IMPORTANT **
571
+ Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
572
+ """
573
+ return pulumi.get(self, "security_attributes")
574
+
575
+ @security_attributes.setter
576
+ def security_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
577
+ pulumi.set(self, "security_attributes", value)
578
+
551
579
  @property
552
580
  @pulumi.getter
553
581
  def state(self) -> Optional[pulumi.Input[str]]:
@@ -601,6 +629,7 @@ class Vcn(pulumi.CustomResource):
601
629
  ipv6private_cidr_blocks: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
602
630
  is_ipv6enabled: Optional[pulumi.Input[bool]] = None,
603
631
  is_oracle_gua_allocation_enabled: Optional[pulumi.Input[bool]] = None,
632
+ security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
604
633
  __props__=None):
605
634
  """
606
635
  This resource provides the Vcn resource in Oracle Cloud Infrastructure Core service.
@@ -670,7 +699,8 @@ class Vcn(pulumi.CustomResource):
670
699
  },
671
700
  ipv6private_cidr_blocks=vcn_ipv6private_cidr_blocks,
672
701
  is_ipv6enabled=vcn_is_ipv6enabled,
673
- is_oracle_gua_allocation_enabled=vcn_is_oracle_gua_allocation_enabled)
702
+ is_oracle_gua_allocation_enabled=vcn_is_oracle_gua_allocation_enabled,
703
+ security_attributes=vcn_security_attributes)
674
704
  ```
675
705
 
676
706
  ## Import
@@ -707,8 +737,8 @@ class Vcn(pulumi.CustomResource):
707
737
 
708
738
  **Important:** Do *not* specify a value for `ipv6cidr_block`. Use this parameter instead.
709
739
  :param pulumi.Input[bool] is_ipv6enabled: Whether IPv6 is enabled for the VCN. Default is `false`. If enabled, Oracle will assign the VCN a IPv6 /56 CIDR block. You may skip having Oracle allocate the VCN a IPv6 /56 CIDR block by setting isOracleGuaAllocationEnabled to `false`. For important details about IPv6 addressing in a VCN, see [IPv6 Addresses](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/ipv6.htm). Example: `true`
710
- :param pulumi.Input[bool] is_oracle_gua_allocation_enabled: Specifies whether to skip Oracle allocated IPv6 GUA. By default, Oracle will allocate one GUA of /56 size for an IPv6 enabled VCN.
711
-
740
+ :param pulumi.Input[bool] is_oracle_gua_allocation_enabled: Specifies whether to skip Oracle allocated IPv6 GUA. By default, Oracle will allocate one GUA of /56 size for an IPv6 enabled VCN.
741
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR.MaxEgressCount.value": "42", "Oracle-DataSecurity-ZPR.MaxEgressCount.mode": "audit"}`
712
742
 
713
743
  ** IMPORTANT **
714
744
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
@@ -787,7 +817,8 @@ class Vcn(pulumi.CustomResource):
787
817
  },
788
818
  ipv6private_cidr_blocks=vcn_ipv6private_cidr_blocks,
789
819
  is_ipv6enabled=vcn_is_ipv6enabled,
790
- is_oracle_gua_allocation_enabled=vcn_is_oracle_gua_allocation_enabled)
820
+ is_oracle_gua_allocation_enabled=vcn_is_oracle_gua_allocation_enabled,
821
+ security_attributes=vcn_security_attributes)
791
822
  ```
792
823
 
793
824
  ## Import
@@ -824,6 +855,7 @@ class Vcn(pulumi.CustomResource):
824
855
  ipv6private_cidr_blocks: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
825
856
  is_ipv6enabled: Optional[pulumi.Input[bool]] = None,
826
857
  is_oracle_gua_allocation_enabled: Optional[pulumi.Input[bool]] = None,
858
+ security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
827
859
  __props__=None):
828
860
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
829
861
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -846,6 +878,7 @@ class Vcn(pulumi.CustomResource):
846
878
  __props__.__dict__["ipv6private_cidr_blocks"] = ipv6private_cidr_blocks
847
879
  __props__.__dict__["is_ipv6enabled"] = is_ipv6enabled
848
880
  __props__.__dict__["is_oracle_gua_allocation_enabled"] = is_oracle_gua_allocation_enabled
881
+ __props__.__dict__["security_attributes"] = security_attributes
849
882
  __props__.__dict__["byoipv6cidr_blocks"] = None
850
883
  __props__.__dict__["default_dhcp_options_id"] = None
851
884
  __props__.__dict__["default_route_table_id"] = None
@@ -880,6 +913,7 @@ class Vcn(pulumi.CustomResource):
880
913
  ipv6private_cidr_blocks: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
881
914
  is_ipv6enabled: Optional[pulumi.Input[bool]] = None,
882
915
  is_oracle_gua_allocation_enabled: Optional[pulumi.Input[bool]] = None,
916
+ security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
883
917
  state: Optional[pulumi.Input[str]] = None,
884
918
  time_created: Optional[pulumi.Input[str]] = None,
885
919
  vcn_domain_name: Optional[pulumi.Input[str]] = None) -> 'Vcn':
@@ -919,8 +953,8 @@ class Vcn(pulumi.CustomResource):
919
953
 
920
954
  **Important:** Do *not* specify a value for `ipv6cidr_block`. Use this parameter instead.
921
955
  :param pulumi.Input[bool] is_ipv6enabled: Whether IPv6 is enabled for the VCN. Default is `false`. If enabled, Oracle will assign the VCN a IPv6 /56 CIDR block. You may skip having Oracle allocate the VCN a IPv6 /56 CIDR block by setting isOracleGuaAllocationEnabled to `false`. For important details about IPv6 addressing in a VCN, see [IPv6 Addresses](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/ipv6.htm). Example: `true`
922
- :param pulumi.Input[bool] is_oracle_gua_allocation_enabled: Specifies whether to skip Oracle allocated IPv6 GUA. By default, Oracle will allocate one GUA of /56 size for an IPv6 enabled VCN.
923
-
956
+ :param pulumi.Input[bool] is_oracle_gua_allocation_enabled: Specifies whether to skip Oracle allocated IPv6 GUA. By default, Oracle will allocate one GUA of /56 size for an IPv6 enabled VCN.
957
+ :param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR.MaxEgressCount.value": "42", "Oracle-DataSecurity-ZPR.MaxEgressCount.mode": "audit"}`
924
958
 
925
959
  ** IMPORTANT **
926
960
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
@@ -948,6 +982,7 @@ class Vcn(pulumi.CustomResource):
948
982
  __props__.__dict__["ipv6private_cidr_blocks"] = ipv6private_cidr_blocks
949
983
  __props__.__dict__["is_ipv6enabled"] = is_ipv6enabled
950
984
  __props__.__dict__["is_oracle_gua_allocation_enabled"] = is_oracle_gua_allocation_enabled
985
+ __props__.__dict__["security_attributes"] = security_attributes
951
986
  __props__.__dict__["state"] = state
952
987
  __props__.__dict__["time_created"] = time_created
953
988
  __props__.__dict__["vcn_domain_name"] = vcn_domain_name
@@ -1091,13 +1126,20 @@ class Vcn(pulumi.CustomResource):
1091
1126
  @pulumi.getter(name="isOracleGuaAllocationEnabled")
1092
1127
  def is_oracle_gua_allocation_enabled(self) -> pulumi.Output[bool]:
1093
1128
  """
1094
- Specifies whether to skip Oracle allocated IPv6 GUA. By default, Oracle will allocate one GUA of /56 size for an IPv6 enabled VCN.
1129
+ Specifies whether to skip Oracle allocated IPv6 GUA. By default, Oracle will allocate one GUA of /56 size for an IPv6 enabled VCN.
1130
+ """
1131
+ return pulumi.get(self, "is_oracle_gua_allocation_enabled")
1095
1132
 
1133
+ @property
1134
+ @pulumi.getter(name="securityAttributes")
1135
+ def security_attributes(self) -> pulumi.Output[Mapping[str, str]]:
1136
+ """
1137
+ (Updatable) Security Attributes for this resource. This is unique to ZPR, and helps identify which resources are allowed to be accessed by what permission controls. Example: `{"Oracle-DataSecurity-ZPR.MaxEgressCount.value": "42", "Oracle-DataSecurity-ZPR.MaxEgressCount.mode": "audit"}`
1096
1138
 
1097
1139
  ** IMPORTANT **
1098
1140
  Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
1099
1141
  """
1100
- return pulumi.get(self, "is_oracle_gua_allocation_enabled")
1142
+ return pulumi.get(self, "security_attributes")
1101
1143
 
1102
1144
  @property
1103
1145
  @pulumi.getter
@@ -31,7 +31,8 @@ class VirtualNetworkArgs:
31
31
  freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
32
32
  ipv6private_cidr_blocks: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
33
33
  is_ipv6enabled: Optional[pulumi.Input[bool]] = None,
34
- is_oracle_gua_allocation_enabled: Optional[pulumi.Input[bool]] = None):
34
+ is_oracle_gua_allocation_enabled: Optional[pulumi.Input[bool]] = None,
35
+ security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
35
36
  """
36
37
  The set of arguments for constructing a VirtualNetwork resource.
37
38
  """
@@ -56,6 +57,8 @@ class VirtualNetworkArgs:
56
57
  pulumi.set(__self__, "is_ipv6enabled", is_ipv6enabled)
57
58
  if is_oracle_gua_allocation_enabled is not None:
58
59
  pulumi.set(__self__, "is_oracle_gua_allocation_enabled", is_oracle_gua_allocation_enabled)
60
+ if security_attributes is not None:
61
+ pulumi.set(__self__, "security_attributes", security_attributes)
59
62
 
60
63
  @property
61
64
  @pulumi.getter(name="compartmentId")
@@ -156,6 +159,15 @@ class VirtualNetworkArgs:
156
159
  def is_oracle_gua_allocation_enabled(self, value: Optional[pulumi.Input[bool]]):
157
160
  pulumi.set(self, "is_oracle_gua_allocation_enabled", value)
158
161
 
162
+ @property
163
+ @pulumi.getter(name="securityAttributes")
164
+ def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
165
+ return pulumi.get(self, "security_attributes")
166
+
167
+ @security_attributes.setter
168
+ def security_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
169
+ pulumi.set(self, "security_attributes", value)
170
+
159
171
 
160
172
  @pulumi.input_type
161
173
  class _VirtualNetworkState:
@@ -176,6 +188,7 @@ class _VirtualNetworkState:
176
188
  ipv6private_cidr_blocks: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
177
189
  is_ipv6enabled: Optional[pulumi.Input[bool]] = None,
178
190
  is_oracle_gua_allocation_enabled: Optional[pulumi.Input[bool]] = None,
191
+ security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
179
192
  state: Optional[pulumi.Input[str]] = None,
180
193
  time_created: Optional[pulumi.Input[str]] = None,
181
194
  vcn_domain_name: Optional[pulumi.Input[str]] = None):
@@ -214,6 +227,8 @@ class _VirtualNetworkState:
214
227
  pulumi.set(__self__, "is_ipv6enabled", is_ipv6enabled)
215
228
  if is_oracle_gua_allocation_enabled is not None:
216
229
  pulumi.set(__self__, "is_oracle_gua_allocation_enabled", is_oracle_gua_allocation_enabled)
230
+ if security_attributes is not None:
231
+ pulumi.set(__self__, "security_attributes", security_attributes)
217
232
  if state is not None:
218
233
  pulumi.set(__self__, "state", state)
219
234
  if time_created is not None:
@@ -365,6 +380,15 @@ class _VirtualNetworkState:
365
380
  def is_oracle_gua_allocation_enabled(self, value: Optional[pulumi.Input[bool]]):
366
381
  pulumi.set(self, "is_oracle_gua_allocation_enabled", value)
367
382
 
383
+ @property
384
+ @pulumi.getter(name="securityAttributes")
385
+ def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
386
+ return pulumi.get(self, "security_attributes")
387
+
388
+ @security_attributes.setter
389
+ def security_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
390
+ pulumi.set(self, "security_attributes", value)
391
+
368
392
  @property
369
393
  @pulumi.getter
370
394
  def state(self) -> Optional[pulumi.Input[str]]:
@@ -409,6 +433,7 @@ class VirtualNetwork(pulumi.CustomResource):
409
433
  ipv6private_cidr_blocks: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
410
434
  is_ipv6enabled: Optional[pulumi.Input[bool]] = None,
411
435
  is_oracle_gua_allocation_enabled: Optional[pulumi.Input[bool]] = None,
436
+ security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
412
437
  __props__=None):
413
438
  """
414
439
  Create a VirtualNetwork resource with the given unique name, props, and options.
@@ -449,6 +474,7 @@ class VirtualNetwork(pulumi.CustomResource):
449
474
  ipv6private_cidr_blocks: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
450
475
  is_ipv6enabled: Optional[pulumi.Input[bool]] = None,
451
476
  is_oracle_gua_allocation_enabled: Optional[pulumi.Input[bool]] = None,
477
+ security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
452
478
  __props__=None):
453
479
  opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
454
480
  if not isinstance(opts, pulumi.ResourceOptions):
@@ -471,6 +497,7 @@ class VirtualNetwork(pulumi.CustomResource):
471
497
  __props__.__dict__["ipv6private_cidr_blocks"] = ipv6private_cidr_blocks
472
498
  __props__.__dict__["is_ipv6enabled"] = is_ipv6enabled
473
499
  __props__.__dict__["is_oracle_gua_allocation_enabled"] = is_oracle_gua_allocation_enabled
500
+ __props__.__dict__["security_attributes"] = security_attributes
474
501
  __props__.__dict__["byoipv6cidr_blocks"] = None
475
502
  __props__.__dict__["default_dhcp_options_id"] = None
476
503
  __props__.__dict__["default_route_table_id"] = None
@@ -505,6 +532,7 @@ class VirtualNetwork(pulumi.CustomResource):
505
532
  ipv6private_cidr_blocks: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
506
533
  is_ipv6enabled: Optional[pulumi.Input[bool]] = None,
507
534
  is_oracle_gua_allocation_enabled: Optional[pulumi.Input[bool]] = None,
535
+ security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
508
536
  state: Optional[pulumi.Input[str]] = None,
509
537
  time_created: Optional[pulumi.Input[str]] = None,
510
538
  vcn_domain_name: Optional[pulumi.Input[str]] = None) -> 'VirtualNetwork':
@@ -536,6 +564,7 @@ class VirtualNetwork(pulumi.CustomResource):
536
564
  __props__.__dict__["ipv6private_cidr_blocks"] = ipv6private_cidr_blocks
537
565
  __props__.__dict__["is_ipv6enabled"] = is_ipv6enabled
538
566
  __props__.__dict__["is_oracle_gua_allocation_enabled"] = is_oracle_gua_allocation_enabled
567
+ __props__.__dict__["security_attributes"] = security_attributes
539
568
  __props__.__dict__["state"] = state
540
569
  __props__.__dict__["time_created"] = time_created
541
570
  __props__.__dict__["vcn_domain_name"] = vcn_domain_name
@@ -621,6 +650,11 @@ class VirtualNetwork(pulumi.CustomResource):
621
650
  def is_oracle_gua_allocation_enabled(self) -> pulumi.Output[bool]:
622
651
  return pulumi.get(self, "is_oracle_gua_allocation_enabled")
623
652
 
653
+ @property
654
+ @pulumi.getter(name="securityAttributes")
655
+ def security_attributes(self) -> pulumi.Output[Mapping[str, str]]:
656
+ return pulumi.get(self, "security_attributes")
657
+
624
658
  @property
625
659
  @pulumi.getter
626
660
  def state(self) -> pulumi.Output[str]:
@@ -339,6 +339,7 @@ class VnicAttachment(pulumi.CustomResource):
339
339
  "ipv6address_ipv6subnet_cidr_pair_details": vnic_attachment_create_vnic_details_ipv6address_ipv6subnet_cidr_pair_details,
340
340
  "nsg_ids": vnic_attachment_create_vnic_details_nsg_ids,
341
341
  "private_ip": vnic_attachment_create_vnic_details_private_ip,
342
+ "security_attributes": vnic_attachment_create_vnic_details_security_attributes,
342
343
  "skip_source_dest_check": vnic_attachment_create_vnic_details_skip_source_dest_check,
343
344
  "subnet_id": test_subnet["id"],
344
345
  "vlan_id": test_vlan["id"],
@@ -398,6 +399,7 @@ class VnicAttachment(pulumi.CustomResource):
398
399
  "ipv6address_ipv6subnet_cidr_pair_details": vnic_attachment_create_vnic_details_ipv6address_ipv6subnet_cidr_pair_details,
399
400
  "nsg_ids": vnic_attachment_create_vnic_details_nsg_ids,
400
401
  "private_ip": vnic_attachment_create_vnic_details_private_ip,
402
+ "security_attributes": vnic_attachment_create_vnic_details_security_attributes,
401
403
  "skip_source_dest_check": vnic_attachment_create_vnic_details_skip_source_dest_check,
402
404
  "subnet_id": test_subnet["id"],
403
405
  "vlan_id": test_vlan["id"],