pulumi-oci 2.26.0a1741847591__py3-none-any.whl → 2.27.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 +211 -0
- pulumi_oci/containerengine/_inputs.py +43 -44
- pulumi_oci/containerengine/cluster.py +2 -0
- pulumi_oci/containerengine/container_instance.py +2 -4
- pulumi_oci/containerengine/outputs.py +128 -43
- pulumi_oci/containerinstances/outputs.py +0 -14
- pulumi_oci/core/__init__.py +7 -0
- pulumi_oci/core/_inputs.py +168 -33
- pulumi_oci/core/compute_gpu_memory_cluster.py +706 -0
- pulumi_oci/core/compute_gpu_memory_fabric.py +667 -0
- pulumi_oci/core/get_compute_gpu_memory_cluster.py +281 -0
- pulumi_oci/core/get_compute_gpu_memory_cluster_instances.py +144 -0
- pulumi_oci/core/get_compute_gpu_memory_clusters.py +232 -0
- pulumi_oci/core/get_compute_gpu_memory_fabric.py +309 -0
- pulumi_oci/core/get_compute_gpu_memory_fabrics.py +289 -0
- pulumi_oci/core/outputs.py +595 -21
- pulumi_oci/database/__init__.py +3 -0
- pulumi_oci/database/_inputs.py +4116 -1225
- pulumi_oci/database/application_vip.py +59 -10
- pulumi_oci/database/autonomous_container_database.py +305 -52
- pulumi_oci/database/autonomous_container_database_add_standby.py +2183 -0
- pulumi_oci/database/autonomous_container_database_dataguard_association.py +80 -40
- pulumi_oci/database/autonomous_container_database_snapshot_standby.py +322 -0
- pulumi_oci/database/autonomous_database.py +7 -28
- pulumi_oci/database/backup.py +153 -5
- pulumi_oci/database/cloud_exadata_infrastructure.py +126 -0
- pulumi_oci/database/cloud_vm_cluster.py +163 -30
- pulumi_oci/database/db_node.py +64 -8
- pulumi_oci/database/exadata_infrastructure.py +157 -3
- pulumi_oci/database/exadata_infrastructure_configure_exascale_management.py +1615 -0
- pulumi_oci/database/exadb_vm_cluster.py +84 -7
- pulumi_oci/database/exascale_db_storage_vault.py +147 -0
- pulumi_oci/database/external_container_database.py +4 -4
- pulumi_oci/database/external_non_container_database.py +4 -4
- pulumi_oci/database/external_pluggable_database.py +4 -4
- pulumi_oci/database/get_application_vip.py +16 -2
- pulumi_oci/database/get_autonomous_container_database.py +103 -2
- pulumi_oci/database/get_autonomous_container_database_dataguard_association.py +12 -1
- pulumi_oci/database/get_autonomous_container_databases.py +1 -1
- pulumi_oci/database/get_autonomous_database.py +0 -3
- pulumi_oci/database/get_backups.py +136 -10
- pulumi_oci/database/get_cloud_exadata_infrastructure.py +43 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +59 -3
- pulumi_oci/database/get_cloud_vm_clusters.py +28 -6
- pulumi_oci/database/get_database_software_images.py +20 -1
- pulumi_oci/database/get_db_node.py +31 -4
- pulumi_oci/database/get_db_server.py +15 -1
- pulumi_oci/database/get_exadata_infrastructure.py +57 -1
- pulumi_oci/database/get_exadb_vm_cluster.py +29 -1
- pulumi_oci/database/get_exadb_vm_clusters.py +25 -3
- pulumi_oci/database/get_exascale_db_storage_vault.py +43 -1
- pulumi_oci/database/get_exascale_db_storage_vaults.py +47 -3
- pulumi_oci/database/get_external_container_database.py +1 -1
- pulumi_oci/database/get_external_non_container_database.py +1 -1
- pulumi_oci/database/get_external_pluggable_database.py +1 -1
- pulumi_oci/database/get_flex_components.py +28 -6
- pulumi_oci/database/get_maintenance_run.py +15 -1
- pulumi_oci/database/get_vm_cluster.py +60 -4
- pulumi_oci/database/get_vm_clusters.py +25 -3
- pulumi_oci/database/maintenance_run.py +28 -0
- pulumi_oci/database/outputs.py +3831 -267
- pulumi_oci/database/pluggable_database.py +13 -13
- pulumi_oci/database/vm_cluster.py +172 -18
- pulumi_oci/database/vm_cluster_add_virtual_network.py +114 -2
- pulumi_oci/database/vm_cluster_remove_virtual_machine.py +114 -2
- pulumi_oci/datasafe/__init__.py +7 -0
- pulumi_oci/datasafe/_inputs.py +301 -0
- pulumi_oci/datasafe/discovery_mod.py +49 -0
- pulumi_oci/datasafe/get_discovery_job.py +15 -1
- pulumi_oci/datasafe/get_masking_report.py +46 -4
- pulumi_oci/datasafe/get_masking_report_masking_errors.py +166 -0
- pulumi_oci/datasafe/get_security_assessment_finding.py +31 -1
- pulumi_oci/datasafe/get_security_assessment_findings.py +43 -3
- pulumi_oci/datasafe/get_sensitive_column_analytics.py +370 -0
- pulumi_oci/datasafe/get_sensitive_data_model.py +15 -1
- pulumi_oci/datasafe/get_sensitive_type_group.py +253 -0
- pulumi_oci/datasafe/get_sensitive_type_group_grouped_sensitive_types.py +166 -0
- pulumi_oci/datasafe/get_sensitive_type_groups.py +294 -0
- pulumi_oci/datasafe/outputs.py +676 -3
- pulumi_oci/datasafe/sensitive_data_model.py +49 -0
- pulumi_oci/datasafe/sensitive_type_group.py +563 -0
- pulumi_oci/datasafe/sensitive_type_group_grouped_sensitive_type.py +287 -0
- pulumi_oci/datascience/__init__.py +4 -0
- pulumi_oci/datascience/_inputs.py +1160 -41
- pulumi_oci/datascience/get_model.py +29 -1
- pulumi_oci/datascience/get_model_custom_metadata_artifact_content.py +151 -0
- pulumi_oci/datascience/get_model_defined_metadata_artifact_content.py +151 -0
- pulumi_oci/datascience/get_model_version_set.py +15 -1
- pulumi_oci/datascience/get_model_version_sets.py +25 -3
- pulumi_oci/datascience/get_models.py +25 -3
- pulumi_oci/datascience/get_pipeline.py +15 -1
- pulumi_oci/datascience/model.py +64 -0
- pulumi_oci/datascience/model_custom_metadata_artifact.py +418 -0
- pulumi_oci/datascience/model_defined_metadata_artifact.py +418 -0
- pulumi_oci/datascience/model_version_set.py +28 -0
- pulumi_oci/datascience/outputs.py +4343 -2164
- pulumi_oci/datascience/pipeline.py +48 -141
- pulumi_oci/datascience/pipeline_run.py +32 -0
- pulumi_oci/dblm/__init__.py +17 -0
- pulumi_oci/dblm/_inputs.py +275 -0
- pulumi_oci/dblm/get_vulnerability.py +242 -0
- pulumi_oci/dblm/get_vulnerability_aggregated_vulnerability_data.py +220 -0
- pulumi_oci/dblm/get_vulnerability_notifications.py +144 -0
- pulumi_oci/dblm/get_vulnerability_resources.py +258 -0
- pulumi_oci/dblm/get_vulnerability_scan.py +267 -0
- pulumi_oci/dblm/get_vulnerability_scans.py +270 -0
- pulumi_oci/dblm/get_vulnerability_vulnerabilities.py +258 -0
- pulumi_oci/dblm/outputs.py +1294 -0
- pulumi_oci/dblm/vulnerability_scan.py +521 -0
- pulumi_oci/email/dkim.py +120 -20
- pulumi_oci/email/get_dkim.py +40 -1
- pulumi_oci/email/outputs.py +29 -0
- pulumi_oci/filestorage/__init__.py +3 -0
- pulumi_oci/filestorage/_inputs.py +49 -0
- pulumi_oci/filestorage/file_system.py +105 -0
- pulumi_oci/filestorage/file_system_quota_rule.py +593 -0
- pulumi_oci/filestorage/get_file_system_quota_rule.py +248 -0
- pulumi_oci/filestorage/get_file_system_quota_rules.py +210 -0
- pulumi_oci/filestorage/outputs.py +186 -0
- pulumi_oci/goldengate/_inputs.py +128 -0
- pulumi_oci/goldengate/deployment.py +103 -0
- pulumi_oci/goldengate/deployment_backup.py +28 -0
- pulumi_oci/goldengate/get_deployment.py +43 -1
- pulumi_oci/goldengate/get_deployment_backup.py +15 -1
- pulumi_oci/goldengate/outputs.py +289 -0
- pulumi_oci/mysql/_inputs.py +1239 -10
- pulumi_oci/mysql/channel.py +28 -0
- pulumi_oci/mysql/get_channel.py +15 -1
- pulumi_oci/mysql/get_mysql_backup.py +15 -1
- pulumi_oci/mysql/get_mysql_configuration.py +15 -1
- pulumi_oci/mysql/get_mysql_db_system.py +15 -1
- pulumi_oci/mysql/mysql_backup.py +28 -0
- pulumi_oci/mysql/mysql_configuration.py +106 -0
- pulumi_oci/mysql/mysql_db_system.py +36 -0
- pulumi_oci/mysql/outputs.py +2008 -35
- pulumi_oci/opensearch/__init__.py +3 -0
- pulumi_oci/opensearch/_inputs.py +101 -0
- pulumi_oci/opensearch/cluster.py +76 -29
- pulumi_oci/opensearch/get_opensearch_cluster.py +12 -1
- pulumi_oci/opensearch/get_opensearch_cluster_pipeline.py +433 -0
- pulumi_oci/opensearch/get_opensearch_cluster_pipelines.py +218 -0
- pulumi_oci/opensearch/opensearch_cluster_pipeline.py +1172 -0
- pulumi_oci/opensearch/outputs.py +425 -0
- pulumi_oci/osmanagementhub/__init__.py +18 -0
- pulumi_oci/osmanagementhub/_inputs.py +677 -12
- pulumi_oci/osmanagementhub/event.py +8 -0
- pulumi_oci/osmanagementhub/get_entitlements.py +2 -2
- pulumi_oci/osmanagementhub/get_event.py +2 -0
- pulumi_oci/osmanagementhub/get_events.py +2 -0
- pulumi_oci/osmanagementhub/get_managed_instance.py +30 -2
- pulumi_oci/osmanagementhub/get_managed_instances.py +75 -63
- pulumi_oci/osmanagementhub/get_management_station.py +116 -4
- pulumi_oci/osmanagementhub/get_management_station_mirrors.py +1 -1
- pulumi_oci/osmanagementhub/get_management_stations.py +47 -4
- pulumi_oci/osmanagementhub/get_profile.py +32 -4
- pulumi_oci/osmanagementhub/get_profile_available_software_sources.py +207 -0
- pulumi_oci/osmanagementhub/get_profile_version.py +388 -0
- pulumi_oci/osmanagementhub/get_profiles.py +63 -3
- pulumi_oci/osmanagementhub/get_scheduled_job.py +15 -1
- pulumi_oci/osmanagementhub/get_software_package.py +2 -2
- pulumi_oci/osmanagementhub/get_software_package_software_source.py +7 -7
- pulumi_oci/osmanagementhub/get_software_source.py +89 -5
- pulumi_oci/osmanagementhub/get_software_source_available_software_packages.py +209 -0
- pulumi_oci/osmanagementhub/get_software_source_manifest.py +127 -0
- pulumi_oci/osmanagementhub/get_software_sources.py +30 -8
- pulumi_oci/osmanagementhub/lifecycle_stage_attach_managed_instances_management.py +6 -39
- pulumi_oci/osmanagementhub/lifecycle_stage_detach_managed_instances_management.py +6 -39
- pulumi_oci/osmanagementhub/lifecycle_stage_reboot_management.py +297 -0
- pulumi_oci/osmanagementhub/managed_instance.py +56 -0
- pulumi_oci/osmanagementhub/managed_instance_group_install_packages_management.py +49 -0
- pulumi_oci/osmanagementhub/managed_instance_group_reboot_management.py +297 -0
- pulumi_oci/osmanagementhub/managed_instance_reboot_management.py +299 -0
- pulumi_oci/osmanagementhub/management_station.py +251 -4
- pulumi_oci/osmanagementhub/management_station_associate_managed_instances_management.py +298 -0
- pulumi_oci/osmanagementhub/management_station_refresh_management.py +2 -2
- pulumi_oci/osmanagementhub/management_station_synchronize_mirrors_management.py +9 -9
- pulumi_oci/osmanagementhub/outputs.py +1349 -50
- pulumi_oci/osmanagementhub/profile.py +70 -14
- pulumi_oci/osmanagementhub/profile_attach_lifecycle_stage_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_managed_instance_group_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_management_station_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_attach_software_sources_management.py +269 -0
- pulumi_oci/osmanagementhub/profile_detach_software_sources_management.py +269 -0
- pulumi_oci/osmanagementhub/scheduled_job.py +72 -21
- pulumi_oci/osmanagementhub/software_source.py +365 -26
- pulumi_oci/osmanagementhub/software_source_add_packages_management.py +67 -10
- pulumi_oci/osmanagementhub/software_source_generate_metadata_management.py +217 -0
- pulumi_oci/osmanagementhub/software_source_manifest.py +268 -0
- pulumi_oci/osmanagementhub/software_source_remove_packages_management.py +277 -0
- pulumi_oci/osmanagementhub/software_source_replace_packages_management.py +277 -0
- pulumi_oci/osmanagementhub/work_request_rerun_management.py +325 -0
- pulumi_oci/psql/_inputs.py +258 -0
- pulumi_oci/psql/backup.py +129 -28
- pulumi_oci/psql/db_system.py +10 -0
- pulumi_oci/psql/get_backup.py +47 -2
- pulumi_oci/psql/get_backups.py +3 -0
- pulumi_oci/psql/get_configurations.py +23 -1
- pulumi_oci/psql/get_db_system.py +1 -1
- pulumi_oci/psql/get_db_systems.py +1 -1
- pulumi_oci/psql/outputs.py +541 -5
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/redis_cluster.py +7 -7
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0.dist-info}/METADATA +2 -2
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0.dist-info}/RECORD +206 -150
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0.dist-info}/WHEEL +1 -1
- {pulumi_oci-2.26.0a1741847591.dist-info → pulumi_oci-2.27.0.dist-info}/top_level.txt +0 -0
@@ -45,6 +45,7 @@ class ExadbVmClusterArgs:
|
|
45
45
|
scan_listener_port_tcp: Optional[pulumi.Input[int]] = None,
|
46
46
|
scan_listener_port_tcp_ssl: Optional[pulumi.Input[int]] = None,
|
47
47
|
security_attributes: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
48
|
+
subscription_id: Optional[pulumi.Input[str]] = None,
|
48
49
|
system_version: Optional[pulumi.Input[str]] = None,
|
49
50
|
time_zone: Optional[pulumi.Input[str]] = None):
|
50
51
|
"""
|
@@ -56,7 +57,7 @@ class ExadbVmClusterArgs:
|
|
56
57
|
:param pulumi.Input[str] exascale_db_storage_vault_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Exadata Database Storage Vault.
|
57
58
|
:param pulumi.Input[str] grid_image_id: (Updatable) Grid Setup will be done using this grid image id.
|
58
59
|
|
59
|
-
The grid image
|
60
|
+
The grid image ID can be obtained using the API /20160918/giVersions/{majorVersion}/minorVersions?compartmentId=<compartmentId>&shapeFamily=EXADB_XS&availabilityDomain=<AD name>. The list of supported major versions can be obtained using the API /20160918/giVersions?compartmentId=<compartmentId>&shape=ExaDbXS&availabilityDomain=<AD name>
|
60
61
|
:param pulumi.Input[str] hostname: The hostname for the Exadata VM cluster on Exascale Infrastructure. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). For Exadata systems, the maximum length of the hostname is 12 characters.
|
61
62
|
|
62
63
|
The maximum length of the combined hostname and domain is 63 characters.
|
@@ -80,6 +81,7 @@ class ExadbVmClusterArgs:
|
|
80
81
|
:param pulumi.Input[int] scan_listener_port_tcp: The TCP Single Client Access Name (SCAN) port. The default port is 1521.
|
81
82
|
:param pulumi.Input[int] scan_listener_port_tcp_ssl: The Secured Communication (TCPS) protocol Single Client Access Name (SCAN) port. The default port is 2484.
|
82
83
|
: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"}}}`
|
84
|
+
: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.
|
83
85
|
:param pulumi.Input[str] system_version: (Updatable) Operating system version of the image.
|
84
86
|
:param pulumi.Input[str] time_zone: The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see [Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
|
85
87
|
|
@@ -124,6 +126,8 @@ class ExadbVmClusterArgs:
|
|
124
126
|
pulumi.set(__self__, "scan_listener_port_tcp_ssl", scan_listener_port_tcp_ssl)
|
125
127
|
if security_attributes is not None:
|
126
128
|
pulumi.set(__self__, "security_attributes", security_attributes)
|
129
|
+
if subscription_id is not None:
|
130
|
+
pulumi.set(__self__, "subscription_id", subscription_id)
|
127
131
|
if system_version is not None:
|
128
132
|
pulumi.set(__self__, "system_version", system_version)
|
129
133
|
if time_zone is not None:
|
@@ -195,7 +199,7 @@ class ExadbVmClusterArgs:
|
|
195
199
|
"""
|
196
200
|
(Updatable) Grid Setup will be done using this grid image id.
|
197
201
|
|
198
|
-
The grid image
|
202
|
+
The grid image ID can be obtained using the API /20160918/giVersions/{majorVersion}/minorVersions?compartmentId=<compartmentId>&shapeFamily=EXADB_XS&availabilityDomain=<AD name>. The list of supported major versions can be obtained using the API /20160918/giVersions?compartmentId=<compartmentId>&shape=ExaDbXS&availabilityDomain=<AD name>
|
199
203
|
"""
|
200
204
|
return pulumi.get(self, "grid_image_id")
|
201
205
|
|
@@ -424,6 +428,18 @@ class ExadbVmClusterArgs:
|
|
424
428
|
def security_attributes(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
425
429
|
pulumi.set(self, "security_attributes", value)
|
426
430
|
|
431
|
+
@property
|
432
|
+
@pulumi.getter(name="subscriptionId")
|
433
|
+
def subscription_id(self) -> Optional[pulumi.Input[str]]:
|
434
|
+
"""
|
435
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
|
436
|
+
"""
|
437
|
+
return pulumi.get(self, "subscription_id")
|
438
|
+
|
439
|
+
@subscription_id.setter
|
440
|
+
def subscription_id(self, value: Optional[pulumi.Input[str]]):
|
441
|
+
pulumi.set(self, "subscription_id", value)
|
442
|
+
|
427
443
|
@property
|
428
444
|
@pulumi.getter(name="systemVersion")
|
429
445
|
def system_version(self) -> Optional[pulumi.Input[str]]:
|
@@ -460,6 +476,7 @@ class _ExadbVmClusterState:
|
|
460
476
|
backup_network_nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
461
477
|
backup_subnet_id: Optional[pulumi.Input[str]] = None,
|
462
478
|
cluster_name: Optional[pulumi.Input[str]] = None,
|
479
|
+
cluster_placement_group_id: Optional[pulumi.Input[str]] = None,
|
463
480
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
464
481
|
data_collection_options: Optional[pulumi.Input['ExadbVmClusterDataCollectionOptionsArgs']] = None,
|
465
482
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -490,6 +507,7 @@ class _ExadbVmClusterState:
|
|
490
507
|
ssh_public_keys: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
491
508
|
state: Optional[pulumi.Input[str]] = None,
|
492
509
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
510
|
+
subscription_id: Optional[pulumi.Input[str]] = None,
|
493
511
|
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
494
512
|
system_version: Optional[pulumi.Input[str]] = None,
|
495
513
|
time_created: Optional[pulumi.Input[str]] = None,
|
@@ -502,6 +520,7 @@ class _ExadbVmClusterState:
|
|
502
520
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] backup_network_nsg_ids: (Updatable) A list of the [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). Applicable only to Exadata systems.
|
503
521
|
:param pulumi.Input[str] backup_subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
|
504
522
|
:param pulumi.Input[str] cluster_name: The cluster name for Exadata VM cluster on Exascale Infrastructure. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
|
523
|
+
:param pulumi.Input[str] cluster_placement_group_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cluster placement group of the Exadata Infrastructure.
|
505
524
|
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
506
525
|
:param pulumi.Input['ExadbVmClusterDataCollectionOptionsArgs'] data_collection_options: (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
|
507
526
|
: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).
|
@@ -512,7 +531,7 @@ class _ExadbVmClusterState:
|
|
512
531
|
:param pulumi.Input[str] gi_version: A valid Oracle Grid Infrastructure (GI) software version.
|
513
532
|
:param pulumi.Input[str] grid_image_id: (Updatable) Grid Setup will be done using this grid image id.
|
514
533
|
|
515
|
-
The grid image
|
534
|
+
The grid image ID can be obtained using the API /20160918/giVersions/{majorVersion}/minorVersions?compartmentId=<compartmentId>&shapeFamily=EXADB_XS&availabilityDomain=<AD name>. The list of supported major versions can be obtained using the API /20160918/giVersions?compartmentId=<compartmentId>&shape=ExaDbXS&availabilityDomain=<AD name>
|
516
535
|
:param pulumi.Input[str] grid_image_type: The type of Grid Image
|
517
536
|
:param pulumi.Input[str] hostname: The hostname for the Exadata VM cluster on Exascale Infrastructure. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). For Exadata systems, the maximum length of the hostname is 12 characters.
|
518
537
|
|
@@ -539,6 +558,7 @@ class _ExadbVmClusterState:
|
|
539
558
|
: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 Exadata VM cluster on Exascale Infrastructure.
|
540
559
|
:param pulumi.Input[str] state: The current state of the Exadata VM cluster on Exascale Infrastructure.
|
541
560
|
: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 Exadata VM cluster on Exascale Infrastructure.
|
561
|
+
: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.
|
542
562
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: System 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).
|
543
563
|
:param pulumi.Input[str] system_version: (Updatable) Operating system version of the image.
|
544
564
|
:param pulumi.Input[str] time_created: The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
|
@@ -558,6 +578,8 @@ class _ExadbVmClusterState:
|
|
558
578
|
pulumi.set(__self__, "backup_subnet_id", backup_subnet_id)
|
559
579
|
if cluster_name is not None:
|
560
580
|
pulumi.set(__self__, "cluster_name", cluster_name)
|
581
|
+
if cluster_placement_group_id is not None:
|
582
|
+
pulumi.set(__self__, "cluster_placement_group_id", cluster_placement_group_id)
|
561
583
|
if compartment_id is not None:
|
562
584
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
563
585
|
if data_collection_options is not None:
|
@@ -618,6 +640,8 @@ class _ExadbVmClusterState:
|
|
618
640
|
pulumi.set(__self__, "state", state)
|
619
641
|
if subnet_id is not None:
|
620
642
|
pulumi.set(__self__, "subnet_id", subnet_id)
|
643
|
+
if subscription_id is not None:
|
644
|
+
pulumi.set(__self__, "subscription_id", subscription_id)
|
621
645
|
if system_tags is not None:
|
622
646
|
pulumi.set(__self__, "system_tags", system_tags)
|
623
647
|
if system_version is not None:
|
@@ -679,6 +703,18 @@ class _ExadbVmClusterState:
|
|
679
703
|
def cluster_name(self, value: Optional[pulumi.Input[str]]):
|
680
704
|
pulumi.set(self, "cluster_name", value)
|
681
705
|
|
706
|
+
@property
|
707
|
+
@pulumi.getter(name="clusterPlacementGroupId")
|
708
|
+
def cluster_placement_group_id(self) -> Optional[pulumi.Input[str]]:
|
709
|
+
"""
|
710
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cluster placement group of the Exadata Infrastructure.
|
711
|
+
"""
|
712
|
+
return pulumi.get(self, "cluster_placement_group_id")
|
713
|
+
|
714
|
+
@cluster_placement_group_id.setter
|
715
|
+
def cluster_placement_group_id(self, value: Optional[pulumi.Input[str]]):
|
716
|
+
pulumi.set(self, "cluster_placement_group_id", value)
|
717
|
+
|
682
718
|
@property
|
683
719
|
@pulumi.getter(name="compartmentId")
|
684
720
|
def compartment_id(self) -> Optional[pulumi.Input[str]]:
|
@@ -781,7 +817,7 @@ class _ExadbVmClusterState:
|
|
781
817
|
"""
|
782
818
|
(Updatable) Grid Setup will be done using this grid image id.
|
783
819
|
|
784
|
-
The grid image
|
820
|
+
The grid image ID can be obtained using the API /20160918/giVersions/{majorVersion}/minorVersions?compartmentId=<compartmentId>&shapeFamily=EXADB_XS&availabilityDomain=<AD name>. The list of supported major versions can be obtained using the API /20160918/giVersions?compartmentId=<compartmentId>&shape=ExaDbXS&availabilityDomain=<AD name>
|
785
821
|
"""
|
786
822
|
return pulumi.get(self, "grid_image_id")
|
787
823
|
|
@@ -1046,6 +1082,18 @@ class _ExadbVmClusterState:
|
|
1046
1082
|
def subnet_id(self, value: Optional[pulumi.Input[str]]):
|
1047
1083
|
pulumi.set(self, "subnet_id", value)
|
1048
1084
|
|
1085
|
+
@property
|
1086
|
+
@pulumi.getter(name="subscriptionId")
|
1087
|
+
def subscription_id(self) -> Optional[pulumi.Input[str]]:
|
1088
|
+
"""
|
1089
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
|
1090
|
+
"""
|
1091
|
+
return pulumi.get(self, "subscription_id")
|
1092
|
+
|
1093
|
+
@subscription_id.setter
|
1094
|
+
def subscription_id(self, value: Optional[pulumi.Input[str]]):
|
1095
|
+
pulumi.set(self, "subscription_id", value)
|
1096
|
+
|
1049
1097
|
@property
|
1050
1098
|
@pulumi.getter(name="systemTags")
|
1051
1099
|
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
@@ -1152,6 +1200,7 @@ class ExadbVmCluster(pulumi.CustomResource):
|
|
1152
1200
|
shape: Optional[pulumi.Input[str]] = None,
|
1153
1201
|
ssh_public_keys: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1154
1202
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
1203
|
+
subscription_id: Optional[pulumi.Input[str]] = None,
|
1155
1204
|
system_version: Optional[pulumi.Input[str]] = None,
|
1156
1205
|
time_zone: Optional[pulumi.Input[str]] = None,
|
1157
1206
|
__props__=None):
|
@@ -1208,6 +1257,7 @@ class ExadbVmCluster(pulumi.CustomResource):
|
|
1208
1257
|
scan_listener_port_tcp=exadb_vm_cluster_scan_listener_port_tcp,
|
1209
1258
|
scan_listener_port_tcp_ssl=exadb_vm_cluster_scan_listener_port_tcp_ssl,
|
1210
1259
|
security_attributes=exadb_vm_cluster_security_attributes,
|
1260
|
+
subscription_id=tenant_subscription_id,
|
1211
1261
|
system_version=exadb_vm_cluster_system_version,
|
1212
1262
|
time_zone=exadb_vm_cluster_time_zone)
|
1213
1263
|
```
|
@@ -1235,7 +1285,7 @@ class ExadbVmCluster(pulumi.CustomResource):
|
|
1235
1285
|
: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"}`
|
1236
1286
|
:param pulumi.Input[str] grid_image_id: (Updatable) Grid Setup will be done using this grid image id.
|
1237
1287
|
|
1238
|
-
The grid image
|
1288
|
+
The grid image ID can be obtained using the API /20160918/giVersions/{majorVersion}/minorVersions?compartmentId=<compartmentId>&shapeFamily=EXADB_XS&availabilityDomain=<AD name>. The list of supported major versions can be obtained using the API /20160918/giVersions?compartmentId=<compartmentId>&shape=ExaDbXS&availabilityDomain=<AD name>
|
1239
1289
|
:param pulumi.Input[str] hostname: The hostname for the Exadata VM cluster on Exascale Infrastructure. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). For Exadata systems, the maximum length of the hostname is 12 characters.
|
1240
1290
|
|
1241
1291
|
The maximum length of the combined hostname and domain is 63 characters.
|
@@ -1253,6 +1303,7 @@ class ExadbVmCluster(pulumi.CustomResource):
|
|
1253
1303
|
:param pulumi.Input[str] shape: The shape of the Exadata VM cluster on Exascale Infrastructure resource
|
1254
1304
|
: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 Exadata VM cluster on Exascale Infrastructure.
|
1255
1305
|
: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 Exadata VM cluster on Exascale Infrastructure.
|
1306
|
+
: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.
|
1256
1307
|
:param pulumi.Input[str] system_version: (Updatable) Operating system version of the image.
|
1257
1308
|
:param pulumi.Input[str] time_zone: The time zone to use for the Exadata VM cluster on Exascale Infrastructure. For details, see [Time Zones](https://docs.cloud.oracle.com/iaas/Content/Database/References/timezones.htm).
|
1258
1309
|
|
@@ -1319,6 +1370,7 @@ class ExadbVmCluster(pulumi.CustomResource):
|
|
1319
1370
|
scan_listener_port_tcp=exadb_vm_cluster_scan_listener_port_tcp,
|
1320
1371
|
scan_listener_port_tcp_ssl=exadb_vm_cluster_scan_listener_port_tcp_ssl,
|
1321
1372
|
security_attributes=exadb_vm_cluster_security_attributes,
|
1373
|
+
subscription_id=tenant_subscription_id,
|
1322
1374
|
system_version=exadb_vm_cluster_system_version,
|
1323
1375
|
time_zone=exadb_vm_cluster_time_zone)
|
1324
1376
|
```
|
@@ -1370,6 +1422,7 @@ class ExadbVmCluster(pulumi.CustomResource):
|
|
1370
1422
|
shape: Optional[pulumi.Input[str]] = None,
|
1371
1423
|
ssh_public_keys: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1372
1424
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
1425
|
+
subscription_id: Optional[pulumi.Input[str]] = None,
|
1373
1426
|
system_version: Optional[pulumi.Input[str]] = None,
|
1374
1427
|
time_zone: Optional[pulumi.Input[str]] = None,
|
1375
1428
|
__props__=None):
|
@@ -1427,8 +1480,10 @@ class ExadbVmCluster(pulumi.CustomResource):
|
|
1427
1480
|
if subnet_id is None and not opts.urn:
|
1428
1481
|
raise TypeError("Missing required property 'subnet_id'")
|
1429
1482
|
__props__.__dict__["subnet_id"] = subnet_id
|
1483
|
+
__props__.__dict__["subscription_id"] = subscription_id
|
1430
1484
|
__props__.__dict__["system_version"] = system_version
|
1431
1485
|
__props__.__dict__["time_zone"] = time_zone
|
1486
|
+
__props__.__dict__["cluster_placement_group_id"] = None
|
1432
1487
|
__props__.__dict__["gi_version"] = None
|
1433
1488
|
__props__.__dict__["grid_image_type"] = None
|
1434
1489
|
__props__.__dict__["iorm_config_caches"] = None
|
@@ -1457,6 +1512,7 @@ class ExadbVmCluster(pulumi.CustomResource):
|
|
1457
1512
|
backup_network_nsg_ids: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1458
1513
|
backup_subnet_id: Optional[pulumi.Input[str]] = None,
|
1459
1514
|
cluster_name: Optional[pulumi.Input[str]] = None,
|
1515
|
+
cluster_placement_group_id: Optional[pulumi.Input[str]] = None,
|
1460
1516
|
compartment_id: Optional[pulumi.Input[str]] = None,
|
1461
1517
|
data_collection_options: Optional[pulumi.Input[Union['ExadbVmClusterDataCollectionOptionsArgs', 'ExadbVmClusterDataCollectionOptionsArgsDict']]] = None,
|
1462
1518
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
@@ -1487,6 +1543,7 @@ class ExadbVmCluster(pulumi.CustomResource):
|
|
1487
1543
|
ssh_public_keys: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
1488
1544
|
state: Optional[pulumi.Input[str]] = None,
|
1489
1545
|
subnet_id: Optional[pulumi.Input[str]] = None,
|
1546
|
+
subscription_id: Optional[pulumi.Input[str]] = None,
|
1490
1547
|
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
1491
1548
|
system_version: Optional[pulumi.Input[str]] = None,
|
1492
1549
|
time_created: Optional[pulumi.Input[str]] = None,
|
@@ -1504,6 +1561,7 @@ class ExadbVmCluster(pulumi.CustomResource):
|
|
1504
1561
|
:param pulumi.Input[Sequence[pulumi.Input[str]]] backup_network_nsg_ids: (Updatable) A list of the [OCIDs](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the network security groups (NSGs) that the backup network of this DB system belongs to. Setting this to an empty array after the list is created removes the resource from all NSGs. For more information about NSGs, see [Security Rules](https://docs.cloud.oracle.com/iaas/Content/Network/Concepts/securityrules.htm). Applicable only to Exadata systems.
|
1505
1562
|
:param pulumi.Input[str] backup_subnet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the backup network subnet associated with the Exadata VM cluster on Exascale Infrastructure.
|
1506
1563
|
:param pulumi.Input[str] cluster_name: The cluster name for Exadata VM cluster on Exascale Infrastructure. The cluster name must begin with an alphabetic character, and may contain hyphens (-). Underscores (_) are not permitted. The cluster name can be no longer than 11 characters and is not case sensitive.
|
1564
|
+
:param pulumi.Input[str] cluster_placement_group_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cluster placement group of the Exadata Infrastructure.
|
1507
1565
|
:param pulumi.Input[str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
1508
1566
|
:param pulumi.Input[Union['ExadbVmClusterDataCollectionOptionsArgs', 'ExadbVmClusterDataCollectionOptionsArgsDict']] data_collection_options: (Updatable) Indicates user preferences for the various diagnostic collection options for the VM cluster/Cloud VM cluster/VMBM DBCS.
|
1509
1567
|
: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).
|
@@ -1514,7 +1572,7 @@ class ExadbVmCluster(pulumi.CustomResource):
|
|
1514
1572
|
:param pulumi.Input[str] gi_version: A valid Oracle Grid Infrastructure (GI) software version.
|
1515
1573
|
:param pulumi.Input[str] grid_image_id: (Updatable) Grid Setup will be done using this grid image id.
|
1516
1574
|
|
1517
|
-
The grid image
|
1575
|
+
The grid image ID can be obtained using the API /20160918/giVersions/{majorVersion}/minorVersions?compartmentId=<compartmentId>&shapeFamily=EXADB_XS&availabilityDomain=<AD name>. The list of supported major versions can be obtained using the API /20160918/giVersions?compartmentId=<compartmentId>&shape=ExaDbXS&availabilityDomain=<AD name>
|
1518
1576
|
:param pulumi.Input[str] grid_image_type: The type of Grid Image
|
1519
1577
|
:param pulumi.Input[str] hostname: The hostname for the Exadata VM cluster on Exascale Infrastructure. The hostname must begin with an alphabetic character, and can contain alphanumeric characters and hyphens (-). For Exadata systems, the maximum length of the hostname is 12 characters.
|
1520
1578
|
|
@@ -1541,6 +1599,7 @@ class ExadbVmCluster(pulumi.CustomResource):
|
|
1541
1599
|
: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 Exadata VM cluster on Exascale Infrastructure.
|
1542
1600
|
:param pulumi.Input[str] state: The current state of the Exadata VM cluster on Exascale Infrastructure.
|
1543
1601
|
: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 Exadata VM cluster on Exascale Infrastructure.
|
1602
|
+
: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.
|
1544
1603
|
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] system_tags: System 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).
|
1545
1604
|
:param pulumi.Input[str] system_version: (Updatable) Operating system version of the image.
|
1546
1605
|
:param pulumi.Input[str] time_created: The date and time that the Exadata VM cluster on Exascale Infrastructure was created.
|
@@ -1560,6 +1619,7 @@ class ExadbVmCluster(pulumi.CustomResource):
|
|
1560
1619
|
__props__.__dict__["backup_network_nsg_ids"] = backup_network_nsg_ids
|
1561
1620
|
__props__.__dict__["backup_subnet_id"] = backup_subnet_id
|
1562
1621
|
__props__.__dict__["cluster_name"] = cluster_name
|
1622
|
+
__props__.__dict__["cluster_placement_group_id"] = cluster_placement_group_id
|
1563
1623
|
__props__.__dict__["compartment_id"] = compartment_id
|
1564
1624
|
__props__.__dict__["data_collection_options"] = data_collection_options
|
1565
1625
|
__props__.__dict__["defined_tags"] = defined_tags
|
@@ -1590,6 +1650,7 @@ class ExadbVmCluster(pulumi.CustomResource):
|
|
1590
1650
|
__props__.__dict__["ssh_public_keys"] = ssh_public_keys
|
1591
1651
|
__props__.__dict__["state"] = state
|
1592
1652
|
__props__.__dict__["subnet_id"] = subnet_id
|
1653
|
+
__props__.__dict__["subscription_id"] = subscription_id
|
1593
1654
|
__props__.__dict__["system_tags"] = system_tags
|
1594
1655
|
__props__.__dict__["system_version"] = system_version
|
1595
1656
|
__props__.__dict__["time_created"] = time_created
|
@@ -1630,6 +1691,14 @@ class ExadbVmCluster(pulumi.CustomResource):
|
|
1630
1691
|
"""
|
1631
1692
|
return pulumi.get(self, "cluster_name")
|
1632
1693
|
|
1694
|
+
@property
|
1695
|
+
@pulumi.getter(name="clusterPlacementGroupId")
|
1696
|
+
def cluster_placement_group_id(self) -> pulumi.Output[str]:
|
1697
|
+
"""
|
1698
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the cluster placement group of the Exadata Infrastructure.
|
1699
|
+
"""
|
1700
|
+
return pulumi.get(self, "cluster_placement_group_id")
|
1701
|
+
|
1633
1702
|
@property
|
1634
1703
|
@pulumi.getter(name="compartmentId")
|
1635
1704
|
def compartment_id(self) -> pulumi.Output[str]:
|
@@ -1700,7 +1769,7 @@ class ExadbVmCluster(pulumi.CustomResource):
|
|
1700
1769
|
"""
|
1701
1770
|
(Updatable) Grid Setup will be done using this grid image id.
|
1702
1771
|
|
1703
|
-
The grid image
|
1772
|
+
The grid image ID can be obtained using the API /20160918/giVersions/{majorVersion}/minorVersions?compartmentId=<compartmentId>&shapeFamily=EXADB_XS&availabilityDomain=<AD name>. The list of supported major versions can be obtained using the API /20160918/giVersions?compartmentId=<compartmentId>&shape=ExaDbXS&availabilityDomain=<AD name>
|
1704
1773
|
"""
|
1705
1774
|
return pulumi.get(self, "grid_image_id")
|
1706
1775
|
|
@@ -1877,6 +1946,14 @@ class ExadbVmCluster(pulumi.CustomResource):
|
|
1877
1946
|
"""
|
1878
1947
|
return pulumi.get(self, "subnet_id")
|
1879
1948
|
|
1949
|
+
@property
|
1950
|
+
@pulumi.getter(name="subscriptionId")
|
1951
|
+
def subscription_id(self) -> pulumi.Output[str]:
|
1952
|
+
"""
|
1953
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the subscription with which resource needs to be associated with.
|
1954
|
+
"""
|
1955
|
+
return pulumi.get(self, "subscription_id")
|
1956
|
+
|
1880
1957
|
@property
|
1881
1958
|
@pulumi.getter(name="systemTags")
|
1882
1959
|
def system_tags(self) -> pulumi.Output[Mapping[str, str]]:
|