pulumi-oci 3.1.0a1750143229__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.0a1750143229.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/METADATA +1 -1
- {pulumi_oci-3.1.0a1750143229.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/RECORD +282 -141
- {pulumi_oci-3.1.0a1750143229.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.1.0a1750143229.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,535 @@
|
|
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
|
+
from . import outputs
|
18
|
+
|
19
|
+
__all__ = [
|
20
|
+
'GetApiaccesscontrolPrivilegedApiRequestResult',
|
21
|
+
'AwaitableGetApiaccesscontrolPrivilegedApiRequestResult',
|
22
|
+
'get_apiaccesscontrol_privileged_api_request',
|
23
|
+
'get_apiaccesscontrol_privileged_api_request_output',
|
24
|
+
]
|
25
|
+
|
26
|
+
@pulumi.output_type
|
27
|
+
class GetApiaccesscontrolPrivilegedApiRequestResult:
|
28
|
+
"""
|
29
|
+
A collection of values returned by getApiaccesscontrolPrivilegedApiRequest.
|
30
|
+
"""
|
31
|
+
def __init__(__self__, approver_details=None, closure_comment=None, compartment_id=None, defined_tags=None, display_name=None, duration_in_hrs=None, entity_type=None, freeform_tags=None, id=None, lifecycle_details=None, notification_topic_id=None, number_of_approvers_required=None, privileged_api_control_id=None, privileged_api_control_name=None, privileged_api_request_id=None, privileged_operation_lists=None, reason_detail=None, reason_summary=None, request_id=None, requested_bies=None, resource_id=None, resource_name=None, resource_type=None, severity=None, state=None, state_details=None, sub_resource_name_lists=None, system_tags=None, ticket_numbers=None, time_created=None, time_requested_for_future_access=None, time_updated=None):
|
32
|
+
if approver_details and not isinstance(approver_details, list):
|
33
|
+
raise TypeError("Expected argument 'approver_details' to be a list")
|
34
|
+
pulumi.set(__self__, "approver_details", approver_details)
|
35
|
+
if closure_comment and not isinstance(closure_comment, str):
|
36
|
+
raise TypeError("Expected argument 'closure_comment' to be a str")
|
37
|
+
pulumi.set(__self__, "closure_comment", closure_comment)
|
38
|
+
if compartment_id and not isinstance(compartment_id, str):
|
39
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
40
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
41
|
+
if defined_tags and not isinstance(defined_tags, dict):
|
42
|
+
raise TypeError("Expected argument 'defined_tags' to be a dict")
|
43
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
44
|
+
if display_name and not isinstance(display_name, str):
|
45
|
+
raise TypeError("Expected argument 'display_name' to be a str")
|
46
|
+
pulumi.set(__self__, "display_name", display_name)
|
47
|
+
if duration_in_hrs and not isinstance(duration_in_hrs, int):
|
48
|
+
raise TypeError("Expected argument 'duration_in_hrs' to be a int")
|
49
|
+
pulumi.set(__self__, "duration_in_hrs", duration_in_hrs)
|
50
|
+
if entity_type and not isinstance(entity_type, str):
|
51
|
+
raise TypeError("Expected argument 'entity_type' to be a str")
|
52
|
+
pulumi.set(__self__, "entity_type", entity_type)
|
53
|
+
if freeform_tags and not isinstance(freeform_tags, dict):
|
54
|
+
raise TypeError("Expected argument 'freeform_tags' to be a dict")
|
55
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
56
|
+
if id and not isinstance(id, str):
|
57
|
+
raise TypeError("Expected argument 'id' to be a str")
|
58
|
+
pulumi.set(__self__, "id", id)
|
59
|
+
if lifecycle_details and not isinstance(lifecycle_details, str):
|
60
|
+
raise TypeError("Expected argument 'lifecycle_details' to be a str")
|
61
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
62
|
+
if notification_topic_id and not isinstance(notification_topic_id, str):
|
63
|
+
raise TypeError("Expected argument 'notification_topic_id' to be a str")
|
64
|
+
pulumi.set(__self__, "notification_topic_id", notification_topic_id)
|
65
|
+
if number_of_approvers_required and not isinstance(number_of_approvers_required, int):
|
66
|
+
raise TypeError("Expected argument 'number_of_approvers_required' to be a int")
|
67
|
+
pulumi.set(__self__, "number_of_approvers_required", number_of_approvers_required)
|
68
|
+
if privileged_api_control_id and not isinstance(privileged_api_control_id, str):
|
69
|
+
raise TypeError("Expected argument 'privileged_api_control_id' to be a str")
|
70
|
+
pulumi.set(__self__, "privileged_api_control_id", privileged_api_control_id)
|
71
|
+
if privileged_api_control_name and not isinstance(privileged_api_control_name, str):
|
72
|
+
raise TypeError("Expected argument 'privileged_api_control_name' to be a str")
|
73
|
+
pulumi.set(__self__, "privileged_api_control_name", privileged_api_control_name)
|
74
|
+
if privileged_api_request_id and not isinstance(privileged_api_request_id, str):
|
75
|
+
raise TypeError("Expected argument 'privileged_api_request_id' to be a str")
|
76
|
+
pulumi.set(__self__, "privileged_api_request_id", privileged_api_request_id)
|
77
|
+
if privileged_operation_lists and not isinstance(privileged_operation_lists, list):
|
78
|
+
raise TypeError("Expected argument 'privileged_operation_lists' to be a list")
|
79
|
+
pulumi.set(__self__, "privileged_operation_lists", privileged_operation_lists)
|
80
|
+
if reason_detail and not isinstance(reason_detail, str):
|
81
|
+
raise TypeError("Expected argument 'reason_detail' to be a str")
|
82
|
+
pulumi.set(__self__, "reason_detail", reason_detail)
|
83
|
+
if reason_summary and not isinstance(reason_summary, str):
|
84
|
+
raise TypeError("Expected argument 'reason_summary' to be a str")
|
85
|
+
pulumi.set(__self__, "reason_summary", reason_summary)
|
86
|
+
if request_id and not isinstance(request_id, str):
|
87
|
+
raise TypeError("Expected argument 'request_id' to be a str")
|
88
|
+
pulumi.set(__self__, "request_id", request_id)
|
89
|
+
if requested_bies and not isinstance(requested_bies, list):
|
90
|
+
raise TypeError("Expected argument 'requested_bies' to be a list")
|
91
|
+
pulumi.set(__self__, "requested_bies", requested_bies)
|
92
|
+
if resource_id and not isinstance(resource_id, str):
|
93
|
+
raise TypeError("Expected argument 'resource_id' to be a str")
|
94
|
+
pulumi.set(__self__, "resource_id", resource_id)
|
95
|
+
if resource_name and not isinstance(resource_name, str):
|
96
|
+
raise TypeError("Expected argument 'resource_name' to be a str")
|
97
|
+
pulumi.set(__self__, "resource_name", resource_name)
|
98
|
+
if resource_type and not isinstance(resource_type, str):
|
99
|
+
raise TypeError("Expected argument 'resource_type' to be a str")
|
100
|
+
pulumi.set(__self__, "resource_type", resource_type)
|
101
|
+
if severity and not isinstance(severity, str):
|
102
|
+
raise TypeError("Expected argument 'severity' to be a str")
|
103
|
+
pulumi.set(__self__, "severity", severity)
|
104
|
+
if state and not isinstance(state, str):
|
105
|
+
raise TypeError("Expected argument 'state' to be a str")
|
106
|
+
pulumi.set(__self__, "state", state)
|
107
|
+
if state_details and not isinstance(state_details, str):
|
108
|
+
raise TypeError("Expected argument 'state_details' to be a str")
|
109
|
+
pulumi.set(__self__, "state_details", state_details)
|
110
|
+
if sub_resource_name_lists and not isinstance(sub_resource_name_lists, list):
|
111
|
+
raise TypeError("Expected argument 'sub_resource_name_lists' to be a list")
|
112
|
+
pulumi.set(__self__, "sub_resource_name_lists", sub_resource_name_lists)
|
113
|
+
if system_tags and not isinstance(system_tags, dict):
|
114
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
115
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
116
|
+
if ticket_numbers and not isinstance(ticket_numbers, list):
|
117
|
+
raise TypeError("Expected argument 'ticket_numbers' to be a list")
|
118
|
+
pulumi.set(__self__, "ticket_numbers", ticket_numbers)
|
119
|
+
if time_created and not isinstance(time_created, str):
|
120
|
+
raise TypeError("Expected argument 'time_created' to be a str")
|
121
|
+
pulumi.set(__self__, "time_created", time_created)
|
122
|
+
if time_requested_for_future_access and not isinstance(time_requested_for_future_access, str):
|
123
|
+
raise TypeError("Expected argument 'time_requested_for_future_access' to be a str")
|
124
|
+
pulumi.set(__self__, "time_requested_for_future_access", time_requested_for_future_access)
|
125
|
+
if time_updated and not isinstance(time_updated, str):
|
126
|
+
raise TypeError("Expected argument 'time_updated' to be a str")
|
127
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
128
|
+
|
129
|
+
@property
|
130
|
+
@pulumi.getter(name="approverDetails")
|
131
|
+
def approver_details(self) -> Sequence['outputs.GetApiaccesscontrolPrivilegedApiRequestApproverDetailResult']:
|
132
|
+
"""
|
133
|
+
Contains the approver details who have approved the privilegedApi Request during the initial request.
|
134
|
+
"""
|
135
|
+
return pulumi.get(self, "approver_details")
|
136
|
+
|
137
|
+
@property
|
138
|
+
@pulumi.getter(name="closureComment")
|
139
|
+
def closure_comment(self) -> builtins.str:
|
140
|
+
"""
|
141
|
+
The comment entered by the operator while closing the request.
|
142
|
+
"""
|
143
|
+
return pulumi.get(self, "closure_comment")
|
144
|
+
|
145
|
+
@property
|
146
|
+
@pulumi.getter(name="compartmentId")
|
147
|
+
def compartment_id(self) -> builtins.str:
|
148
|
+
"""
|
149
|
+
The OCID of the compartment that contains the access request.
|
150
|
+
"""
|
151
|
+
return pulumi.get(self, "compartment_id")
|
152
|
+
|
153
|
+
@property
|
154
|
+
@pulumi.getter(name="definedTags")
|
155
|
+
def defined_tags(self) -> Mapping[str, builtins.str]:
|
156
|
+
"""
|
157
|
+
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"}`
|
158
|
+
"""
|
159
|
+
return pulumi.get(self, "defined_tags")
|
160
|
+
|
161
|
+
@property
|
162
|
+
@pulumi.getter(name="displayName")
|
163
|
+
def display_name(self) -> builtins.str:
|
164
|
+
"""
|
165
|
+
Name of the privilegedApi control. The name must be unique.
|
166
|
+
"""
|
167
|
+
return pulumi.get(self, "display_name")
|
168
|
+
|
169
|
+
@property
|
170
|
+
@pulumi.getter(name="durationInHrs")
|
171
|
+
def duration_in_hrs(self) -> builtins.int:
|
172
|
+
"""
|
173
|
+
Duration in hours for which access is sought on the target resource.
|
174
|
+
"""
|
175
|
+
return pulumi.get(self, "duration_in_hrs")
|
176
|
+
|
177
|
+
@property
|
178
|
+
@pulumi.getter(name="entityType")
|
179
|
+
def entity_type(self) -> builtins.str:
|
180
|
+
"""
|
181
|
+
entityType of resource for which the AccessRequest is applicable
|
182
|
+
"""
|
183
|
+
return pulumi.get(self, "entity_type")
|
184
|
+
|
185
|
+
@property
|
186
|
+
@pulumi.getter(name="freeformTags")
|
187
|
+
def freeform_tags(self) -> Mapping[str, builtins.str]:
|
188
|
+
"""
|
189
|
+
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"}`
|
190
|
+
"""
|
191
|
+
return pulumi.get(self, "freeform_tags")
|
192
|
+
|
193
|
+
@property
|
194
|
+
@pulumi.getter
|
195
|
+
def id(self) -> builtins.str:
|
196
|
+
"""
|
197
|
+
The OCID of the privilegedApi request.
|
198
|
+
"""
|
199
|
+
return pulumi.get(self, "id")
|
200
|
+
|
201
|
+
@property
|
202
|
+
@pulumi.getter(name="lifecycleDetails")
|
203
|
+
def lifecycle_details(self) -> builtins.str:
|
204
|
+
"""
|
205
|
+
more in detail about the lifeCycleState.
|
206
|
+
"""
|
207
|
+
return pulumi.get(self, "lifecycle_details")
|
208
|
+
|
209
|
+
@property
|
210
|
+
@pulumi.getter(name="notificationTopicId")
|
211
|
+
def notification_topic_id(self) -> builtins.str:
|
212
|
+
"""
|
213
|
+
The OCID of the Oracle Cloud Infrastructure Notification topic to publish messages related to this privileged api request.
|
214
|
+
"""
|
215
|
+
return pulumi.get(self, "notification_topic_id")
|
216
|
+
|
217
|
+
@property
|
218
|
+
@pulumi.getter(name="numberOfApproversRequired")
|
219
|
+
def number_of_approvers_required(self) -> builtins.int:
|
220
|
+
"""
|
221
|
+
Number of approvers required to approve an privilegedApi request.
|
222
|
+
"""
|
223
|
+
return pulumi.get(self, "number_of_approvers_required")
|
224
|
+
|
225
|
+
@property
|
226
|
+
@pulumi.getter(name="privilegedApiControlId")
|
227
|
+
def privileged_api_control_id(self) -> builtins.str:
|
228
|
+
"""
|
229
|
+
The OCID of the privilegedApi control governing the target resource.
|
230
|
+
"""
|
231
|
+
return pulumi.get(self, "privileged_api_control_id")
|
232
|
+
|
233
|
+
@property
|
234
|
+
@pulumi.getter(name="privilegedApiControlName")
|
235
|
+
def privileged_api_control_name(self) -> builtins.str:
|
236
|
+
"""
|
237
|
+
Name of the privilegedApi control governing the target resource.
|
238
|
+
"""
|
239
|
+
return pulumi.get(self, "privileged_api_control_name")
|
240
|
+
|
241
|
+
@property
|
242
|
+
@pulumi.getter(name="privilegedApiRequestId")
|
243
|
+
def privileged_api_request_id(self) -> builtins.str:
|
244
|
+
return pulumi.get(self, "privileged_api_request_id")
|
245
|
+
|
246
|
+
@property
|
247
|
+
@pulumi.getter(name="privilegedOperationLists")
|
248
|
+
def privileged_operation_lists(self) -> Sequence['outputs.GetApiaccesscontrolPrivilegedApiRequestPrivilegedOperationListResult']:
|
249
|
+
"""
|
250
|
+
List of api names, attributes for which approval is sought by the user.
|
251
|
+
"""
|
252
|
+
return pulumi.get(self, "privileged_operation_lists")
|
253
|
+
|
254
|
+
@property
|
255
|
+
@pulumi.getter(name="reasonDetail")
|
256
|
+
def reason_detail(self) -> builtins.str:
|
257
|
+
"""
|
258
|
+
Reason in Detail for which the operator is requesting access on the target resource.
|
259
|
+
"""
|
260
|
+
return pulumi.get(self, "reason_detail")
|
261
|
+
|
262
|
+
@property
|
263
|
+
@pulumi.getter(name="reasonSummary")
|
264
|
+
def reason_summary(self) -> builtins.str:
|
265
|
+
"""
|
266
|
+
Summary comment by the operator creating the access request.
|
267
|
+
"""
|
268
|
+
return pulumi.get(self, "reason_summary")
|
269
|
+
|
270
|
+
@property
|
271
|
+
@pulumi.getter(name="requestId")
|
272
|
+
def request_id(self) -> builtins.str:
|
273
|
+
"""
|
274
|
+
This is an automatic identifier generated by the system which is easier for human comprehension.
|
275
|
+
"""
|
276
|
+
return pulumi.get(self, "request_id")
|
277
|
+
|
278
|
+
@property
|
279
|
+
@pulumi.getter(name="requestedBies")
|
280
|
+
def requested_bies(self) -> Sequence[builtins.str]:
|
281
|
+
"""
|
282
|
+
List of Users who has created this privilegedApiRequest.
|
283
|
+
"""
|
284
|
+
return pulumi.get(self, "requested_bies")
|
285
|
+
|
286
|
+
@property
|
287
|
+
@pulumi.getter(name="resourceId")
|
288
|
+
def resource_id(self) -> builtins.str:
|
289
|
+
"""
|
290
|
+
The OCID of the target resource associated with the access request. The operator raises an access request to get approval to access the target resource.
|
291
|
+
"""
|
292
|
+
return pulumi.get(self, "resource_id")
|
293
|
+
|
294
|
+
@property
|
295
|
+
@pulumi.getter(name="resourceName")
|
296
|
+
def resource_name(self) -> builtins.str:
|
297
|
+
"""
|
298
|
+
resourceName for which the PrivilegedApiRequest is applicable
|
299
|
+
"""
|
300
|
+
return pulumi.get(self, "resource_name")
|
301
|
+
|
302
|
+
@property
|
303
|
+
@pulumi.getter(name="resourceType")
|
304
|
+
def resource_type(self) -> builtins.str:
|
305
|
+
"""
|
306
|
+
resourceType for which the AccessRequest is applicable
|
307
|
+
"""
|
308
|
+
return pulumi.get(self, "resource_type")
|
309
|
+
|
310
|
+
@property
|
311
|
+
@pulumi.getter
|
312
|
+
def severity(self) -> builtins.str:
|
313
|
+
"""
|
314
|
+
Priority assigned to the access request by the operator
|
315
|
+
"""
|
316
|
+
return pulumi.get(self, "severity")
|
317
|
+
|
318
|
+
@property
|
319
|
+
@pulumi.getter
|
320
|
+
def state(self) -> builtins.str:
|
321
|
+
"""
|
322
|
+
The current state of the PrivilegedApiRequest.
|
323
|
+
"""
|
324
|
+
return pulumi.get(self, "state")
|
325
|
+
|
326
|
+
@property
|
327
|
+
@pulumi.getter(name="stateDetails")
|
328
|
+
def state_details(self) -> builtins.str:
|
329
|
+
"""
|
330
|
+
A message that describes the current state of the PrivilegedApiControl in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
|
331
|
+
"""
|
332
|
+
return pulumi.get(self, "state_details")
|
333
|
+
|
334
|
+
@property
|
335
|
+
@pulumi.getter(name="subResourceNameLists")
|
336
|
+
def sub_resource_name_lists(self) -> Sequence[builtins.str]:
|
337
|
+
"""
|
338
|
+
The subresource names requested for approval.
|
339
|
+
"""
|
340
|
+
return pulumi.get(self, "sub_resource_name_lists")
|
341
|
+
|
342
|
+
@property
|
343
|
+
@pulumi.getter(name="systemTags")
|
344
|
+
def system_tags(self) -> Mapping[str, builtins.str]:
|
345
|
+
"""
|
346
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
347
|
+
"""
|
348
|
+
return pulumi.get(self, "system_tags")
|
349
|
+
|
350
|
+
@property
|
351
|
+
@pulumi.getter(name="ticketNumbers")
|
352
|
+
def ticket_numbers(self) -> Sequence[builtins.str]:
|
353
|
+
"""
|
354
|
+
A list of ticket numbers related to this Privileged Api Access Request, e.g. Service Request (SR) number and JIRA ticket number.
|
355
|
+
"""
|
356
|
+
return pulumi.get(self, "ticket_numbers")
|
357
|
+
|
358
|
+
@property
|
359
|
+
@pulumi.getter(name="timeCreated")
|
360
|
+
def time_created(self) -> builtins.str:
|
361
|
+
"""
|
362
|
+
Time when the privilegedApi request was created in [RFC 3339](https://tools.ietf.org/html/rfc3339)timestamp format. Example: '2020-05-22T21:10:29.600Z'
|
363
|
+
"""
|
364
|
+
return pulumi.get(self, "time_created")
|
365
|
+
|
366
|
+
@property
|
367
|
+
@pulumi.getter(name="timeRequestedForFutureAccess")
|
368
|
+
def time_requested_for_future_access(self) -> builtins.str:
|
369
|
+
"""
|
370
|
+
Time in future when the user for the privilegedApi request needs to be created in [RFC 3339](https://tools.ietf.org/html/rfc3339)timestamp format. Example: '2020-05-22T21:10:29.600Z'
|
371
|
+
"""
|
372
|
+
return pulumi.get(self, "time_requested_for_future_access")
|
373
|
+
|
374
|
+
@property
|
375
|
+
@pulumi.getter(name="timeUpdated")
|
376
|
+
def time_updated(self) -> builtins.str:
|
377
|
+
"""
|
378
|
+
Time when the privilegedApi request was last modified in [RFC 3339](https://tools.ietf.org/html/rfc3339)timestamp format. Example: '2020-05-22T21:10:29.600Z'
|
379
|
+
"""
|
380
|
+
return pulumi.get(self, "time_updated")
|
381
|
+
|
382
|
+
|
383
|
+
class AwaitableGetApiaccesscontrolPrivilegedApiRequestResult(GetApiaccesscontrolPrivilegedApiRequestResult):
|
384
|
+
# pylint: disable=using-constant-test
|
385
|
+
def __await__(self):
|
386
|
+
if False:
|
387
|
+
yield self
|
388
|
+
return GetApiaccesscontrolPrivilegedApiRequestResult(
|
389
|
+
approver_details=self.approver_details,
|
390
|
+
closure_comment=self.closure_comment,
|
391
|
+
compartment_id=self.compartment_id,
|
392
|
+
defined_tags=self.defined_tags,
|
393
|
+
display_name=self.display_name,
|
394
|
+
duration_in_hrs=self.duration_in_hrs,
|
395
|
+
entity_type=self.entity_type,
|
396
|
+
freeform_tags=self.freeform_tags,
|
397
|
+
id=self.id,
|
398
|
+
lifecycle_details=self.lifecycle_details,
|
399
|
+
notification_topic_id=self.notification_topic_id,
|
400
|
+
number_of_approvers_required=self.number_of_approvers_required,
|
401
|
+
privileged_api_control_id=self.privileged_api_control_id,
|
402
|
+
privileged_api_control_name=self.privileged_api_control_name,
|
403
|
+
privileged_api_request_id=self.privileged_api_request_id,
|
404
|
+
privileged_operation_lists=self.privileged_operation_lists,
|
405
|
+
reason_detail=self.reason_detail,
|
406
|
+
reason_summary=self.reason_summary,
|
407
|
+
request_id=self.request_id,
|
408
|
+
requested_bies=self.requested_bies,
|
409
|
+
resource_id=self.resource_id,
|
410
|
+
resource_name=self.resource_name,
|
411
|
+
resource_type=self.resource_type,
|
412
|
+
severity=self.severity,
|
413
|
+
state=self.state,
|
414
|
+
state_details=self.state_details,
|
415
|
+
sub_resource_name_lists=self.sub_resource_name_lists,
|
416
|
+
system_tags=self.system_tags,
|
417
|
+
ticket_numbers=self.ticket_numbers,
|
418
|
+
time_created=self.time_created,
|
419
|
+
time_requested_for_future_access=self.time_requested_for_future_access,
|
420
|
+
time_updated=self.time_updated)
|
421
|
+
|
422
|
+
|
423
|
+
def get_apiaccesscontrol_privileged_api_request(privileged_api_request_id: Optional[builtins.str] = None,
|
424
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetApiaccesscontrolPrivilegedApiRequestResult:
|
425
|
+
"""
|
426
|
+
This data source provides details about a specific Privileged Api Request resource in Oracle Cloud Infrastructure Apiaccesscontrol service.
|
427
|
+
|
428
|
+
Gets information about a PrivilegedApiRequest.
|
429
|
+
|
430
|
+
## Example Usage
|
431
|
+
|
432
|
+
```python
|
433
|
+
import pulumi
|
434
|
+
import pulumi_oci as oci
|
435
|
+
|
436
|
+
test_privileged_api_request = oci.oci.get_apiaccesscontrol_privileged_api_request(privileged_api_request_id=test_privileged_api_request_oci_apiaccesscontrol_privileged_api_request["id"])
|
437
|
+
```
|
438
|
+
|
439
|
+
|
440
|
+
:param builtins.str privileged_api_request_id: unique PrivilegedApiRequest identifier
|
441
|
+
"""
|
442
|
+
__args__ = dict()
|
443
|
+
__args__['privilegedApiRequestId'] = privileged_api_request_id
|
444
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
445
|
+
__ret__ = pulumi.runtime.invoke('oci:oci/getApiaccesscontrolPrivilegedApiRequest:getApiaccesscontrolPrivilegedApiRequest', __args__, opts=opts, typ=GetApiaccesscontrolPrivilegedApiRequestResult).value
|
446
|
+
|
447
|
+
return AwaitableGetApiaccesscontrolPrivilegedApiRequestResult(
|
448
|
+
approver_details=pulumi.get(__ret__, 'approver_details'),
|
449
|
+
closure_comment=pulumi.get(__ret__, 'closure_comment'),
|
450
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
451
|
+
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
452
|
+
display_name=pulumi.get(__ret__, 'display_name'),
|
453
|
+
duration_in_hrs=pulumi.get(__ret__, 'duration_in_hrs'),
|
454
|
+
entity_type=pulumi.get(__ret__, 'entity_type'),
|
455
|
+
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
456
|
+
id=pulumi.get(__ret__, 'id'),
|
457
|
+
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
458
|
+
notification_topic_id=pulumi.get(__ret__, 'notification_topic_id'),
|
459
|
+
number_of_approvers_required=pulumi.get(__ret__, 'number_of_approvers_required'),
|
460
|
+
privileged_api_control_id=pulumi.get(__ret__, 'privileged_api_control_id'),
|
461
|
+
privileged_api_control_name=pulumi.get(__ret__, 'privileged_api_control_name'),
|
462
|
+
privileged_api_request_id=pulumi.get(__ret__, 'privileged_api_request_id'),
|
463
|
+
privileged_operation_lists=pulumi.get(__ret__, 'privileged_operation_lists'),
|
464
|
+
reason_detail=pulumi.get(__ret__, 'reason_detail'),
|
465
|
+
reason_summary=pulumi.get(__ret__, 'reason_summary'),
|
466
|
+
request_id=pulumi.get(__ret__, 'request_id'),
|
467
|
+
requested_bies=pulumi.get(__ret__, 'requested_bies'),
|
468
|
+
resource_id=pulumi.get(__ret__, 'resource_id'),
|
469
|
+
resource_name=pulumi.get(__ret__, 'resource_name'),
|
470
|
+
resource_type=pulumi.get(__ret__, 'resource_type'),
|
471
|
+
severity=pulumi.get(__ret__, 'severity'),
|
472
|
+
state=pulumi.get(__ret__, 'state'),
|
473
|
+
state_details=pulumi.get(__ret__, 'state_details'),
|
474
|
+
sub_resource_name_lists=pulumi.get(__ret__, 'sub_resource_name_lists'),
|
475
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
476
|
+
ticket_numbers=pulumi.get(__ret__, 'ticket_numbers'),
|
477
|
+
time_created=pulumi.get(__ret__, 'time_created'),
|
478
|
+
time_requested_for_future_access=pulumi.get(__ret__, 'time_requested_for_future_access'),
|
479
|
+
time_updated=pulumi.get(__ret__, 'time_updated'))
|
480
|
+
def get_apiaccesscontrol_privileged_api_request_output(privileged_api_request_id: Optional[pulumi.Input[builtins.str]] = None,
|
481
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetApiaccesscontrolPrivilegedApiRequestResult]:
|
482
|
+
"""
|
483
|
+
This data source provides details about a specific Privileged Api Request resource in Oracle Cloud Infrastructure Apiaccesscontrol service.
|
484
|
+
|
485
|
+
Gets information about a PrivilegedApiRequest.
|
486
|
+
|
487
|
+
## Example Usage
|
488
|
+
|
489
|
+
```python
|
490
|
+
import pulumi
|
491
|
+
import pulumi_oci as oci
|
492
|
+
|
493
|
+
test_privileged_api_request = oci.oci.get_apiaccesscontrol_privileged_api_request(privileged_api_request_id=test_privileged_api_request_oci_apiaccesscontrol_privileged_api_request["id"])
|
494
|
+
```
|
495
|
+
|
496
|
+
|
497
|
+
:param builtins.str privileged_api_request_id: unique PrivilegedApiRequest identifier
|
498
|
+
"""
|
499
|
+
__args__ = dict()
|
500
|
+
__args__['privilegedApiRequestId'] = privileged_api_request_id
|
501
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
502
|
+
__ret__ = pulumi.runtime.invoke_output('oci:oci/getApiaccesscontrolPrivilegedApiRequest:getApiaccesscontrolPrivilegedApiRequest', __args__, opts=opts, typ=GetApiaccesscontrolPrivilegedApiRequestResult)
|
503
|
+
return __ret__.apply(lambda __response__: GetApiaccesscontrolPrivilegedApiRequestResult(
|
504
|
+
approver_details=pulumi.get(__response__, 'approver_details'),
|
505
|
+
closure_comment=pulumi.get(__response__, 'closure_comment'),
|
506
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
507
|
+
defined_tags=pulumi.get(__response__, 'defined_tags'),
|
508
|
+
display_name=pulumi.get(__response__, 'display_name'),
|
509
|
+
duration_in_hrs=pulumi.get(__response__, 'duration_in_hrs'),
|
510
|
+
entity_type=pulumi.get(__response__, 'entity_type'),
|
511
|
+
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
512
|
+
id=pulumi.get(__response__, 'id'),
|
513
|
+
lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
|
514
|
+
notification_topic_id=pulumi.get(__response__, 'notification_topic_id'),
|
515
|
+
number_of_approvers_required=pulumi.get(__response__, 'number_of_approvers_required'),
|
516
|
+
privileged_api_control_id=pulumi.get(__response__, 'privileged_api_control_id'),
|
517
|
+
privileged_api_control_name=pulumi.get(__response__, 'privileged_api_control_name'),
|
518
|
+
privileged_api_request_id=pulumi.get(__response__, 'privileged_api_request_id'),
|
519
|
+
privileged_operation_lists=pulumi.get(__response__, 'privileged_operation_lists'),
|
520
|
+
reason_detail=pulumi.get(__response__, 'reason_detail'),
|
521
|
+
reason_summary=pulumi.get(__response__, 'reason_summary'),
|
522
|
+
request_id=pulumi.get(__response__, 'request_id'),
|
523
|
+
requested_bies=pulumi.get(__response__, 'requested_bies'),
|
524
|
+
resource_id=pulumi.get(__response__, 'resource_id'),
|
525
|
+
resource_name=pulumi.get(__response__, 'resource_name'),
|
526
|
+
resource_type=pulumi.get(__response__, 'resource_type'),
|
527
|
+
severity=pulumi.get(__response__, 'severity'),
|
528
|
+
state=pulumi.get(__response__, 'state'),
|
529
|
+
state_details=pulumi.get(__response__, 'state_details'),
|
530
|
+
sub_resource_name_lists=pulumi.get(__response__, 'sub_resource_name_lists'),
|
531
|
+
system_tags=pulumi.get(__response__, 'system_tags'),
|
532
|
+
ticket_numbers=pulumi.get(__response__, 'ticket_numbers'),
|
533
|
+
time_created=pulumi.get(__response__, 'time_created'),
|
534
|
+
time_requested_for_future_access=pulumi.get(__response__, 'time_requested_for_future_access'),
|
535
|
+
time_updated=pulumi.get(__response__, 'time_updated')))
|