pulumi-oci 2.12.0a1728593306__py3-none-any.whl → 2.12.0a1728642710__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +145 -0
- pulumi_oci/analytics/analytics_instance.py +54 -5
- pulumi_oci/analytics/get_analytics_instance.py +18 -4
- pulumi_oci/analytics/outputs.py +12 -1
- pulumi_oci/core/_inputs.py +648 -159
- pulumi_oci/core/cluster_network.py +7 -7
- pulumi_oci/core/get_instance.py +29 -1
- pulumi_oci/core/get_vcn.py +15 -1
- pulumi_oci/core/get_vnic.py +15 -1
- pulumi_oci/core/instance.py +87 -0
- pulumi_oci/core/instance_configuration.py +12 -0
- pulumi_oci/core/ipsec.py +183 -23
- pulumi_oci/core/network_security_group_security_rule.py +2 -2
- pulumi_oci/core/outputs.py +709 -107
- pulumi_oci/core/service_gateway.py +13 -7
- pulumi_oci/core/vcn.py +65 -23
- pulumi_oci/core/virtual_network.py +35 -1
- pulumi_oci/core/vnic_attachment.py +2 -0
- pulumi_oci/database/_inputs.py +905 -27
- pulumi_oci/database/autonomous_database.py +48 -28
- pulumi_oci/database/autonomous_database_backup.py +12 -12
- pulumi_oci/database/autonomous_exadata_infrastructure.py +2 -0
- pulumi_oci/database/autonomous_vm_cluster.py +2 -0
- pulumi_oci/database/backup.py +12 -12
- pulumi_oci/database/cloud_autonomous_vm_cluster.py +2 -0
- pulumi_oci/database/cloud_exadata_infrastructure.py +2 -0
- pulumi_oci/database/cloud_vm_cluster.py +71 -0
- pulumi_oci/database/database.py +15 -15
- pulumi_oci/database/database_upgrade.py +12 -12
- pulumi_oci/database/db_system.py +9 -9
- pulumi_oci/database/exadata_infrastructure.py +2 -0
- pulumi_oci/database/get_autonomous_container_database.py +1 -1
- pulumi_oci/database/get_autonomous_database.py +18 -4
- pulumi_oci/database/get_autonomous_database_backup.py +3 -3
- pulumi_oci/database/get_autonomous_databases.py +88 -5
- pulumi_oci/database/get_cloud_vm_cluster.py +15 -1
- pulumi_oci/database/get_database.py +3 -3
- pulumi_oci/database/get_pluggable_database.py +12 -1
- pulumi_oci/database/get_vm_cluster.py +15 -1
- pulumi_oci/database/outputs.py +1431 -74
- pulumi_oci/database/pluggable_database.py +34 -0
- pulumi_oci/database/vm_cluster.py +71 -0
- pulumi_oci/database/vm_cluster_add_virtual_network.py +28 -0
- pulumi_oci/database/vm_cluster_remove_virtual_machine.py +28 -0
- pulumi_oci/datasafe/__init__.py +12 -0
- pulumi_oci/datasafe/_inputs.py +441 -0
- pulumi_oci/datasafe/get_reports.py +23 -1
- pulumi_oci/datasafe/get_sql_collection.py +392 -0
- pulumi_oci/datasafe/get_sql_collection_analytics.py +309 -0
- pulumi_oci/datasafe/get_sql_collection_log_insights.py +207 -0
- pulumi_oci/datasafe/get_sql_collections.py +364 -0
- pulumi_oci/datasafe/get_sql_firewall_allowed_sql.py +337 -0
- pulumi_oci/datasafe/get_sql_firewall_allowed_sql_analytics.py +250 -0
- pulumi_oci/datasafe/get_sql_firewall_allowed_sqls.py +234 -0
- pulumi_oci/datasafe/get_sql_firewall_policies.py +386 -0
- pulumi_oci/datasafe/get_sql_firewall_policy.py +393 -0
- pulumi_oci/datasafe/get_sql_firewall_policy_analytics.py +305 -0
- pulumi_oci/datasafe/get_sql_firewall_violation_analytics.py +306 -0
- pulumi_oci/datasafe/get_sql_firewall_violations.py +208 -0
- pulumi_oci/datasafe/outputs.py +1808 -2
- pulumi_oci/desktops/_inputs.py +223 -7
- pulumi_oci/desktops/desktop_pool.py +186 -21
- pulumi_oci/desktops/get_desktop_pool.py +47 -5
- pulumi_oci/desktops/outputs.py +480 -19
- pulumi_oci/fleetappsmanagement/__init__.py +43 -0
- pulumi_oci/fleetappsmanagement/_inputs.py +2057 -0
- pulumi_oci/fleetappsmanagement/fleet.py +955 -0
- pulumi_oci/fleetappsmanagement/fleet_credential.py +615 -0
- pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
- pulumi_oci/fleetappsmanagement/fleet_resource.py +851 -0
- pulumi_oci/fleetappsmanagement/get_announcements.py +166 -0
- pulumi_oci/fleetappsmanagement/get_fleet.py +394 -0
- pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +164 -0
- pulumi_oci/fleetappsmanagement/get_fleet_credential.py +273 -0
- pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +240 -0
- pulumi_oci/fleetappsmanagement/get_fleet_products.py +232 -0
- pulumi_oci/fleetappsmanagement/get_fleet_properties.py +218 -0
- pulumi_oci/fleetappsmanagement/get_fleet_property.py +286 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resource.py +398 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resources.py +237 -0
- pulumi_oci/fleetappsmanagement/get_fleet_targets.py +232 -0
- pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
- pulumi_oci/fleetappsmanagement/get_inventory_resources.py +311 -0
- pulumi_oci/fleetappsmanagement/get_maintenance_window.py +365 -0
- pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +199 -0
- pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +123 -0
- pulumi_oci/fleetappsmanagement/get_onboardings.py +177 -0
- pulumi_oci/fleetappsmanagement/get_properties.py +221 -0
- pulumi_oci/fleetappsmanagement/get_property.py +323 -0
- pulumi_oci/fleetappsmanagement/get_runbook.py +377 -0
- pulumi_oci/fleetappsmanagement/get_runbooks.py +284 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +436 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +185 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +262 -0
- pulumi_oci/fleetappsmanagement/get_task_record.py +307 -0
- pulumi_oci/fleetappsmanagement/get_task_records.py +240 -0
- pulumi_oci/fleetappsmanagement/maintenance_window.py +935 -0
- pulumi_oci/fleetappsmanagement/onboarding.py +477 -0
- pulumi_oci/fleetappsmanagement/outputs.py +8128 -0
- pulumi_oci/fleetappsmanagement/property.py +697 -0
- pulumi_oci/fleetappsmanagement/scheduler_definition.py +1035 -0
- pulumi_oci/functions/get_fusion_environment_refresh_activity.py +15 -1
- pulumi_oci/functions/outputs.py +11 -0
- pulumi_oci/fusionapps/_inputs.py +21 -20
- pulumi_oci/fusionapps/fusion_environment.py +2 -2
- pulumi_oci/fusionapps/fusion_environment_admin_user.py +21 -22
- pulumi_oci/fusionapps/fusion_environment_refresh_activity.py +48 -51
- pulumi_oci/fusionapps/outputs.py +11 -10
- pulumi_oci/integration/__init__.py +1 -0
- pulumi_oci/integration/_inputs.py +289 -2
- pulumi_oci/integration/get_integration_instance.py +65 -1
- pulumi_oci/integration/integration_instance.py +172 -0
- pulumi_oci/integration/oracle_managed_custom_endpoint.py +307 -0
- pulumi_oci/integration/outputs.py +587 -19
- pulumi_oci/loadbalancer/_inputs.py +20 -0
- pulumi_oci/loadbalancer/listener.py +4 -2
- pulumi_oci/loadbalancer/outputs.py +16 -2
- pulumi_oci/monitoring/_inputs.py +137 -16
- pulumi_oci/monitoring/alarm_suppression.py +164 -35
- pulumi_oci/monitoring/get_alarm_statuses.py +5 -3
- pulumi_oci/monitoring/get_alarm_suppression.py +33 -3
- pulumi_oci/monitoring/get_alarm_suppressions.py +137 -14
- pulumi_oci/monitoring/outputs.py +291 -18
- pulumi_oci/mysql/mysql_db_system.py +7 -7
- pulumi_oci/objectstorage/__init__.py +3 -0
- pulumi_oci/objectstorage/_inputs.py +97 -0
- pulumi_oci/objectstorage/get_object_versions.py +6 -6
- pulumi_oci/objectstorage/get_objects.py +6 -6
- pulumi_oci/objectstorage/get_private_endpoint.py +263 -0
- pulumi_oci/objectstorage/get_private_endpoint_summaries.py +128 -0
- pulumi_oci/objectstorage/outputs.py +258 -0
- pulumi_oci/objectstorage/private_endpoint.py +630 -0
- pulumi_oci/objectstorage/storage_object.py +7 -7
- pulumi_oci/opsi/_inputs.py +268 -114
- pulumi_oci/opsi/database_insight.py +162 -21
- pulumi_oci/opsi/exadata_insight.py +44 -0
- pulumi_oci/opsi/get_database_insight.py +40 -1
- pulumi_oci/opsi/get_host_insights.py +2 -2
- pulumi_oci/opsi/host_insight.py +0 -48
- pulumi_oci/opsi/outputs.py +405 -109
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/securityattribute/__init__.py +15 -0
- pulumi_oci/securityattribute/_inputs.py +209 -0
- pulumi_oci/securityattribute/get_security_attribute.py +262 -0
- pulumi_oci/securityattribute/get_security_attribute_namespace.py +253 -0
- pulumi_oci/securityattribute/get_security_attribute_namespaces.py +210 -0
- pulumi_oci/securityattribute/get_security_attributes.py +169 -0
- pulumi_oci/securityattribute/outputs.py +466 -0
- pulumi_oci/securityattribute/security_attribute.py +588 -0
- pulumi_oci/securityattribute/security_attribute_namespace.py +609 -0
- pulumi_oci/stackmonitoring/__init__.py +5 -0
- pulumi_oci/stackmonitoring/_inputs.py +330 -0
- pulumi_oci/stackmonitoring/get_maintenance_window.py +254 -0
- pulumi_oci/stackmonitoring/get_maintenance_windows.py +210 -0
- pulumi_oci/stackmonitoring/maintenance_window.py +551 -0
- pulumi_oci/stackmonitoring/maintenance_windows_retry_failed_operation.py +217 -0
- pulumi_oci/stackmonitoring/maintenance_windows_stop.py +217 -0
- pulumi_oci/stackmonitoring/outputs.py +603 -0
- pulumi_oci/zpr/__init__.py +14 -0
- pulumi_oci/zpr/_inputs.py +79 -0
- pulumi_oci/zpr/configuration.py +516 -0
- pulumi_oci/zpr/get_configuration.py +230 -0
- pulumi_oci/zpr/get_zpr_policies.py +191 -0
- pulumi_oci/zpr/get_zpr_policy.py +264 -0
- pulumi_oci/zpr/outputs.py +203 -0
- pulumi_oci/zpr/zpr_policy.py +614 -0
- {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/METADATA +1 -1
- {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/RECORD +170 -95
- {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.dist-info}/WHEEL +0 -0
- {pulumi_oci-2.12.0a1728593306.dist-info → pulumi_oci-2.12.0a1728642710.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]
|
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]
|
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]
|
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]
|
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]
|
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]
|
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]
|
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, "
|
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"],
|