pulumi-oci 2.16.0a1731393786__py3-none-any.whl → 2.17.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 +59 -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/autonomous_database.py +47 -0
- pulumi_oci/database/cloud_autonomous_vm_cluster.py +105 -0
- pulumi_oci/database/cloud_vm_cluster.py +49 -0
- pulumi_oci/database/data_guard_association.py +49 -0
- pulumi_oci/database/db_system.py +47 -0
- pulumi_oci/database/exadb_vm_cluster.py +68 -7
- pulumi_oci/database/get_autonomous_database.py +15 -1
- pulumi_oci/database/get_cloud_autonomous_vm_cluster.py +43 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +15 -1
- pulumi_oci/database/get_data_guard_association.py +12 -1
- pulumi_oci/database/get_exadb_vm_cluster.py +16 -2
- pulumi_oci/database/outputs.py +97 -2
- pulumi_oci/dataflow/get_sql_endpoint.py +1 -15
- pulumi_oci/dataflow/outputs.py +0 -11
- pulumi_oci/dataflow/sql_endpoint.py +88 -85
- 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/globallydistributeddatabase/__init__.py +15 -0
- pulumi_oci/globallydistributeddatabase/_inputs.py +1289 -0
- pulumi_oci/globallydistributeddatabase/get_private_endpoint.py +348 -0
- pulumi_oci/globallydistributeddatabase/get_private_endpoints.py +191 -0
- pulumi_oci/globallydistributeddatabase/get_sharded_database.py +746 -0
- pulumi_oci/globallydistributeddatabase/get_sharded_databases.py +191 -0
- pulumi_oci/globallydistributeddatabase/outputs.py +2114 -0
- pulumi_oci/globallydistributeddatabase/private_endpoint.py +822 -0
- pulumi_oci/globallydistributeddatabase/sharded_database.py +2157 -0
- 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/identity/__init__.py +2 -0
- pulumi_oci/identity/_inputs.py +55 -6
- pulumi_oci/identity/domains_condition.py +9 -2
- pulumi_oci/identity/domains_policy.py +9 -2
- pulumi_oci/identity/domains_rule.py +9 -2
- pulumi_oci/identity/get_domains_condition.py +2 -2
- pulumi_oci/identity/get_domains_conditions.py +2 -2
- pulumi_oci/identity/get_domains_oci_console_sign_on_policy_consent.py +503 -0
- pulumi_oci/identity/get_domains_oci_console_sign_on_policy_consents.py +338 -0
- pulumi_oci/identity/get_domains_policies.py +2 -2
- pulumi_oci/identity/get_domains_policy.py +2 -2
- pulumi_oci/identity/get_domains_rule.py +2 -2
- pulumi_oci/identity/get_domains_rules.py +2 -2
- pulumi_oci/identity/outputs.py +917 -4
- pulumi_oci/pulumi-plugin.json +1 -1
- {pulumi_oci-2.16.0a1731393786.dist-info → pulumi_oci-2.17.0.dist-info}/METADATA +1 -1
- {pulumi_oci-2.16.0a1731393786.dist-info → pulumi_oci-2.17.0.dist-info}/RECORD +76 -49
- {pulumi_oci-2.16.0a1731393786.dist-info → pulumi_oci-2.17.0.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.16.0a1731393786.dist-info → pulumi_oci-2.17.0.dist-info}/top_level.txt +0 -0
@@ -87,6 +87,7 @@ class AutonomousDatabaseArgs:
|
|
87
87
|
scheduled_operations: Optional[pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseScheduledOperationArgs']]]] = None,
|
88
88
|
secret_id: Optional[pulumi.Input[str]] = None,
|
89
89
|
secret_version_number: Optional[pulumi.Input[int]] = None,
|
90
|
+
security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
90
91
|
shrink_adb_trigger: Optional[pulumi.Input[int]] = None,
|
91
92
|
source: Optional[pulumi.Input[str]] = None,
|
92
93
|
source_id: Optional[pulumi.Input[str]] = None,
|
@@ -218,6 +219,7 @@ class AutonomousDatabaseArgs:
|
|
218
219
|
|
219
220
|
This cannot be used in conjunction with adminPassword.
|
220
221
|
:param pulumi.Input[int] secret_version_number: (Updatable) The version of the vault secret. If no version is specified, the latest version will be used.
|
222
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes 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: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
221
223
|
:param pulumi.Input[str] source: The source of the database:
|
222
224
|
* Use `NONE` for creating a new Autonomous Database.
|
223
225
|
* Use `DATABASE` for creating a new Autonomous Database by cloning an existing running Autonomous Database from the latest timestamp, also provide the source database OCID in the `source_id` parameter.
|
@@ -393,6 +395,8 @@ class AutonomousDatabaseArgs:
|
|
393
395
|
pulumi.set(__self__, "secret_id", secret_id)
|
394
396
|
if secret_version_number is not None:
|
395
397
|
pulumi.set(__self__, "secret_version_number", secret_version_number)
|
398
|
+
if security_attributes is not None:
|
399
|
+
pulumi.set(__self__, "security_attributes", security_attributes)
|
396
400
|
if shrink_adb_trigger is not None:
|
397
401
|
pulumi.set(__self__, "shrink_adb_trigger", shrink_adb_trigger)
|
398
402
|
if source is not None:
|
@@ -1262,6 +1266,18 @@ class AutonomousDatabaseArgs:
|
|
1262
1266
|
def secret_version_number(self, value: Optional[pulumi.Input[int]]):
|
1263
1267
|
pulumi.set(self, "secret_version_number", value)
|
1264
1268
|
|
1269
|
+
@property
|
1270
|
+
@pulumi.getter(name="securityAttributes")
|
1271
|
+
def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
1272
|
+
"""
|
1273
|
+
(Updatable) Security Attributes 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: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
1274
|
+
"""
|
1275
|
+
return pulumi.get(self, "security_attributes")
|
1276
|
+
|
1277
|
+
@security_attributes.setter
|
1278
|
+
def security_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
1279
|
+
pulumi.set(self, "security_attributes", value)
|
1280
|
+
|
1265
1281
|
@property
|
1266
1282
|
@pulumi.getter(name="shrinkAdbTrigger")
|
1267
1283
|
def shrink_adb_trigger(self) -> Optional[pulumi.Input[int]]:
|
@@ -1562,6 +1578,7 @@ class _AutonomousDatabaseState:
|
|
1562
1578
|
scheduled_operations: Optional[pulumi.Input[Sequence[pulumi.Input['AutonomousDatabaseScheduledOperationArgs']]]] = None,
|
1563
1579
|
secret_id: Optional[pulumi.Input[str]] = None,
|
1564
1580
|
secret_version_number: Optional[pulumi.Input[int]] = None,
|
1581
|
+
security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1565
1582
|
service_console_url: Optional[pulumi.Input[str]] = None,
|
1566
1583
|
shrink_adb_trigger: Optional[pulumi.Input[int]] = None,
|
1567
1584
|
source: Optional[pulumi.Input[str]] = None,
|
@@ -1753,6 +1770,7 @@ class _AutonomousDatabaseState:
|
|
1753
1770
|
|
1754
1771
|
This cannot be used in conjunction with adminPassword.
|
1755
1772
|
:param pulumi.Input[int] secret_version_number: (Updatable) The version of the vault secret. If no version is specified, the latest version will be used.
|
1773
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes 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: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
1756
1774
|
:param pulumi.Input[str] service_console_url: The URL of the Service Console for the Autonomous Database.
|
1757
1775
|
:param pulumi.Input[str] source: The source of the database:
|
1758
1776
|
* Use `NONE` for creating a new Autonomous Database.
|
@@ -2025,6 +2043,8 @@ class _AutonomousDatabaseState:
|
|
2025
2043
|
pulumi.set(__self__, "secret_id", secret_id)
|
2026
2044
|
if secret_version_number is not None:
|
2027
2045
|
pulumi.set(__self__, "secret_version_number", secret_version_number)
|
2046
|
+
if security_attributes is not None:
|
2047
|
+
pulumi.set(__self__, "security_attributes", security_attributes)
|
2028
2048
|
if service_console_url is not None:
|
2029
2049
|
pulumi.set(__self__, "service_console_url", service_console_url)
|
2030
2050
|
if shrink_adb_trigger is not None:
|
@@ -3384,6 +3404,18 @@ class _AutonomousDatabaseState:
|
|
3384
3404
|
def secret_version_number(self, value: Optional[pulumi.Input[int]]):
|
3385
3405
|
pulumi.set(self, "secret_version_number", value)
|
3386
3406
|
|
3407
|
+
@property
|
3408
|
+
@pulumi.getter(name="securityAttributes")
|
3409
|
+
def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
3410
|
+
"""
|
3411
|
+
(Updatable) Security Attributes 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: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
3412
|
+
"""
|
3413
|
+
return pulumi.get(self, "security_attributes")
|
3414
|
+
|
3415
|
+
@security_attributes.setter
|
3416
|
+
def security_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
3417
|
+
pulumi.set(self, "security_attributes", value)
|
3418
|
+
|
3387
3419
|
@property
|
3388
3420
|
@pulumi.getter(name="serviceConsoleUrl")
|
3389
3421
|
def service_console_url(self) -> Optional[pulumi.Input[str]]:
|
@@ -3919,6 +3951,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
3919
3951
|
scheduled_operations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['AutonomousDatabaseScheduledOperationArgs', 'AutonomousDatabaseScheduledOperationArgsDict']]]]] = None,
|
3920
3952
|
secret_id: Optional[pulumi.Input[str]] = None,
|
3921
3953
|
secret_version_number: Optional[pulumi.Input[int]] = None,
|
3954
|
+
security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
3922
3955
|
shrink_adb_trigger: Optional[pulumi.Input[int]] = None,
|
3923
3956
|
source: Optional[pulumi.Input[str]] = None,
|
3924
3957
|
source_id: Optional[pulumi.Input[str]] = None,
|
@@ -4066,6 +4099,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4066
4099
|
|
4067
4100
|
This cannot be used in conjunction with adminPassword.
|
4068
4101
|
:param pulumi.Input[int] secret_version_number: (Updatable) The version of the vault secret. If no version is specified, the latest version will be used.
|
4102
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes 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: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
4069
4103
|
:param pulumi.Input[str] source: The source of the database:
|
4070
4104
|
* Use `NONE` for creating a new Autonomous Database.
|
4071
4105
|
* Use `DATABASE` for creating a new Autonomous Database by cloning an existing running Autonomous Database from the latest timestamp, also provide the source database OCID in the `source_id` parameter.
|
@@ -4210,6 +4244,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4210
4244
|
scheduled_operations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['AutonomousDatabaseScheduledOperationArgs', 'AutonomousDatabaseScheduledOperationArgsDict']]]]] = None,
|
4211
4245
|
secret_id: Optional[pulumi.Input[str]] = None,
|
4212
4246
|
secret_version_number: Optional[pulumi.Input[int]] = None,
|
4247
|
+
security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
4213
4248
|
shrink_adb_trigger: Optional[pulumi.Input[int]] = None,
|
4214
4249
|
source: Optional[pulumi.Input[str]] = None,
|
4215
4250
|
source_id: Optional[pulumi.Input[str]] = None,
|
@@ -4303,6 +4338,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4303
4338
|
__props__.__dict__["scheduled_operations"] = scheduled_operations
|
4304
4339
|
__props__.__dict__["secret_id"] = secret_id
|
4305
4340
|
__props__.__dict__["secret_version_number"] = secret_version_number
|
4341
|
+
__props__.__dict__["security_attributes"] = security_attributes
|
4306
4342
|
__props__.__dict__["shrink_adb_trigger"] = shrink_adb_trigger
|
4307
4343
|
__props__.__dict__["source"] = source
|
4308
4344
|
__props__.__dict__["source_id"] = source_id
|
@@ -4492,6 +4528,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4492
4528
|
scheduled_operations: Optional[pulumi.Input[Sequence[pulumi.Input[Union['AutonomousDatabaseScheduledOperationArgs', 'AutonomousDatabaseScheduledOperationArgsDict']]]]] = None,
|
4493
4529
|
secret_id: Optional[pulumi.Input[str]] = None,
|
4494
4530
|
secret_version_number: Optional[pulumi.Input[int]] = None,
|
4531
|
+
security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
4495
4532
|
service_console_url: Optional[pulumi.Input[str]] = None,
|
4496
4533
|
shrink_adb_trigger: Optional[pulumi.Input[int]] = None,
|
4497
4534
|
source: Optional[pulumi.Input[str]] = None,
|
@@ -4688,6 +4725,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4688
4725
|
|
4689
4726
|
This cannot be used in conjunction with adminPassword.
|
4690
4727
|
:param pulumi.Input[int] secret_version_number: (Updatable) The version of the vault secret. If no version is specified, the latest version will be used.
|
4728
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes 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: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
4691
4729
|
:param pulumi.Input[str] service_console_url: The URL of the Service Console for the Autonomous Database.
|
4692
4730
|
:param pulumi.Input[str] source: The source of the database:
|
4693
4731
|
* Use `NONE` for creating a new Autonomous Database.
|
@@ -4858,6 +4896,7 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
4858
4896
|
__props__.__dict__["scheduled_operations"] = scheduled_operations
|
4859
4897
|
__props__.__dict__["secret_id"] = secret_id
|
4860
4898
|
__props__.__dict__["secret_version_number"] = secret_version_number
|
4899
|
+
__props__.__dict__["security_attributes"] = security_attributes
|
4861
4900
|
__props__.__dict__["service_console_url"] = service_console_url
|
4862
4901
|
__props__.__dict__["shrink_adb_trigger"] = shrink_adb_trigger
|
4863
4902
|
__props__.__dict__["source"] = source
|
@@ -5769,6 +5808,14 @@ class AutonomousDatabase(pulumi.CustomResource):
|
|
5769
5808
|
"""
|
5770
5809
|
return pulumi.get(self, "secret_version_number")
|
5771
5810
|
|
5811
|
+
@property
|
5812
|
+
@pulumi.getter(name="securityAttributes")
|
5813
|
+
def security_attributes(self) -> pulumi.Output[Mapping[str, str]]:
|
5814
|
+
"""
|
5815
|
+
(Updatable) Security Attributes 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: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
5816
|
+
"""
|
5817
|
+
return pulumi.get(self, "security_attributes")
|
5818
|
+
|
5772
5819
|
@property
|
5773
5820
|
@pulumi.getter(name="serviceConsoleUrl")
|
5774
5821
|
def service_console_url(self) -> pulumi.Output[str]:
|
@@ -40,6 +40,7 @@ class CloudAutonomousVmClusterArgs:
|
|
40
40
|
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
41
41
|
scan_listener_port_non_tls: Optional[pulumi.Input[int]] = None,
|
42
42
|
scan_listener_port_tls: Optional[pulumi.Input[int]] = None,
|
43
|
+
security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
43
44
|
time_updated: Optional[pulumi.Input[str]] = None,
|
44
45
|
total_container_databases: Optional[pulumi.Input[int]] = None):
|
45
46
|
"""
|
@@ -66,6 +67,7 @@ class CloudAutonomousVmClusterArgs:
|
|
66
67
|
* A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
|
67
68
|
:param pulumi.Input[int] scan_listener_port_non_tls: The SCAN Listener Non TLS port. Default is 1521.
|
68
69
|
:param pulumi.Input[int] scan_listener_port_tls: The SCAN Listener TLS port. Default is 2484.
|
70
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes 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: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
69
71
|
:param pulumi.Input[str] time_updated: The last date and time that the cloud Autonomous VM cluster was updated.
|
70
72
|
:param pulumi.Input[int] total_container_databases: (Updatable) The total number of Autonomous Container Databases that can be created.
|
71
73
|
|
@@ -106,6 +108,8 @@ class CloudAutonomousVmClusterArgs:
|
|
106
108
|
pulumi.set(__self__, "scan_listener_port_non_tls", scan_listener_port_non_tls)
|
107
109
|
if scan_listener_port_tls is not None:
|
108
110
|
pulumi.set(__self__, "scan_listener_port_tls", scan_listener_port_tls)
|
111
|
+
if security_attributes is not None:
|
112
|
+
pulumi.set(__self__, "security_attributes", security_attributes)
|
109
113
|
if time_updated is not None:
|
110
114
|
pulumi.set(__self__, "time_updated", time_updated)
|
111
115
|
if total_container_databases is not None:
|
@@ -342,6 +346,18 @@ class CloudAutonomousVmClusterArgs:
|
|
342
346
|
def scan_listener_port_tls(self, value: Optional[pulumi.Input[int]]):
|
343
347
|
pulumi.set(self, "scan_listener_port_tls", value)
|
344
348
|
|
349
|
+
@property
|
350
|
+
@pulumi.getter(name="securityAttributes")
|
351
|
+
def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
352
|
+
"""
|
353
|
+
(Updatable) Security Attributes 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: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
354
|
+
"""
|
355
|
+
return pulumi.get(self, "security_attributes")
|
356
|
+
|
357
|
+
@security_attributes.setter
|
358
|
+
def security_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
359
|
+
pulumi.set(self, "security_attributes", value)
|
360
|
+
|
345
361
|
@property
|
346
362
|
@pulumi.getter(name="timeUpdated")
|
347
363
|
def time_updated(self) -> Optional[pulumi.Input[str]]:
|
@@ -420,10 +436,13 @@ class _CloudAutonomousVmClusterState:
|
|
420
436
|
reserved_cpus: Optional[pulumi.Input[float]] = None,
|
421
437
|
scan_listener_port_non_tls: Optional[pulumi.Input[int]] = None,
|
422
438
|
scan_listener_port_tls: Optional[pulumi.Input[int]] = None,
|
439
|
+
security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
423
440
|
shape: Optional[pulumi.Input[str]] = None,
|
424
441
|
state: Optional[pulumi.Input[str]] = None,
|
425
442
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
426
443
|
time_created: Optional[pulumi.Input[str]] = None,
|
444
|
+
time_database_ssl_certificate_expires: Optional[pulumi.Input[str]] = None,
|
445
|
+
time_ords_certificate_expires: Optional[pulumi.Input[str]] = None,
|
427
446
|
time_updated: Optional[pulumi.Input[str]] = None,
|
428
447
|
total_autonomous_data_storage_in_tbs: Optional[pulumi.Input[float]] = None,
|
429
448
|
total_container_databases: Optional[pulumi.Input[int]] = None,
|
@@ -482,10 +501,13 @@ class _CloudAutonomousVmClusterState:
|
|
482
501
|
:param pulumi.Input[float] reserved_cpus: The number of CPUs reserved in an Autonomous VM Cluster.
|
483
502
|
:param pulumi.Input[int] scan_listener_port_non_tls: The SCAN Listener Non TLS port. Default is 1521.
|
484
503
|
:param pulumi.Input[int] scan_listener_port_tls: The SCAN Listener TLS port. Default is 2484.
|
504
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes 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: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
485
505
|
:param pulumi.Input[str] shape: The model name of the Exadata hardware running the cloud Autonomous VM cluster.
|
486
506
|
:param pulumi.Input[str] state: The current state of the cloud Autonomous VM cluster.
|
487
507
|
:param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the cloud Autonomous VM Cluster is associated with.
|
488
508
|
:param pulumi.Input[str] time_created: The date and time that the cloud Autonomous VM cluster was created.
|
509
|
+
:param pulumi.Input[str] time_database_ssl_certificate_expires: The date and time of Database SSL certificate expiration.
|
510
|
+
:param pulumi.Input[str] time_ords_certificate_expires: The date and time of ORDS certificate expiration.
|
489
511
|
:param pulumi.Input[str] time_updated: The last date and time that the cloud Autonomous VM cluster was updated.
|
490
512
|
:param pulumi.Input[float] total_autonomous_data_storage_in_tbs: The total data disk group size for Autonomous Databases, in TBs.
|
491
513
|
:param pulumi.Input[int] total_container_databases: (Updatable) The total number of Autonomous Container Databases that can be created.
|
@@ -588,6 +610,8 @@ class _CloudAutonomousVmClusterState:
|
|
588
610
|
pulumi.set(__self__, "scan_listener_port_non_tls", scan_listener_port_non_tls)
|
589
611
|
if scan_listener_port_tls is not None:
|
590
612
|
pulumi.set(__self__, "scan_listener_port_tls", scan_listener_port_tls)
|
613
|
+
if security_attributes is not None:
|
614
|
+
pulumi.set(__self__, "security_attributes", security_attributes)
|
591
615
|
if shape is not None:
|
592
616
|
pulumi.set(__self__, "shape", shape)
|
593
617
|
if state is not None:
|
@@ -596,6 +620,10 @@ class _CloudAutonomousVmClusterState:
|
|
596
620
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
597
621
|
if time_created is not None:
|
598
622
|
pulumi.set(__self__, "time_created", time_created)
|
623
|
+
if time_database_ssl_certificate_expires is not None:
|
624
|
+
pulumi.set(__self__, "time_database_ssl_certificate_expires", time_database_ssl_certificate_expires)
|
625
|
+
if time_ords_certificate_expires is not None:
|
626
|
+
pulumi.set(__self__, "time_ords_certificate_expires", time_ords_certificate_expires)
|
599
627
|
if time_updated is not None:
|
600
628
|
pulumi.set(__self__, "time_updated", time_updated)
|
601
629
|
if total_autonomous_data_storage_in_tbs is not None:
|
@@ -1174,6 +1202,18 @@ class _CloudAutonomousVmClusterState:
|
|
1174
1202
|
def scan_listener_port_tls(self, value: Optional[pulumi.Input[int]]):
|
1175
1203
|
pulumi.set(self, "scan_listener_port_tls", value)
|
1176
1204
|
|
1205
|
+
@property
|
1206
|
+
@pulumi.getter(name="securityAttributes")
|
1207
|
+
def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
1208
|
+
"""
|
1209
|
+
(Updatable) Security Attributes 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: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
1210
|
+
"""
|
1211
|
+
return pulumi.get(self, "security_attributes")
|
1212
|
+
|
1213
|
+
@security_attributes.setter
|
1214
|
+
def security_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
1215
|
+
pulumi.set(self, "security_attributes", value)
|
1216
|
+
|
1177
1217
|
@property
|
1178
1218
|
@pulumi.getter
|
1179
1219
|
def shape(self) -> Optional[pulumi.Input[str]]:
|
@@ -1222,6 +1262,30 @@ class _CloudAutonomousVmClusterState:
|
|
1222
1262
|
def time_created(self, value: Optional[pulumi.Input[str]]):
|
1223
1263
|
pulumi.set(self, "time_created", value)
|
1224
1264
|
|
1265
|
+
@property
|
1266
|
+
@pulumi.getter(name="timeDatabaseSslCertificateExpires")
|
1267
|
+
def time_database_ssl_certificate_expires(self) -> Optional[pulumi.Input[str]]:
|
1268
|
+
"""
|
1269
|
+
The date and time of Database SSL certificate expiration.
|
1270
|
+
"""
|
1271
|
+
return pulumi.get(self, "time_database_ssl_certificate_expires")
|
1272
|
+
|
1273
|
+
@time_database_ssl_certificate_expires.setter
|
1274
|
+
def time_database_ssl_certificate_expires(self, value: Optional[pulumi.Input[str]]):
|
1275
|
+
pulumi.set(self, "time_database_ssl_certificate_expires", value)
|
1276
|
+
|
1277
|
+
@property
|
1278
|
+
@pulumi.getter(name="timeOrdsCertificateExpires")
|
1279
|
+
def time_ords_certificate_expires(self) -> Optional[pulumi.Input[str]]:
|
1280
|
+
"""
|
1281
|
+
The date and time of ORDS certificate expiration.
|
1282
|
+
"""
|
1283
|
+
return pulumi.get(self, "time_ords_certificate_expires")
|
1284
|
+
|
1285
|
+
@time_ords_certificate_expires.setter
|
1286
|
+
def time_ords_certificate_expires(self, value: Optional[pulumi.Input[str]]):
|
1287
|
+
pulumi.set(self, "time_ords_certificate_expires", value)
|
1288
|
+
|
1225
1289
|
@property
|
1226
1290
|
@pulumi.getter(name="timeUpdated")
|
1227
1291
|
def time_updated(self) -> Optional[pulumi.Input[str]]:
|
@@ -1297,6 +1361,7 @@ class CloudAutonomousVmCluster(pulumi.CustomResource):
|
|
1297
1361
|
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1298
1362
|
scan_listener_port_non_tls: Optional[pulumi.Input[int]] = None,
|
1299
1363
|
scan_listener_port_tls: Optional[pulumi.Input[int]] = None,
|
1364
|
+
security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1300
1365
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
1301
1366
|
time_updated: Optional[pulumi.Input[str]] = None,
|
1302
1367
|
total_container_databases: Optional[pulumi.Input[int]] = None,
|
@@ -1350,6 +1415,7 @@ class CloudAutonomousVmCluster(pulumi.CustomResource):
|
|
1350
1415
|
nsg_ids=cloud_autonomous_vm_cluster_nsg_ids,
|
1351
1416
|
scan_listener_port_non_tls=cloud_autonomous_vm_cluster_scan_listener_port_non_tls,
|
1352
1417
|
scan_listener_port_tls=cloud_autonomous_vm_cluster_scan_listener_port_tls,
|
1418
|
+
security_attributes=cloud_autonomous_vm_cluster_security_attributes,
|
1353
1419
|
total_container_databases=cloud_autonomous_vm_cluster_total_container_databases)
|
1354
1420
|
```
|
1355
1421
|
|
@@ -1384,6 +1450,7 @@ class CloudAutonomousVmCluster(pulumi.CustomResource):
|
|
1384
1450
|
* A network security group (NSG) is optional for Autonomous Databases with private access. The nsgIds list can be empty.
|
1385
1451
|
:param pulumi.Input[int] scan_listener_port_non_tls: The SCAN Listener Non TLS port. Default is 1521.
|
1386
1452
|
:param pulumi.Input[int] scan_listener_port_tls: The SCAN Listener TLS port. Default is 2484.
|
1453
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes 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: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
1387
1454
|
:param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the cloud Autonomous VM Cluster is associated with.
|
1388
1455
|
:param pulumi.Input[str] time_updated: The last date and time that the cloud Autonomous VM cluster was updated.
|
1389
1456
|
:param pulumi.Input[int] total_container_databases: (Updatable) The total number of Autonomous Container Databases that can be created.
|
@@ -1446,6 +1513,7 @@ class CloudAutonomousVmCluster(pulumi.CustomResource):
|
|
1446
1513
|
nsg_ids=cloud_autonomous_vm_cluster_nsg_ids,
|
1447
1514
|
scan_listener_port_non_tls=cloud_autonomous_vm_cluster_scan_listener_port_non_tls,
|
1448
1515
|
scan_listener_port_tls=cloud_autonomous_vm_cluster_scan_listener_port_tls,
|
1516
|
+
security_attributes=cloud_autonomous_vm_cluster_security_attributes,
|
1449
1517
|
total_container_databases=cloud_autonomous_vm_cluster_total_container_databases)
|
1450
1518
|
```
|
1451
1519
|
|
@@ -1490,6 +1558,7 @@ class CloudAutonomousVmCluster(pulumi.CustomResource):
|
|
1490
1558
|
nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1491
1559
|
scan_listener_port_non_tls: Optional[pulumi.Input[int]] = None,
|
1492
1560
|
scan_listener_port_tls: Optional[pulumi.Input[int]] = None,
|
1561
|
+
security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1493
1562
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
1494
1563
|
time_updated: Optional[pulumi.Input[str]] = None,
|
1495
1564
|
total_container_databases: Optional[pulumi.Input[int]] = None,
|
@@ -1526,6 +1595,7 @@ class CloudAutonomousVmCluster(pulumi.CustomResource):
|
|
1526
1595
|
__props__.__dict__["nsg_ids"] = nsg_ids
|
1527
1596
|
__props__.__dict__["scan_listener_port_non_tls"] = scan_listener_port_non_tls
|
1528
1597
|
__props__.__dict__["scan_listener_port_tls"] = scan_listener_port_tls
|
1598
|
+
__props__.__dict__["security_attributes"] = security_attributes
|
1529
1599
|
if subnet_id is None and not opts.urn:
|
1530
1600
|
raise TypeError("Missing required property 'subnet_id'")
|
1531
1601
|
__props__.__dict__["subnet_id"] = subnet_id
|
@@ -1563,6 +1633,8 @@ class CloudAutonomousVmCluster(pulumi.CustomResource):
|
|
1563
1633
|
__props__.__dict__["shape"] = None
|
1564
1634
|
__props__.__dict__["state"] = None
|
1565
1635
|
__props__.__dict__["time_created"] = None
|
1636
|
+
__props__.__dict__["time_database_ssl_certificate_expires"] = None
|
1637
|
+
__props__.__dict__["time_ords_certificate_expires"] = None
|
1566
1638
|
__props__.__dict__["total_autonomous_data_storage_in_tbs"] = None
|
1567
1639
|
__props__.__dict__["total_cpus"] = None
|
1568
1640
|
super(CloudAutonomousVmCluster, __self__).__init__(
|
@@ -1622,10 +1694,13 @@ class CloudAutonomousVmCluster(pulumi.CustomResource):
|
|
1622
1694
|
reserved_cpus: Optional[pulumi.Input[float]] = None,
|
1623
1695
|
scan_listener_port_non_tls: Optional[pulumi.Input[int]] = None,
|
1624
1696
|
scan_listener_port_tls: Optional[pulumi.Input[int]] = None,
|
1697
|
+
security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1625
1698
|
shape: Optional[pulumi.Input[str]] = None,
|
1626
1699
|
state: Optional[pulumi.Input[str]] = None,
|
1627
1700
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
1628
1701
|
time_created: Optional[pulumi.Input[str]] = None,
|
1702
|
+
time_database_ssl_certificate_expires: Optional[pulumi.Input[str]] = None,
|
1703
|
+
time_ords_certificate_expires: Optional[pulumi.Input[str]] = None,
|
1629
1704
|
time_updated: Optional[pulumi.Input[str]] = None,
|
1630
1705
|
total_autonomous_data_storage_in_tbs: Optional[pulumi.Input[float]] = None,
|
1631
1706
|
total_container_databases: Optional[pulumi.Input[int]] = None,
|
@@ -1689,10 +1764,13 @@ class CloudAutonomousVmCluster(pulumi.CustomResource):
|
|
1689
1764
|
:param pulumi.Input[float] reserved_cpus: The number of CPUs reserved in an Autonomous VM Cluster.
|
1690
1765
|
:param pulumi.Input[int] scan_listener_port_non_tls: The SCAN Listener Non TLS port. Default is 1521.
|
1691
1766
|
:param pulumi.Input[int] scan_listener_port_tls: The SCAN Listener TLS port. Default is 2484.
|
1767
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes 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: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
1692
1768
|
:param pulumi.Input[str] shape: The model name of the Exadata hardware running the cloud Autonomous VM cluster.
|
1693
1769
|
:param pulumi.Input[str] state: The current state of the cloud Autonomous VM cluster.
|
1694
1770
|
:param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet the cloud Autonomous VM Cluster is associated with.
|
1695
1771
|
:param pulumi.Input[str] time_created: The date and time that the cloud Autonomous VM cluster was created.
|
1772
|
+
:param pulumi.Input[str] time_database_ssl_certificate_expires: The date and time of Database SSL certificate expiration.
|
1773
|
+
:param pulumi.Input[str] time_ords_certificate_expires: The date and time of ORDS certificate expiration.
|
1696
1774
|
:param pulumi.Input[str] time_updated: The last date and time that the cloud Autonomous VM cluster was updated.
|
1697
1775
|
:param pulumi.Input[float] total_autonomous_data_storage_in_tbs: The total data disk group size for Autonomous Databases, in TBs.
|
1698
1776
|
:param pulumi.Input[int] total_container_databases: (Updatable) The total number of Autonomous Container Databases that can be created.
|
@@ -1752,10 +1830,13 @@ class CloudAutonomousVmCluster(pulumi.CustomResource):
|
|
1752
1830
|
__props__.__dict__["reserved_cpus"] = reserved_cpus
|
1753
1831
|
__props__.__dict__["scan_listener_port_non_tls"] = scan_listener_port_non_tls
|
1754
1832
|
__props__.__dict__["scan_listener_port_tls"] = scan_listener_port_tls
|
1833
|
+
__props__.__dict__["security_attributes"] = security_attributes
|
1755
1834
|
__props__.__dict__["shape"] = shape
|
1756
1835
|
__props__.__dict__["state"] = state
|
1757
1836
|
__props__.__dict__["subnet_id"] = subnet_id
|
1758
1837
|
__props__.__dict__["time_created"] = time_created
|
1838
|
+
__props__.__dict__["time_database_ssl_certificate_expires"] = time_database_ssl_certificate_expires
|
1839
|
+
__props__.__dict__["time_ords_certificate_expires"] = time_ords_certificate_expires
|
1759
1840
|
__props__.__dict__["time_updated"] = time_updated
|
1760
1841
|
__props__.__dict__["total_autonomous_data_storage_in_tbs"] = total_autonomous_data_storage_in_tbs
|
1761
1842
|
__props__.__dict__["total_container_databases"] = total_container_databases
|
@@ -2143,6 +2224,14 @@ class CloudAutonomousVmCluster(pulumi.CustomResource):
|
|
2143
2224
|
"""
|
2144
2225
|
return pulumi.get(self, "scan_listener_port_tls")
|
2145
2226
|
|
2227
|
+
@property
|
2228
|
+
@pulumi.getter(name="securityAttributes")
|
2229
|
+
def security_attributes(self) -> pulumi.Output[Mapping[str, str]]:
|
2230
|
+
"""
|
2231
|
+
(Updatable) Security Attributes 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: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
2232
|
+
"""
|
2233
|
+
return pulumi.get(self, "security_attributes")
|
2234
|
+
|
2146
2235
|
@property
|
2147
2236
|
@pulumi.getter
|
2148
2237
|
def shape(self) -> pulumi.Output[str]:
|
@@ -2175,6 +2264,22 @@ class CloudAutonomousVmCluster(pulumi.CustomResource):
|
|
2175
2264
|
"""
|
2176
2265
|
return pulumi.get(self, "time_created")
|
2177
2266
|
|
2267
|
+
@property
|
2268
|
+
@pulumi.getter(name="timeDatabaseSslCertificateExpires")
|
2269
|
+
def time_database_ssl_certificate_expires(self) -> pulumi.Output[str]:
|
2270
|
+
"""
|
2271
|
+
The date and time of Database SSL certificate expiration.
|
2272
|
+
"""
|
2273
|
+
return pulumi.get(self, "time_database_ssl_certificate_expires")
|
2274
|
+
|
2275
|
+
@property
|
2276
|
+
@pulumi.getter(name="timeOrdsCertificateExpires")
|
2277
|
+
def time_ords_certificate_expires(self) -> pulumi.Output[str]:
|
2278
|
+
"""
|
2279
|
+
The date and time of ORDS certificate expiration.
|
2280
|
+
"""
|
2281
|
+
return pulumi.get(self, "time_ords_certificate_expires")
|
2282
|
+
|
2178
2283
|
@property
|
2179
2284
|
@pulumi.getter(name="timeUpdated")
|
2180
2285
|
def time_updated(self) -> pulumi.Output[Optional[str]]:
|
@@ -52,6 +52,7 @@ class CloudVmClusterArgs:
|
|
52
52
|
private_zone_id: Optional[pulumi.Input[str]] = None,
|
53
53
|
scan_listener_port_tcp: Optional[pulumi.Input[int]] = None,
|
54
54
|
scan_listener_port_tcp_ssl: Optional[pulumi.Input[int]] = None,
|
55
|
+
security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
55
56
|
subscription_id: Optional[pulumi.Input[str]] = None,
|
56
57
|
system_version: Optional[pulumi.Input[str]] = None,
|
57
58
|
time_zone: Optional[pulumi.Input[str]] = None):
|
@@ -99,6 +100,7 @@ class CloudVmClusterArgs:
|
|
99
100
|
:param pulumi.Input[str] private_zone_id: The private zone id in which DNS records need to be created.
|
100
101
|
:param pulumi.Input[int] scan_listener_port_tcp: The TCP Single Client Access Name (SCAN) port. The default port is 1521.
|
101
102
|
:param pulumi.Input[int] scan_listener_port_tcp_ssl: The TCPS Single Client Access Name (SCAN) port. The default port is 2484.
|
103
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes 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: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
102
104
|
:param pulumi.Input[str] subscription_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
|
103
105
|
:param pulumi.Input[str] system_version: Operating system version of the image.
|
104
106
|
:param pulumi.Input[str] time_zone: The time zone to use for the cloud VM cluster. For details, see [Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
|
@@ -160,6 +162,8 @@ class CloudVmClusterArgs:
|
|
160
162
|
pulumi.set(__self__, "scan_listener_port_tcp", scan_listener_port_tcp)
|
161
163
|
if scan_listener_port_tcp_ssl is not None:
|
162
164
|
pulumi.set(__self__, "scan_listener_port_tcp_ssl", scan_listener_port_tcp_ssl)
|
165
|
+
if security_attributes is not None:
|
166
|
+
pulumi.set(__self__, "security_attributes", security_attributes)
|
163
167
|
if subscription_id is not None:
|
164
168
|
pulumi.set(__self__, "subscription_id", subscription_id)
|
165
169
|
if system_version is not None:
|
@@ -548,6 +552,18 @@ class CloudVmClusterArgs:
|
|
548
552
|
def scan_listener_port_tcp_ssl(self, value: Optional[pulumi.Input[int]]):
|
549
553
|
pulumi.set(self, "scan_listener_port_tcp_ssl", value)
|
550
554
|
|
555
|
+
@property
|
556
|
+
@pulumi.getter(name="securityAttributes")
|
557
|
+
def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
558
|
+
"""
|
559
|
+
(Updatable) Security Attributes 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: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
560
|
+
"""
|
561
|
+
return pulumi.get(self, "security_attributes")
|
562
|
+
|
563
|
+
@security_attributes.setter
|
564
|
+
def security_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
565
|
+
pulumi.set(self, "security_attributes", value)
|
566
|
+
|
551
567
|
@property
|
552
568
|
@pulumi.getter(name="subscriptionId")
|
553
569
|
def subscription_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -631,6 +647,7 @@ class _CloudVmClusterState:
|
|
631
647
|
scan_ip_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
632
648
|
scan_listener_port_tcp: Optional[pulumi.Input[int]] = None,
|
633
649
|
scan_listener_port_tcp_ssl: Optional[pulumi.Input[int]] = None,
|
650
|
+
security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
634
651
|
shape: Optional[pulumi.Input[str]] = None,
|
635
652
|
ssh_public_keys: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
636
653
|
state: Optional[pulumi.Input[str]] = None,
|
@@ -695,6 +712,7 @@ class _CloudVmClusterState:
|
|
695
712
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] scan_ip_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IP addresses associated with the cloud VM cluster. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
|
696
713
|
:param pulumi.Input[int] scan_listener_port_tcp: The TCP Single Client Access Name (SCAN) port. The default port is 1521.
|
697
714
|
:param pulumi.Input[int] scan_listener_port_tcp_ssl: The TCPS Single Client Access Name (SCAN) port. The default port is 2484.
|
715
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes 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: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
698
716
|
:param pulumi.Input[str] shape: The model name of the Exadata hardware running the cloud VM cluster.
|
699
717
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ssh_public_keys: (Updatable) The public key portion of one or more key pairs used for SSH access to the cloud VM cluster.
|
700
718
|
:param pulumi.Input[str] state: The current state of the cloud VM cluster.
|
@@ -790,6 +808,8 @@ class _CloudVmClusterState:
|
|
790
808
|
pulumi.set(__self__, "scan_listener_port_tcp", scan_listener_port_tcp)
|
791
809
|
if scan_listener_port_tcp_ssl is not None:
|
792
810
|
pulumi.set(__self__, "scan_listener_port_tcp_ssl", scan_listener_port_tcp_ssl)
|
811
|
+
if security_attributes is not None:
|
812
|
+
pulumi.set(__self__, "security_attributes", security_attributes)
|
793
813
|
if shape is not None:
|
794
814
|
pulumi.set(__self__, "shape", shape)
|
795
815
|
if ssh_public_keys is not None:
|
@@ -1292,6 +1312,18 @@ class _CloudVmClusterState:
|
|
1292
1312
|
def scan_listener_port_tcp_ssl(self, value: Optional[pulumi.Input[int]]):
|
1293
1313
|
pulumi.set(self, "scan_listener_port_tcp_ssl", value)
|
1294
1314
|
|
1315
|
+
@property
|
1316
|
+
@pulumi.getter(name="securityAttributes")
|
1317
|
+
def security_attributes(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
1318
|
+
"""
|
1319
|
+
(Updatable) Security Attributes 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: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
1320
|
+
"""
|
1321
|
+
return pulumi.get(self, "security_attributes")
|
1322
|
+
|
1323
|
+
@security_attributes.setter
|
1324
|
+
def security_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
1325
|
+
pulumi.set(self, "security_attributes", value)
|
1326
|
+
|
1295
1327
|
@property
|
1296
1328
|
@pulumi.getter
|
1297
1329
|
def shape(self) -> Optional[pulumi.Input[str]]:
|
@@ -1475,6 +1507,7 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
1475
1507
|
private_zone_id: Optional[pulumi.Input[str]] = None,
|
1476
1508
|
scan_listener_port_tcp: Optional[pulumi.Input[int]] = None,
|
1477
1509
|
scan_listener_port_tcp_ssl: Optional[pulumi.Input[int]] = None,
|
1510
|
+
security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1478
1511
|
ssh_public_keys: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1479
1512
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
1480
1513
|
subscription_id: Optional[pulumi.Input[str]] = None,
|
@@ -1543,6 +1576,7 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
1543
1576
|
private_zone_id=test_zone["id"],
|
1544
1577
|
scan_listener_port_tcp=cloud_vm_cluster_scan_listener_port_tcp,
|
1545
1578
|
scan_listener_port_tcp_ssl=cloud_vm_cluster_scan_listener_port_tcp_ssl,
|
1579
|
+
security_attributes=cloud_vm_cluster_security_attributes,
|
1546
1580
|
subscription_id=tenant_subscription_id,
|
1547
1581
|
system_version=cloud_vm_cluster_system_version,
|
1548
1582
|
time_zone=cloud_vm_cluster_time_zone)
|
@@ -1598,6 +1632,7 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
1598
1632
|
:param pulumi.Input[str] private_zone_id: The private zone id in which DNS records need to be created.
|
1599
1633
|
:param pulumi.Input[int] scan_listener_port_tcp: The TCP Single Client Access Name (SCAN) port. The default port is 1521.
|
1600
1634
|
:param pulumi.Input[int] scan_listener_port_tcp_ssl: The TCPS Single Client Access Name (SCAN) port. The default port is 2484.
|
1635
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes 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: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
1601
1636
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ssh_public_keys: (Updatable) The public key portion of one or more key pairs used for SSH access to the cloud VM cluster.
|
1602
1637
|
:param pulumi.Input[str] subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subnet associated with the cloud VM cluster.
|
1603
1638
|
:param pulumi.Input[str] subscription_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
|
@@ -1676,6 +1711,7 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
1676
1711
|
private_zone_id=test_zone["id"],
|
1677
1712
|
scan_listener_port_tcp=cloud_vm_cluster_scan_listener_port_tcp,
|
1678
1713
|
scan_listener_port_tcp_ssl=cloud_vm_cluster_scan_listener_port_tcp_ssl,
|
1714
|
+
security_attributes=cloud_vm_cluster_security_attributes,
|
1679
1715
|
subscription_id=tenant_subscription_id,
|
1680
1716
|
system_version=cloud_vm_cluster_system_version,
|
1681
1717
|
time_zone=cloud_vm_cluster_time_zone)
|
@@ -1733,6 +1769,7 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
1733
1769
|
private_zone_id: Optional[pulumi.Input[str]] = None,
|
1734
1770
|
scan_listener_port_tcp: Optional[pulumi.Input[int]] = None,
|
1735
1771
|
scan_listener_port_tcp_ssl: Optional[pulumi.Input[int]] = None,
|
1772
|
+
security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1736
1773
|
ssh_public_keys: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1737
1774
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
1738
1775
|
subscription_id: Optional[pulumi.Input[str]] = None,
|
@@ -1790,6 +1827,7 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
1790
1827
|
__props__.__dict__["private_zone_id"] = private_zone_id
|
1791
1828
|
__props__.__dict__["scan_listener_port_tcp"] = scan_listener_port_tcp
|
1792
1829
|
__props__.__dict__["scan_listener_port_tcp_ssl"] = scan_listener_port_tcp_ssl
|
1830
|
+
__props__.__dict__["security_attributes"] = security_attributes
|
1793
1831
|
if ssh_public_keys is None and not opts.urn:
|
1794
1832
|
raise TypeError("Missing required property 'ssh_public_keys'")
|
1795
1833
|
__props__.__dict__["ssh_public_keys"] = ssh_public_keys
|
@@ -1865,6 +1903,7 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
1865
1903
|
scan_ip_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1866
1904
|
scan_listener_port_tcp: Optional[pulumi.Input[int]] = None,
|
1867
1905
|
scan_listener_port_tcp_ssl: Optional[pulumi.Input[int]] = None,
|
1906
|
+
security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1868
1907
|
shape: Optional[pulumi.Input[str]] = None,
|
1869
1908
|
ssh_public_keys: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1870
1909
|
state: Optional[pulumi.Input[str]] = None,
|
@@ -1934,6 +1973,7 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
1934
1973
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] scan_ip_ids: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Single Client Access Name (SCAN) IP addresses associated with the cloud VM cluster. SCAN IP addresses are typically used for load balancing and are not assigned to any interface. Oracle Clusterware directs the requests to the appropriate nodes in the cluster.
|
1935
1974
|
:param pulumi.Input[int] scan_listener_port_tcp: The TCP Single Client Access Name (SCAN) port. The default port is 1521.
|
1936
1975
|
:param pulumi.Input[int] scan_listener_port_tcp_ssl: The TCPS Single Client Access Name (SCAN) port. The default port is 2484.
|
1976
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] security_attributes: (Updatable) Security Attributes 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: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
1937
1977
|
:param pulumi.Input[str] shape: The model name of the Exadata hardware running the cloud VM cluster.
|
1938
1978
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] ssh_public_keys: (Updatable) The public key portion of one or more key pairs used for SSH access to the cloud VM cluster.
|
1939
1979
|
:param pulumi.Input[str] state: The current state of the cloud VM cluster.
|
@@ -1994,6 +2034,7 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
1994
2034
|
__props__.__dict__["scan_ip_ids"] = scan_ip_ids
|
1995
2035
|
__props__.__dict__["scan_listener_port_tcp"] = scan_listener_port_tcp
|
1996
2036
|
__props__.__dict__["scan_listener_port_tcp_ssl"] = scan_listener_port_tcp_ssl
|
2037
|
+
__props__.__dict__["security_attributes"] = security_attributes
|
1997
2038
|
__props__.__dict__["shape"] = shape
|
1998
2039
|
__props__.__dict__["ssh_public_keys"] = ssh_public_keys
|
1999
2040
|
__props__.__dict__["state"] = state
|
@@ -2329,6 +2370,14 @@ class CloudVmCluster(pulumi.CustomResource):
|
|
2329
2370
|
"""
|
2330
2371
|
return pulumi.get(self, "scan_listener_port_tcp_ssl")
|
2331
2372
|
|
2373
|
+
@property
|
2374
|
+
@pulumi.getter(name="securityAttributes")
|
2375
|
+
def security_attributes(self) -> pulumi.Output[Mapping[str, str]]:
|
2376
|
+
"""
|
2377
|
+
(Updatable) Security Attributes 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: `{"Oracle-ZPR": {"MaxEgressCount": {"value": "42", "mode": "audit"}}}`
|
2378
|
+
"""
|
2379
|
+
return pulumi.get(self, "security_attributes")
|
2380
|
+
|
2332
2381
|
@property
|
2333
2382
|
@pulumi.getter
|
2334
2383
|
def shape(self) -> pulumi.Output[str]:
|