pulumi-oci 2.17.0a1731653778__py3-none-any.whl → 2.18.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.
- pulumi_oci/__init__.py +40 -0
- pulumi_oci/core/_inputs.py +3 -3
- pulumi_oci/core/compute_capacity_reservation.py +7 -7
- pulumi_oci/core/get_boot_volume.py +1 -1
- pulumi_oci/core/get_volume.py +1 -1
- pulumi_oci/core/instance_pool.py +7 -7
- pulumi_oci/core/outputs.py +46 -46
- pulumi_oci/database/_inputs.py +20 -0
- pulumi_oci/database/autonomous_container_database.py +0 -7
- pulumi_oci/database/autonomous_database.py +7 -7
- pulumi_oci/database/get_autonomous_database.py +1 -1
- pulumi_oci/database/outputs.py +27 -4
- pulumi_oci/generativeai/__init__.py +16 -0
- pulumi_oci/generativeai/_inputs.py +1090 -0
- pulumi_oci/generativeai/agent_agent.py +665 -0
- pulumi_oci/generativeai/agent_agent_endpoint.py +888 -0
- pulumi_oci/generativeai/agent_data_ingestion_job.py +647 -0
- pulumi_oci/generativeai/agent_data_source.py +697 -0
- pulumi_oci/generativeai/agent_knowledge_base.py +659 -0
- pulumi_oci/generativeai/get_agent_agent.py +285 -0
- pulumi_oci/generativeai/get_agent_agent_endpoint.py +342 -0
- pulumi_oci/generativeai/get_agent_agent_endpoints.py +217 -0
- pulumi_oci/generativeai/get_agent_agents.py +195 -0
- pulumi_oci/generativeai/get_agent_data_ingestion_job.py +286 -0
- pulumi_oci/generativeai/get_agent_data_ingestion_job_log_content.py +117 -0
- pulumi_oci/generativeai/get_agent_data_ingestion_jobs.py +217 -0
- pulumi_oci/generativeai/get_agent_data_source.py +286 -0
- pulumi_oci/generativeai/get_agent_data_sources.py +217 -0
- pulumi_oci/generativeai/get_agent_knowledge_base.py +272 -0
- pulumi_oci/generativeai/get_agent_knowledge_bases.py +195 -0
- pulumi_oci/generativeai/outputs.py +2840 -268
- pulumi_oci/goldengate/connection.py +1065 -78
- pulumi_oci/goldengate/deployment.py +7 -7
- pulumi_oci/goldengate/deployment_backup.py +49 -0
- pulumi_oci/goldengate/get_connection.py +288 -7
- pulumi_oci/goldengate/get_deployment.py +1 -1
- pulumi_oci/goldengate/get_deployment_backup.py +15 -1
- pulumi_oci/goldengate/outputs.py +240 -3
- pulumi_oci/psql/_inputs.py +20 -0
- pulumi_oci/psql/db_system.py +2 -0
- pulumi_oci/psql/get_db_system_connection_detail.py +18 -4
- pulumi_oci/psql/outputs.py +77 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.17.0a1731653778.dist-info → pulumi_oci-2.18.0.dist-info}/METADATA +5 -5
- {pulumi_oci-2.17.0a1731653778.dist-info → pulumi_oci-2.18.0.dist-info}/RECORD +47 -31
- {pulumi_oci-2.17.0a1731653778.dist-info → pulumi_oci-2.18.0.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.17.0a1731653778.dist-info → pulumi_oci-2.18.0.dist-info}/top_level.txt +0 -0
pulumi_oci/__init__.py
CHANGED
@@ -3804,6 +3804,46 @@ _utilities.register(
|
|
3804
3804
|
"oci:FusionApps/fusionEnvironmentServiceAttachment:FusionEnvironmentServiceAttachment": "FusionEnvironmentServiceAttachment"
|
3805
3805
|
}
|
3806
3806
|
},
|
3807
|
+
{
|
3808
|
+
"pkg": "oci",
|
3809
|
+
"mod": "GenerativeAi/agentAgent",
|
3810
|
+
"fqn": "pulumi_oci.generativeai",
|
3811
|
+
"classes": {
|
3812
|
+
"oci:GenerativeAi/agentAgent:AgentAgent": "AgentAgent"
|
3813
|
+
}
|
3814
|
+
},
|
3815
|
+
{
|
3816
|
+
"pkg": "oci",
|
3817
|
+
"mod": "GenerativeAi/agentAgentEndpoint",
|
3818
|
+
"fqn": "pulumi_oci.generativeai",
|
3819
|
+
"classes": {
|
3820
|
+
"oci:GenerativeAi/agentAgentEndpoint:AgentAgentEndpoint": "AgentAgentEndpoint"
|
3821
|
+
}
|
3822
|
+
},
|
3823
|
+
{
|
3824
|
+
"pkg": "oci",
|
3825
|
+
"mod": "GenerativeAi/agentDataIngestionJob",
|
3826
|
+
"fqn": "pulumi_oci.generativeai",
|
3827
|
+
"classes": {
|
3828
|
+
"oci:GenerativeAi/agentDataIngestionJob:AgentDataIngestionJob": "AgentDataIngestionJob"
|
3829
|
+
}
|
3830
|
+
},
|
3831
|
+
{
|
3832
|
+
"pkg": "oci",
|
3833
|
+
"mod": "GenerativeAi/agentDataSource",
|
3834
|
+
"fqn": "pulumi_oci.generativeai",
|
3835
|
+
"classes": {
|
3836
|
+
"oci:GenerativeAi/agentDataSource:AgentDataSource": "AgentDataSource"
|
3837
|
+
}
|
3838
|
+
},
|
3839
|
+
{
|
3840
|
+
"pkg": "oci",
|
3841
|
+
"mod": "GenerativeAi/agentKnowledgeBase",
|
3842
|
+
"fqn": "pulumi_oci.generativeai",
|
3843
|
+
"classes": {
|
3844
|
+
"oci:GenerativeAi/agentKnowledgeBase:AgentKnowledgeBase": "AgentKnowledgeBase"
|
3845
|
+
}
|
3846
|
+
},
|
3807
3847
|
{
|
3808
3848
|
"pkg": "oci",
|
3809
3849
|
"mod": "GenerativeAi/dedicatedAiCluster",
|
pulumi_oci/core/_inputs.py
CHANGED
@@ -12693,7 +12693,7 @@ if not MYPY:
|
|
12693
12693
|
"""
|
12694
12694
|
security_attributes: NotRequired[pulumi.Input[Mapping[str, pulumi.Input[str]]]]
|
12695
12695
|
"""
|
12696
|
-
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
|
12696
|
+
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"}`
|
12697
12697
|
"""
|
12698
12698
|
skip_source_dest_check: NotRequired[pulumi.Input[bool]]
|
12699
12699
|
"""
|
@@ -12769,7 +12769,7 @@ class InstanceCreateVnicDetailsArgs:
|
|
12769
12769
|
If you specify a `vlanId`, the `privateIp` cannot be specified. See [Vlan](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vlan).
|
12770
12770
|
|
12771
12771
|
Example: `10.0.3.3`
|
12772
|
-
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: 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
|
12772
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: 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"}`
|
12773
12773
|
:param pulumi.Input[bool] skip_source_dest_check: (Updatable) Whether the source/destination check is disabled on the VNIC. Defaults to `false`, which means the check is performed. For information about why you would skip the source/destination check, see [Using a Private IP as a Route Target](https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/managingroutetables.htm#privateip).
|
12774
12774
|
|
12775
12775
|
If you specify a `vlanId`, the `skipSourceDestCheck` cannot be specified because the source/destination check is always disabled for VNICs in a VLAN. See [Vlan](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vlan).
|
@@ -12958,7 +12958,7 @@ class InstanceCreateVnicDetailsArgs:
|
|
12958
12958
|
@pulumi.getter(name="securityAttributes")
|
12959
12959
|
def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
12960
12960
|
"""
|
12961
|
-
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
|
12961
|
+
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"}`
|
12962
12962
|
"""
|
12963
12963
|
return pulumi.get(self, "security_attributes")
|
12964
12964
|
|
@@ -32,7 +32,7 @@ class ComputeCapacityReservationArgs:
|
|
32
32
|
The set of arguments for constructing a ComputeCapacityReservation resource.
|
33
33
|
:param pulumi.Input[str] availability_domain: The availability domain of this compute capacity reservation. Example: `Uocm:PHX-AD-1`
|
34
34
|
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment containing the capacity reservation.
|
35
|
-
:param pulumi.Input[Sequence[pulumi.Input['ComputeCapacityReservationInstanceReservationConfigArgs']]] instance_reservation_configs: (Updatable) The capacity configurations for the capacity reservation.
|
35
|
+
:param pulumi.Input[Sequence[pulumi.Input['ComputeCapacityReservationInstanceReservationConfigArgs']]] instance_reservation_configs: (Updatable) The capacity configurations for the capacity reservation. (Note: From 6.17.0 instance_reservation_configs field in Core.ComputeCapacityReservation is changed from TypeList to TypeSet - to avoid unnecessary updates. Also, configs cant by accessed by index)
|
36
36
|
|
37
37
|
To use the reservation for the desired shape, specify the shape, count, and optionally the fault domain where you want this configuration.
|
38
38
|
: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"}`
|
@@ -84,7 +84,7 @@ class ComputeCapacityReservationArgs:
|
|
84
84
|
@pulumi.getter(name="instanceReservationConfigs")
|
85
85
|
def instance_reservation_configs(self) -> pulumi.Input[Sequence[pulumi.Input['ComputeCapacityReservationInstanceReservationConfigArgs']]]:
|
86
86
|
"""
|
87
|
-
(Updatable) The capacity configurations for the capacity reservation.
|
87
|
+
(Updatable) The capacity configurations for the capacity reservation. (Note: From 6.17.0 instance_reservation_configs field in Core.ComputeCapacityReservation is changed from TypeList to TypeSet - to avoid unnecessary updates. Also, configs cant by accessed by index)
|
88
88
|
|
89
89
|
To use the reservation for the desired shape, specify the shape, count, and optionally the fault domain where you want this configuration.
|
90
90
|
"""
|
@@ -169,7 +169,7 @@ class _ComputeCapacityReservationState:
|
|
169
169
|
: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"}`
|
170
170
|
: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.
|
171
171
|
: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"}`
|
172
|
-
:param pulumi.Input[Sequence[pulumi.Input['ComputeCapacityReservationInstanceReservationConfigArgs']]] instance_reservation_configs: (Updatable) The capacity configurations for the capacity reservation.
|
172
|
+
:param pulumi.Input[Sequence[pulumi.Input['ComputeCapacityReservationInstanceReservationConfigArgs']]] instance_reservation_configs: (Updatable) The capacity configurations for the capacity reservation. (Note: From 6.17.0 instance_reservation_configs field in Core.ComputeCapacityReservation is changed from TypeList to TypeSet - to avoid unnecessary updates. Also, configs cant by accessed by index)
|
173
173
|
|
174
174
|
To use the reservation for the desired shape, specify the shape, count, and optionally the fault domain where you want this configuration.
|
175
175
|
:param pulumi.Input[bool] is_default_reservation: (Updatable) Whether this capacity reservation is the default. For more information, see [Capacity Reservations](https://docs.cloud.oracle.com/iaas/Content/Compute/Tasks/reserve-capacity.htm#default).
|
@@ -272,7 +272,7 @@ class _ComputeCapacityReservationState:
|
|
272
272
|
@pulumi.getter(name="instanceReservationConfigs")
|
273
273
|
def instance_reservation_configs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ComputeCapacityReservationInstanceReservationConfigArgs']]]]:
|
274
274
|
"""
|
275
|
-
(Updatable) The capacity configurations for the capacity reservation.
|
275
|
+
(Updatable) The capacity configurations for the capacity reservation. (Note: From 6.17.0 instance_reservation_configs field in Core.ComputeCapacityReservation is changed from TypeList to TypeSet - to avoid unnecessary updates. Also, configs cant by accessed by index)
|
276
276
|
|
277
277
|
To use the reservation for the desired shape, specify the shape, count, and optionally the fault domain where you want this configuration.
|
278
278
|
"""
|
@@ -429,7 +429,7 @@ class ComputeCapacityReservation(pulumi.CustomResource):
|
|
429
429
|
: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"}`
|
430
430
|
: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.
|
431
431
|
: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"}`
|
432
|
-
:param pulumi.Input[Sequence[pulumi.Input[Union['ComputeCapacityReservationInstanceReservationConfigArgs', 'ComputeCapacityReservationInstanceReservationConfigArgsDict']]]] instance_reservation_configs: (Updatable) The capacity configurations for the capacity reservation.
|
432
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['ComputeCapacityReservationInstanceReservationConfigArgs', 'ComputeCapacityReservationInstanceReservationConfigArgsDict']]]] instance_reservation_configs: (Updatable) The capacity configurations for the capacity reservation. (Note: From 6.17.0 instance_reservation_configs field in Core.ComputeCapacityReservation is changed from TypeList to TypeSet - to avoid unnecessary updates. Also, configs cant by accessed by index)
|
433
433
|
|
434
434
|
To use the reservation for the desired shape, specify the shape, count, and optionally the fault domain where you want this configuration.
|
435
435
|
:param pulumi.Input[bool] is_default_reservation: (Updatable) Whether this capacity reservation is the default. For more information, see [Capacity Reservations](https://docs.cloud.oracle.com/iaas/Content/Compute/Tasks/reserve-capacity.htm#default).
|
@@ -577,7 +577,7 @@ class ComputeCapacityReservation(pulumi.CustomResource):
|
|
577
577
|
: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"}`
|
578
578
|
: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.
|
579
579
|
: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"}`
|
580
|
-
:param pulumi.Input[Sequence[pulumi.Input[Union['ComputeCapacityReservationInstanceReservationConfigArgs', 'ComputeCapacityReservationInstanceReservationConfigArgsDict']]]] instance_reservation_configs: (Updatable) The capacity configurations for the capacity reservation.
|
580
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['ComputeCapacityReservationInstanceReservationConfigArgs', 'ComputeCapacityReservationInstanceReservationConfigArgsDict']]]] instance_reservation_configs: (Updatable) The capacity configurations for the capacity reservation. (Note: From 6.17.0 instance_reservation_configs field in Core.ComputeCapacityReservation is changed from TypeList to TypeSet - to avoid unnecessary updates. Also, configs cant by accessed by index)
|
581
581
|
|
582
582
|
To use the reservation for the desired shape, specify the shape, count, and optionally the fault domain where you want this configuration.
|
583
583
|
:param pulumi.Input[bool] is_default_reservation: (Updatable) Whether this capacity reservation is the default. For more information, see [Capacity Reservations](https://docs.cloud.oracle.com/iaas/Content/Compute/Tasks/reserve-capacity.htm#default).
|
@@ -653,7 +653,7 @@ class ComputeCapacityReservation(pulumi.CustomResource):
|
|
653
653
|
@pulumi.getter(name="instanceReservationConfigs")
|
654
654
|
def instance_reservation_configs(self) -> pulumi.Output[Sequence['outputs.ComputeCapacityReservationInstanceReservationConfig']]:
|
655
655
|
"""
|
656
|
-
(Updatable) The capacity configurations for the capacity reservation.
|
656
|
+
(Updatable) The capacity configurations for the capacity reservation. (Note: From 6.17.0 instance_reservation_configs field in Core.ComputeCapacityReservation is changed from TypeList to TypeSet - to avoid unnecessary updates. Also, configs cant by accessed by index)
|
657
657
|
|
658
658
|
To use the reservation for the desired shape, specify the shape, count, and optionally the fault domain where you want this configuration.
|
659
659
|
"""
|
@@ -199,7 +199,7 @@ class GetBootVolumeResult:
|
|
199
199
|
@pulumi.getter
|
200
200
|
def id(self) -> str:
|
201
201
|
"""
|
202
|
-
The OCID of the boot volume replica.
|
202
|
+
(Required when type=bootVolume | bootVolumeBackup | bootVolumeReplica) The OCID of the boot volume replica.
|
203
203
|
"""
|
204
204
|
return pulumi.get(self, "id")
|
205
205
|
|
pulumi_oci/core/get_volume.py
CHANGED
@@ -194,7 +194,7 @@ class GetVolumeResult:
|
|
194
194
|
@pulumi.getter
|
195
195
|
def id(self) -> str:
|
196
196
|
"""
|
197
|
-
The OCID of the block volume replica.
|
197
|
+
(Required when type=blockVolumeReplica | volume | volumeBackup) The OCID of the block volume replica.
|
198
198
|
"""
|
199
199
|
return pulumi.get(self, "id")
|
200
200
|
|
pulumi_oci/core/instance_pool.py
CHANGED
@@ -45,7 +45,7 @@ class InstancePoolArgs:
|
|
45
45
|
: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"}`
|
46
46
|
:param pulumi.Input[str] instance_display_name_formatter: (Updatable) A user-friendly formatter for the instance pool's instances. Instance displaynames follow the format. The formatter does not retroactively change instance's displaynames, only instance displaynames in the future follow the format
|
47
47
|
:param pulumi.Input[str] instance_hostname_formatter: (Updatable) A user-friendly formatter for the instance pool's instances. Instance hostnames follow the format. The formatter does not retroactively change instance's hostnames, only instance hostnames in the future follow the format
|
48
|
-
:param pulumi.Input[Sequence[pulumi.Input['InstancePoolLoadBalancerArgs']]] load_balancers: The load balancers to attach to the instance pool. (Note: From 6.
|
48
|
+
:param pulumi.Input[Sequence[pulumi.Input['InstancePoolLoadBalancerArgs']]] load_balancers: The load balancers to attach to the instance pool. (Note: From 6.16.0 load_balancers field in Core.InstancePool is changed from TypeList to TypeSet - to support load balancer insert operation. Also, LB cant by accessed by index)
|
49
49
|
:param pulumi.Input[str] state: (Updatable) The target state for the instance pool update operation (ignored at create time and should not be set). Could be set to RUNNING or STOPPED.
|
50
50
|
|
51
51
|
|
@@ -185,7 +185,7 @@ class InstancePoolArgs:
|
|
185
185
|
@pulumi.getter(name="loadBalancers")
|
186
186
|
def load_balancers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['InstancePoolLoadBalancerArgs']]]]:
|
187
187
|
"""
|
188
|
-
The load balancers to attach to the instance pool. (Note: From 6.
|
188
|
+
The load balancers to attach to the instance pool. (Note: From 6.16.0 load_balancers field in Core.InstancePool is changed from TypeList to TypeSet - to support load balancer insert operation. Also, LB cant by accessed by index)
|
189
189
|
"""
|
190
190
|
return pulumi.get(self, "load_balancers")
|
191
191
|
|
@@ -236,7 +236,7 @@ class _InstancePoolState:
|
|
236
236
|
:param pulumi.Input[str] instance_configuration_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the instance configuration associated with the instance pool.
|
237
237
|
:param pulumi.Input[str] instance_display_name_formatter: (Updatable) A user-friendly formatter for the instance pool's instances. Instance displaynames follow the format. The formatter does not retroactively change instance's displaynames, only instance displaynames in the future follow the format
|
238
238
|
:param pulumi.Input[str] instance_hostname_formatter: (Updatable) A user-friendly formatter for the instance pool's instances. Instance hostnames follow the format. The formatter does not retroactively change instance's hostnames, only instance hostnames in the future follow the format
|
239
|
-
:param pulumi.Input[Sequence[pulumi.Input['InstancePoolLoadBalancerArgs']]] load_balancers: The load balancers to attach to the instance pool. (Note: From 6.
|
239
|
+
:param pulumi.Input[Sequence[pulumi.Input['InstancePoolLoadBalancerArgs']]] load_balancers: The load balancers to attach to the instance pool. (Note: From 6.16.0 load_balancers field in Core.InstancePool is changed from TypeList to TypeSet - to support load balancer insert operation. Also, LB cant by accessed by index)
|
240
240
|
:param pulumi.Input[Sequence[pulumi.Input['InstancePoolPlacementConfigurationArgs']]] placement_configurations: (Updatable) The placement configurations for the instance pool. Provide one placement configuration for each availability domain.
|
241
241
|
|
242
242
|
To use the instance pool with a regional subnet, provide a placement configuration for each availability domain, and include the regional subnet in each placement configuration.
|
@@ -375,7 +375,7 @@ class _InstancePoolState:
|
|
375
375
|
@pulumi.getter(name="loadBalancers")
|
376
376
|
def load_balancers(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['InstancePoolLoadBalancerArgs']]]]:
|
377
377
|
"""
|
378
|
-
The load balancers to attach to the instance pool. (Note: From 6.
|
378
|
+
The load balancers to attach to the instance pool. (Note: From 6.16.0 load_balancers field in Core.InstancePool is changed from TypeList to TypeSet - to support load balancer insert operation. Also, LB cant by accessed by index)
|
379
379
|
"""
|
380
380
|
return pulumi.get(self, "load_balancers")
|
381
381
|
|
@@ -528,7 +528,7 @@ class InstancePool(pulumi.CustomResource):
|
|
528
528
|
:param pulumi.Input[str] instance_configuration_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the instance configuration associated with the instance pool.
|
529
529
|
:param pulumi.Input[str] instance_display_name_formatter: (Updatable) A user-friendly formatter for the instance pool's instances. Instance displaynames follow the format. The formatter does not retroactively change instance's displaynames, only instance displaynames in the future follow the format
|
530
530
|
:param pulumi.Input[str] instance_hostname_formatter: (Updatable) A user-friendly formatter for the instance pool's instances. Instance hostnames follow the format. The formatter does not retroactively change instance's hostnames, only instance hostnames in the future follow the format
|
531
|
-
:param pulumi.Input[Sequence[pulumi.Input[Union['InstancePoolLoadBalancerArgs', 'InstancePoolLoadBalancerArgsDict']]]] load_balancers: The load balancers to attach to the instance pool. (Note: From 6.
|
531
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['InstancePoolLoadBalancerArgs', 'InstancePoolLoadBalancerArgsDict']]]] load_balancers: The load balancers to attach to the instance pool. (Note: From 6.16.0 load_balancers field in Core.InstancePool is changed from TypeList to TypeSet - to support load balancer insert operation. Also, LB cant by accessed by index)
|
532
532
|
:param pulumi.Input[Sequence[pulumi.Input[Union['InstancePoolPlacementConfigurationArgs', 'InstancePoolPlacementConfigurationArgsDict']]]] placement_configurations: (Updatable) The placement configurations for the instance pool. Provide one placement configuration for each availability domain.
|
533
533
|
|
534
534
|
To use the instance pool with a regional subnet, provide a placement configuration for each availability domain, and include the regional subnet in each placement configuration.
|
@@ -703,7 +703,7 @@ class InstancePool(pulumi.CustomResource):
|
|
703
703
|
:param pulumi.Input[str] instance_configuration_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the instance configuration associated with the instance pool.
|
704
704
|
:param pulumi.Input[str] instance_display_name_formatter: (Updatable) A user-friendly formatter for the instance pool's instances. Instance displaynames follow the format. The formatter does not retroactively change instance's displaynames, only instance displaynames in the future follow the format
|
705
705
|
:param pulumi.Input[str] instance_hostname_formatter: (Updatable) A user-friendly formatter for the instance pool's instances. Instance hostnames follow the format. The formatter does not retroactively change instance's hostnames, only instance hostnames in the future follow the format
|
706
|
-
:param pulumi.Input[Sequence[pulumi.Input[Union['InstancePoolLoadBalancerArgs', 'InstancePoolLoadBalancerArgsDict']]]] load_balancers: The load balancers to attach to the instance pool. (Note: From 6.
|
706
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['InstancePoolLoadBalancerArgs', 'InstancePoolLoadBalancerArgsDict']]]] load_balancers: The load balancers to attach to the instance pool. (Note: From 6.16.0 load_balancers field in Core.InstancePool is changed from TypeList to TypeSet - to support load balancer insert operation. Also, LB cant by accessed by index)
|
707
707
|
:param pulumi.Input[Sequence[pulumi.Input[Union['InstancePoolPlacementConfigurationArgs', 'InstancePoolPlacementConfigurationArgsDict']]]] placement_configurations: (Updatable) The placement configurations for the instance pool. Provide one placement configuration for each availability domain.
|
708
708
|
|
709
709
|
To use the instance pool with a regional subnet, provide a placement configuration for each availability domain, and include the regional subnet in each placement configuration.
|
@@ -802,7 +802,7 @@ class InstancePool(pulumi.CustomResource):
|
|
802
802
|
@pulumi.getter(name="loadBalancers")
|
803
803
|
def load_balancers(self) -> pulumi.Output[Sequence['outputs.InstancePoolLoadBalancer']]:
|
804
804
|
"""
|
805
|
-
The load balancers to attach to the instance pool. (Note: From 6.
|
805
|
+
The load balancers to attach to the instance pool. (Note: From 6.16.0 load_balancers field in Core.InstancePool is changed from TypeList to TypeSet - to support load balancer insert operation. Also, LB cant by accessed by index)
|
806
806
|
"""
|
807
807
|
return pulumi.get(self, "load_balancers")
|
808
808
|
|
pulumi_oci/core/outputs.py
CHANGED
@@ -10360,7 +10360,7 @@ class InstanceCreateVnicDetails(dict):
|
|
10360
10360
|
If you specify a `vlanId`, the `privateIp` cannot be specified. See [Vlan](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vlan).
|
10361
10361
|
|
10362
10362
|
Example: `10.0.3.3`
|
10363
|
-
:param Mapping[str, str] security_attributes: 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
|
10363
|
+
:param Mapping[str, str] security_attributes: 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"}`
|
10364
10364
|
:param bool skip_source_dest_check: (Updatable) Whether the source/destination check is disabled on the VNIC. Defaults to `false`, which means the check is performed. For information about why you would skip the source/destination check, see [Using a Private IP as a Route Target](https://docs.cloud.oracle.com/iaas/Content/Network/Tasks/managingroutetables.htm#privateip).
|
10365
10365
|
|
10366
10366
|
If you specify a `vlanId`, the `skipSourceDestCheck` cannot be specified because the source/destination check is always disabled for VNICs in a VLAN. See [Vlan](https://docs.cloud.oracle.com/iaas/api/#/en/iaas/latest/Vlan).
|
@@ -10509,7 +10509,7 @@ class InstanceCreateVnicDetails(dict):
|
|
10509
10509
|
@pulumi.getter(name="securityAttributes")
|
10510
10510
|
def security_attributes(self) -> Optional[Mapping[str, str]]:
|
10511
10511
|
"""
|
10512
|
-
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
|
10512
|
+
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"}`
|
10513
10513
|
"""
|
10514
10514
|
return pulumi.get(self, "security_attributes")
|
10515
10515
|
|
@@ -16857,11 +16857,11 @@ class GetBootVolumeSourceDetailResult(dict):
|
|
16857
16857
|
second_backup_id: str,
|
16858
16858
|
type: str):
|
16859
16859
|
"""
|
16860
|
-
:param str change_block_size_in_bytes: Block size in bytes to be considered while performing volume restore. The value must be a power of 2; ranging from 4KB (4096 bytes) to 1MB (1048576 bytes). If omitted, defaults to 4,096 bytes (4 KiB).
|
16861
|
-
:param str first_backup_id: The OCID of the first boot volume backup.
|
16862
|
-
:param str id: The OCID of the boot volume replica.
|
16863
|
-
:param str second_backup_id: The OCID of the second boot volume backup.
|
16864
|
-
:param str type: The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeBackupDelta`, `bootVolumeReplica`
|
16860
|
+
:param str change_block_size_in_bytes: (Applicable when type=bootVolumeBackupDelta) Block size in bytes to be considered while performing volume restore. The value must be a power of 2; ranging from 4KB (4096 bytes) to 1MB (1048576 bytes). If omitted, defaults to 4,096 bytes (4 KiB).
|
16861
|
+
:param str first_backup_id: (Required when type=bootVolumeBackupDelta) The OCID of the first boot volume backup.
|
16862
|
+
:param str id: (Required when type=bootVolume | bootVolumeBackup | bootVolumeReplica) The OCID of the boot volume replica.
|
16863
|
+
:param str second_backup_id: (Required when type=bootVolumeBackupDelta) The OCID of the second boot volume backup.
|
16864
|
+
:param str type: (Required) The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeBackupDelta`, `bootVolumeReplica`
|
16865
16865
|
"""
|
16866
16866
|
pulumi.set(__self__, "change_block_size_in_bytes", change_block_size_in_bytes)
|
16867
16867
|
pulumi.set(__self__, "first_backup_id", first_backup_id)
|
@@ -16873,7 +16873,7 @@ class GetBootVolumeSourceDetailResult(dict):
|
|
16873
16873
|
@pulumi.getter(name="changeBlockSizeInBytes")
|
16874
16874
|
def change_block_size_in_bytes(self) -> str:
|
16875
16875
|
"""
|
16876
|
-
Block size in bytes to be considered while performing volume restore. The value must be a power of 2; ranging from 4KB (4096 bytes) to 1MB (1048576 bytes). If omitted, defaults to 4,096 bytes (4 KiB).
|
16876
|
+
(Applicable when type=bootVolumeBackupDelta) Block size in bytes to be considered while performing volume restore. The value must be a power of 2; ranging from 4KB (4096 bytes) to 1MB (1048576 bytes). If omitted, defaults to 4,096 bytes (4 KiB).
|
16877
16877
|
"""
|
16878
16878
|
return pulumi.get(self, "change_block_size_in_bytes")
|
16879
16879
|
|
@@ -16881,7 +16881,7 @@ class GetBootVolumeSourceDetailResult(dict):
|
|
16881
16881
|
@pulumi.getter(name="firstBackupId")
|
16882
16882
|
def first_backup_id(self) -> str:
|
16883
16883
|
"""
|
16884
|
-
The OCID of the first boot volume backup.
|
16884
|
+
(Required when type=bootVolumeBackupDelta) The OCID of the first boot volume backup.
|
16885
16885
|
"""
|
16886
16886
|
return pulumi.get(self, "first_backup_id")
|
16887
16887
|
|
@@ -16889,7 +16889,7 @@ class GetBootVolumeSourceDetailResult(dict):
|
|
16889
16889
|
@pulumi.getter
|
16890
16890
|
def id(self) -> str:
|
16891
16891
|
"""
|
16892
|
-
The OCID of the boot volume replica.
|
16892
|
+
(Required when type=bootVolume | bootVolumeBackup | bootVolumeReplica) The OCID of the boot volume replica.
|
16893
16893
|
"""
|
16894
16894
|
return pulumi.get(self, "id")
|
16895
16895
|
|
@@ -16897,7 +16897,7 @@ class GetBootVolumeSourceDetailResult(dict):
|
|
16897
16897
|
@pulumi.getter(name="secondBackupId")
|
16898
16898
|
def second_backup_id(self) -> str:
|
16899
16899
|
"""
|
16900
|
-
The OCID of the second boot volume backup.
|
16900
|
+
(Required when type=bootVolumeBackupDelta) The OCID of the second boot volume backup.
|
16901
16901
|
"""
|
16902
16902
|
return pulumi.get(self, "second_backup_id")
|
16903
16903
|
|
@@ -16905,7 +16905,7 @@ class GetBootVolumeSourceDetailResult(dict):
|
|
16905
16905
|
@pulumi.getter
|
16906
16906
|
def type(self) -> str:
|
16907
16907
|
"""
|
16908
|
-
The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeBackupDelta`, `bootVolumeReplica`
|
16908
|
+
(Required) The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeBackupDelta`, `bootVolumeReplica`
|
16909
16909
|
"""
|
16910
16910
|
return pulumi.get(self, "type")
|
16911
16911
|
|
@@ -16948,7 +16948,7 @@ class GetBootVolumesBootVolumeResult(dict):
|
|
16948
16948
|
:param Mapping[str, str] defined_tags: 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"}`
|
16949
16949
|
:param str display_name: A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
16950
16950
|
:param Mapping[str, str] freeform_tags: 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"}`
|
16951
|
-
:param str id: The OCID of the boot volume replica.
|
16951
|
+
:param str id: (Required when type=bootVolume | bootVolumeBackup | bootVolumeReplica) The OCID of the boot volume replica.
|
16952
16952
|
:param str image_id: The image OCID used to create the boot volume.
|
16953
16953
|
:param bool is_auto_tune_enabled: Specifies whether the auto-tune performance is enabled for this boot volume. This field is deprecated. Use the `DetachedVolumeAutotunePolicy` instead to enable the volume for detached autotune.
|
16954
16954
|
:param bool is_hydrated: Specifies whether the boot volume's data has finished copying from the source boot volume or boot volume backup.
|
@@ -17074,7 +17074,7 @@ class GetBootVolumesBootVolumeResult(dict):
|
|
17074
17074
|
@pulumi.getter
|
17075
17075
|
def id(self) -> str:
|
17076
17076
|
"""
|
17077
|
-
The OCID of the boot volume replica.
|
17077
|
+
(Required when type=bootVolume | bootVolumeBackup | bootVolumeReplica) The OCID of the boot volume replica.
|
17078
17078
|
"""
|
17079
17079
|
return pulumi.get(self, "id")
|
17080
17080
|
|
@@ -17273,11 +17273,11 @@ class GetBootVolumesBootVolumeSourceDetailResult(dict):
|
|
17273
17273
|
second_backup_id: str,
|
17274
17274
|
type: str):
|
17275
17275
|
"""
|
17276
|
-
:param str change_block_size_in_bytes: Block size in bytes to be considered while performing volume restore. The value must be a power of 2; ranging from 4KB (4096 bytes) to 1MB (1048576 bytes). If omitted, defaults to 4,096 bytes (4 KiB).
|
17277
|
-
:param str first_backup_id: The OCID of the first boot volume backup.
|
17278
|
-
:param str id: The OCID of the boot volume replica.
|
17279
|
-
:param str second_backup_id: The OCID of the second boot volume backup.
|
17280
|
-
:param str type: The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeBackupDelta`, `bootVolumeReplica`
|
17276
|
+
:param str change_block_size_in_bytes: (Applicable when type=bootVolumeBackupDelta) Block size in bytes to be considered while performing volume restore. The value must be a power of 2; ranging from 4KB (4096 bytes) to 1MB (1048576 bytes). If omitted, defaults to 4,096 bytes (4 KiB).
|
17277
|
+
:param str first_backup_id: (Required when type=bootVolumeBackupDelta) The OCID of the first boot volume backup.
|
17278
|
+
:param str id: (Required when type=bootVolume | bootVolumeBackup | bootVolumeReplica) The OCID of the boot volume replica.
|
17279
|
+
:param str second_backup_id: (Required when type=bootVolumeBackupDelta) The OCID of the second boot volume backup.
|
17280
|
+
:param str type: (Required) The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeBackupDelta`, `bootVolumeReplica`
|
17281
17281
|
"""
|
17282
17282
|
pulumi.set(__self__, "change_block_size_in_bytes", change_block_size_in_bytes)
|
17283
17283
|
pulumi.set(__self__, "first_backup_id", first_backup_id)
|
@@ -17289,7 +17289,7 @@ class GetBootVolumesBootVolumeSourceDetailResult(dict):
|
|
17289
17289
|
@pulumi.getter(name="changeBlockSizeInBytes")
|
17290
17290
|
def change_block_size_in_bytes(self) -> str:
|
17291
17291
|
"""
|
17292
|
-
Block size in bytes to be considered while performing volume restore. The value must be a power of 2; ranging from 4KB (4096 bytes) to 1MB (1048576 bytes). If omitted, defaults to 4,096 bytes (4 KiB).
|
17292
|
+
(Applicable when type=bootVolumeBackupDelta) Block size in bytes to be considered while performing volume restore. The value must be a power of 2; ranging from 4KB (4096 bytes) to 1MB (1048576 bytes). If omitted, defaults to 4,096 bytes (4 KiB).
|
17293
17293
|
"""
|
17294
17294
|
return pulumi.get(self, "change_block_size_in_bytes")
|
17295
17295
|
|
@@ -17297,7 +17297,7 @@ class GetBootVolumesBootVolumeSourceDetailResult(dict):
|
|
17297
17297
|
@pulumi.getter(name="firstBackupId")
|
17298
17298
|
def first_backup_id(self) -> str:
|
17299
17299
|
"""
|
17300
|
-
The OCID of the first boot volume backup.
|
17300
|
+
(Required when type=bootVolumeBackupDelta) The OCID of the first boot volume backup.
|
17301
17301
|
"""
|
17302
17302
|
return pulumi.get(self, "first_backup_id")
|
17303
17303
|
|
@@ -17305,7 +17305,7 @@ class GetBootVolumesBootVolumeSourceDetailResult(dict):
|
|
17305
17305
|
@pulumi.getter
|
17306
17306
|
def id(self) -> str:
|
17307
17307
|
"""
|
17308
|
-
The OCID of the boot volume replica.
|
17308
|
+
(Required when type=bootVolume | bootVolumeBackup | bootVolumeReplica) The OCID of the boot volume replica.
|
17309
17309
|
"""
|
17310
17310
|
return pulumi.get(self, "id")
|
17311
17311
|
|
@@ -17313,7 +17313,7 @@ class GetBootVolumesBootVolumeSourceDetailResult(dict):
|
|
17313
17313
|
@pulumi.getter(name="secondBackupId")
|
17314
17314
|
def second_backup_id(self) -> str:
|
17315
17315
|
"""
|
17316
|
-
The OCID of the second boot volume backup.
|
17316
|
+
(Required when type=bootVolumeBackupDelta) The OCID of the second boot volume backup.
|
17317
17317
|
"""
|
17318
17318
|
return pulumi.get(self, "second_backup_id")
|
17319
17319
|
|
@@ -17321,7 +17321,7 @@ class GetBootVolumesBootVolumeSourceDetailResult(dict):
|
|
17321
17321
|
@pulumi.getter
|
17322
17322
|
def type(self) -> str:
|
17323
17323
|
"""
|
17324
|
-
The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeBackupDelta`, `bootVolumeReplica`
|
17324
|
+
(Required) The type can be one of these values: `bootVolume`, `bootVolumeBackup`, `bootVolumeBackupDelta`, `bootVolumeReplica`
|
17325
17325
|
"""
|
17326
17326
|
return pulumi.get(self, "type")
|
17327
17327
|
|
@@ -48669,11 +48669,11 @@ class GetVolumeSourceDetailResult(dict):
|
|
48669
48669
|
second_backup_id: str,
|
48670
48670
|
type: str):
|
48671
48671
|
"""
|
48672
|
-
:param str change_block_size_in_bytes: Block size in bytes to be considered while performing volume restore. The value must be a power of 2; ranging from 4KB (4096 bytes) to 1MB (1048576 bytes). If omitted, defaults to 4,096 bytes (4 KiB).
|
48673
|
-
:param str first_backup_id: The OCID of the first volume backup.
|
48674
|
-
:param str id: The OCID of the block volume replica.
|
48675
|
-
:param str second_backup_id: The OCID of the second volume backup.
|
48676
|
-
:param str type: The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`, `volumeBackupDelta`
|
48672
|
+
:param str change_block_size_in_bytes: (Applicable when type=volumeBackupDelta) Block size in bytes to be considered while performing volume restore. The value must be a power of 2; ranging from 4KB (4096 bytes) to 1MB (1048576 bytes). If omitted, defaults to 4,096 bytes (4 KiB).
|
48673
|
+
:param str first_backup_id: (Required when type=volumeBackupDelta) The OCID of the first volume backup.
|
48674
|
+
:param str id: (Required when type=blockVolumeReplica | volume | volumeBackup) The OCID of the block volume replica.
|
48675
|
+
:param str second_backup_id: (Required when type=volumeBackupDelta) The OCID of the second volume backup.
|
48676
|
+
:param str type: (Required) The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`, `volumeBackupDelta`
|
48677
48677
|
"""
|
48678
48678
|
pulumi.set(__self__, "change_block_size_in_bytes", change_block_size_in_bytes)
|
48679
48679
|
pulumi.set(__self__, "first_backup_id", first_backup_id)
|
@@ -48685,7 +48685,7 @@ class GetVolumeSourceDetailResult(dict):
|
|
48685
48685
|
@pulumi.getter(name="changeBlockSizeInBytes")
|
48686
48686
|
def change_block_size_in_bytes(self) -> str:
|
48687
48687
|
"""
|
48688
|
-
Block size in bytes to be considered while performing volume restore. The value must be a power of 2; ranging from 4KB (4096 bytes) to 1MB (1048576 bytes). If omitted, defaults to 4,096 bytes (4 KiB).
|
48688
|
+
(Applicable when type=volumeBackupDelta) Block size in bytes to be considered while performing volume restore. The value must be a power of 2; ranging from 4KB (4096 bytes) to 1MB (1048576 bytes). If omitted, defaults to 4,096 bytes (4 KiB).
|
48689
48689
|
"""
|
48690
48690
|
return pulumi.get(self, "change_block_size_in_bytes")
|
48691
48691
|
|
@@ -48693,7 +48693,7 @@ class GetVolumeSourceDetailResult(dict):
|
|
48693
48693
|
@pulumi.getter(name="firstBackupId")
|
48694
48694
|
def first_backup_id(self) -> str:
|
48695
48695
|
"""
|
48696
|
-
The OCID of the first volume backup.
|
48696
|
+
(Required when type=volumeBackupDelta) The OCID of the first volume backup.
|
48697
48697
|
"""
|
48698
48698
|
return pulumi.get(self, "first_backup_id")
|
48699
48699
|
|
@@ -48701,7 +48701,7 @@ class GetVolumeSourceDetailResult(dict):
|
|
48701
48701
|
@pulumi.getter
|
48702
48702
|
def id(self) -> str:
|
48703
48703
|
"""
|
48704
|
-
The OCID of the block volume replica.
|
48704
|
+
(Required when type=blockVolumeReplica | volume | volumeBackup) The OCID of the block volume replica.
|
48705
48705
|
"""
|
48706
48706
|
return pulumi.get(self, "id")
|
48707
48707
|
|
@@ -48709,7 +48709,7 @@ class GetVolumeSourceDetailResult(dict):
|
|
48709
48709
|
@pulumi.getter(name="secondBackupId")
|
48710
48710
|
def second_backup_id(self) -> str:
|
48711
48711
|
"""
|
48712
|
-
The OCID of the second volume backup.
|
48712
|
+
(Required when type=volumeBackupDelta) The OCID of the second volume backup.
|
48713
48713
|
"""
|
48714
48714
|
return pulumi.get(self, "second_backup_id")
|
48715
48715
|
|
@@ -48717,7 +48717,7 @@ class GetVolumeSourceDetailResult(dict):
|
|
48717
48717
|
@pulumi.getter
|
48718
48718
|
def type(self) -> str:
|
48719
48719
|
"""
|
48720
|
-
The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`, `volumeBackupDelta`
|
48720
|
+
(Required) The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`, `volumeBackupDelta`
|
48721
48721
|
"""
|
48722
48722
|
return pulumi.get(self, "type")
|
48723
48723
|
|
@@ -48787,7 +48787,7 @@ class GetVolumesVolumeResult(dict):
|
|
48787
48787
|
:param Mapping[str, str] defined_tags: 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"}`
|
48788
48788
|
:param str display_name: A filter to return only resources that match the given display name exactly.
|
48789
48789
|
:param Mapping[str, str] freeform_tags: 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"}`
|
48790
|
-
:param str id: The OCID of the block volume replica.
|
48790
|
+
:param str id: (Required when type=blockVolumeReplica | volume | volumeBackup) The OCID of the block volume replica.
|
48791
48791
|
:param bool is_auto_tune_enabled: Specifies whether the auto-tune performance is enabled for this volume. This field is deprecated. Use the `DetachedVolumeAutotunePolicy` instead to enable the volume for detached autotune.
|
48792
48792
|
:param bool is_hydrated: Specifies whether the cloned volume's data has finished copying from the source volume or backup.
|
48793
48793
|
:param str kms_key_id: The OCID of the Vault service key which is the master encryption key for the volume.
|
@@ -48913,7 +48913,7 @@ class GetVolumesVolumeResult(dict):
|
|
48913
48913
|
@pulumi.getter
|
48914
48914
|
def id(self) -> str:
|
48915
48915
|
"""
|
48916
|
-
The OCID of the block volume replica.
|
48916
|
+
(Required when type=blockVolumeReplica | volume | volumeBackup) The OCID of the block volume replica.
|
48917
48917
|
"""
|
48918
48918
|
return pulumi.get(self, "id")
|
48919
48919
|
|
@@ -49113,11 +49113,11 @@ class GetVolumesVolumeSourceDetailResult(dict):
|
|
49113
49113
|
second_backup_id: str,
|
49114
49114
|
type: str):
|
49115
49115
|
"""
|
49116
|
-
:param str change_block_size_in_bytes: Block size in bytes to be considered while performing volume restore. The value must be a power of 2; ranging from 4KB (4096 bytes) to 1MB (1048576 bytes). If omitted, defaults to 4,096 bytes (4 KiB).
|
49117
|
-
:param str first_backup_id: The OCID of the first volume backup.
|
49118
|
-
:param str id: The OCID of the block volume replica.
|
49119
|
-
:param str second_backup_id: The OCID of the second volume backup.
|
49120
|
-
:param str type: The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`, `volumeBackupDelta`
|
49116
|
+
:param str change_block_size_in_bytes: (Applicable when type=volumeBackupDelta) Block size in bytes to be considered while performing volume restore. The value must be a power of 2; ranging from 4KB (4096 bytes) to 1MB (1048576 bytes). If omitted, defaults to 4,096 bytes (4 KiB).
|
49117
|
+
:param str first_backup_id: (Required when type=volumeBackupDelta) The OCID of the first volume backup.
|
49118
|
+
:param str id: (Required when type=blockVolumeReplica | volume | volumeBackup) The OCID of the block volume replica.
|
49119
|
+
:param str second_backup_id: (Required when type=volumeBackupDelta) The OCID of the second volume backup.
|
49120
|
+
:param str type: (Required) The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`, `volumeBackupDelta`
|
49121
49121
|
"""
|
49122
49122
|
pulumi.set(__self__, "change_block_size_in_bytes", change_block_size_in_bytes)
|
49123
49123
|
pulumi.set(__self__, "first_backup_id", first_backup_id)
|
@@ -49129,7 +49129,7 @@ class GetVolumesVolumeSourceDetailResult(dict):
|
|
49129
49129
|
@pulumi.getter(name="changeBlockSizeInBytes")
|
49130
49130
|
def change_block_size_in_bytes(self) -> str:
|
49131
49131
|
"""
|
49132
|
-
Block size in bytes to be considered while performing volume restore. The value must be a power of 2; ranging from 4KB (4096 bytes) to 1MB (1048576 bytes). If omitted, defaults to 4,096 bytes (4 KiB).
|
49132
|
+
(Applicable when type=volumeBackupDelta) Block size in bytes to be considered while performing volume restore. The value must be a power of 2; ranging from 4KB (4096 bytes) to 1MB (1048576 bytes). If omitted, defaults to 4,096 bytes (4 KiB).
|
49133
49133
|
"""
|
49134
49134
|
return pulumi.get(self, "change_block_size_in_bytes")
|
49135
49135
|
|
@@ -49137,7 +49137,7 @@ class GetVolumesVolumeSourceDetailResult(dict):
|
|
49137
49137
|
@pulumi.getter(name="firstBackupId")
|
49138
49138
|
def first_backup_id(self) -> str:
|
49139
49139
|
"""
|
49140
|
-
The OCID of the first volume backup.
|
49140
|
+
(Required when type=volumeBackupDelta) The OCID of the first volume backup.
|
49141
49141
|
"""
|
49142
49142
|
return pulumi.get(self, "first_backup_id")
|
49143
49143
|
|
@@ -49145,7 +49145,7 @@ class GetVolumesVolumeSourceDetailResult(dict):
|
|
49145
49145
|
@pulumi.getter
|
49146
49146
|
def id(self) -> str:
|
49147
49147
|
"""
|
49148
|
-
The OCID of the block volume replica.
|
49148
|
+
(Required when type=blockVolumeReplica | volume | volumeBackup) The OCID of the block volume replica.
|
49149
49149
|
"""
|
49150
49150
|
return pulumi.get(self, "id")
|
49151
49151
|
|
@@ -49153,7 +49153,7 @@ class GetVolumesVolumeSourceDetailResult(dict):
|
|
49153
49153
|
@pulumi.getter(name="secondBackupId")
|
49154
49154
|
def second_backup_id(self) -> str:
|
49155
49155
|
"""
|
49156
|
-
The OCID of the second volume backup.
|
49156
|
+
(Required when type=volumeBackupDelta) The OCID of the second volume backup.
|
49157
49157
|
"""
|
49158
49158
|
return pulumi.get(self, "second_backup_id")
|
49159
49159
|
|
@@ -49161,7 +49161,7 @@ class GetVolumesVolumeSourceDetailResult(dict):
|
|
49161
49161
|
@pulumi.getter
|
49162
49162
|
def type(self) -> str:
|
49163
49163
|
"""
|
49164
|
-
The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`, `volumeBackupDelta`
|
49164
|
+
(Required) The type can be one of these values: `blockVolumeReplica`, `volume`, `volumeBackup`, `volumeBackupDelta`
|
49165
49165
|
"""
|
49166
49166
|
return pulumi.get(self, "type")
|
49167
49167
|
|
pulumi_oci/database/_inputs.py
CHANGED
@@ -9572,6 +9572,10 @@ if not MYPY:
|
|
9572
9572
|
"""
|
9573
9573
|
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DB system.
|
9574
9574
|
"""
|
9575
|
+
is_unified_auditing_enabled: NotRequired[pulumi.Input[bool]]
|
9576
|
+
"""
|
9577
|
+
Indicates whether unified auditing is enabled or not
|
9578
|
+
"""
|
9575
9579
|
last_patch_history_entry_id: NotRequired[pulumi.Input[str]]
|
9576
9580
|
"""
|
9577
9581
|
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last patch history. This value is updated as soon as a patch operation starts.
|
@@ -9603,6 +9607,7 @@ class DbSystemDbHomeArgs:
|
|
9603
9607
|
display_name: Optional[pulumi.Input[str]] = None,
|
9604
9608
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
9605
9609
|
id: Optional[pulumi.Input[str]] = None,
|
9610
|
+
is_unified_auditing_enabled: Optional[pulumi.Input[bool]] = None,
|
9606
9611
|
last_patch_history_entry_id: Optional[pulumi.Input[str]] = None,
|
9607
9612
|
lifecycle_details: Optional[pulumi.Input[str]] = None,
|
9608
9613
|
state: Optional[pulumi.Input[str]] = None,
|
@@ -9619,6 +9624,7 @@ class DbSystemDbHomeArgs:
|
|
9619
9624
|
:param pulumi.Input[str] display_name: The user-provided name of the Database Home.
|
9620
9625
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] freeform_tags: 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"}`
|
9621
9626
|
:param pulumi.Input[str] id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the DB system.
|
9627
|
+
:param pulumi.Input[bool] is_unified_auditing_enabled: Indicates whether unified auditing is enabled or not
|
9622
9628
|
:param pulumi.Input[str] last_patch_history_entry_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the last patch history. This value is updated as soon as a patch operation starts.
|
9623
9629
|
:param pulumi.Input[str] lifecycle_details: Additional information about the current lifecycle state.
|
9624
9630
|
:param pulumi.Input[str] state: The current state of the DB system.
|
@@ -9641,6 +9647,8 @@ class DbSystemDbHomeArgs:
|
|
9641
9647
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
9642
9648
|
if id is not None:
|
9643
9649
|
pulumi.set(__self__, "id", id)
|
9650
|
+
if is_unified_auditing_enabled is not None:
|
9651
|
+
pulumi.set(__self__, "is_unified_auditing_enabled", is_unified_auditing_enabled)
|
9644
9652
|
if last_patch_history_entry_id is not None:
|
9645
9653
|
pulumi.set(__self__, "last_patch_history_entry_id", last_patch_history_entry_id)
|
9646
9654
|
if lifecycle_details is not None:
|
@@ -9756,6 +9764,18 @@ class DbSystemDbHomeArgs:
|
|
9756
9764
|
def id(self, value: Optional[pulumi.Input[str]]):
|
9757
9765
|
pulumi.set(self, "id", value)
|
9758
9766
|
|
9767
|
+
@property
|
9768
|
+
@pulumi.getter(name="isUnifiedAuditingEnabled")
|
9769
|
+
def is_unified_auditing_enabled(self) -> Optional[pulumi.Input[bool]]:
|
9770
|
+
"""
|
9771
|
+
Indicates whether unified auditing is enabled or not
|
9772
|
+
"""
|
9773
|
+
return pulumi.get(self, "is_unified_auditing_enabled")
|
9774
|
+
|
9775
|
+
@is_unified_auditing_enabled.setter
|
9776
|
+
def is_unified_auditing_enabled(self, value: Optional[pulumi.Input[bool]]):
|
9777
|
+
pulumi.set(self, "is_unified_auditing_enabled", value)
|
9778
|
+
|
9759
9779
|
@property
|
9760
9780
|
@pulumi.getter(name="lastPatchHistoryEntryId")
|
9761
9781
|
def last_patch_history_entry_id(self) -> Optional[pulumi.Input[str]]:
|