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,310 @@
|
|
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__ = [
|
19
|
+
'GetApiaccesscontrolApiMetadataResult',
|
20
|
+
'AwaitableGetApiaccesscontrolApiMetadataResult',
|
21
|
+
'get_apiaccesscontrol_api_metadata',
|
22
|
+
'get_apiaccesscontrol_api_metadata_output',
|
23
|
+
]
|
24
|
+
|
25
|
+
@pulumi.output_type
|
26
|
+
class GetApiaccesscontrolApiMetadataResult:
|
27
|
+
"""
|
28
|
+
A collection of values returned by getApiaccesscontrolApiMetadata.
|
29
|
+
"""
|
30
|
+
def __init__(__self__, api_metadata_id=None, api_name=None, defined_tags=None, display_name=None, entity_type=None, fields=None, freeform_tags=None, id=None, lifecycle_details=None, path=None, service_name=None, state=None, system_tags=None, time_created=None, time_deleted=None, time_updated=None):
|
31
|
+
if api_metadata_id and not isinstance(api_metadata_id, str):
|
32
|
+
raise TypeError("Expected argument 'api_metadata_id' to be a str")
|
33
|
+
pulumi.set(__self__, "api_metadata_id", api_metadata_id)
|
34
|
+
if api_name and not isinstance(api_name, str):
|
35
|
+
raise TypeError("Expected argument 'api_name' to be a str")
|
36
|
+
pulumi.set(__self__, "api_name", api_name)
|
37
|
+
if defined_tags and not isinstance(defined_tags, dict):
|
38
|
+
raise TypeError("Expected argument 'defined_tags' to be a dict")
|
39
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
40
|
+
if display_name and not isinstance(display_name, str):
|
41
|
+
raise TypeError("Expected argument 'display_name' to be a str")
|
42
|
+
pulumi.set(__self__, "display_name", display_name)
|
43
|
+
if entity_type and not isinstance(entity_type, str):
|
44
|
+
raise TypeError("Expected argument 'entity_type' to be a str")
|
45
|
+
pulumi.set(__self__, "entity_type", entity_type)
|
46
|
+
if fields and not isinstance(fields, list):
|
47
|
+
raise TypeError("Expected argument 'fields' to be a list")
|
48
|
+
pulumi.set(__self__, "fields", fields)
|
49
|
+
if freeform_tags and not isinstance(freeform_tags, dict):
|
50
|
+
raise TypeError("Expected argument 'freeform_tags' to be a dict")
|
51
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
52
|
+
if id and not isinstance(id, str):
|
53
|
+
raise TypeError("Expected argument 'id' to be a str")
|
54
|
+
pulumi.set(__self__, "id", id)
|
55
|
+
if lifecycle_details and not isinstance(lifecycle_details, str):
|
56
|
+
raise TypeError("Expected argument 'lifecycle_details' to be a str")
|
57
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
58
|
+
if path and not isinstance(path, str):
|
59
|
+
raise TypeError("Expected argument 'path' to be a str")
|
60
|
+
pulumi.set(__self__, "path", path)
|
61
|
+
if service_name and not isinstance(service_name, str):
|
62
|
+
raise TypeError("Expected argument 'service_name' to be a str")
|
63
|
+
pulumi.set(__self__, "service_name", service_name)
|
64
|
+
if state and not isinstance(state, str):
|
65
|
+
raise TypeError("Expected argument 'state' to be a str")
|
66
|
+
pulumi.set(__self__, "state", state)
|
67
|
+
if system_tags and not isinstance(system_tags, dict):
|
68
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
69
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
70
|
+
if time_created and not isinstance(time_created, str):
|
71
|
+
raise TypeError("Expected argument 'time_created' to be a str")
|
72
|
+
pulumi.set(__self__, "time_created", time_created)
|
73
|
+
if time_deleted and not isinstance(time_deleted, str):
|
74
|
+
raise TypeError("Expected argument 'time_deleted' to be a str")
|
75
|
+
pulumi.set(__self__, "time_deleted", time_deleted)
|
76
|
+
if time_updated and not isinstance(time_updated, str):
|
77
|
+
raise TypeError("Expected argument 'time_updated' to be a str")
|
78
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
79
|
+
|
80
|
+
@property
|
81
|
+
@pulumi.getter(name="apiMetadataId")
|
82
|
+
def api_metadata_id(self) -> builtins.str:
|
83
|
+
return pulumi.get(self, "api_metadata_id")
|
84
|
+
|
85
|
+
@property
|
86
|
+
@pulumi.getter(name="apiName")
|
87
|
+
def api_name(self) -> builtins.str:
|
88
|
+
"""
|
89
|
+
The name of the api to execute the api request.
|
90
|
+
"""
|
91
|
+
return pulumi.get(self, "api_name")
|
92
|
+
|
93
|
+
@property
|
94
|
+
@pulumi.getter(name="definedTags")
|
95
|
+
def defined_tags(self) -> Mapping[str, builtins.str]:
|
96
|
+
"""
|
97
|
+
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"}`
|
98
|
+
"""
|
99
|
+
return pulumi.get(self, "defined_tags")
|
100
|
+
|
101
|
+
@property
|
102
|
+
@pulumi.getter(name="displayName")
|
103
|
+
def display_name(self) -> builtins.str:
|
104
|
+
"""
|
105
|
+
The operation Name of the api. The name must be unique.
|
106
|
+
"""
|
107
|
+
return pulumi.get(self, "display_name")
|
108
|
+
|
109
|
+
@property
|
110
|
+
@pulumi.getter(name="entityType")
|
111
|
+
def entity_type(self) -> builtins.str:
|
112
|
+
"""
|
113
|
+
ResourceType to which the apiMetadata belongs to.
|
114
|
+
"""
|
115
|
+
return pulumi.get(self, "entity_type")
|
116
|
+
|
117
|
+
@property
|
118
|
+
@pulumi.getter
|
119
|
+
def fields(self) -> Sequence[builtins.str]:
|
120
|
+
"""
|
121
|
+
List of the fields that is use while calling post or put for the data.
|
122
|
+
"""
|
123
|
+
return pulumi.get(self, "fields")
|
124
|
+
|
125
|
+
@property
|
126
|
+
@pulumi.getter(name="freeformTags")
|
127
|
+
def freeform_tags(self) -> Mapping[str, builtins.str]:
|
128
|
+
"""
|
129
|
+
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"}`
|
130
|
+
"""
|
131
|
+
return pulumi.get(self, "freeform_tags")
|
132
|
+
|
133
|
+
@property
|
134
|
+
@pulumi.getter
|
135
|
+
def id(self) -> builtins.str:
|
136
|
+
"""
|
137
|
+
The provider-assigned unique ID for this managed resource.
|
138
|
+
"""
|
139
|
+
return pulumi.get(self, "id")
|
140
|
+
|
141
|
+
@property
|
142
|
+
@pulumi.getter(name="lifecycleDetails")
|
143
|
+
def lifecycle_details(self) -> builtins.str:
|
144
|
+
"""
|
145
|
+
A message that describes the current state of the ApiMetadata in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
|
146
|
+
"""
|
147
|
+
return pulumi.get(self, "lifecycle_details")
|
148
|
+
|
149
|
+
@property
|
150
|
+
@pulumi.getter
|
151
|
+
def path(self) -> builtins.str:
|
152
|
+
"""
|
153
|
+
rest path of the api.
|
154
|
+
"""
|
155
|
+
return pulumi.get(self, "path")
|
156
|
+
|
157
|
+
@property
|
158
|
+
@pulumi.getter(name="serviceName")
|
159
|
+
def service_name(self) -> builtins.str:
|
160
|
+
"""
|
161
|
+
The service Name to which the api belongs to.
|
162
|
+
"""
|
163
|
+
return pulumi.get(self, "service_name")
|
164
|
+
|
165
|
+
@property
|
166
|
+
@pulumi.getter
|
167
|
+
def state(self) -> builtins.str:
|
168
|
+
"""
|
169
|
+
The current state of the ApiMetadata.
|
170
|
+
"""
|
171
|
+
return pulumi.get(self, "state")
|
172
|
+
|
173
|
+
@property
|
174
|
+
@pulumi.getter(name="systemTags")
|
175
|
+
def system_tags(self) -> Mapping[str, builtins.str]:
|
176
|
+
"""
|
177
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
178
|
+
"""
|
179
|
+
return pulumi.get(self, "system_tags")
|
180
|
+
|
181
|
+
@property
|
182
|
+
@pulumi.getter(name="timeCreated")
|
183
|
+
def time_created(self) -> builtins.str:
|
184
|
+
"""
|
185
|
+
The date and time the PrivilegedApiControl was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
186
|
+
"""
|
187
|
+
return pulumi.get(self, "time_created")
|
188
|
+
|
189
|
+
@property
|
190
|
+
@pulumi.getter(name="timeDeleted")
|
191
|
+
def time_deleted(self) -> builtins.str:
|
192
|
+
"""
|
193
|
+
The date and time the PrivilegedApiControl was marked for delete, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
194
|
+
"""
|
195
|
+
return pulumi.get(self, "time_deleted")
|
196
|
+
|
197
|
+
@property
|
198
|
+
@pulumi.getter(name="timeUpdated")
|
199
|
+
def time_updated(self) -> builtins.str:
|
200
|
+
"""
|
201
|
+
The date and time the PrivilegedApiControl was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
202
|
+
"""
|
203
|
+
return pulumi.get(self, "time_updated")
|
204
|
+
|
205
|
+
|
206
|
+
class AwaitableGetApiaccesscontrolApiMetadataResult(GetApiaccesscontrolApiMetadataResult):
|
207
|
+
# pylint: disable=using-constant-test
|
208
|
+
def __await__(self):
|
209
|
+
if False:
|
210
|
+
yield self
|
211
|
+
return GetApiaccesscontrolApiMetadataResult(
|
212
|
+
api_metadata_id=self.api_metadata_id,
|
213
|
+
api_name=self.api_name,
|
214
|
+
defined_tags=self.defined_tags,
|
215
|
+
display_name=self.display_name,
|
216
|
+
entity_type=self.entity_type,
|
217
|
+
fields=self.fields,
|
218
|
+
freeform_tags=self.freeform_tags,
|
219
|
+
id=self.id,
|
220
|
+
lifecycle_details=self.lifecycle_details,
|
221
|
+
path=self.path,
|
222
|
+
service_name=self.service_name,
|
223
|
+
state=self.state,
|
224
|
+
system_tags=self.system_tags,
|
225
|
+
time_created=self.time_created,
|
226
|
+
time_deleted=self.time_deleted,
|
227
|
+
time_updated=self.time_updated)
|
228
|
+
|
229
|
+
|
230
|
+
def get_apiaccesscontrol_api_metadata(api_metadata_id: Optional[builtins.str] = None,
|
231
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetApiaccesscontrolApiMetadataResult:
|
232
|
+
"""
|
233
|
+
This data source provides details about a specific Api Metadata resource in Oracle Cloud Infrastructure Apiaccesscontrol service.
|
234
|
+
|
235
|
+
Gets information about a ApiMetadata.
|
236
|
+
|
237
|
+
## Example Usage
|
238
|
+
|
239
|
+
```python
|
240
|
+
import pulumi
|
241
|
+
import pulumi_oci as oci
|
242
|
+
|
243
|
+
test_api_metadata = oci.oci.get_apiaccesscontrol_api_metadata(api_metadata_id=test_api_metadata_oci_apiaccesscontrol_api_metadata["id"])
|
244
|
+
```
|
245
|
+
|
246
|
+
|
247
|
+
:param builtins.str api_metadata_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the PrivilegedApiControl.
|
248
|
+
"""
|
249
|
+
__args__ = dict()
|
250
|
+
__args__['apiMetadataId'] = api_metadata_id
|
251
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
252
|
+
__ret__ = pulumi.runtime.invoke('oci:oci/getApiaccesscontrolApiMetadata:getApiaccesscontrolApiMetadata', __args__, opts=opts, typ=GetApiaccesscontrolApiMetadataResult).value
|
253
|
+
|
254
|
+
return AwaitableGetApiaccesscontrolApiMetadataResult(
|
255
|
+
api_metadata_id=pulumi.get(__ret__, 'api_metadata_id'),
|
256
|
+
api_name=pulumi.get(__ret__, 'api_name'),
|
257
|
+
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
258
|
+
display_name=pulumi.get(__ret__, 'display_name'),
|
259
|
+
entity_type=pulumi.get(__ret__, 'entity_type'),
|
260
|
+
fields=pulumi.get(__ret__, 'fields'),
|
261
|
+
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
262
|
+
id=pulumi.get(__ret__, 'id'),
|
263
|
+
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
264
|
+
path=pulumi.get(__ret__, 'path'),
|
265
|
+
service_name=pulumi.get(__ret__, 'service_name'),
|
266
|
+
state=pulumi.get(__ret__, 'state'),
|
267
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
268
|
+
time_created=pulumi.get(__ret__, 'time_created'),
|
269
|
+
time_deleted=pulumi.get(__ret__, 'time_deleted'),
|
270
|
+
time_updated=pulumi.get(__ret__, 'time_updated'))
|
271
|
+
def get_apiaccesscontrol_api_metadata_output(api_metadata_id: Optional[pulumi.Input[builtins.str]] = None,
|
272
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetApiaccesscontrolApiMetadataResult]:
|
273
|
+
"""
|
274
|
+
This data source provides details about a specific Api Metadata resource in Oracle Cloud Infrastructure Apiaccesscontrol service.
|
275
|
+
|
276
|
+
Gets information about a ApiMetadata.
|
277
|
+
|
278
|
+
## Example Usage
|
279
|
+
|
280
|
+
```python
|
281
|
+
import pulumi
|
282
|
+
import pulumi_oci as oci
|
283
|
+
|
284
|
+
test_api_metadata = oci.oci.get_apiaccesscontrol_api_metadata(api_metadata_id=test_api_metadata_oci_apiaccesscontrol_api_metadata["id"])
|
285
|
+
```
|
286
|
+
|
287
|
+
|
288
|
+
:param builtins.str api_metadata_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the PrivilegedApiControl.
|
289
|
+
"""
|
290
|
+
__args__ = dict()
|
291
|
+
__args__['apiMetadataId'] = api_metadata_id
|
292
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
293
|
+
__ret__ = pulumi.runtime.invoke_output('oci:oci/getApiaccesscontrolApiMetadata:getApiaccesscontrolApiMetadata', __args__, opts=opts, typ=GetApiaccesscontrolApiMetadataResult)
|
294
|
+
return __ret__.apply(lambda __response__: GetApiaccesscontrolApiMetadataResult(
|
295
|
+
api_metadata_id=pulumi.get(__response__, 'api_metadata_id'),
|
296
|
+
api_name=pulumi.get(__response__, 'api_name'),
|
297
|
+
defined_tags=pulumi.get(__response__, 'defined_tags'),
|
298
|
+
display_name=pulumi.get(__response__, 'display_name'),
|
299
|
+
entity_type=pulumi.get(__response__, 'entity_type'),
|
300
|
+
fields=pulumi.get(__response__, 'fields'),
|
301
|
+
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
302
|
+
id=pulumi.get(__response__, 'id'),
|
303
|
+
lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
|
304
|
+
path=pulumi.get(__response__, 'path'),
|
305
|
+
service_name=pulumi.get(__response__, 'service_name'),
|
306
|
+
state=pulumi.get(__response__, 'state'),
|
307
|
+
system_tags=pulumi.get(__response__, 'system_tags'),
|
308
|
+
time_created=pulumi.get(__response__, 'time_created'),
|
309
|
+
time_deleted=pulumi.get(__response__, 'time_deleted'),
|
310
|
+
time_updated=pulumi.get(__response__, 'time_updated')))
|
@@ -0,0 +1,208 @@
|
|
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
|
+
from ._inputs import *
|
19
|
+
|
20
|
+
__all__ = [
|
21
|
+
'GetApiaccesscontrolApiMetadataByEntityTypesResult',
|
22
|
+
'AwaitableGetApiaccesscontrolApiMetadataByEntityTypesResult',
|
23
|
+
'get_apiaccesscontrol_api_metadata_by_entity_types',
|
24
|
+
'get_apiaccesscontrol_api_metadata_by_entity_types_output',
|
25
|
+
]
|
26
|
+
|
27
|
+
@pulumi.output_type
|
28
|
+
class GetApiaccesscontrolApiMetadataByEntityTypesResult:
|
29
|
+
"""
|
30
|
+
A collection of values returned by getApiaccesscontrolApiMetadataByEntityTypes.
|
31
|
+
"""
|
32
|
+
def __init__(__self__, api_metadata_by_entity_type_collections=None, compartment_id=None, display_name=None, filters=None, id=None, resource_type=None, state=None):
|
33
|
+
if api_metadata_by_entity_type_collections and not isinstance(api_metadata_by_entity_type_collections, list):
|
34
|
+
raise TypeError("Expected argument 'api_metadata_by_entity_type_collections' to be a list")
|
35
|
+
pulumi.set(__self__, "api_metadata_by_entity_type_collections", api_metadata_by_entity_type_collections)
|
36
|
+
if compartment_id and not isinstance(compartment_id, str):
|
37
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
38
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
39
|
+
if display_name and not isinstance(display_name, str):
|
40
|
+
raise TypeError("Expected argument 'display_name' to be a str")
|
41
|
+
pulumi.set(__self__, "display_name", display_name)
|
42
|
+
if filters and not isinstance(filters, list):
|
43
|
+
raise TypeError("Expected argument 'filters' to be a list")
|
44
|
+
pulumi.set(__self__, "filters", filters)
|
45
|
+
if id and not isinstance(id, str):
|
46
|
+
raise TypeError("Expected argument 'id' to be a str")
|
47
|
+
pulumi.set(__self__, "id", id)
|
48
|
+
if resource_type and not isinstance(resource_type, str):
|
49
|
+
raise TypeError("Expected argument 'resource_type' to be a str")
|
50
|
+
pulumi.set(__self__, "resource_type", resource_type)
|
51
|
+
if state and not isinstance(state, str):
|
52
|
+
raise TypeError("Expected argument 'state' to be a str")
|
53
|
+
pulumi.set(__self__, "state", state)
|
54
|
+
|
55
|
+
@property
|
56
|
+
@pulumi.getter(name="apiMetadataByEntityTypeCollections")
|
57
|
+
def api_metadata_by_entity_type_collections(self) -> Sequence['outputs.GetApiaccesscontrolApiMetadataByEntityTypesApiMetadataByEntityTypeCollectionResult']:
|
58
|
+
"""
|
59
|
+
The list of api_metadata_by_entity_type_collection.
|
60
|
+
"""
|
61
|
+
return pulumi.get(self, "api_metadata_by_entity_type_collections")
|
62
|
+
|
63
|
+
@property
|
64
|
+
@pulumi.getter(name="compartmentId")
|
65
|
+
def compartment_id(self) -> Optional[builtins.str]:
|
66
|
+
return pulumi.get(self, "compartment_id")
|
67
|
+
|
68
|
+
@property
|
69
|
+
@pulumi.getter(name="displayName")
|
70
|
+
def display_name(self) -> Optional[builtins.str]:
|
71
|
+
"""
|
72
|
+
Name of the Api.
|
73
|
+
"""
|
74
|
+
return pulumi.get(self, "display_name")
|
75
|
+
|
76
|
+
@property
|
77
|
+
@pulumi.getter
|
78
|
+
def filters(self) -> Optional[Sequence['outputs.GetApiaccesscontrolApiMetadataByEntityTypesFilterResult']]:
|
79
|
+
return pulumi.get(self, "filters")
|
80
|
+
|
81
|
+
@property
|
82
|
+
@pulumi.getter
|
83
|
+
def id(self) -> builtins.str:
|
84
|
+
"""
|
85
|
+
The provider-assigned unique ID for this managed resource.
|
86
|
+
"""
|
87
|
+
return pulumi.get(self, "id")
|
88
|
+
|
89
|
+
@property
|
90
|
+
@pulumi.getter(name="resourceType")
|
91
|
+
def resource_type(self) -> Optional[builtins.str]:
|
92
|
+
return pulumi.get(self, "resource_type")
|
93
|
+
|
94
|
+
@property
|
95
|
+
@pulumi.getter
|
96
|
+
def state(self) -> Optional[builtins.str]:
|
97
|
+
"""
|
98
|
+
The current state of the ApiMetadata.
|
99
|
+
"""
|
100
|
+
return pulumi.get(self, "state")
|
101
|
+
|
102
|
+
|
103
|
+
class AwaitableGetApiaccesscontrolApiMetadataByEntityTypesResult(GetApiaccesscontrolApiMetadataByEntityTypesResult):
|
104
|
+
# pylint: disable=using-constant-test
|
105
|
+
def __await__(self):
|
106
|
+
if False:
|
107
|
+
yield self
|
108
|
+
return GetApiaccesscontrolApiMetadataByEntityTypesResult(
|
109
|
+
api_metadata_by_entity_type_collections=self.api_metadata_by_entity_type_collections,
|
110
|
+
compartment_id=self.compartment_id,
|
111
|
+
display_name=self.display_name,
|
112
|
+
filters=self.filters,
|
113
|
+
id=self.id,
|
114
|
+
resource_type=self.resource_type,
|
115
|
+
state=self.state)
|
116
|
+
|
117
|
+
|
118
|
+
def get_apiaccesscontrol_api_metadata_by_entity_types(compartment_id: Optional[builtins.str] = None,
|
119
|
+
display_name: Optional[builtins.str] = None,
|
120
|
+
filters: Optional[Sequence[Union['GetApiaccesscontrolApiMetadataByEntityTypesFilterArgs', 'GetApiaccesscontrolApiMetadataByEntityTypesFilterArgsDict']]] = None,
|
121
|
+
resource_type: Optional[builtins.str] = None,
|
122
|
+
state: Optional[builtins.str] = None,
|
123
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetApiaccesscontrolApiMetadataByEntityTypesResult:
|
124
|
+
"""
|
125
|
+
This data source provides the list of Api Metadata By Entity Types in Oracle Cloud Infrastructure Apiaccesscontrol service.
|
126
|
+
|
127
|
+
Gets a list of ApiMetadata Grouped By Entity Types.
|
128
|
+
|
129
|
+
## Example Usage
|
130
|
+
|
131
|
+
```python
|
132
|
+
import pulumi
|
133
|
+
import pulumi_oci as oci
|
134
|
+
|
135
|
+
test_api_metadata_by_entity_types = oci.oci.get_apiaccesscontrol_api_metadata_by_entity_types(compartment_id=compartment_id,
|
136
|
+
display_name=api_metadata_by_entity_type_display_name,
|
137
|
+
resource_type=api_metadata_by_entity_type_resource_type,
|
138
|
+
state=api_metadata_by_entity_type_state)
|
139
|
+
```
|
140
|
+
|
141
|
+
|
142
|
+
:param builtins.str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
|
143
|
+
:param builtins.str display_name: A filter to return only resources that match the given display name exactly.
|
144
|
+
:param builtins.str resource_type: A filter to return only lists of resources that match the entire given service type.
|
145
|
+
:param builtins.str state: A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
|
146
|
+
"""
|
147
|
+
__args__ = dict()
|
148
|
+
__args__['compartmentId'] = compartment_id
|
149
|
+
__args__['displayName'] = display_name
|
150
|
+
__args__['filters'] = filters
|
151
|
+
__args__['resourceType'] = resource_type
|
152
|
+
__args__['state'] = state
|
153
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
154
|
+
__ret__ = pulumi.runtime.invoke('oci:oci/getApiaccesscontrolApiMetadataByEntityTypes:getApiaccesscontrolApiMetadataByEntityTypes', __args__, opts=opts, typ=GetApiaccesscontrolApiMetadataByEntityTypesResult).value
|
155
|
+
|
156
|
+
return AwaitableGetApiaccesscontrolApiMetadataByEntityTypesResult(
|
157
|
+
api_metadata_by_entity_type_collections=pulumi.get(__ret__, 'api_metadata_by_entity_type_collections'),
|
158
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
159
|
+
display_name=pulumi.get(__ret__, 'display_name'),
|
160
|
+
filters=pulumi.get(__ret__, 'filters'),
|
161
|
+
id=pulumi.get(__ret__, 'id'),
|
162
|
+
resource_type=pulumi.get(__ret__, 'resource_type'),
|
163
|
+
state=pulumi.get(__ret__, 'state'))
|
164
|
+
def get_apiaccesscontrol_api_metadata_by_entity_types_output(compartment_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
165
|
+
display_name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
166
|
+
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetApiaccesscontrolApiMetadataByEntityTypesFilterArgs', 'GetApiaccesscontrolApiMetadataByEntityTypesFilterArgsDict']]]]] = None,
|
167
|
+
resource_type: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
168
|
+
state: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
169
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetApiaccesscontrolApiMetadataByEntityTypesResult]:
|
170
|
+
"""
|
171
|
+
This data source provides the list of Api Metadata By Entity Types in Oracle Cloud Infrastructure Apiaccesscontrol service.
|
172
|
+
|
173
|
+
Gets a list of ApiMetadata Grouped By Entity Types.
|
174
|
+
|
175
|
+
## Example Usage
|
176
|
+
|
177
|
+
```python
|
178
|
+
import pulumi
|
179
|
+
import pulumi_oci as oci
|
180
|
+
|
181
|
+
test_api_metadata_by_entity_types = oci.oci.get_apiaccesscontrol_api_metadata_by_entity_types(compartment_id=compartment_id,
|
182
|
+
display_name=api_metadata_by_entity_type_display_name,
|
183
|
+
resource_type=api_metadata_by_entity_type_resource_type,
|
184
|
+
state=api_metadata_by_entity_type_state)
|
185
|
+
```
|
186
|
+
|
187
|
+
|
188
|
+
:param builtins.str compartment_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment in which to list resources.
|
189
|
+
:param builtins.str display_name: A filter to return only resources that match the given display name exactly.
|
190
|
+
:param builtins.str resource_type: A filter to return only lists of resources that match the entire given service type.
|
191
|
+
:param builtins.str state: A filter to return only resources that match the given lifecycle state. The state value is case-insensitive.
|
192
|
+
"""
|
193
|
+
__args__ = dict()
|
194
|
+
__args__['compartmentId'] = compartment_id
|
195
|
+
__args__['displayName'] = display_name
|
196
|
+
__args__['filters'] = filters
|
197
|
+
__args__['resourceType'] = resource_type
|
198
|
+
__args__['state'] = state
|
199
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
200
|
+
__ret__ = pulumi.runtime.invoke_output('oci:oci/getApiaccesscontrolApiMetadataByEntityTypes:getApiaccesscontrolApiMetadataByEntityTypes', __args__, opts=opts, typ=GetApiaccesscontrolApiMetadataByEntityTypesResult)
|
201
|
+
return __ret__.apply(lambda __response__: GetApiaccesscontrolApiMetadataByEntityTypesResult(
|
202
|
+
api_metadata_by_entity_type_collections=pulumi.get(__response__, 'api_metadata_by_entity_type_collections'),
|
203
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
204
|
+
display_name=pulumi.get(__response__, 'display_name'),
|
205
|
+
filters=pulumi.get(__response__, 'filters'),
|
206
|
+
id=pulumi.get(__response__, 'id'),
|
207
|
+
resource_type=pulumi.get(__response__, 'resource_type'),
|
208
|
+
state=pulumi.get(__response__, 'state')))
|