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,296 @@
|
|
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
|
+
'GetInternalOccmDemandSignalDeliveryResult',
|
20
|
+
'AwaitableGetInternalOccmDemandSignalDeliveryResult',
|
21
|
+
'get_internal_occm_demand_signal_delivery',
|
22
|
+
'get_internal_occm_demand_signal_delivery_output',
|
23
|
+
]
|
24
|
+
|
25
|
+
@pulumi.output_type
|
26
|
+
class GetInternalOccmDemandSignalDeliveryResult:
|
27
|
+
"""
|
28
|
+
A collection of values returned by getInternalOccmDemandSignalDelivery.
|
29
|
+
"""
|
30
|
+
def __init__(__self__, accepted_quantity=None, compartment_id=None, defined_tags=None, demand_signal_id=None, demand_signal_item_id=None, freeform_tags=None, id=None, justification=None, lifecycle_details=None, notes=None, occ_customer_group_id=None, occm_demand_signal_delivery_id=None, state=None, system_tags=None, time_delivered=None):
|
31
|
+
if accepted_quantity and not isinstance(accepted_quantity, str):
|
32
|
+
raise TypeError("Expected argument 'accepted_quantity' to be a str")
|
33
|
+
pulumi.set(__self__, "accepted_quantity", accepted_quantity)
|
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_signal_id and not isinstance(demand_signal_id, str):
|
41
|
+
raise TypeError("Expected argument 'demand_signal_id' to be a str")
|
42
|
+
pulumi.set(__self__, "demand_signal_id", demand_signal_id)
|
43
|
+
if demand_signal_item_id and not isinstance(demand_signal_item_id, str):
|
44
|
+
raise TypeError("Expected argument 'demand_signal_item_id' to be a str")
|
45
|
+
pulumi.set(__self__, "demand_signal_item_id", demand_signal_item_id)
|
46
|
+
if freeform_tags and not isinstance(freeform_tags, dict):
|
47
|
+
raise TypeError("Expected argument 'freeform_tags' to be a dict")
|
48
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
49
|
+
if id and not isinstance(id, str):
|
50
|
+
raise TypeError("Expected argument 'id' to be a str")
|
51
|
+
pulumi.set(__self__, "id", id)
|
52
|
+
if justification and not isinstance(justification, str):
|
53
|
+
raise TypeError("Expected argument 'justification' to be a str")
|
54
|
+
pulumi.set(__self__, "justification", justification)
|
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 notes and not isinstance(notes, str):
|
59
|
+
raise TypeError("Expected argument 'notes' to be a str")
|
60
|
+
pulumi.set(__self__, "notes", notes)
|
61
|
+
if occ_customer_group_id and not isinstance(occ_customer_group_id, str):
|
62
|
+
raise TypeError("Expected argument 'occ_customer_group_id' to be a str")
|
63
|
+
pulumi.set(__self__, "occ_customer_group_id", occ_customer_group_id)
|
64
|
+
if occm_demand_signal_delivery_id and not isinstance(occm_demand_signal_delivery_id, str):
|
65
|
+
raise TypeError("Expected argument 'occm_demand_signal_delivery_id' to be a str")
|
66
|
+
pulumi.set(__self__, "occm_demand_signal_delivery_id", occm_demand_signal_delivery_id)
|
67
|
+
if state and not isinstance(state, str):
|
68
|
+
raise TypeError("Expected argument 'state' to be a str")
|
69
|
+
pulumi.set(__self__, "state", state)
|
70
|
+
if system_tags and not isinstance(system_tags, dict):
|
71
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
72
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
73
|
+
if time_delivered and not isinstance(time_delivered, str):
|
74
|
+
raise TypeError("Expected argument 'time_delivered' to be a str")
|
75
|
+
pulumi.set(__self__, "time_delivered", time_delivered)
|
76
|
+
|
77
|
+
@property
|
78
|
+
@pulumi.getter(name="acceptedQuantity")
|
79
|
+
def accepted_quantity(self) -> builtins.str:
|
80
|
+
"""
|
81
|
+
The quantity of the resource that Oracle Cloud Infrastructure will supply to the customer.
|
82
|
+
"""
|
83
|
+
return pulumi.get(self, "accepted_quantity")
|
84
|
+
|
85
|
+
@property
|
86
|
+
@pulumi.getter(name="compartmentId")
|
87
|
+
def compartment_id(self) -> builtins.str:
|
88
|
+
"""
|
89
|
+
The OCID of the tenancy from which the demand signal delivery resource is created.
|
90
|
+
"""
|
91
|
+
return pulumi.get(self, "compartment_id")
|
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. Example: `{"foo-namespace.bar-key": "value"}`
|
98
|
+
"""
|
99
|
+
return pulumi.get(self, "defined_tags")
|
100
|
+
|
101
|
+
@property
|
102
|
+
@pulumi.getter(name="demandSignalId")
|
103
|
+
def demand_signal_id(self) -> builtins.str:
|
104
|
+
"""
|
105
|
+
The OCID of the demand signal under which this delivery will be grouped.
|
106
|
+
"""
|
107
|
+
return pulumi.get(self, "demand_signal_id")
|
108
|
+
|
109
|
+
@property
|
110
|
+
@pulumi.getter(name="demandSignalItemId")
|
111
|
+
def demand_signal_item_id(self) -> builtins.str:
|
112
|
+
"""
|
113
|
+
The OCID of the demand signal item corresponding to which this delivery is made.
|
114
|
+
"""
|
115
|
+
return pulumi.get(self, "demand_signal_item_id")
|
116
|
+
|
117
|
+
@property
|
118
|
+
@pulumi.getter(name="freeformTags")
|
119
|
+
def freeform_tags(self) -> Mapping[str, builtins.str]:
|
120
|
+
"""
|
121
|
+
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
122
|
+
"""
|
123
|
+
return pulumi.get(self, "freeform_tags")
|
124
|
+
|
125
|
+
@property
|
126
|
+
@pulumi.getter
|
127
|
+
def id(self) -> builtins.str:
|
128
|
+
"""
|
129
|
+
The OCID of this demand signal delivery resource.
|
130
|
+
"""
|
131
|
+
return pulumi.get(self, "id")
|
132
|
+
|
133
|
+
@property
|
134
|
+
@pulumi.getter
|
135
|
+
def justification(self) -> builtins.str:
|
136
|
+
"""
|
137
|
+
This field could be used by Oracle Cloud Infrastructure to communicate the reason for accepting or declining the request.
|
138
|
+
"""
|
139
|
+
return pulumi.get(self, "justification")
|
140
|
+
|
141
|
+
@property
|
142
|
+
@pulumi.getter(name="lifecycleDetails")
|
143
|
+
def lifecycle_details(self) -> builtins.str:
|
144
|
+
"""
|
145
|
+
The enum values corresponding to the various states associated with the delivery resource.
|
146
|
+
"""
|
147
|
+
return pulumi.get(self, "lifecycle_details")
|
148
|
+
|
149
|
+
@property
|
150
|
+
@pulumi.getter
|
151
|
+
def notes(self) -> builtins.str:
|
152
|
+
"""
|
153
|
+
This field acts as a notes section for operators.
|
154
|
+
"""
|
155
|
+
return pulumi.get(self, "notes")
|
156
|
+
|
157
|
+
@property
|
158
|
+
@pulumi.getter(name="occCustomerGroupId")
|
159
|
+
def occ_customer_group_id(self) -> builtins.str:
|
160
|
+
"""
|
161
|
+
The OCID of the corresponding customer group to which this demand signal delivery resource belongs to.
|
162
|
+
"""
|
163
|
+
return pulumi.get(self, "occ_customer_group_id")
|
164
|
+
|
165
|
+
@property
|
166
|
+
@pulumi.getter(name="occmDemandSignalDeliveryId")
|
167
|
+
def occm_demand_signal_delivery_id(self) -> builtins.str:
|
168
|
+
return pulumi.get(self, "occm_demand_signal_delivery_id")
|
169
|
+
|
170
|
+
@property
|
171
|
+
@pulumi.getter
|
172
|
+
def state(self) -> builtins.str:
|
173
|
+
"""
|
174
|
+
The current lifecycle state of the resource.
|
175
|
+
"""
|
176
|
+
return pulumi.get(self, "state")
|
177
|
+
|
178
|
+
@property
|
179
|
+
@pulumi.getter(name="systemTags")
|
180
|
+
def system_tags(self) -> Mapping[str, builtins.str]:
|
181
|
+
"""
|
182
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
183
|
+
"""
|
184
|
+
return pulumi.get(self, "system_tags")
|
185
|
+
|
186
|
+
@property
|
187
|
+
@pulumi.getter(name="timeDelivered")
|
188
|
+
def time_delivered(self) -> builtins.str:
|
189
|
+
"""
|
190
|
+
The date on which the Oracle Cloud Infrastructure delivered the resource to the customers. The default value for this will be the corresponding demand signal item resource's need by date.
|
191
|
+
"""
|
192
|
+
return pulumi.get(self, "time_delivered")
|
193
|
+
|
194
|
+
|
195
|
+
class AwaitableGetInternalOccmDemandSignalDeliveryResult(GetInternalOccmDemandSignalDeliveryResult):
|
196
|
+
# pylint: disable=using-constant-test
|
197
|
+
def __await__(self):
|
198
|
+
if False:
|
199
|
+
yield self
|
200
|
+
return GetInternalOccmDemandSignalDeliveryResult(
|
201
|
+
accepted_quantity=self.accepted_quantity,
|
202
|
+
compartment_id=self.compartment_id,
|
203
|
+
defined_tags=self.defined_tags,
|
204
|
+
demand_signal_id=self.demand_signal_id,
|
205
|
+
demand_signal_item_id=self.demand_signal_item_id,
|
206
|
+
freeform_tags=self.freeform_tags,
|
207
|
+
id=self.id,
|
208
|
+
justification=self.justification,
|
209
|
+
lifecycle_details=self.lifecycle_details,
|
210
|
+
notes=self.notes,
|
211
|
+
occ_customer_group_id=self.occ_customer_group_id,
|
212
|
+
occm_demand_signal_delivery_id=self.occm_demand_signal_delivery_id,
|
213
|
+
state=self.state,
|
214
|
+
system_tags=self.system_tags,
|
215
|
+
time_delivered=self.time_delivered)
|
216
|
+
|
217
|
+
|
218
|
+
def get_internal_occm_demand_signal_delivery(occm_demand_signal_delivery_id: Optional[builtins.str] = None,
|
219
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetInternalOccmDemandSignalDeliveryResult:
|
220
|
+
"""
|
221
|
+
This data source provides details about a specific Internal Occm Demand Signal Delivery resource in Oracle Cloud Infrastructure Capacity Management service.
|
222
|
+
|
223
|
+
This is an internal GET API to get the details of a demand signal delivery resource corresponding to a demand signal item.
|
224
|
+
|
225
|
+
## Example Usage
|
226
|
+
|
227
|
+
```python
|
228
|
+
import pulumi
|
229
|
+
import pulumi_oci as oci
|
230
|
+
|
231
|
+
test_internal_occm_demand_signal_delivery = oci.CapacityManagement.get_internal_occm_demand_signal_delivery(occm_demand_signal_delivery_id=test_occm_demand_signal_delivery["id"])
|
232
|
+
```
|
233
|
+
|
234
|
+
|
235
|
+
:param builtins.str occm_demand_signal_delivery_id: The OCID of the demand signal delivery.
|
236
|
+
"""
|
237
|
+
__args__ = dict()
|
238
|
+
__args__['occmDemandSignalDeliveryId'] = occm_demand_signal_delivery_id
|
239
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
240
|
+
__ret__ = pulumi.runtime.invoke('oci:CapacityManagement/getInternalOccmDemandSignalDelivery:getInternalOccmDemandSignalDelivery', __args__, opts=opts, typ=GetInternalOccmDemandSignalDeliveryResult).value
|
241
|
+
|
242
|
+
return AwaitableGetInternalOccmDemandSignalDeliveryResult(
|
243
|
+
accepted_quantity=pulumi.get(__ret__, 'accepted_quantity'),
|
244
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
245
|
+
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
246
|
+
demand_signal_id=pulumi.get(__ret__, 'demand_signal_id'),
|
247
|
+
demand_signal_item_id=pulumi.get(__ret__, 'demand_signal_item_id'),
|
248
|
+
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
249
|
+
id=pulumi.get(__ret__, 'id'),
|
250
|
+
justification=pulumi.get(__ret__, 'justification'),
|
251
|
+
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
252
|
+
notes=pulumi.get(__ret__, 'notes'),
|
253
|
+
occ_customer_group_id=pulumi.get(__ret__, 'occ_customer_group_id'),
|
254
|
+
occm_demand_signal_delivery_id=pulumi.get(__ret__, 'occm_demand_signal_delivery_id'),
|
255
|
+
state=pulumi.get(__ret__, 'state'),
|
256
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
257
|
+
time_delivered=pulumi.get(__ret__, 'time_delivered'))
|
258
|
+
def get_internal_occm_demand_signal_delivery_output(occm_demand_signal_delivery_id: Optional[pulumi.Input[builtins.str]] = None,
|
259
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetInternalOccmDemandSignalDeliveryResult]:
|
260
|
+
"""
|
261
|
+
This data source provides details about a specific Internal Occm Demand Signal Delivery resource in Oracle Cloud Infrastructure Capacity Management service.
|
262
|
+
|
263
|
+
This is an internal GET API to get the details of a demand signal delivery resource corresponding to a demand signal item.
|
264
|
+
|
265
|
+
## Example Usage
|
266
|
+
|
267
|
+
```python
|
268
|
+
import pulumi
|
269
|
+
import pulumi_oci as oci
|
270
|
+
|
271
|
+
test_internal_occm_demand_signal_delivery = oci.CapacityManagement.get_internal_occm_demand_signal_delivery(occm_demand_signal_delivery_id=test_occm_demand_signal_delivery["id"])
|
272
|
+
```
|
273
|
+
|
274
|
+
|
275
|
+
:param builtins.str occm_demand_signal_delivery_id: The OCID of the demand signal delivery.
|
276
|
+
"""
|
277
|
+
__args__ = dict()
|
278
|
+
__args__['occmDemandSignalDeliveryId'] = occm_demand_signal_delivery_id
|
279
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
280
|
+
__ret__ = pulumi.runtime.invoke_output('oci:CapacityManagement/getInternalOccmDemandSignalDelivery:getInternalOccmDemandSignalDelivery', __args__, opts=opts, typ=GetInternalOccmDemandSignalDeliveryResult)
|
281
|
+
return __ret__.apply(lambda __response__: GetInternalOccmDemandSignalDeliveryResult(
|
282
|
+
accepted_quantity=pulumi.get(__response__, 'accepted_quantity'),
|
283
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
284
|
+
defined_tags=pulumi.get(__response__, 'defined_tags'),
|
285
|
+
demand_signal_id=pulumi.get(__response__, 'demand_signal_id'),
|
286
|
+
demand_signal_item_id=pulumi.get(__response__, 'demand_signal_item_id'),
|
287
|
+
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
288
|
+
id=pulumi.get(__response__, 'id'),
|
289
|
+
justification=pulumi.get(__response__, 'justification'),
|
290
|
+
lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
|
291
|
+
notes=pulumi.get(__response__, 'notes'),
|
292
|
+
occ_customer_group_id=pulumi.get(__response__, 'occ_customer_group_id'),
|
293
|
+
occm_demand_signal_delivery_id=pulumi.get(__response__, 'occm_demand_signal_delivery_id'),
|
294
|
+
state=pulumi.get(__response__, 'state'),
|
295
|
+
system_tags=pulumi.get(__response__, 'system_tags'),
|
296
|
+
time_delivered=pulumi.get(__response__, 'time_delivered')))
|
@@ -0,0 +1,233 @@
|
|
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
|
+
'GetInternalOccmDemandSignalItemsResult',
|
22
|
+
'AwaitableGetInternalOccmDemandSignalItemsResult',
|
23
|
+
'get_internal_occm_demand_signal_items',
|
24
|
+
'get_internal_occm_demand_signal_items_output',
|
25
|
+
]
|
26
|
+
|
27
|
+
@pulumi.output_type
|
28
|
+
class GetInternalOccmDemandSignalItemsResult:
|
29
|
+
"""
|
30
|
+
A collection of values returned by getInternalOccmDemandSignalItems.
|
31
|
+
"""
|
32
|
+
def __init__(__self__, compartment_id=None, demand_signal_namespace=None, filters=None, id=None, internal_occm_demand_signal_item_collections=None, occ_customer_group_id=None, occm_demand_signal_id=None, resource_name=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 demand_signal_namespace and not isinstance(demand_signal_namespace, str):
|
37
|
+
raise TypeError("Expected argument 'demand_signal_namespace' to be a str")
|
38
|
+
pulumi.set(__self__, "demand_signal_namespace", demand_signal_namespace)
|
39
|
+
if filters and not isinstance(filters, list):
|
40
|
+
raise TypeError("Expected argument 'filters' to be a list")
|
41
|
+
pulumi.set(__self__, "filters", filters)
|
42
|
+
if id and not isinstance(id, str):
|
43
|
+
raise TypeError("Expected argument 'id' to be a str")
|
44
|
+
pulumi.set(__self__, "id", id)
|
45
|
+
if internal_occm_demand_signal_item_collections and not isinstance(internal_occm_demand_signal_item_collections, list):
|
46
|
+
raise TypeError("Expected argument 'internal_occm_demand_signal_item_collections' to be a list")
|
47
|
+
pulumi.set(__self__, "internal_occm_demand_signal_item_collections", internal_occm_demand_signal_item_collections)
|
48
|
+
if occ_customer_group_id and not isinstance(occ_customer_group_id, str):
|
49
|
+
raise TypeError("Expected argument 'occ_customer_group_id' to be a str")
|
50
|
+
pulumi.set(__self__, "occ_customer_group_id", occ_customer_group_id)
|
51
|
+
if occm_demand_signal_id and not isinstance(occm_demand_signal_id, str):
|
52
|
+
raise TypeError("Expected argument 'occm_demand_signal_id' to be a str")
|
53
|
+
pulumi.set(__self__, "occm_demand_signal_id", occm_demand_signal_id)
|
54
|
+
if resource_name and not isinstance(resource_name, str):
|
55
|
+
raise TypeError("Expected argument 'resource_name' to be a str")
|
56
|
+
pulumi.set(__self__, "resource_name", resource_name)
|
57
|
+
|
58
|
+
@property
|
59
|
+
@pulumi.getter(name="compartmentId")
|
60
|
+
def compartment_id(self) -> builtins.str:
|
61
|
+
"""
|
62
|
+
The OCID of the tenancy from which the demand signal item was created.
|
63
|
+
"""
|
64
|
+
return pulumi.get(self, "compartment_id")
|
65
|
+
|
66
|
+
@property
|
67
|
+
@pulumi.getter(name="demandSignalNamespace")
|
68
|
+
def demand_signal_namespace(self) -> Optional[builtins.str]:
|
69
|
+
"""
|
70
|
+
The name of the Oracle Cloud Infrastructure service in consideration for demand signal submission. For example: COMPUTE, NETWORK, GPU etc.
|
71
|
+
"""
|
72
|
+
return pulumi.get(self, "demand_signal_namespace")
|
73
|
+
|
74
|
+
@property
|
75
|
+
@pulumi.getter
|
76
|
+
def filters(self) -> Optional[Sequence['outputs.GetInternalOccmDemandSignalItemsFilterResult']]:
|
77
|
+
return pulumi.get(self, "filters")
|
78
|
+
|
79
|
+
@property
|
80
|
+
@pulumi.getter
|
81
|
+
def id(self) -> builtins.str:
|
82
|
+
"""
|
83
|
+
The provider-assigned unique ID for this managed resource.
|
84
|
+
"""
|
85
|
+
return pulumi.get(self, "id")
|
86
|
+
|
87
|
+
@property
|
88
|
+
@pulumi.getter(name="internalOccmDemandSignalItemCollections")
|
89
|
+
def internal_occm_demand_signal_item_collections(self) -> Sequence['outputs.GetInternalOccmDemandSignalItemsInternalOccmDemandSignalItemCollectionResult']:
|
90
|
+
"""
|
91
|
+
The list of internal_occm_demand_signal_item_collection.
|
92
|
+
"""
|
93
|
+
return pulumi.get(self, "internal_occm_demand_signal_item_collections")
|
94
|
+
|
95
|
+
@property
|
96
|
+
@pulumi.getter(name="occCustomerGroupId")
|
97
|
+
def occ_customer_group_id(self) -> builtins.str:
|
98
|
+
"""
|
99
|
+
The OCID of the customer group in which the demand signal is created.
|
100
|
+
"""
|
101
|
+
return pulumi.get(self, "occ_customer_group_id")
|
102
|
+
|
103
|
+
@property
|
104
|
+
@pulumi.getter(name="occmDemandSignalId")
|
105
|
+
def occm_demand_signal_id(self) -> Optional[builtins.str]:
|
106
|
+
return pulumi.get(self, "occm_demand_signal_id")
|
107
|
+
|
108
|
+
@property
|
109
|
+
@pulumi.getter(name="resourceName")
|
110
|
+
def resource_name(self) -> Optional[builtins.str]:
|
111
|
+
"""
|
112
|
+
The name of the Oracle Cloud Infrastructure resource that you want to request.
|
113
|
+
"""
|
114
|
+
return pulumi.get(self, "resource_name")
|
115
|
+
|
116
|
+
|
117
|
+
class AwaitableGetInternalOccmDemandSignalItemsResult(GetInternalOccmDemandSignalItemsResult):
|
118
|
+
# pylint: disable=using-constant-test
|
119
|
+
def __await__(self):
|
120
|
+
if False:
|
121
|
+
yield self
|
122
|
+
return GetInternalOccmDemandSignalItemsResult(
|
123
|
+
compartment_id=self.compartment_id,
|
124
|
+
demand_signal_namespace=self.demand_signal_namespace,
|
125
|
+
filters=self.filters,
|
126
|
+
id=self.id,
|
127
|
+
internal_occm_demand_signal_item_collections=self.internal_occm_demand_signal_item_collections,
|
128
|
+
occ_customer_group_id=self.occ_customer_group_id,
|
129
|
+
occm_demand_signal_id=self.occm_demand_signal_id,
|
130
|
+
resource_name=self.resource_name)
|
131
|
+
|
132
|
+
|
133
|
+
def get_internal_occm_demand_signal_items(compartment_id: Optional[builtins.str] = None,
|
134
|
+
demand_signal_namespace: Optional[builtins.str] = None,
|
135
|
+
filters: Optional[Sequence[Union['GetInternalOccmDemandSignalItemsFilterArgs', 'GetInternalOccmDemandSignalItemsFilterArgsDict']]] = None,
|
136
|
+
occ_customer_group_id: Optional[builtins.str] = None,
|
137
|
+
occm_demand_signal_id: Optional[builtins.str] = None,
|
138
|
+
resource_name: Optional[builtins.str] = None,
|
139
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetInternalOccmDemandSignalItemsResult:
|
140
|
+
"""
|
141
|
+
This data source provides the list of Internal Occm Demand Signal Items in Oracle Cloud Infrastructure Capacity Management service.
|
142
|
+
|
143
|
+
This internal API will list the detailed information about the resources demanded as part of the demand signal.
|
144
|
+
|
145
|
+
## Example Usage
|
146
|
+
|
147
|
+
```python
|
148
|
+
import pulumi
|
149
|
+
import pulumi_oci as oci
|
150
|
+
|
151
|
+
test_internal_occm_demand_signal_items = oci.CapacityManagement.get_internal_occm_demand_signal_items(compartment_id=compartment_id,
|
152
|
+
occ_customer_group_id=test_occ_customer_group["id"],
|
153
|
+
demand_signal_namespace=internal_occm_demand_signal_item_demand_signal_namespace,
|
154
|
+
occm_demand_signal_id=test_occm_demand_signal["id"],
|
155
|
+
resource_name=test_resource["name"])
|
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 demand_signal_namespace: A query parameter to filter the list of demand signal details based on the namespace.
|
161
|
+
:param builtins.str occ_customer_group_id: The customer group ocid by which we would filter the list.
|
162
|
+
:param builtins.str occm_demand_signal_id: A query parameter to filter the list of demand signal items based on a demand signal id.
|
163
|
+
:param builtins.str resource_name: A query parameter to filter the list of demand signal details based on the resource name.
|
164
|
+
"""
|
165
|
+
__args__ = dict()
|
166
|
+
__args__['compartmentId'] = compartment_id
|
167
|
+
__args__['demandSignalNamespace'] = demand_signal_namespace
|
168
|
+
__args__['filters'] = filters
|
169
|
+
__args__['occCustomerGroupId'] = occ_customer_group_id
|
170
|
+
__args__['occmDemandSignalId'] = occm_demand_signal_id
|
171
|
+
__args__['resourceName'] = resource_name
|
172
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
173
|
+
__ret__ = pulumi.runtime.invoke('oci:CapacityManagement/getInternalOccmDemandSignalItems:getInternalOccmDemandSignalItems', __args__, opts=opts, typ=GetInternalOccmDemandSignalItemsResult).value
|
174
|
+
|
175
|
+
return AwaitableGetInternalOccmDemandSignalItemsResult(
|
176
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
177
|
+
demand_signal_namespace=pulumi.get(__ret__, 'demand_signal_namespace'),
|
178
|
+
filters=pulumi.get(__ret__, 'filters'),
|
179
|
+
id=pulumi.get(__ret__, 'id'),
|
180
|
+
internal_occm_demand_signal_item_collections=pulumi.get(__ret__, 'internal_occm_demand_signal_item_collections'),
|
181
|
+
occ_customer_group_id=pulumi.get(__ret__, 'occ_customer_group_id'),
|
182
|
+
occm_demand_signal_id=pulumi.get(__ret__, 'occm_demand_signal_id'),
|
183
|
+
resource_name=pulumi.get(__ret__, 'resource_name'))
|
184
|
+
def get_internal_occm_demand_signal_items_output(compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
185
|
+
demand_signal_namespace: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
186
|
+
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetInternalOccmDemandSignalItemsFilterArgs', 'GetInternalOccmDemandSignalItemsFilterArgsDict']]]]] = None,
|
187
|
+
occ_customer_group_id: Optional[pulumi.Input[builtins.str]] = None,
|
188
|
+
occm_demand_signal_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
189
|
+
resource_name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
190
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetInternalOccmDemandSignalItemsResult]:
|
191
|
+
"""
|
192
|
+
This data source provides the list of Internal Occm Demand Signal Items in Oracle Cloud Infrastructure Capacity Management service.
|
193
|
+
|
194
|
+
This internal API will list the detailed information about the resources demanded as part of the demand signal.
|
195
|
+
|
196
|
+
## Example Usage
|
197
|
+
|
198
|
+
```python
|
199
|
+
import pulumi
|
200
|
+
import pulumi_oci as oci
|
201
|
+
|
202
|
+
test_internal_occm_demand_signal_items = oci.CapacityManagement.get_internal_occm_demand_signal_items(compartment_id=compartment_id,
|
203
|
+
occ_customer_group_id=test_occ_customer_group["id"],
|
204
|
+
demand_signal_namespace=internal_occm_demand_signal_item_demand_signal_namespace,
|
205
|
+
occm_demand_signal_id=test_occm_demand_signal["id"],
|
206
|
+
resource_name=test_resource["name"])
|
207
|
+
```
|
208
|
+
|
209
|
+
|
210
|
+
: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.
|
211
|
+
:param builtins.str demand_signal_namespace: A query parameter to filter the list of demand signal details based on the namespace.
|
212
|
+
:param builtins.str occ_customer_group_id: The customer group ocid by which we would filter the list.
|
213
|
+
:param builtins.str occm_demand_signal_id: A query parameter to filter the list of demand signal items based on a demand signal id.
|
214
|
+
:param builtins.str resource_name: A query parameter to filter the list of demand signal details based on the resource name.
|
215
|
+
"""
|
216
|
+
__args__ = dict()
|
217
|
+
__args__['compartmentId'] = compartment_id
|
218
|
+
__args__['demandSignalNamespace'] = demand_signal_namespace
|
219
|
+
__args__['filters'] = filters
|
220
|
+
__args__['occCustomerGroupId'] = occ_customer_group_id
|
221
|
+
__args__['occmDemandSignalId'] = occm_demand_signal_id
|
222
|
+
__args__['resourceName'] = resource_name
|
223
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
224
|
+
__ret__ = pulumi.runtime.invoke_output('oci:CapacityManagement/getInternalOccmDemandSignalItems:getInternalOccmDemandSignalItems', __args__, opts=opts, typ=GetInternalOccmDemandSignalItemsResult)
|
225
|
+
return __ret__.apply(lambda __response__: GetInternalOccmDemandSignalItemsResult(
|
226
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
227
|
+
demand_signal_namespace=pulumi.get(__response__, 'demand_signal_namespace'),
|
228
|
+
filters=pulumi.get(__response__, 'filters'),
|
229
|
+
id=pulumi.get(__response__, 'id'),
|
230
|
+
internal_occm_demand_signal_item_collections=pulumi.get(__response__, 'internal_occm_demand_signal_item_collections'),
|
231
|
+
occ_customer_group_id=pulumi.get(__response__, 'occ_customer_group_id'),
|
232
|
+
occm_demand_signal_id=pulumi.get(__response__, 'occm_demand_signal_id'),
|
233
|
+
resource_name=pulumi.get(__response__, 'resource_name')))
|