pulumi-oci 3.1.0a1750230541__py3-none-any.whl → 3.1.0a1751948424__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 +299 -0
- pulumi_oci/capacitymanagement/__init__.py +18 -0
- pulumi_oci/capacitymanagement/_inputs.py +459 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal.py +268 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog.py +254 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog_resources.py +233 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalogs.py +192 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_deliveries.py +197 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_delivery.py +296 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_items.py +233 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signals.py +222 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal.py +254 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_catalog_resources.py +189 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_deliveries.py +175 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_item.py +352 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_items.py +211 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signals.py +200 -0
- pulumi_oci/capacitymanagement/internal_occm_demand_signal.py +564 -0
- pulumi_oci/capacitymanagement/internal_occm_demand_signal_delivery.py +760 -0
- pulumi_oci/capacitymanagement/occm_demand_signal.py +585 -0
- pulumi_oci/capacitymanagement/occm_demand_signal_item.py +950 -0
- pulumi_oci/capacitymanagement/outputs.py +3499 -1230
- pulumi_oci/containerengine/get_cluster.py +7 -7
- pulumi_oci/core/__init__.py +4 -0
- pulumi_oci/core/_inputs.py +477 -0
- pulumi_oci/core/compute_host.py +910 -0
- pulumi_oci/core/compute_host_group.py +648 -0
- pulumi_oci/core/dedicated_vm_host.py +56 -0
- pulumi_oci/core/get_compute_host.py +72 -1
- pulumi_oci/core/get_compute_host_group.py +269 -0
- pulumi_oci/core/get_compute_host_groups.py +148 -0
- pulumi_oci/core/get_compute_hosts.py +37 -1
- pulumi_oci/core/get_dedicated_vm_host.py +29 -1
- pulumi_oci/core/outputs.py +912 -24
- pulumi_oci/database/__init__.py +2 -0
- pulumi_oci/database/_inputs.py +739 -52
- pulumi_oci/database/autonomous_container_database.py +141 -12
- pulumi_oci/database/autonomous_container_database_add_standby.py +8 -10
- pulumi_oci/database/autonomous_container_database_dataguard_association.py +8 -16
- pulumi_oci/database/autonomous_container_database_snapshot_standby.py +4 -6
- pulumi_oci/database/autonomous_database_software_image.py +28 -0
- pulumi_oci/database/autonomous_vm_cluster.py +28 -0
- pulumi_oci/database/backup_destination.py +28 -0
- pulumi_oci/database/cloud_autonomous_vm_cluster.py +126 -0
- pulumi_oci/database/cloud_vm_cluster.py +82 -7
- pulumi_oci/database/database.py +28 -0
- pulumi_oci/database/database_software_image.py +28 -0
- pulumi_oci/database/database_upgrade.py +28 -0
- pulumi_oci/database/db_home.py +28 -0
- pulumi_oci/database/db_node.py +28 -0
- pulumi_oci/database/db_system.py +28 -0
- pulumi_oci/database/exadata_infrastructure.py +28 -0
- pulumi_oci/database/exadata_infrastructure_compute.py +39 -24
- pulumi_oci/database/external_container_database.py +28 -0
- pulumi_oci/database/external_database_connector.py +28 -0
- pulumi_oci/database/external_non_container_database.py +28 -0
- pulumi_oci/database/external_pluggable_database.py +28 -0
- pulumi_oci/database/get_autonomous_container_database.py +52 -2
- pulumi_oci/database/get_autonomous_container_database_backups.py +255 -0
- pulumi_oci/database/get_autonomous_container_database_dataguard_association.py +2 -2
- pulumi_oci/database/get_autonomous_container_database_dataguard_associations.py +2 -2
- pulumi_oci/database/get_autonomous_database_dataguard_associations.py +2 -2
- pulumi_oci/database/get_autonomous_database_resource_pool_members.py +145 -0
- pulumi_oci/database/get_autonomous_database_software_image.py +15 -1
- pulumi_oci/database/get_autonomous_vm_cluster.py +15 -1
- pulumi_oci/database/get_backup_destination.py +15 -1
- pulumi_oci/database/get_cloud_autonomous_vm_cluster.py +40 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +30 -2
- pulumi_oci/database/get_database.py +15 -1
- pulumi_oci/database/get_database_software_image.py +15 -1
- pulumi_oci/database/get_db_home.py +15 -1
- pulumi_oci/database/get_db_node.py +15 -1
- pulumi_oci/database/get_db_nodes.py +2 -2
- pulumi_oci/database/get_db_server.py +15 -1
- pulumi_oci/database/get_exadata_infrastructure.py +15 -1
- pulumi_oci/database/get_external_container_database.py +15 -1
- pulumi_oci/database/get_external_database_connector.py +15 -1
- pulumi_oci/database/get_external_non_container_database.py +15 -1
- pulumi_oci/database/get_external_pluggable_database.py +15 -1
- pulumi_oci/database/get_key_store.py +15 -1
- pulumi_oci/database/get_maintenance_run.py +15 -1
- pulumi_oci/database/get_oneoff_patch.py +15 -1
- pulumi_oci/database/get_pluggable_database.py +15 -1
- pulumi_oci/database/get_vm_cluster.py +15 -1
- pulumi_oci/database/get_vm_cluster_network.py +15 -1
- pulumi_oci/database/key_store.py +28 -0
- pulumi_oci/database/maintenance_run.py +28 -0
- pulumi_oci/database/oneoff_patch.py +28 -0
- pulumi_oci/database/outputs.py +1624 -54
- pulumi_oci/database/pluggable_database.py +28 -0
- pulumi_oci/database/pluggable_databases_local_clone.py +28 -0
- pulumi_oci/database/pluggable_databases_remote_clone.py +28 -0
- pulumi_oci/database/vm_cluster.py +28 -0
- pulumi_oci/database/vm_cluster_network.py +28 -0
- pulumi_oci/databasemanagement/__init__.py +7 -0
- pulumi_oci/databasemanagement/_inputs.py +196 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database.py +15 -1
- pulumi_oci/databasemanagement/get_managed_my_sql_database_binary_log_information.py +198 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_digest_errors.py +164 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_general_replication_information.py +352 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_high_availability_members.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_inbound_replications.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_outbound_replications.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_query_detail.py +176 -0
- pulumi_oci/databasemanagement/outputs.py +1330 -19
- pulumi_oci/databasemigration/_inputs.py +94 -0
- pulumi_oci/databasemigration/get_migration.py +15 -1
- pulumi_oci/databasemigration/get_migrations.py +15 -1
- pulumi_oci/databasemigration/job.py +28 -0
- pulumi_oci/databasemigration/migration.py +52 -3
- pulumi_oci/databasemigration/outputs.py +73 -0
- pulumi_oci/dataflow/_inputs.py +20 -0
- pulumi_oci/dataflow/outputs.py +36 -0
- pulumi_oci/fleetappsmanagement/__init__.py +48 -0
- pulumi_oci/fleetappsmanagement/_inputs.py +11016 -30
- pulumi_oci/fleetappsmanagement/catalog_item.py +1156 -0
- pulumi_oci/fleetappsmanagement/compliance_policy_rule.py +811 -0
- pulumi_oci/fleetappsmanagement/fleet.py +1003 -0
- pulumi_oci/fleetappsmanagement/fleet_credential.py +623 -0
- pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
- pulumi_oci/fleetappsmanagement/fleet_resource.py +853 -0
- pulumi_oci/fleetappsmanagement/get_announcements.py +29 -7
- pulumi_oci/fleetappsmanagement/get_catalog_item.py +434 -0
- pulumi_oci/fleetappsmanagement/get_catalog_items.py +274 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policies.py +36 -12
- pulumi_oci/fleetappsmanagement/get_compliance_policy.py +20 -6
- pulumi_oci/fleetappsmanagement/get_compliance_policy_rule.py +325 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policy_rules.py +244 -0
- pulumi_oci/fleetappsmanagement/get_compliance_record_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_compliance_records.py +299 -0
- pulumi_oci/fleetappsmanagement/get_fleet.py +409 -0
- pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +15 -1
- pulumi_oci/fleetappsmanagement/get_fleet_credential.py +274 -0
- pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +283 -0
- pulumi_oci/fleetappsmanagement/get_fleet_products.py +2 -2
- pulumi_oci/fleetappsmanagement/get_fleet_properties.py +197 -0
- pulumi_oci/fleetappsmanagement/get_fleet_property.py +287 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resource.py +399 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resources.py +216 -0
- pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
- pulumi_oci/fleetappsmanagement/get_inventory_records.py +205 -0
- pulumi_oci/fleetappsmanagement/get_inventory_resources.py +4 -2
- pulumi_oci/fleetappsmanagement/get_maintenance_window.py +338 -0
- pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +221 -0
- pulumi_oci/fleetappsmanagement/get_managed_entity_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +26 -5
- pulumi_oci/fleetappsmanagement/get_onboardings.py +180 -0
- pulumi_oci/fleetappsmanagement/get_patch.py +364 -0
- pulumi_oci/fleetappsmanagement/get_patches.py +338 -0
- pulumi_oci/fleetappsmanagement/get_platform_configuration.py +297 -0
- pulumi_oci/fleetappsmanagement/get_platform_configurations.py +265 -0
- pulumi_oci/fleetappsmanagement/get_properties.py +37 -13
- pulumi_oci/fleetappsmanagement/get_property.py +1 -1
- pulumi_oci/fleetappsmanagement/get_provision.py +493 -0
- pulumi_oci/fleetappsmanagement/get_provisions.py +224 -0
- pulumi_oci/fleetappsmanagement/get_runbook.py +406 -0
- pulumi_oci/fleetappsmanagement/get_runbook_version.py +319 -0
- pulumi_oci/fleetappsmanagement/get_runbook_versions.py +230 -0
- pulumi_oci/fleetappsmanagement/get_runbooks.py +265 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +395 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +167 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +347 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_executions.py +334 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_job_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_steps.py +2 -2
- pulumi_oci/fleetappsmanagement/get_task_record.py +308 -0
- pulumi_oci/fleetappsmanagement/get_task_records.py +265 -0
- pulumi_oci/fleetappsmanagement/maintenance_window.py +840 -0
- pulumi_oci/fleetappsmanagement/onboarding.py +631 -0
- pulumi_oci/fleetappsmanagement/outputs.py +25528 -1223
- pulumi_oci/fleetappsmanagement/patch.py +980 -0
- pulumi_oci/fleetappsmanagement/platform_configuration.py +694 -0
- pulumi_oci/fleetappsmanagement/property.py +28 -27
- pulumi_oci/fleetappsmanagement/provision.py +1195 -0
- pulumi_oci/fleetappsmanagement/runbook.py +1277 -0
- pulumi_oci/fleetappsmanagement/runbook_version.py +996 -0
- pulumi_oci/fleetappsmanagement/scheduler_definition.py +946 -0
- pulumi_oci/fleetappsmanagement/task_record.py +786 -0
- pulumi_oci/fleetsoftwareupdate/_inputs.py +88 -15
- pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +71 -42
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +21 -7
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +1 -1
- pulumi_oci/fleetsoftwareupdate/outputs.py +172 -15
- pulumi_oci/goldengate/_inputs.py +449 -3
- pulumi_oci/goldengate/connection.py +200 -56
- pulumi_oci/goldengate/get_connection.py +59 -28
- pulumi_oci/goldengate/get_connections.py +0 -3
- pulumi_oci/goldengate/outputs.py +886 -22
- pulumi_oci/loadbalancer/_inputs.py +24 -6
- pulumi_oci/loadbalancer/backend.py +35 -7
- pulumi_oci/loadbalancer/backend_set.py +35 -7
- pulumi_oci/loadbalancer/listener.py +7 -7
- pulumi_oci/loadbalancer/load_balancer.py +81 -0
- pulumi_oci/loadbalancer/outputs.py +29 -10
- pulumi_oci/loganalytics/__init__.py +3 -0
- pulumi_oci/loganalytics/_inputs.py +123 -0
- pulumi_oci/loganalytics/get_log_analytics_entities.py +52 -0
- pulumi_oci/loganalytics/get_log_analytics_entity_type.py +254 -0
- pulumi_oci/loganalytics/get_log_analytics_entity_types.py +230 -0
- pulumi_oci/loganalytics/log_analytics_entity_type.py +508 -0
- pulumi_oci/loganalytics/outputs.py +258 -0
- pulumi_oci/mysql/_inputs.py +274 -0
- pulumi_oci/mysql/get_mysql_backup.py +29 -1
- pulumi_oci/mysql/get_mysql_backups.py +23 -1
- pulumi_oci/mysql/get_mysql_db_system.py +15 -1
- pulumi_oci/mysql/get_replica.py +15 -1
- pulumi_oci/mysql/mysql_backup.py +98 -2
- pulumi_oci/mysql/mysql_db_system.py +57 -0
- pulumi_oci/mysql/outputs.py +594 -0
- pulumi_oci/mysql/replica.py +28 -0
- pulumi_oci/nosql/__init__.py +2 -0
- pulumi_oci/nosql/_inputs.py +129 -3
- pulumi_oci/nosql/configuration.py +383 -0
- pulumi_oci/nosql/get_configuration.py +162 -0
- pulumi_oci/nosql/index.py +7 -7
- pulumi_oci/nosql/outputs.py +164 -2
- pulumi_oci/nosql/table_replica.py +9 -9
- pulumi_oci/oci/__init__.py +56 -0
- pulumi_oci/oci/_inputs.py +1615 -0
- pulumi_oci/oci/apiaccesscontrol_privileged_api_control.py +930 -0
- pulumi_oci/oci/apiaccesscontrol_privileged_api_request.py +1303 -0
- pulumi_oci/oci/dbmulticloud_multi_cloud_resource_discovery.py +675 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_container.py +743 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_mount.py +675 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_connector.py +740 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault.py +840 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault_association.py +673 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadata.py +310 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadata_by_entity_types.py +208 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadatas.py +208 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_control.py +367 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_controls.py +222 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_request.py +535 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_requests.py +244 -0
- pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discoveries.py +252 -0
- pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discovery.py +297 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_container.py +310 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_containers.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mount.py +296 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mounts.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connector.py +311 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connectors.py +233 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_key.py +282 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_keys.py +233 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault.py +338 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_association.py +296 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_associations.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vaults.py +252 -0
- pulumi_oci/oci/get_wlms_managed_instance.py +255 -0
- pulumi_oci/oci/get_wlms_managed_instance_scan_results.py +189 -0
- pulumi_oci/oci/get_wlms_managed_instance_server.py +378 -0
- pulumi_oci/oci/get_wlms_managed_instance_server_installed_patches.py +168 -0
- pulumi_oci/oci/get_wlms_managed_instance_servers.py +170 -0
- pulumi_oci/oci/get_wlms_managed_instances.py +200 -0
- pulumi_oci/oci/get_wlms_wls_domain.py +311 -0
- pulumi_oci/oci/get_wlms_wls_domain_agreement_records.py +145 -0
- pulumi_oci/oci/get_wlms_wls_domain_applicable_patches.py +145 -0
- pulumi_oci/oci/get_wlms_wls_domain_scan_results.py +170 -0
- pulumi_oci/oci/get_wlms_wls_domain_server.py +378 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backup.py +230 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backup_content.py +189 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backups.py +168 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_installed_patches.py +168 -0
- pulumi_oci/oci/get_wlms_wls_domain_servers.py +170 -0
- pulumi_oci/oci/get_wlms_wls_domains.py +266 -0
- pulumi_oci/oci/outputs.py +5617 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/__init__.py +8 -0
- pulumi_oci/redis/_inputs.py +179 -0
- pulumi_oci/redis/get_oci_cache_user.py +283 -0
- pulumi_oci/redis/get_oci_cache_users.py +192 -0
- pulumi_oci/redis/oci_cache_user.py +695 -0
- pulumi_oci/redis/oci_cache_user_get_redis_cluster.py +333 -0
- pulumi_oci/redis/outputs.py +330 -0
- pulumi_oci/redis/redis_cluster_attach_oci_cache_user.py +263 -0
- pulumi_oci/redis/redis_cluster_create_identity_token.py +439 -0
- pulumi_oci/redis/redis_cluster_detach_oci_cache_user.py +263 -0
- pulumi_oci/redis/redis_cluster_get_oci_cache_user.py +333 -0
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/METADATA +1 -1
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/RECORD +282 -141
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,673 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import builtins
|
6
|
+
import copy
|
7
|
+
import warnings
|
8
|
+
import sys
|
9
|
+
import pulumi
|
10
|
+
import pulumi.runtime
|
11
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
12
|
+
if sys.version_info >= (3, 11):
|
13
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
14
|
+
else:
|
15
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
16
|
+
from .. import _utilities
|
17
|
+
|
18
|
+
__all__ = ['DbmulticloudOracleDbAzureVaultAssociationArgs', 'DbmulticloudOracleDbAzureVaultAssociation']
|
19
|
+
|
20
|
+
@pulumi.input_type
|
21
|
+
class DbmulticloudOracleDbAzureVaultAssociationArgs:
|
22
|
+
def __init__(__self__, *,
|
23
|
+
compartment_id: pulumi.Input[builtins.str],
|
24
|
+
display_name: pulumi.Input[builtins.str],
|
25
|
+
oracle_db_azure_connector_id: pulumi.Input[builtins.str],
|
26
|
+
oracle_db_azure_vault_id: pulumi.Input[builtins.str],
|
27
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
28
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None):
|
29
|
+
"""
|
30
|
+
The set of arguments for constructing a DbmulticloudOracleDbAzureVaultAssociation resource.
|
31
|
+
:param pulumi.Input[builtins.str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains Oracle DB Azure Vault Association Resource.
|
32
|
+
:param pulumi.Input[builtins.str] display_name: (Updatable) Display name of Oracle DB Azure Vault Association.
|
33
|
+
:param pulumi.Input[builtins.str] oracle_db_azure_connector_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Connector.
|
34
|
+
:param pulumi.Input[builtins.str] oracle_db_azure_vault_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Vault.
|
35
|
+
|
36
|
+
|
37
|
+
** IMPORTANT **
|
38
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
39
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
40
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.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"}`
|
41
|
+
"""
|
42
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
43
|
+
pulumi.set(__self__, "display_name", display_name)
|
44
|
+
pulumi.set(__self__, "oracle_db_azure_connector_id", oracle_db_azure_connector_id)
|
45
|
+
pulumi.set(__self__, "oracle_db_azure_vault_id", oracle_db_azure_vault_id)
|
46
|
+
if defined_tags is not None:
|
47
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
48
|
+
if freeform_tags is not None:
|
49
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
50
|
+
|
51
|
+
@property
|
52
|
+
@pulumi.getter(name="compartmentId")
|
53
|
+
def compartment_id(self) -> pulumi.Input[builtins.str]:
|
54
|
+
"""
|
55
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains Oracle DB Azure Vault Association Resource.
|
56
|
+
"""
|
57
|
+
return pulumi.get(self, "compartment_id")
|
58
|
+
|
59
|
+
@compartment_id.setter
|
60
|
+
def compartment_id(self, value: pulumi.Input[builtins.str]):
|
61
|
+
pulumi.set(self, "compartment_id", value)
|
62
|
+
|
63
|
+
@property
|
64
|
+
@pulumi.getter(name="displayName")
|
65
|
+
def display_name(self) -> pulumi.Input[builtins.str]:
|
66
|
+
"""
|
67
|
+
(Updatable) Display name of Oracle DB Azure Vault Association.
|
68
|
+
"""
|
69
|
+
return pulumi.get(self, "display_name")
|
70
|
+
|
71
|
+
@display_name.setter
|
72
|
+
def display_name(self, value: pulumi.Input[builtins.str]):
|
73
|
+
pulumi.set(self, "display_name", value)
|
74
|
+
|
75
|
+
@property
|
76
|
+
@pulumi.getter(name="oracleDbAzureConnectorId")
|
77
|
+
def oracle_db_azure_connector_id(self) -> pulumi.Input[builtins.str]:
|
78
|
+
"""
|
79
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Connector.
|
80
|
+
"""
|
81
|
+
return pulumi.get(self, "oracle_db_azure_connector_id")
|
82
|
+
|
83
|
+
@oracle_db_azure_connector_id.setter
|
84
|
+
def oracle_db_azure_connector_id(self, value: pulumi.Input[builtins.str]):
|
85
|
+
pulumi.set(self, "oracle_db_azure_connector_id", value)
|
86
|
+
|
87
|
+
@property
|
88
|
+
@pulumi.getter(name="oracleDbAzureVaultId")
|
89
|
+
def oracle_db_azure_vault_id(self) -> pulumi.Input[builtins.str]:
|
90
|
+
"""
|
91
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Vault.
|
92
|
+
|
93
|
+
|
94
|
+
** IMPORTANT **
|
95
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
96
|
+
"""
|
97
|
+
return pulumi.get(self, "oracle_db_azure_vault_id")
|
98
|
+
|
99
|
+
@oracle_db_azure_vault_id.setter
|
100
|
+
def oracle_db_azure_vault_id(self, value: pulumi.Input[builtins.str]):
|
101
|
+
pulumi.set(self, "oracle_db_azure_vault_id", value)
|
102
|
+
|
103
|
+
@property
|
104
|
+
@pulumi.getter(name="definedTags")
|
105
|
+
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
106
|
+
"""
|
107
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
108
|
+
"""
|
109
|
+
return pulumi.get(self, "defined_tags")
|
110
|
+
|
111
|
+
@defined_tags.setter
|
112
|
+
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
113
|
+
pulumi.set(self, "defined_tags", value)
|
114
|
+
|
115
|
+
@property
|
116
|
+
@pulumi.getter(name="freeformTags")
|
117
|
+
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
118
|
+
"""
|
119
|
+
(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"}`
|
120
|
+
"""
|
121
|
+
return pulumi.get(self, "freeform_tags")
|
122
|
+
|
123
|
+
@freeform_tags.setter
|
124
|
+
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
125
|
+
pulumi.set(self, "freeform_tags", value)
|
126
|
+
|
127
|
+
|
128
|
+
@pulumi.input_type
|
129
|
+
class _DbmulticloudOracleDbAzureVaultAssociationState:
|
130
|
+
def __init__(__self__, *,
|
131
|
+
compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
132
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
133
|
+
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
134
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
135
|
+
is_resource_accessible: Optional[pulumi.Input[builtins.bool]] = None,
|
136
|
+
last_modification: Optional[pulumi.Input[builtins.str]] = None,
|
137
|
+
lifecycle_state_details: Optional[pulumi.Input[builtins.str]] = None,
|
138
|
+
oracle_db_azure_connector_id: Optional[pulumi.Input[builtins.str]] = None,
|
139
|
+
oracle_db_azure_vault_id: Optional[pulumi.Input[builtins.str]] = None,
|
140
|
+
state: Optional[pulumi.Input[builtins.str]] = None,
|
141
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
142
|
+
time_created: Optional[pulumi.Input[builtins.str]] = None,
|
143
|
+
time_updated: Optional[pulumi.Input[builtins.str]] = None):
|
144
|
+
"""
|
145
|
+
Input properties used for looking up and filtering DbmulticloudOracleDbAzureVaultAssociation resources.
|
146
|
+
:param pulumi.Input[builtins.str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains Oracle DB Azure Vault Association Resource.
|
147
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
148
|
+
:param pulumi.Input[builtins.str] display_name: (Updatable) Display name of Oracle DB Azure Vault Association.
|
149
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.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"}`
|
150
|
+
:param pulumi.Input[builtins.bool] is_resource_accessible: The Associated Resources are accessible or not.
|
151
|
+
:param pulumi.Input[builtins.str] last_modification: Description of the latest modification of the Oracle DB Azure Vault Association Resource.
|
152
|
+
:param pulumi.Input[builtins.str] lifecycle_state_details: Description of the current lifecycle state in more detail.
|
153
|
+
:param pulumi.Input[builtins.str] oracle_db_azure_connector_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Connector.
|
154
|
+
:param pulumi.Input[builtins.str] oracle_db_azure_vault_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Vault.
|
155
|
+
|
156
|
+
|
157
|
+
** IMPORTANT **
|
158
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
159
|
+
:param pulumi.Input[builtins.str] state: The current lifecycle state of the Oracle DB Azure Vault Association Resource.
|
160
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
161
|
+
:param pulumi.Input[builtins.str] time_created: Time when the Oracle DB Azure Vault Association was created in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
|
162
|
+
:param pulumi.Input[builtins.str] time_updated: Time when the Oracle DB Azure Vault Association was last modified, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
|
163
|
+
"""
|
164
|
+
if compartment_id is not None:
|
165
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
166
|
+
if defined_tags is not None:
|
167
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
168
|
+
if display_name is not None:
|
169
|
+
pulumi.set(__self__, "display_name", display_name)
|
170
|
+
if freeform_tags is not None:
|
171
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
172
|
+
if is_resource_accessible is not None:
|
173
|
+
pulumi.set(__self__, "is_resource_accessible", is_resource_accessible)
|
174
|
+
if last_modification is not None:
|
175
|
+
pulumi.set(__self__, "last_modification", last_modification)
|
176
|
+
if lifecycle_state_details is not None:
|
177
|
+
pulumi.set(__self__, "lifecycle_state_details", lifecycle_state_details)
|
178
|
+
if oracle_db_azure_connector_id is not None:
|
179
|
+
pulumi.set(__self__, "oracle_db_azure_connector_id", oracle_db_azure_connector_id)
|
180
|
+
if oracle_db_azure_vault_id is not None:
|
181
|
+
pulumi.set(__self__, "oracle_db_azure_vault_id", oracle_db_azure_vault_id)
|
182
|
+
if state is not None:
|
183
|
+
pulumi.set(__self__, "state", state)
|
184
|
+
if system_tags is not None:
|
185
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
186
|
+
if time_created is not None:
|
187
|
+
pulumi.set(__self__, "time_created", time_created)
|
188
|
+
if time_updated is not None:
|
189
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
190
|
+
|
191
|
+
@property
|
192
|
+
@pulumi.getter(name="compartmentId")
|
193
|
+
def compartment_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
194
|
+
"""
|
195
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains Oracle DB Azure Vault Association Resource.
|
196
|
+
"""
|
197
|
+
return pulumi.get(self, "compartment_id")
|
198
|
+
|
199
|
+
@compartment_id.setter
|
200
|
+
def compartment_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
201
|
+
pulumi.set(self, "compartment_id", value)
|
202
|
+
|
203
|
+
@property
|
204
|
+
@pulumi.getter(name="definedTags")
|
205
|
+
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
206
|
+
"""
|
207
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
208
|
+
"""
|
209
|
+
return pulumi.get(self, "defined_tags")
|
210
|
+
|
211
|
+
@defined_tags.setter
|
212
|
+
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
213
|
+
pulumi.set(self, "defined_tags", value)
|
214
|
+
|
215
|
+
@property
|
216
|
+
@pulumi.getter(name="displayName")
|
217
|
+
def display_name(self) -> Optional[pulumi.Input[builtins.str]]:
|
218
|
+
"""
|
219
|
+
(Updatable) Display name of Oracle DB Azure Vault Association.
|
220
|
+
"""
|
221
|
+
return pulumi.get(self, "display_name")
|
222
|
+
|
223
|
+
@display_name.setter
|
224
|
+
def display_name(self, value: Optional[pulumi.Input[builtins.str]]):
|
225
|
+
pulumi.set(self, "display_name", value)
|
226
|
+
|
227
|
+
@property
|
228
|
+
@pulumi.getter(name="freeformTags")
|
229
|
+
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
230
|
+
"""
|
231
|
+
(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"}`
|
232
|
+
"""
|
233
|
+
return pulumi.get(self, "freeform_tags")
|
234
|
+
|
235
|
+
@freeform_tags.setter
|
236
|
+
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
237
|
+
pulumi.set(self, "freeform_tags", value)
|
238
|
+
|
239
|
+
@property
|
240
|
+
@pulumi.getter(name="isResourceAccessible")
|
241
|
+
def is_resource_accessible(self) -> Optional[pulumi.Input[builtins.bool]]:
|
242
|
+
"""
|
243
|
+
The Associated Resources are accessible or not.
|
244
|
+
"""
|
245
|
+
return pulumi.get(self, "is_resource_accessible")
|
246
|
+
|
247
|
+
@is_resource_accessible.setter
|
248
|
+
def is_resource_accessible(self, value: Optional[pulumi.Input[builtins.bool]]):
|
249
|
+
pulumi.set(self, "is_resource_accessible", value)
|
250
|
+
|
251
|
+
@property
|
252
|
+
@pulumi.getter(name="lastModification")
|
253
|
+
def last_modification(self) -> Optional[pulumi.Input[builtins.str]]:
|
254
|
+
"""
|
255
|
+
Description of the latest modification of the Oracle DB Azure Vault Association Resource.
|
256
|
+
"""
|
257
|
+
return pulumi.get(self, "last_modification")
|
258
|
+
|
259
|
+
@last_modification.setter
|
260
|
+
def last_modification(self, value: Optional[pulumi.Input[builtins.str]]):
|
261
|
+
pulumi.set(self, "last_modification", value)
|
262
|
+
|
263
|
+
@property
|
264
|
+
@pulumi.getter(name="lifecycleStateDetails")
|
265
|
+
def lifecycle_state_details(self) -> Optional[pulumi.Input[builtins.str]]:
|
266
|
+
"""
|
267
|
+
Description of the current lifecycle state in more detail.
|
268
|
+
"""
|
269
|
+
return pulumi.get(self, "lifecycle_state_details")
|
270
|
+
|
271
|
+
@lifecycle_state_details.setter
|
272
|
+
def lifecycle_state_details(self, value: Optional[pulumi.Input[builtins.str]]):
|
273
|
+
pulumi.set(self, "lifecycle_state_details", value)
|
274
|
+
|
275
|
+
@property
|
276
|
+
@pulumi.getter(name="oracleDbAzureConnectorId")
|
277
|
+
def oracle_db_azure_connector_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
278
|
+
"""
|
279
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Connector.
|
280
|
+
"""
|
281
|
+
return pulumi.get(self, "oracle_db_azure_connector_id")
|
282
|
+
|
283
|
+
@oracle_db_azure_connector_id.setter
|
284
|
+
def oracle_db_azure_connector_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
285
|
+
pulumi.set(self, "oracle_db_azure_connector_id", value)
|
286
|
+
|
287
|
+
@property
|
288
|
+
@pulumi.getter(name="oracleDbAzureVaultId")
|
289
|
+
def oracle_db_azure_vault_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
290
|
+
"""
|
291
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Vault.
|
292
|
+
|
293
|
+
|
294
|
+
** IMPORTANT **
|
295
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
296
|
+
"""
|
297
|
+
return pulumi.get(self, "oracle_db_azure_vault_id")
|
298
|
+
|
299
|
+
@oracle_db_azure_vault_id.setter
|
300
|
+
def oracle_db_azure_vault_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
301
|
+
pulumi.set(self, "oracle_db_azure_vault_id", value)
|
302
|
+
|
303
|
+
@property
|
304
|
+
@pulumi.getter
|
305
|
+
def state(self) -> Optional[pulumi.Input[builtins.str]]:
|
306
|
+
"""
|
307
|
+
The current lifecycle state of the Oracle DB Azure Vault Association Resource.
|
308
|
+
"""
|
309
|
+
return pulumi.get(self, "state")
|
310
|
+
|
311
|
+
@state.setter
|
312
|
+
def state(self, value: Optional[pulumi.Input[builtins.str]]):
|
313
|
+
pulumi.set(self, "state", value)
|
314
|
+
|
315
|
+
@property
|
316
|
+
@pulumi.getter(name="systemTags")
|
317
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
318
|
+
"""
|
319
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
320
|
+
"""
|
321
|
+
return pulumi.get(self, "system_tags")
|
322
|
+
|
323
|
+
@system_tags.setter
|
324
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
325
|
+
pulumi.set(self, "system_tags", value)
|
326
|
+
|
327
|
+
@property
|
328
|
+
@pulumi.getter(name="timeCreated")
|
329
|
+
def time_created(self) -> Optional[pulumi.Input[builtins.str]]:
|
330
|
+
"""
|
331
|
+
Time when the Oracle DB Azure Vault Association was created in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
|
332
|
+
"""
|
333
|
+
return pulumi.get(self, "time_created")
|
334
|
+
|
335
|
+
@time_created.setter
|
336
|
+
def time_created(self, value: Optional[pulumi.Input[builtins.str]]):
|
337
|
+
pulumi.set(self, "time_created", value)
|
338
|
+
|
339
|
+
@property
|
340
|
+
@pulumi.getter(name="timeUpdated")
|
341
|
+
def time_updated(self) -> Optional[pulumi.Input[builtins.str]]:
|
342
|
+
"""
|
343
|
+
Time when the Oracle DB Azure Vault Association was last modified, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
|
344
|
+
"""
|
345
|
+
return pulumi.get(self, "time_updated")
|
346
|
+
|
347
|
+
@time_updated.setter
|
348
|
+
def time_updated(self, value: Optional[pulumi.Input[builtins.str]]):
|
349
|
+
pulumi.set(self, "time_updated", value)
|
350
|
+
|
351
|
+
|
352
|
+
@pulumi.type_token("oci:oci/dbmulticloudOracleDbAzureVaultAssociation:DbmulticloudOracleDbAzureVaultAssociation")
|
353
|
+
class DbmulticloudOracleDbAzureVaultAssociation(pulumi.CustomResource):
|
354
|
+
@overload
|
355
|
+
def __init__(__self__,
|
356
|
+
resource_name: str,
|
357
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
358
|
+
compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
359
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
360
|
+
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
361
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
362
|
+
oracle_db_azure_connector_id: Optional[pulumi.Input[builtins.str]] = None,
|
363
|
+
oracle_db_azure_vault_id: Optional[pulumi.Input[builtins.str]] = None,
|
364
|
+
__props__=None):
|
365
|
+
"""
|
366
|
+
This resource provides the Oracle Db Azure Vault Association resource in Oracle Cloud Infrastructure Dbmulticloud service.
|
367
|
+
|
368
|
+
Create Oracle DB Azure Vault Association based on the provided information.
|
369
|
+
|
370
|
+
## Example Usage
|
371
|
+
|
372
|
+
```python
|
373
|
+
import pulumi
|
374
|
+
import pulumi_oci as oci
|
375
|
+
|
376
|
+
test_oracle_db_azure_vault_association = oci.oci.DbmulticloudOracleDbAzureVaultAssociation("test_oracle_db_azure_vault_association",
|
377
|
+
compartment_id=compartment_id,
|
378
|
+
display_name=oracle_db_azure_vault_association_display_name,
|
379
|
+
oracle_db_azure_connector_id=test_oracle_db_azure_connector["id"],
|
380
|
+
oracle_db_azure_vault_id=test_oracle_db_azure_vault["id"],
|
381
|
+
defined_tags={
|
382
|
+
"Operations.CostCenter": "42",
|
383
|
+
},
|
384
|
+
freeform_tags={
|
385
|
+
"Department": "Finance",
|
386
|
+
})
|
387
|
+
```
|
388
|
+
|
389
|
+
## Import
|
390
|
+
|
391
|
+
OracleDbAzureVaultAssociations can be imported using the `id`, e.g.
|
392
|
+
|
393
|
+
```sh
|
394
|
+
$ pulumi import oci:oci/dbmulticloudOracleDbAzureVaultAssociation:DbmulticloudOracleDbAzureVaultAssociation test_oracle_db_azure_vault_association "id"
|
395
|
+
```
|
396
|
+
|
397
|
+
:param str resource_name: The name of the resource.
|
398
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
399
|
+
:param pulumi.Input[builtins.str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains Oracle DB Azure Vault Association Resource.
|
400
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
401
|
+
:param pulumi.Input[builtins.str] display_name: (Updatable) Display name of Oracle DB Azure Vault Association.
|
402
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.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"}`
|
403
|
+
:param pulumi.Input[builtins.str] oracle_db_azure_connector_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Connector.
|
404
|
+
:param pulumi.Input[builtins.str] oracle_db_azure_vault_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Vault.
|
405
|
+
|
406
|
+
|
407
|
+
** IMPORTANT **
|
408
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
409
|
+
"""
|
410
|
+
...
|
411
|
+
@overload
|
412
|
+
def __init__(__self__,
|
413
|
+
resource_name: str,
|
414
|
+
args: DbmulticloudOracleDbAzureVaultAssociationArgs,
|
415
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
416
|
+
"""
|
417
|
+
This resource provides the Oracle Db Azure Vault Association resource in Oracle Cloud Infrastructure Dbmulticloud service.
|
418
|
+
|
419
|
+
Create Oracle DB Azure Vault Association based on the provided information.
|
420
|
+
|
421
|
+
## Example Usage
|
422
|
+
|
423
|
+
```python
|
424
|
+
import pulumi
|
425
|
+
import pulumi_oci as oci
|
426
|
+
|
427
|
+
test_oracle_db_azure_vault_association = oci.oci.DbmulticloudOracleDbAzureVaultAssociation("test_oracle_db_azure_vault_association",
|
428
|
+
compartment_id=compartment_id,
|
429
|
+
display_name=oracle_db_azure_vault_association_display_name,
|
430
|
+
oracle_db_azure_connector_id=test_oracle_db_azure_connector["id"],
|
431
|
+
oracle_db_azure_vault_id=test_oracle_db_azure_vault["id"],
|
432
|
+
defined_tags={
|
433
|
+
"Operations.CostCenter": "42",
|
434
|
+
},
|
435
|
+
freeform_tags={
|
436
|
+
"Department": "Finance",
|
437
|
+
})
|
438
|
+
```
|
439
|
+
|
440
|
+
## Import
|
441
|
+
|
442
|
+
OracleDbAzureVaultAssociations can be imported using the `id`, e.g.
|
443
|
+
|
444
|
+
```sh
|
445
|
+
$ pulumi import oci:oci/dbmulticloudOracleDbAzureVaultAssociation:DbmulticloudOracleDbAzureVaultAssociation test_oracle_db_azure_vault_association "id"
|
446
|
+
```
|
447
|
+
|
448
|
+
:param str resource_name: The name of the resource.
|
449
|
+
:param DbmulticloudOracleDbAzureVaultAssociationArgs args: The arguments to use to populate this resource's properties.
|
450
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
451
|
+
"""
|
452
|
+
...
|
453
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
454
|
+
resource_args, opts = _utilities.get_resource_args_opts(DbmulticloudOracleDbAzureVaultAssociationArgs, pulumi.ResourceOptions, *args, **kwargs)
|
455
|
+
if resource_args is not None:
|
456
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
457
|
+
else:
|
458
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
459
|
+
|
460
|
+
def _internal_init(__self__,
|
461
|
+
resource_name: str,
|
462
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
463
|
+
compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
464
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
465
|
+
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
466
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
467
|
+
oracle_db_azure_connector_id: Optional[pulumi.Input[builtins.str]] = None,
|
468
|
+
oracle_db_azure_vault_id: Optional[pulumi.Input[builtins.str]] = None,
|
469
|
+
__props__=None):
|
470
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
471
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
472
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
473
|
+
if opts.id is None:
|
474
|
+
if __props__ is not None:
|
475
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
476
|
+
__props__ = DbmulticloudOracleDbAzureVaultAssociationArgs.__new__(DbmulticloudOracleDbAzureVaultAssociationArgs)
|
477
|
+
|
478
|
+
if compartment_id is None and not opts.urn:
|
479
|
+
raise TypeError("Missing required property 'compartment_id'")
|
480
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
481
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
482
|
+
if display_name is None and not opts.urn:
|
483
|
+
raise TypeError("Missing required property 'display_name'")
|
484
|
+
__props__.__dict__["display_name"] = display_name
|
485
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
486
|
+
if oracle_db_azure_connector_id is None and not opts.urn:
|
487
|
+
raise TypeError("Missing required property 'oracle_db_azure_connector_id'")
|
488
|
+
__props__.__dict__["oracle_db_azure_connector_id"] = oracle_db_azure_connector_id
|
489
|
+
if oracle_db_azure_vault_id is None and not opts.urn:
|
490
|
+
raise TypeError("Missing required property 'oracle_db_azure_vault_id'")
|
491
|
+
__props__.__dict__["oracle_db_azure_vault_id"] = oracle_db_azure_vault_id
|
492
|
+
__props__.__dict__["is_resource_accessible"] = None
|
493
|
+
__props__.__dict__["last_modification"] = None
|
494
|
+
__props__.__dict__["lifecycle_state_details"] = None
|
495
|
+
__props__.__dict__["state"] = None
|
496
|
+
__props__.__dict__["system_tags"] = None
|
497
|
+
__props__.__dict__["time_created"] = None
|
498
|
+
__props__.__dict__["time_updated"] = None
|
499
|
+
super(DbmulticloudOracleDbAzureVaultAssociation, __self__).__init__(
|
500
|
+
'oci:oci/dbmulticloudOracleDbAzureVaultAssociation:DbmulticloudOracleDbAzureVaultAssociation',
|
501
|
+
resource_name,
|
502
|
+
__props__,
|
503
|
+
opts)
|
504
|
+
|
505
|
+
@staticmethod
|
506
|
+
def get(resource_name: str,
|
507
|
+
id: pulumi.Input[str],
|
508
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
509
|
+
compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
510
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
511
|
+
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
512
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
513
|
+
is_resource_accessible: Optional[pulumi.Input[builtins.bool]] = None,
|
514
|
+
last_modification: Optional[pulumi.Input[builtins.str]] = None,
|
515
|
+
lifecycle_state_details: Optional[pulumi.Input[builtins.str]] = None,
|
516
|
+
oracle_db_azure_connector_id: Optional[pulumi.Input[builtins.str]] = None,
|
517
|
+
oracle_db_azure_vault_id: Optional[pulumi.Input[builtins.str]] = None,
|
518
|
+
state: Optional[pulumi.Input[builtins.str]] = None,
|
519
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
520
|
+
time_created: Optional[pulumi.Input[builtins.str]] = None,
|
521
|
+
time_updated: Optional[pulumi.Input[builtins.str]] = None) -> 'DbmulticloudOracleDbAzureVaultAssociation':
|
522
|
+
"""
|
523
|
+
Get an existing DbmulticloudOracleDbAzureVaultAssociation resource's state with the given name, id, and optional extra
|
524
|
+
properties used to qualify the lookup.
|
525
|
+
|
526
|
+
:param str resource_name: The unique name of the resulting resource.
|
527
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
528
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
529
|
+
:param pulumi.Input[builtins.str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains Oracle DB Azure Vault Association Resource.
|
530
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
531
|
+
:param pulumi.Input[builtins.str] display_name: (Updatable) Display name of Oracle DB Azure Vault Association.
|
532
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.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"}`
|
533
|
+
:param pulumi.Input[builtins.bool] is_resource_accessible: The Associated Resources are accessible or not.
|
534
|
+
:param pulumi.Input[builtins.str] last_modification: Description of the latest modification of the Oracle DB Azure Vault Association Resource.
|
535
|
+
:param pulumi.Input[builtins.str] lifecycle_state_details: Description of the current lifecycle state in more detail.
|
536
|
+
:param pulumi.Input[builtins.str] oracle_db_azure_connector_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Connector.
|
537
|
+
:param pulumi.Input[builtins.str] oracle_db_azure_vault_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Vault.
|
538
|
+
|
539
|
+
|
540
|
+
** IMPORTANT **
|
541
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
542
|
+
:param pulumi.Input[builtins.str] state: The current lifecycle state of the Oracle DB Azure Vault Association Resource.
|
543
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
544
|
+
:param pulumi.Input[builtins.str] time_created: Time when the Oracle DB Azure Vault Association was created in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
|
545
|
+
:param pulumi.Input[builtins.str] time_updated: Time when the Oracle DB Azure Vault Association was last modified, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
|
546
|
+
"""
|
547
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
548
|
+
|
549
|
+
__props__ = _DbmulticloudOracleDbAzureVaultAssociationState.__new__(_DbmulticloudOracleDbAzureVaultAssociationState)
|
550
|
+
|
551
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
552
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
553
|
+
__props__.__dict__["display_name"] = display_name
|
554
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
555
|
+
__props__.__dict__["is_resource_accessible"] = is_resource_accessible
|
556
|
+
__props__.__dict__["last_modification"] = last_modification
|
557
|
+
__props__.__dict__["lifecycle_state_details"] = lifecycle_state_details
|
558
|
+
__props__.__dict__["oracle_db_azure_connector_id"] = oracle_db_azure_connector_id
|
559
|
+
__props__.__dict__["oracle_db_azure_vault_id"] = oracle_db_azure_vault_id
|
560
|
+
__props__.__dict__["state"] = state
|
561
|
+
__props__.__dict__["system_tags"] = system_tags
|
562
|
+
__props__.__dict__["time_created"] = time_created
|
563
|
+
__props__.__dict__["time_updated"] = time_updated
|
564
|
+
return DbmulticloudOracleDbAzureVaultAssociation(resource_name, opts=opts, __props__=__props__)
|
565
|
+
|
566
|
+
@property
|
567
|
+
@pulumi.getter(name="compartmentId")
|
568
|
+
def compartment_id(self) -> pulumi.Output[builtins.str]:
|
569
|
+
"""
|
570
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment that contains Oracle DB Azure Vault Association Resource.
|
571
|
+
"""
|
572
|
+
return pulumi.get(self, "compartment_id")
|
573
|
+
|
574
|
+
@property
|
575
|
+
@pulumi.getter(name="definedTags")
|
576
|
+
def defined_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
|
577
|
+
"""
|
578
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Operations.CostCenter": "42"}`
|
579
|
+
"""
|
580
|
+
return pulumi.get(self, "defined_tags")
|
581
|
+
|
582
|
+
@property
|
583
|
+
@pulumi.getter(name="displayName")
|
584
|
+
def display_name(self) -> pulumi.Output[builtins.str]:
|
585
|
+
"""
|
586
|
+
(Updatable) Display name of Oracle DB Azure Vault Association.
|
587
|
+
"""
|
588
|
+
return pulumi.get(self, "display_name")
|
589
|
+
|
590
|
+
@property
|
591
|
+
@pulumi.getter(name="freeformTags")
|
592
|
+
def freeform_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
|
593
|
+
"""
|
594
|
+
(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"}`
|
595
|
+
"""
|
596
|
+
return pulumi.get(self, "freeform_tags")
|
597
|
+
|
598
|
+
@property
|
599
|
+
@pulumi.getter(name="isResourceAccessible")
|
600
|
+
def is_resource_accessible(self) -> pulumi.Output[builtins.bool]:
|
601
|
+
"""
|
602
|
+
The Associated Resources are accessible or not.
|
603
|
+
"""
|
604
|
+
return pulumi.get(self, "is_resource_accessible")
|
605
|
+
|
606
|
+
@property
|
607
|
+
@pulumi.getter(name="lastModification")
|
608
|
+
def last_modification(self) -> pulumi.Output[builtins.str]:
|
609
|
+
"""
|
610
|
+
Description of the latest modification of the Oracle DB Azure Vault Association Resource.
|
611
|
+
"""
|
612
|
+
return pulumi.get(self, "last_modification")
|
613
|
+
|
614
|
+
@property
|
615
|
+
@pulumi.getter(name="lifecycleStateDetails")
|
616
|
+
def lifecycle_state_details(self) -> pulumi.Output[builtins.str]:
|
617
|
+
"""
|
618
|
+
Description of the current lifecycle state in more detail.
|
619
|
+
"""
|
620
|
+
return pulumi.get(self, "lifecycle_state_details")
|
621
|
+
|
622
|
+
@property
|
623
|
+
@pulumi.getter(name="oracleDbAzureConnectorId")
|
624
|
+
def oracle_db_azure_connector_id(self) -> pulumi.Output[builtins.str]:
|
625
|
+
"""
|
626
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Connector.
|
627
|
+
"""
|
628
|
+
return pulumi.get(self, "oracle_db_azure_connector_id")
|
629
|
+
|
630
|
+
@property
|
631
|
+
@pulumi.getter(name="oracleDbAzureVaultId")
|
632
|
+
def oracle_db_azure_vault_id(self) -> pulumi.Output[builtins.str]:
|
633
|
+
"""
|
634
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Oracle DB Azure Vault.
|
635
|
+
|
636
|
+
|
637
|
+
** IMPORTANT **
|
638
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
639
|
+
"""
|
640
|
+
return pulumi.get(self, "oracle_db_azure_vault_id")
|
641
|
+
|
642
|
+
@property
|
643
|
+
@pulumi.getter
|
644
|
+
def state(self) -> pulumi.Output[builtins.str]:
|
645
|
+
"""
|
646
|
+
The current lifecycle state of the Oracle DB Azure Vault Association Resource.
|
647
|
+
"""
|
648
|
+
return pulumi.get(self, "state")
|
649
|
+
|
650
|
+
@property
|
651
|
+
@pulumi.getter(name="systemTags")
|
652
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
|
653
|
+
"""
|
654
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
655
|
+
"""
|
656
|
+
return pulumi.get(self, "system_tags")
|
657
|
+
|
658
|
+
@property
|
659
|
+
@pulumi.getter(name="timeCreated")
|
660
|
+
def time_created(self) -> pulumi.Output[builtins.str]:
|
661
|
+
"""
|
662
|
+
Time when the Oracle DB Azure Vault Association was created in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
|
663
|
+
"""
|
664
|
+
return pulumi.get(self, "time_created")
|
665
|
+
|
666
|
+
@property
|
667
|
+
@pulumi.getter(name="timeUpdated")
|
668
|
+
def time_updated(self) -> pulumi.Output[builtins.str]:
|
669
|
+
"""
|
670
|
+
Time when the Oracle DB Azure Vault Association was last modified, expressed in [RFC 3339](https://tools.ietf.org/html/rfc3339) timestamp format, e.g. '2020-05-22T21:10:29.600Z'
|
671
|
+
"""
|
672
|
+
return pulumi.get(self, "time_updated")
|
673
|
+
|