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,175 @@
|
|
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
|
+
'GetOccmDemandSignalDeliveriesResult',
|
22
|
+
'AwaitableGetOccmDemandSignalDeliveriesResult',
|
23
|
+
'get_occm_demand_signal_deliveries',
|
24
|
+
'get_occm_demand_signal_deliveries_output',
|
25
|
+
]
|
26
|
+
|
27
|
+
@pulumi.output_type
|
28
|
+
class GetOccmDemandSignalDeliveriesResult:
|
29
|
+
"""
|
30
|
+
A collection of values returned by getOccmDemandSignalDeliveries.
|
31
|
+
"""
|
32
|
+
def __init__(__self__, compartment_id=None, filters=None, id=None, occm_demand_signal_delivery_collections=None, occm_demand_signal_item_id=None):
|
33
|
+
if compartment_id and not isinstance(compartment_id, str):
|
34
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
35
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
36
|
+
if filters and not isinstance(filters, list):
|
37
|
+
raise TypeError("Expected argument 'filters' to be a list")
|
38
|
+
pulumi.set(__self__, "filters", filters)
|
39
|
+
if id and not isinstance(id, str):
|
40
|
+
raise TypeError("Expected argument 'id' to be a str")
|
41
|
+
pulumi.set(__self__, "id", id)
|
42
|
+
if occm_demand_signal_delivery_collections and not isinstance(occm_demand_signal_delivery_collections, list):
|
43
|
+
raise TypeError("Expected argument 'occm_demand_signal_delivery_collections' to be a list")
|
44
|
+
pulumi.set(__self__, "occm_demand_signal_delivery_collections", occm_demand_signal_delivery_collections)
|
45
|
+
if occm_demand_signal_item_id and not isinstance(occm_demand_signal_item_id, str):
|
46
|
+
raise TypeError("Expected argument 'occm_demand_signal_item_id' to be a str")
|
47
|
+
pulumi.set(__self__, "occm_demand_signal_item_id", occm_demand_signal_item_id)
|
48
|
+
|
49
|
+
@property
|
50
|
+
@pulumi.getter(name="compartmentId")
|
51
|
+
def compartment_id(self) -> builtins.str:
|
52
|
+
"""
|
53
|
+
The OCID of the tenancy from which the demand signal delivery resource is created.
|
54
|
+
"""
|
55
|
+
return pulumi.get(self, "compartment_id")
|
56
|
+
|
57
|
+
@property
|
58
|
+
@pulumi.getter
|
59
|
+
def filters(self) -> Optional[Sequence['outputs.GetOccmDemandSignalDeliveriesFilterResult']]:
|
60
|
+
return pulumi.get(self, "filters")
|
61
|
+
|
62
|
+
@property
|
63
|
+
@pulumi.getter
|
64
|
+
def id(self) -> Optional[builtins.str]:
|
65
|
+
"""
|
66
|
+
The OCID of this demand signal delivery resource.
|
67
|
+
"""
|
68
|
+
return pulumi.get(self, "id")
|
69
|
+
|
70
|
+
@property
|
71
|
+
@pulumi.getter(name="occmDemandSignalDeliveryCollections")
|
72
|
+
def occm_demand_signal_delivery_collections(self) -> Sequence['outputs.GetOccmDemandSignalDeliveriesOccmDemandSignalDeliveryCollectionResult']:
|
73
|
+
"""
|
74
|
+
The list of occm_demand_signal_delivery_collection.
|
75
|
+
"""
|
76
|
+
return pulumi.get(self, "occm_demand_signal_delivery_collections")
|
77
|
+
|
78
|
+
@property
|
79
|
+
@pulumi.getter(name="occmDemandSignalItemId")
|
80
|
+
def occm_demand_signal_item_id(self) -> Optional[builtins.str]:
|
81
|
+
return pulumi.get(self, "occm_demand_signal_item_id")
|
82
|
+
|
83
|
+
|
84
|
+
class AwaitableGetOccmDemandSignalDeliveriesResult(GetOccmDemandSignalDeliveriesResult):
|
85
|
+
# pylint: disable=using-constant-test
|
86
|
+
def __await__(self):
|
87
|
+
if False:
|
88
|
+
yield self
|
89
|
+
return GetOccmDemandSignalDeliveriesResult(
|
90
|
+
compartment_id=self.compartment_id,
|
91
|
+
filters=self.filters,
|
92
|
+
id=self.id,
|
93
|
+
occm_demand_signal_delivery_collections=self.occm_demand_signal_delivery_collections,
|
94
|
+
occm_demand_signal_item_id=self.occm_demand_signal_item_id)
|
95
|
+
|
96
|
+
|
97
|
+
def get_occm_demand_signal_deliveries(compartment_id: Optional[builtins.str] = None,
|
98
|
+
filters: Optional[Sequence[Union['GetOccmDemandSignalDeliveriesFilterArgs', 'GetOccmDemandSignalDeliveriesFilterArgsDict']]] = None,
|
99
|
+
id: Optional[builtins.str] = None,
|
100
|
+
occm_demand_signal_item_id: Optional[builtins.str] = None,
|
101
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetOccmDemandSignalDeliveriesResult:
|
102
|
+
"""
|
103
|
+
This data source provides the list of Occm Demand Signal Deliveries in Oracle Cloud Infrastructure Capacity Management service.
|
104
|
+
|
105
|
+
This GET call is used to list all demand signals delivery resources within the compartment passed as a query param.
|
106
|
+
|
107
|
+
## Example Usage
|
108
|
+
|
109
|
+
```python
|
110
|
+
import pulumi
|
111
|
+
import pulumi_oci as oci
|
112
|
+
|
113
|
+
test_occm_demand_signal_deliveries = oci.CapacityManagement.get_occm_demand_signal_deliveries(compartment_id=compartment_id,
|
114
|
+
id=occm_demand_signal_delivery_id,
|
115
|
+
occm_demand_signal_item_id=test_occm_demand_signal_item["id"])
|
116
|
+
```
|
117
|
+
|
118
|
+
|
119
|
+
:param builtins.str compartment_id: The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
|
120
|
+
:param builtins.str id: A query parameter to filter the list of demand signals based on it's OCID.
|
121
|
+
:param builtins.str occm_demand_signal_item_id: A query parameter to filter the list of demand signal items based on it's OCID.
|
122
|
+
"""
|
123
|
+
__args__ = dict()
|
124
|
+
__args__['compartmentId'] = compartment_id
|
125
|
+
__args__['filters'] = filters
|
126
|
+
__args__['id'] = id
|
127
|
+
__args__['occmDemandSignalItemId'] = occm_demand_signal_item_id
|
128
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
129
|
+
__ret__ = pulumi.runtime.invoke('oci:CapacityManagement/getOccmDemandSignalDeliveries:getOccmDemandSignalDeliveries', __args__, opts=opts, typ=GetOccmDemandSignalDeliveriesResult).value
|
130
|
+
|
131
|
+
return AwaitableGetOccmDemandSignalDeliveriesResult(
|
132
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
133
|
+
filters=pulumi.get(__ret__, 'filters'),
|
134
|
+
id=pulumi.get(__ret__, 'id'),
|
135
|
+
occm_demand_signal_delivery_collections=pulumi.get(__ret__, 'occm_demand_signal_delivery_collections'),
|
136
|
+
occm_demand_signal_item_id=pulumi.get(__ret__, 'occm_demand_signal_item_id'))
|
137
|
+
def get_occm_demand_signal_deliveries_output(compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
138
|
+
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetOccmDemandSignalDeliveriesFilterArgs', 'GetOccmDemandSignalDeliveriesFilterArgsDict']]]]] = None,
|
139
|
+
id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
140
|
+
occm_demand_signal_item_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
141
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetOccmDemandSignalDeliveriesResult]:
|
142
|
+
"""
|
143
|
+
This data source provides the list of Occm Demand Signal Deliveries in Oracle Cloud Infrastructure Capacity Management service.
|
144
|
+
|
145
|
+
This GET call is used to list all demand signals delivery resources within the compartment passed as a query param.
|
146
|
+
|
147
|
+
## Example Usage
|
148
|
+
|
149
|
+
```python
|
150
|
+
import pulumi
|
151
|
+
import pulumi_oci as oci
|
152
|
+
|
153
|
+
test_occm_demand_signal_deliveries = oci.CapacityManagement.get_occm_demand_signal_deliveries(compartment_id=compartment_id,
|
154
|
+
id=occm_demand_signal_delivery_id,
|
155
|
+
occm_demand_signal_item_id=test_occm_demand_signal_item["id"])
|
156
|
+
```
|
157
|
+
|
158
|
+
|
159
|
+
:param builtins.str compartment_id: The ocid of the compartment or tenancy in which resources are to be listed. This will also be used for authorization purposes.
|
160
|
+
:param builtins.str id: A query parameter to filter the list of demand signals based on it's OCID.
|
161
|
+
:param builtins.str occm_demand_signal_item_id: A query parameter to filter the list of demand signal items based on it's OCID.
|
162
|
+
"""
|
163
|
+
__args__ = dict()
|
164
|
+
__args__['compartmentId'] = compartment_id
|
165
|
+
__args__['filters'] = filters
|
166
|
+
__args__['id'] = id
|
167
|
+
__args__['occmDemandSignalItemId'] = occm_demand_signal_item_id
|
168
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
169
|
+
__ret__ = pulumi.runtime.invoke_output('oci:CapacityManagement/getOccmDemandSignalDeliveries:getOccmDemandSignalDeliveries', __args__, opts=opts, typ=GetOccmDemandSignalDeliveriesResult)
|
170
|
+
return __ret__.apply(lambda __response__: GetOccmDemandSignalDeliveriesResult(
|
171
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
172
|
+
filters=pulumi.get(__response__, 'filters'),
|
173
|
+
id=pulumi.get(__response__, 'id'),
|
174
|
+
occm_demand_signal_delivery_collections=pulumi.get(__response__, 'occm_demand_signal_delivery_collections'),
|
175
|
+
occm_demand_signal_item_id=pulumi.get(__response__, 'occm_demand_signal_item_id')))
|
@@ -0,0 +1,352 @@
|
|
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
|
+
'GetOccmDemandSignalItemResult',
|
20
|
+
'AwaitableGetOccmDemandSignalItemResult',
|
21
|
+
'get_occm_demand_signal_item',
|
22
|
+
'get_occm_demand_signal_item_output',
|
23
|
+
]
|
24
|
+
|
25
|
+
@pulumi.output_type
|
26
|
+
class GetOccmDemandSignalItemResult:
|
27
|
+
"""
|
28
|
+
A collection of values returned by getOccmDemandSignalItem.
|
29
|
+
"""
|
30
|
+
def __init__(__self__, availability_domain=None, compartment_id=None, defined_tags=None, demand_quantity=None, demand_signal_catalog_resource_id=None, demand_signal_id=None, demand_signal_namespace=None, freeform_tags=None, id=None, notes=None, occm_demand_signal_item_id=None, region=None, request_type=None, resource_name=None, resource_properties=None, state=None, system_tags=None, target_compartment_id=None, time_needed_before=None):
|
31
|
+
if availability_domain and not isinstance(availability_domain, str):
|
32
|
+
raise TypeError("Expected argument 'availability_domain' to be a str")
|
33
|
+
pulumi.set(__self__, "availability_domain", availability_domain)
|
34
|
+
if compartment_id and not isinstance(compartment_id, str):
|
35
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
36
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
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 demand_quantity and not isinstance(demand_quantity, str):
|
41
|
+
raise TypeError("Expected argument 'demand_quantity' to be a str")
|
42
|
+
pulumi.set(__self__, "demand_quantity", demand_quantity)
|
43
|
+
if demand_signal_catalog_resource_id and not isinstance(demand_signal_catalog_resource_id, str):
|
44
|
+
raise TypeError("Expected argument 'demand_signal_catalog_resource_id' to be a str")
|
45
|
+
pulumi.set(__self__, "demand_signal_catalog_resource_id", demand_signal_catalog_resource_id)
|
46
|
+
if demand_signal_id and not isinstance(demand_signal_id, str):
|
47
|
+
raise TypeError("Expected argument 'demand_signal_id' to be a str")
|
48
|
+
pulumi.set(__self__, "demand_signal_id", demand_signal_id)
|
49
|
+
if demand_signal_namespace and not isinstance(demand_signal_namespace, str):
|
50
|
+
raise TypeError("Expected argument 'demand_signal_namespace' to be a str")
|
51
|
+
pulumi.set(__self__, "demand_signal_namespace", demand_signal_namespace)
|
52
|
+
if freeform_tags and not isinstance(freeform_tags, dict):
|
53
|
+
raise TypeError("Expected argument 'freeform_tags' to be a dict")
|
54
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
55
|
+
if id and not isinstance(id, str):
|
56
|
+
raise TypeError("Expected argument 'id' to be a str")
|
57
|
+
pulumi.set(__self__, "id", id)
|
58
|
+
if notes and not isinstance(notes, str):
|
59
|
+
raise TypeError("Expected argument 'notes' to be a str")
|
60
|
+
pulumi.set(__self__, "notes", notes)
|
61
|
+
if occm_demand_signal_item_id and not isinstance(occm_demand_signal_item_id, str):
|
62
|
+
raise TypeError("Expected argument 'occm_demand_signal_item_id' to be a str")
|
63
|
+
pulumi.set(__self__, "occm_demand_signal_item_id", occm_demand_signal_item_id)
|
64
|
+
if region and not isinstance(region, str):
|
65
|
+
raise TypeError("Expected argument 'region' to be a str")
|
66
|
+
pulumi.set(__self__, "region", region)
|
67
|
+
if request_type and not isinstance(request_type, str):
|
68
|
+
raise TypeError("Expected argument 'request_type' to be a str")
|
69
|
+
pulumi.set(__self__, "request_type", request_type)
|
70
|
+
if resource_name and not isinstance(resource_name, str):
|
71
|
+
raise TypeError("Expected argument 'resource_name' to be a str")
|
72
|
+
pulumi.set(__self__, "resource_name", resource_name)
|
73
|
+
if resource_properties and not isinstance(resource_properties, dict):
|
74
|
+
raise TypeError("Expected argument 'resource_properties' to be a dict")
|
75
|
+
pulumi.set(__self__, "resource_properties", resource_properties)
|
76
|
+
if state and not isinstance(state, str):
|
77
|
+
raise TypeError("Expected argument 'state' to be a str")
|
78
|
+
pulumi.set(__self__, "state", state)
|
79
|
+
if system_tags and not isinstance(system_tags, dict):
|
80
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
81
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
82
|
+
if target_compartment_id and not isinstance(target_compartment_id, str):
|
83
|
+
raise TypeError("Expected argument 'target_compartment_id' to be a str")
|
84
|
+
pulumi.set(__self__, "target_compartment_id", target_compartment_id)
|
85
|
+
if time_needed_before and not isinstance(time_needed_before, str):
|
86
|
+
raise TypeError("Expected argument 'time_needed_before' to be a str")
|
87
|
+
pulumi.set(__self__, "time_needed_before", time_needed_before)
|
88
|
+
|
89
|
+
@property
|
90
|
+
@pulumi.getter(name="availabilityDomain")
|
91
|
+
def availability_domain(self) -> builtins.str:
|
92
|
+
"""
|
93
|
+
The name of the availability domain for which you want to request the Oracle Cloud Infrastructure resource.
|
94
|
+
"""
|
95
|
+
return pulumi.get(self, "availability_domain")
|
96
|
+
|
97
|
+
@property
|
98
|
+
@pulumi.getter(name="compartmentId")
|
99
|
+
def compartment_id(self) -> builtins.str:
|
100
|
+
"""
|
101
|
+
The OCID of the tenancy from which the demand signal item was created.
|
102
|
+
"""
|
103
|
+
return pulumi.get(self, "compartment_id")
|
104
|
+
|
105
|
+
@property
|
106
|
+
@pulumi.getter(name="definedTags")
|
107
|
+
def defined_tags(self) -> Mapping[str, builtins.str]:
|
108
|
+
"""
|
109
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
110
|
+
"""
|
111
|
+
return pulumi.get(self, "defined_tags")
|
112
|
+
|
113
|
+
@property
|
114
|
+
@pulumi.getter(name="demandQuantity")
|
115
|
+
def demand_quantity(self) -> builtins.str:
|
116
|
+
"""
|
117
|
+
The quantity of the resource that you want to demand from OCI.
|
118
|
+
"""
|
119
|
+
return pulumi.get(self, "demand_quantity")
|
120
|
+
|
121
|
+
@property
|
122
|
+
@pulumi.getter(name="demandSignalCatalogResourceId")
|
123
|
+
def demand_signal_catalog_resource_id(self) -> builtins.str:
|
124
|
+
"""
|
125
|
+
The OCID of the corresponding demand signal catalog resource.
|
126
|
+
"""
|
127
|
+
return pulumi.get(self, "demand_signal_catalog_resource_id")
|
128
|
+
|
129
|
+
@property
|
130
|
+
@pulumi.getter(name="demandSignalId")
|
131
|
+
def demand_signal_id(self) -> builtins.str:
|
132
|
+
"""
|
133
|
+
The OCID of the demand signal under which this item will be grouped.
|
134
|
+
"""
|
135
|
+
return pulumi.get(self, "demand_signal_id")
|
136
|
+
|
137
|
+
@property
|
138
|
+
@pulumi.getter(name="demandSignalNamespace")
|
139
|
+
def demand_signal_namespace(self) -> builtins.str:
|
140
|
+
"""
|
141
|
+
The name of the Oracle Cloud Infrastructure service in consideration for demand signal submission. For example: COMPUTE, NETWORK, GPU etc.
|
142
|
+
"""
|
143
|
+
return pulumi.get(self, "demand_signal_namespace")
|
144
|
+
|
145
|
+
@property
|
146
|
+
@pulumi.getter(name="freeformTags")
|
147
|
+
def freeform_tags(self) -> Mapping[str, builtins.str]:
|
148
|
+
"""
|
149
|
+
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
150
|
+
"""
|
151
|
+
return pulumi.get(self, "freeform_tags")
|
152
|
+
|
153
|
+
@property
|
154
|
+
@pulumi.getter
|
155
|
+
def id(self) -> builtins.str:
|
156
|
+
"""
|
157
|
+
The OCID of the demand signal item.
|
158
|
+
"""
|
159
|
+
return pulumi.get(self, "id")
|
160
|
+
|
161
|
+
@property
|
162
|
+
@pulumi.getter
|
163
|
+
def notes(self) -> builtins.str:
|
164
|
+
"""
|
165
|
+
This field will serve as notes section for you. You can use this section to convey a message to Oracle Cloud Infrastructure regarding your resource request.
|
166
|
+
"""
|
167
|
+
return pulumi.get(self, "notes")
|
168
|
+
|
169
|
+
@property
|
170
|
+
@pulumi.getter(name="occmDemandSignalItemId")
|
171
|
+
def occm_demand_signal_item_id(self) -> builtins.str:
|
172
|
+
return pulumi.get(self, "occm_demand_signal_item_id")
|
173
|
+
|
174
|
+
@property
|
175
|
+
@pulumi.getter
|
176
|
+
def region(self) -> builtins.str:
|
177
|
+
"""
|
178
|
+
The name of region for which you want to request the Oracle Cloud Infrastructure resource.
|
179
|
+
"""
|
180
|
+
return pulumi.get(self, "region")
|
181
|
+
|
182
|
+
@property
|
183
|
+
@pulumi.getter(name="requestType")
|
184
|
+
def request_type(self) -> builtins.str:
|
185
|
+
"""
|
186
|
+
The type of request (DEMAND or RETURN) made against a particular demand signal item.
|
187
|
+
"""
|
188
|
+
return pulumi.get(self, "request_type")
|
189
|
+
|
190
|
+
@property
|
191
|
+
@pulumi.getter(name="resourceName")
|
192
|
+
def resource_name(self) -> builtins.str:
|
193
|
+
"""
|
194
|
+
The name of the Oracle Cloud Infrastructure resource that you want to request.
|
195
|
+
"""
|
196
|
+
return pulumi.get(self, "resource_name")
|
197
|
+
|
198
|
+
@property
|
199
|
+
@pulumi.getter(name="resourceProperties")
|
200
|
+
def resource_properties(self) -> Mapping[str, builtins.str]:
|
201
|
+
"""
|
202
|
+
A map of various properties associated with the Oracle Cloud Infrastructure resource.
|
203
|
+
"""
|
204
|
+
return pulumi.get(self, "resource_properties")
|
205
|
+
|
206
|
+
@property
|
207
|
+
@pulumi.getter
|
208
|
+
def state(self) -> builtins.str:
|
209
|
+
"""
|
210
|
+
The current lifecycle state of the resource.
|
211
|
+
"""
|
212
|
+
return pulumi.get(self, "state")
|
213
|
+
|
214
|
+
@property
|
215
|
+
@pulumi.getter(name="systemTags")
|
216
|
+
def system_tags(self) -> Mapping[str, builtins.str]:
|
217
|
+
"""
|
218
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
219
|
+
"""
|
220
|
+
return pulumi.get(self, "system_tags")
|
221
|
+
|
222
|
+
@property
|
223
|
+
@pulumi.getter(name="targetCompartmentId")
|
224
|
+
def target_compartment_id(self) -> builtins.str:
|
225
|
+
"""
|
226
|
+
The OCID of the tenancy for which you want to request the Oracle Cloud Infrastructure resource for. This is an optional parameter.
|
227
|
+
"""
|
228
|
+
return pulumi.get(self, "target_compartment_id")
|
229
|
+
|
230
|
+
@property
|
231
|
+
@pulumi.getter(name="timeNeededBefore")
|
232
|
+
def time_needed_before(self) -> builtins.str:
|
233
|
+
"""
|
234
|
+
the date before which you would ideally like the Oracle Cloud Infrastructure resource to be delivered to you.
|
235
|
+
"""
|
236
|
+
return pulumi.get(self, "time_needed_before")
|
237
|
+
|
238
|
+
|
239
|
+
class AwaitableGetOccmDemandSignalItemResult(GetOccmDemandSignalItemResult):
|
240
|
+
# pylint: disable=using-constant-test
|
241
|
+
def __await__(self):
|
242
|
+
if False:
|
243
|
+
yield self
|
244
|
+
return GetOccmDemandSignalItemResult(
|
245
|
+
availability_domain=self.availability_domain,
|
246
|
+
compartment_id=self.compartment_id,
|
247
|
+
defined_tags=self.defined_tags,
|
248
|
+
demand_quantity=self.demand_quantity,
|
249
|
+
demand_signal_catalog_resource_id=self.demand_signal_catalog_resource_id,
|
250
|
+
demand_signal_id=self.demand_signal_id,
|
251
|
+
demand_signal_namespace=self.demand_signal_namespace,
|
252
|
+
freeform_tags=self.freeform_tags,
|
253
|
+
id=self.id,
|
254
|
+
notes=self.notes,
|
255
|
+
occm_demand_signal_item_id=self.occm_demand_signal_item_id,
|
256
|
+
region=self.region,
|
257
|
+
request_type=self.request_type,
|
258
|
+
resource_name=self.resource_name,
|
259
|
+
resource_properties=self.resource_properties,
|
260
|
+
state=self.state,
|
261
|
+
system_tags=self.system_tags,
|
262
|
+
target_compartment_id=self.target_compartment_id,
|
263
|
+
time_needed_before=self.time_needed_before)
|
264
|
+
|
265
|
+
|
266
|
+
def get_occm_demand_signal_item(occm_demand_signal_item_id: Optional[builtins.str] = None,
|
267
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetOccmDemandSignalItemResult:
|
268
|
+
"""
|
269
|
+
This data source provides details about a specific Occm Demand Signal Item resource in Oracle Cloud Infrastructure Capacity Management service.
|
270
|
+
|
271
|
+
This is a GET API to get the details of a demand signal item resource representing the details of the resource demanded by you.
|
272
|
+
|
273
|
+
## Example Usage
|
274
|
+
|
275
|
+
```python
|
276
|
+
import pulumi
|
277
|
+
import pulumi_oci as oci
|
278
|
+
|
279
|
+
test_occm_demand_signal_item = oci.CapacityManagement.get_occm_demand_signal_item(occm_demand_signal_item_id=test_occm_demand_signal_item_oci_capacity_management_occm_demand_signal_item["id"])
|
280
|
+
```
|
281
|
+
|
282
|
+
|
283
|
+
:param builtins.str occm_demand_signal_item_id: The OCID of the demand signal item.
|
284
|
+
"""
|
285
|
+
__args__ = dict()
|
286
|
+
__args__['occmDemandSignalItemId'] = occm_demand_signal_item_id
|
287
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
288
|
+
__ret__ = pulumi.runtime.invoke('oci:CapacityManagement/getOccmDemandSignalItem:getOccmDemandSignalItem', __args__, opts=opts, typ=GetOccmDemandSignalItemResult).value
|
289
|
+
|
290
|
+
return AwaitableGetOccmDemandSignalItemResult(
|
291
|
+
availability_domain=pulumi.get(__ret__, 'availability_domain'),
|
292
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
293
|
+
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
294
|
+
demand_quantity=pulumi.get(__ret__, 'demand_quantity'),
|
295
|
+
demand_signal_catalog_resource_id=pulumi.get(__ret__, 'demand_signal_catalog_resource_id'),
|
296
|
+
demand_signal_id=pulumi.get(__ret__, 'demand_signal_id'),
|
297
|
+
demand_signal_namespace=pulumi.get(__ret__, 'demand_signal_namespace'),
|
298
|
+
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
299
|
+
id=pulumi.get(__ret__, 'id'),
|
300
|
+
notes=pulumi.get(__ret__, 'notes'),
|
301
|
+
occm_demand_signal_item_id=pulumi.get(__ret__, 'occm_demand_signal_item_id'),
|
302
|
+
region=pulumi.get(__ret__, 'region'),
|
303
|
+
request_type=pulumi.get(__ret__, 'request_type'),
|
304
|
+
resource_name=pulumi.get(__ret__, 'resource_name'),
|
305
|
+
resource_properties=pulumi.get(__ret__, 'resource_properties'),
|
306
|
+
state=pulumi.get(__ret__, 'state'),
|
307
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
308
|
+
target_compartment_id=pulumi.get(__ret__, 'target_compartment_id'),
|
309
|
+
time_needed_before=pulumi.get(__ret__, 'time_needed_before'))
|
310
|
+
def get_occm_demand_signal_item_output(occm_demand_signal_item_id: Optional[pulumi.Input[builtins.str]] = None,
|
311
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetOccmDemandSignalItemResult]:
|
312
|
+
"""
|
313
|
+
This data source provides details about a specific Occm Demand Signal Item resource in Oracle Cloud Infrastructure Capacity Management service.
|
314
|
+
|
315
|
+
This is a GET API to get the details of a demand signal item resource representing the details of the resource demanded by you.
|
316
|
+
|
317
|
+
## Example Usage
|
318
|
+
|
319
|
+
```python
|
320
|
+
import pulumi
|
321
|
+
import pulumi_oci as oci
|
322
|
+
|
323
|
+
test_occm_demand_signal_item = oci.CapacityManagement.get_occm_demand_signal_item(occm_demand_signal_item_id=test_occm_demand_signal_item_oci_capacity_management_occm_demand_signal_item["id"])
|
324
|
+
```
|
325
|
+
|
326
|
+
|
327
|
+
:param builtins.str occm_demand_signal_item_id: The OCID of the demand signal item.
|
328
|
+
"""
|
329
|
+
__args__ = dict()
|
330
|
+
__args__['occmDemandSignalItemId'] = occm_demand_signal_item_id
|
331
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
332
|
+
__ret__ = pulumi.runtime.invoke_output('oci:CapacityManagement/getOccmDemandSignalItem:getOccmDemandSignalItem', __args__, opts=opts, typ=GetOccmDemandSignalItemResult)
|
333
|
+
return __ret__.apply(lambda __response__: GetOccmDemandSignalItemResult(
|
334
|
+
availability_domain=pulumi.get(__response__, 'availability_domain'),
|
335
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
336
|
+
defined_tags=pulumi.get(__response__, 'defined_tags'),
|
337
|
+
demand_quantity=pulumi.get(__response__, 'demand_quantity'),
|
338
|
+
demand_signal_catalog_resource_id=pulumi.get(__response__, 'demand_signal_catalog_resource_id'),
|
339
|
+
demand_signal_id=pulumi.get(__response__, 'demand_signal_id'),
|
340
|
+
demand_signal_namespace=pulumi.get(__response__, 'demand_signal_namespace'),
|
341
|
+
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
342
|
+
id=pulumi.get(__response__, 'id'),
|
343
|
+
notes=pulumi.get(__response__, 'notes'),
|
344
|
+
occm_demand_signal_item_id=pulumi.get(__response__, 'occm_demand_signal_item_id'),
|
345
|
+
region=pulumi.get(__response__, 'region'),
|
346
|
+
request_type=pulumi.get(__response__, 'request_type'),
|
347
|
+
resource_name=pulumi.get(__response__, 'resource_name'),
|
348
|
+
resource_properties=pulumi.get(__response__, 'resource_properties'),
|
349
|
+
state=pulumi.get(__response__, 'state'),
|
350
|
+
system_tags=pulumi.get(__response__, 'system_tags'),
|
351
|
+
target_compartment_id=pulumi.get(__response__, 'target_compartment_id'),
|
352
|
+
time_needed_before=pulumi.get(__response__, 'time_needed_before')))
|