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,760 @@
|
|
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__ = ['InternalOccmDemandSignalDeliveryArgs', 'InternalOccmDemandSignalDelivery']
|
19
|
+
|
20
|
+
@pulumi.input_type
|
21
|
+
class InternalOccmDemandSignalDeliveryArgs:
|
22
|
+
def __init__(__self__, *,
|
23
|
+
accepted_quantity: pulumi.Input[builtins.str],
|
24
|
+
compartment_id: pulumi.Input[builtins.str],
|
25
|
+
demand_signal_id: pulumi.Input[builtins.str],
|
26
|
+
demand_signal_item_id: pulumi.Input[builtins.str],
|
27
|
+
occ_customer_group_id: pulumi.Input[builtins.str],
|
28
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
29
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
30
|
+
justification: Optional[pulumi.Input[builtins.str]] = None,
|
31
|
+
lifecycle_details: Optional[pulumi.Input[builtins.str]] = None,
|
32
|
+
notes: Optional[pulumi.Input[builtins.str]] = None):
|
33
|
+
"""
|
34
|
+
The set of arguments for constructing a InternalOccmDemandSignalDelivery resource.
|
35
|
+
:param pulumi.Input[builtins.str] accepted_quantity: (Updatable) The quantity of the resource that Oracle Cloud Infrastructure will supply to the customer.
|
36
|
+
:param pulumi.Input[builtins.str] compartment_id: The OCID of the tenancy from which the demand signal delivery resource is created.
|
37
|
+
:param pulumi.Input[builtins.str] demand_signal_id: The OCID of the demand signal under which this delivery will be grouped.
|
38
|
+
:param pulumi.Input[builtins.str] demand_signal_item_id: The OCID of the demand signal item corresponding to which this delivery is made.
|
39
|
+
:param pulumi.Input[builtins.str] occ_customer_group_id: The OCID of the corresponding customer group to which this demand signal delivery resource belongs to.
|
40
|
+
|
41
|
+
|
42
|
+
** IMPORTANT **
|
43
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
44
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
45
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
46
|
+
:param pulumi.Input[builtins.str] justification: (Updatable) This field could be used by Oracle Cloud Infrastructure to communicate the reason for declining the request.
|
47
|
+
:param pulumi.Input[builtins.str] lifecycle_details: The enum values corresponding to the various states associated with the delivery resource.
|
48
|
+
:param pulumi.Input[builtins.str] notes: (Updatable) This field acts as a notes section for operators.
|
49
|
+
"""
|
50
|
+
pulumi.set(__self__, "accepted_quantity", accepted_quantity)
|
51
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
52
|
+
pulumi.set(__self__, "demand_signal_id", demand_signal_id)
|
53
|
+
pulumi.set(__self__, "demand_signal_item_id", demand_signal_item_id)
|
54
|
+
pulumi.set(__self__, "occ_customer_group_id", occ_customer_group_id)
|
55
|
+
if defined_tags is not None:
|
56
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
57
|
+
if freeform_tags is not None:
|
58
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
59
|
+
if justification is not None:
|
60
|
+
pulumi.set(__self__, "justification", justification)
|
61
|
+
if lifecycle_details is not None:
|
62
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
63
|
+
if notes is not None:
|
64
|
+
pulumi.set(__self__, "notes", notes)
|
65
|
+
|
66
|
+
@property
|
67
|
+
@pulumi.getter(name="acceptedQuantity")
|
68
|
+
def accepted_quantity(self) -> pulumi.Input[builtins.str]:
|
69
|
+
"""
|
70
|
+
(Updatable) The quantity of the resource that Oracle Cloud Infrastructure will supply to the customer.
|
71
|
+
"""
|
72
|
+
return pulumi.get(self, "accepted_quantity")
|
73
|
+
|
74
|
+
@accepted_quantity.setter
|
75
|
+
def accepted_quantity(self, value: pulumi.Input[builtins.str]):
|
76
|
+
pulumi.set(self, "accepted_quantity", value)
|
77
|
+
|
78
|
+
@property
|
79
|
+
@pulumi.getter(name="compartmentId")
|
80
|
+
def compartment_id(self) -> pulumi.Input[builtins.str]:
|
81
|
+
"""
|
82
|
+
The OCID of the tenancy from which the demand signal delivery resource is created.
|
83
|
+
"""
|
84
|
+
return pulumi.get(self, "compartment_id")
|
85
|
+
|
86
|
+
@compartment_id.setter
|
87
|
+
def compartment_id(self, value: pulumi.Input[builtins.str]):
|
88
|
+
pulumi.set(self, "compartment_id", value)
|
89
|
+
|
90
|
+
@property
|
91
|
+
@pulumi.getter(name="demandSignalId")
|
92
|
+
def demand_signal_id(self) -> pulumi.Input[builtins.str]:
|
93
|
+
"""
|
94
|
+
The OCID of the demand signal under which this delivery will be grouped.
|
95
|
+
"""
|
96
|
+
return pulumi.get(self, "demand_signal_id")
|
97
|
+
|
98
|
+
@demand_signal_id.setter
|
99
|
+
def demand_signal_id(self, value: pulumi.Input[builtins.str]):
|
100
|
+
pulumi.set(self, "demand_signal_id", value)
|
101
|
+
|
102
|
+
@property
|
103
|
+
@pulumi.getter(name="demandSignalItemId")
|
104
|
+
def demand_signal_item_id(self) -> pulumi.Input[builtins.str]:
|
105
|
+
"""
|
106
|
+
The OCID of the demand signal item corresponding to which this delivery is made.
|
107
|
+
"""
|
108
|
+
return pulumi.get(self, "demand_signal_item_id")
|
109
|
+
|
110
|
+
@demand_signal_item_id.setter
|
111
|
+
def demand_signal_item_id(self, value: pulumi.Input[builtins.str]):
|
112
|
+
pulumi.set(self, "demand_signal_item_id", value)
|
113
|
+
|
114
|
+
@property
|
115
|
+
@pulumi.getter(name="occCustomerGroupId")
|
116
|
+
def occ_customer_group_id(self) -> pulumi.Input[builtins.str]:
|
117
|
+
"""
|
118
|
+
The OCID of the corresponding customer group to which this demand signal delivery resource belongs to.
|
119
|
+
|
120
|
+
|
121
|
+
** IMPORTANT **
|
122
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
123
|
+
"""
|
124
|
+
return pulumi.get(self, "occ_customer_group_id")
|
125
|
+
|
126
|
+
@occ_customer_group_id.setter
|
127
|
+
def occ_customer_group_id(self, value: pulumi.Input[builtins.str]):
|
128
|
+
pulumi.set(self, "occ_customer_group_id", value)
|
129
|
+
|
130
|
+
@property
|
131
|
+
@pulumi.getter(name="definedTags")
|
132
|
+
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
133
|
+
"""
|
134
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
135
|
+
"""
|
136
|
+
return pulumi.get(self, "defined_tags")
|
137
|
+
|
138
|
+
@defined_tags.setter
|
139
|
+
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
140
|
+
pulumi.set(self, "defined_tags", value)
|
141
|
+
|
142
|
+
@property
|
143
|
+
@pulumi.getter(name="freeformTags")
|
144
|
+
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
145
|
+
"""
|
146
|
+
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
147
|
+
"""
|
148
|
+
return pulumi.get(self, "freeform_tags")
|
149
|
+
|
150
|
+
@freeform_tags.setter
|
151
|
+
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
152
|
+
pulumi.set(self, "freeform_tags", value)
|
153
|
+
|
154
|
+
@property
|
155
|
+
@pulumi.getter
|
156
|
+
def justification(self) -> Optional[pulumi.Input[builtins.str]]:
|
157
|
+
"""
|
158
|
+
(Updatable) This field could be used by Oracle Cloud Infrastructure to communicate the reason for declining the request.
|
159
|
+
"""
|
160
|
+
return pulumi.get(self, "justification")
|
161
|
+
|
162
|
+
@justification.setter
|
163
|
+
def justification(self, value: Optional[pulumi.Input[builtins.str]]):
|
164
|
+
pulumi.set(self, "justification", value)
|
165
|
+
|
166
|
+
@property
|
167
|
+
@pulumi.getter(name="lifecycleDetails")
|
168
|
+
def lifecycle_details(self) -> Optional[pulumi.Input[builtins.str]]:
|
169
|
+
"""
|
170
|
+
The enum values corresponding to the various states associated with the delivery resource.
|
171
|
+
"""
|
172
|
+
return pulumi.get(self, "lifecycle_details")
|
173
|
+
|
174
|
+
@lifecycle_details.setter
|
175
|
+
def lifecycle_details(self, value: Optional[pulumi.Input[builtins.str]]):
|
176
|
+
pulumi.set(self, "lifecycle_details", value)
|
177
|
+
|
178
|
+
@property
|
179
|
+
@pulumi.getter
|
180
|
+
def notes(self) -> Optional[pulumi.Input[builtins.str]]:
|
181
|
+
"""
|
182
|
+
(Updatable) This field acts as a notes section for operators.
|
183
|
+
"""
|
184
|
+
return pulumi.get(self, "notes")
|
185
|
+
|
186
|
+
@notes.setter
|
187
|
+
def notes(self, value: Optional[pulumi.Input[builtins.str]]):
|
188
|
+
pulumi.set(self, "notes", value)
|
189
|
+
|
190
|
+
|
191
|
+
@pulumi.input_type
|
192
|
+
class _InternalOccmDemandSignalDeliveryState:
|
193
|
+
def __init__(__self__, *,
|
194
|
+
accepted_quantity: Optional[pulumi.Input[builtins.str]] = None,
|
195
|
+
compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
196
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
197
|
+
demand_signal_id: Optional[pulumi.Input[builtins.str]] = None,
|
198
|
+
demand_signal_item_id: Optional[pulumi.Input[builtins.str]] = None,
|
199
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
200
|
+
justification: Optional[pulumi.Input[builtins.str]] = None,
|
201
|
+
lifecycle_details: Optional[pulumi.Input[builtins.str]] = None,
|
202
|
+
notes: Optional[pulumi.Input[builtins.str]] = None,
|
203
|
+
occ_customer_group_id: Optional[pulumi.Input[builtins.str]] = None,
|
204
|
+
state: Optional[pulumi.Input[builtins.str]] = None,
|
205
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
206
|
+
time_delivered: Optional[pulumi.Input[builtins.str]] = None):
|
207
|
+
"""
|
208
|
+
Input properties used for looking up and filtering InternalOccmDemandSignalDelivery resources.
|
209
|
+
:param pulumi.Input[builtins.str] accepted_quantity: (Updatable) The quantity of the resource that Oracle Cloud Infrastructure will supply to the customer.
|
210
|
+
:param pulumi.Input[builtins.str] compartment_id: The OCID of the tenancy from which the demand signal delivery resource is created.
|
211
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
212
|
+
:param pulumi.Input[builtins.str] demand_signal_id: The OCID of the demand signal under which this delivery will be grouped.
|
213
|
+
:param pulumi.Input[builtins.str] demand_signal_item_id: The OCID of the demand signal item corresponding to which this delivery is made.
|
214
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
215
|
+
:param pulumi.Input[builtins.str] justification: (Updatable) This field could be used by Oracle Cloud Infrastructure to communicate the reason for declining the request.
|
216
|
+
:param pulumi.Input[builtins.str] lifecycle_details: The enum values corresponding to the various states associated with the delivery resource.
|
217
|
+
:param pulumi.Input[builtins.str] notes: (Updatable) This field acts as a notes section for operators.
|
218
|
+
:param pulumi.Input[builtins.str] occ_customer_group_id: The OCID of the corresponding customer group to which this demand signal delivery resource belongs to.
|
219
|
+
|
220
|
+
|
221
|
+
** IMPORTANT **
|
222
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
223
|
+
:param pulumi.Input[builtins.str] state: The current lifecycle state of the resource.
|
224
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
225
|
+
:param pulumi.Input[builtins.str] time_delivered: 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.
|
226
|
+
"""
|
227
|
+
if accepted_quantity is not None:
|
228
|
+
pulumi.set(__self__, "accepted_quantity", accepted_quantity)
|
229
|
+
if compartment_id is not None:
|
230
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
231
|
+
if defined_tags is not None:
|
232
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
233
|
+
if demand_signal_id is not None:
|
234
|
+
pulumi.set(__self__, "demand_signal_id", demand_signal_id)
|
235
|
+
if demand_signal_item_id is not None:
|
236
|
+
pulumi.set(__self__, "demand_signal_item_id", demand_signal_item_id)
|
237
|
+
if freeform_tags is not None:
|
238
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
239
|
+
if justification is not None:
|
240
|
+
pulumi.set(__self__, "justification", justification)
|
241
|
+
if lifecycle_details is not None:
|
242
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
243
|
+
if notes is not None:
|
244
|
+
pulumi.set(__self__, "notes", notes)
|
245
|
+
if occ_customer_group_id is not None:
|
246
|
+
pulumi.set(__self__, "occ_customer_group_id", occ_customer_group_id)
|
247
|
+
if state is not None:
|
248
|
+
pulumi.set(__self__, "state", state)
|
249
|
+
if system_tags is not None:
|
250
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
251
|
+
if time_delivered is not None:
|
252
|
+
pulumi.set(__self__, "time_delivered", time_delivered)
|
253
|
+
|
254
|
+
@property
|
255
|
+
@pulumi.getter(name="acceptedQuantity")
|
256
|
+
def accepted_quantity(self) -> Optional[pulumi.Input[builtins.str]]:
|
257
|
+
"""
|
258
|
+
(Updatable) The quantity of the resource that Oracle Cloud Infrastructure will supply to the customer.
|
259
|
+
"""
|
260
|
+
return pulumi.get(self, "accepted_quantity")
|
261
|
+
|
262
|
+
@accepted_quantity.setter
|
263
|
+
def accepted_quantity(self, value: Optional[pulumi.Input[builtins.str]]):
|
264
|
+
pulumi.set(self, "accepted_quantity", value)
|
265
|
+
|
266
|
+
@property
|
267
|
+
@pulumi.getter(name="compartmentId")
|
268
|
+
def compartment_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
269
|
+
"""
|
270
|
+
The OCID of the tenancy from which the demand signal delivery resource is created.
|
271
|
+
"""
|
272
|
+
return pulumi.get(self, "compartment_id")
|
273
|
+
|
274
|
+
@compartment_id.setter
|
275
|
+
def compartment_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
276
|
+
pulumi.set(self, "compartment_id", value)
|
277
|
+
|
278
|
+
@property
|
279
|
+
@pulumi.getter(name="definedTags")
|
280
|
+
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
281
|
+
"""
|
282
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
283
|
+
"""
|
284
|
+
return pulumi.get(self, "defined_tags")
|
285
|
+
|
286
|
+
@defined_tags.setter
|
287
|
+
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
288
|
+
pulumi.set(self, "defined_tags", value)
|
289
|
+
|
290
|
+
@property
|
291
|
+
@pulumi.getter(name="demandSignalId")
|
292
|
+
def demand_signal_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
293
|
+
"""
|
294
|
+
The OCID of the demand signal under which this delivery will be grouped.
|
295
|
+
"""
|
296
|
+
return pulumi.get(self, "demand_signal_id")
|
297
|
+
|
298
|
+
@demand_signal_id.setter
|
299
|
+
def demand_signal_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
300
|
+
pulumi.set(self, "demand_signal_id", value)
|
301
|
+
|
302
|
+
@property
|
303
|
+
@pulumi.getter(name="demandSignalItemId")
|
304
|
+
def demand_signal_item_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
305
|
+
"""
|
306
|
+
The OCID of the demand signal item corresponding to which this delivery is made.
|
307
|
+
"""
|
308
|
+
return pulumi.get(self, "demand_signal_item_id")
|
309
|
+
|
310
|
+
@demand_signal_item_id.setter
|
311
|
+
def demand_signal_item_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
312
|
+
pulumi.set(self, "demand_signal_item_id", value)
|
313
|
+
|
314
|
+
@property
|
315
|
+
@pulumi.getter(name="freeformTags")
|
316
|
+
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
317
|
+
"""
|
318
|
+
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
319
|
+
"""
|
320
|
+
return pulumi.get(self, "freeform_tags")
|
321
|
+
|
322
|
+
@freeform_tags.setter
|
323
|
+
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
324
|
+
pulumi.set(self, "freeform_tags", value)
|
325
|
+
|
326
|
+
@property
|
327
|
+
@pulumi.getter
|
328
|
+
def justification(self) -> Optional[pulumi.Input[builtins.str]]:
|
329
|
+
"""
|
330
|
+
(Updatable) This field could be used by Oracle Cloud Infrastructure to communicate the reason for declining the request.
|
331
|
+
"""
|
332
|
+
return pulumi.get(self, "justification")
|
333
|
+
|
334
|
+
@justification.setter
|
335
|
+
def justification(self, value: Optional[pulumi.Input[builtins.str]]):
|
336
|
+
pulumi.set(self, "justification", value)
|
337
|
+
|
338
|
+
@property
|
339
|
+
@pulumi.getter(name="lifecycleDetails")
|
340
|
+
def lifecycle_details(self) -> Optional[pulumi.Input[builtins.str]]:
|
341
|
+
"""
|
342
|
+
The enum values corresponding to the various states associated with the delivery resource.
|
343
|
+
"""
|
344
|
+
return pulumi.get(self, "lifecycle_details")
|
345
|
+
|
346
|
+
@lifecycle_details.setter
|
347
|
+
def lifecycle_details(self, value: Optional[pulumi.Input[builtins.str]]):
|
348
|
+
pulumi.set(self, "lifecycle_details", value)
|
349
|
+
|
350
|
+
@property
|
351
|
+
@pulumi.getter
|
352
|
+
def notes(self) -> Optional[pulumi.Input[builtins.str]]:
|
353
|
+
"""
|
354
|
+
(Updatable) This field acts as a notes section for operators.
|
355
|
+
"""
|
356
|
+
return pulumi.get(self, "notes")
|
357
|
+
|
358
|
+
@notes.setter
|
359
|
+
def notes(self, value: Optional[pulumi.Input[builtins.str]]):
|
360
|
+
pulumi.set(self, "notes", value)
|
361
|
+
|
362
|
+
@property
|
363
|
+
@pulumi.getter(name="occCustomerGroupId")
|
364
|
+
def occ_customer_group_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
365
|
+
"""
|
366
|
+
The OCID of the corresponding customer group to which this demand signal delivery resource belongs to.
|
367
|
+
|
368
|
+
|
369
|
+
** IMPORTANT **
|
370
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
371
|
+
"""
|
372
|
+
return pulumi.get(self, "occ_customer_group_id")
|
373
|
+
|
374
|
+
@occ_customer_group_id.setter
|
375
|
+
def occ_customer_group_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
376
|
+
pulumi.set(self, "occ_customer_group_id", value)
|
377
|
+
|
378
|
+
@property
|
379
|
+
@pulumi.getter
|
380
|
+
def state(self) -> Optional[pulumi.Input[builtins.str]]:
|
381
|
+
"""
|
382
|
+
The current lifecycle state of the resource.
|
383
|
+
"""
|
384
|
+
return pulumi.get(self, "state")
|
385
|
+
|
386
|
+
@state.setter
|
387
|
+
def state(self, value: Optional[pulumi.Input[builtins.str]]):
|
388
|
+
pulumi.set(self, "state", value)
|
389
|
+
|
390
|
+
@property
|
391
|
+
@pulumi.getter(name="systemTags")
|
392
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
393
|
+
"""
|
394
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
395
|
+
"""
|
396
|
+
return pulumi.get(self, "system_tags")
|
397
|
+
|
398
|
+
@system_tags.setter
|
399
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
400
|
+
pulumi.set(self, "system_tags", value)
|
401
|
+
|
402
|
+
@property
|
403
|
+
@pulumi.getter(name="timeDelivered")
|
404
|
+
def time_delivered(self) -> Optional[pulumi.Input[builtins.str]]:
|
405
|
+
"""
|
406
|
+
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.
|
407
|
+
"""
|
408
|
+
return pulumi.get(self, "time_delivered")
|
409
|
+
|
410
|
+
@time_delivered.setter
|
411
|
+
def time_delivered(self, value: Optional[pulumi.Input[builtins.str]]):
|
412
|
+
pulumi.set(self, "time_delivered", value)
|
413
|
+
|
414
|
+
|
415
|
+
@pulumi.type_token("oci:CapacityManagement/internalOccmDemandSignalDelivery:InternalOccmDemandSignalDelivery")
|
416
|
+
class InternalOccmDemandSignalDelivery(pulumi.CustomResource):
|
417
|
+
@overload
|
418
|
+
def __init__(__self__,
|
419
|
+
resource_name: str,
|
420
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
421
|
+
accepted_quantity: Optional[pulumi.Input[builtins.str]] = None,
|
422
|
+
compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
423
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
424
|
+
demand_signal_id: Optional[pulumi.Input[builtins.str]] = None,
|
425
|
+
demand_signal_item_id: Optional[pulumi.Input[builtins.str]] = None,
|
426
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
427
|
+
justification: Optional[pulumi.Input[builtins.str]] = None,
|
428
|
+
lifecycle_details: Optional[pulumi.Input[builtins.str]] = None,
|
429
|
+
notes: Optional[pulumi.Input[builtins.str]] = None,
|
430
|
+
occ_customer_group_id: Optional[pulumi.Input[builtins.str]] = None,
|
431
|
+
__props__=None):
|
432
|
+
"""
|
433
|
+
This resource provides the Internal Occm Demand Signal Delivery resource in Oracle Cloud Infrastructure Capacity Management service.
|
434
|
+
|
435
|
+
This is a post API which is used to create a demand signal delivery resource.
|
436
|
+
operationId: CreateInternalOccmDemandSignalDelivery
|
437
|
+
summary: A post call to create a demand signal delivery.
|
438
|
+
|
439
|
+
## Example Usage
|
440
|
+
|
441
|
+
```python
|
442
|
+
import pulumi
|
443
|
+
import pulumi_oci as oci
|
444
|
+
|
445
|
+
test_internal_occm_demand_signal_delivery = oci.capacity_management.InternalOccmDemandSignalDelivery("test_internal_occm_demand_signal_delivery",
|
446
|
+
accepted_quantity=internal_occm_demand_signal_delivery_accepted_quantity,
|
447
|
+
compartment_id=compartment_id,
|
448
|
+
demand_signal_id=test_demand_signal["id"],
|
449
|
+
demand_signal_item_id=test_demand_signal_item["id"],
|
450
|
+
occ_customer_group_id=test_occ_customer_group["id"],
|
451
|
+
defined_tags={
|
452
|
+
"foo-namespace.bar-key": "value",
|
453
|
+
},
|
454
|
+
freeform_tags={
|
455
|
+
"bar-key": "value",
|
456
|
+
},
|
457
|
+
justification=internal_occm_demand_signal_delivery_justification,
|
458
|
+
notes=internal_occm_demand_signal_delivery_notes)
|
459
|
+
```
|
460
|
+
|
461
|
+
## Import
|
462
|
+
|
463
|
+
InternalOccmDemandSignalDeliveries can be imported using the `id`, e.g.
|
464
|
+
|
465
|
+
```sh
|
466
|
+
$ pulumi import oci:CapacityManagement/internalOccmDemandSignalDelivery:InternalOccmDemandSignalDelivery test_internal_occm_demand_signal_delivery "internal/occmDemandSignalDeliveries/{occmDemandSignalDeliveryId}"
|
467
|
+
```
|
468
|
+
|
469
|
+
:param str resource_name: The name of the resource.
|
470
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
471
|
+
:param pulumi.Input[builtins.str] accepted_quantity: (Updatable) The quantity of the resource that Oracle Cloud Infrastructure will supply to the customer.
|
472
|
+
:param pulumi.Input[builtins.str] compartment_id: The OCID of the tenancy from which the demand signal delivery resource is created.
|
473
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
474
|
+
:param pulumi.Input[builtins.str] demand_signal_id: The OCID of the demand signal under which this delivery will be grouped.
|
475
|
+
:param pulumi.Input[builtins.str] demand_signal_item_id: The OCID of the demand signal item corresponding to which this delivery is made.
|
476
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
477
|
+
:param pulumi.Input[builtins.str] justification: (Updatable) This field could be used by Oracle Cloud Infrastructure to communicate the reason for declining the request.
|
478
|
+
:param pulumi.Input[builtins.str] lifecycle_details: The enum values corresponding to the various states associated with the delivery resource.
|
479
|
+
:param pulumi.Input[builtins.str] notes: (Updatable) This field acts as a notes section for operators.
|
480
|
+
:param pulumi.Input[builtins.str] occ_customer_group_id: The OCID of the corresponding customer group to which this demand signal delivery resource belongs to.
|
481
|
+
|
482
|
+
|
483
|
+
** IMPORTANT **
|
484
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
485
|
+
"""
|
486
|
+
...
|
487
|
+
@overload
|
488
|
+
def __init__(__self__,
|
489
|
+
resource_name: str,
|
490
|
+
args: InternalOccmDemandSignalDeliveryArgs,
|
491
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
492
|
+
"""
|
493
|
+
This resource provides the Internal Occm Demand Signal Delivery resource in Oracle Cloud Infrastructure Capacity Management service.
|
494
|
+
|
495
|
+
This is a post API which is used to create a demand signal delivery resource.
|
496
|
+
operationId: CreateInternalOccmDemandSignalDelivery
|
497
|
+
summary: A post call to create a demand signal delivery.
|
498
|
+
|
499
|
+
## Example Usage
|
500
|
+
|
501
|
+
```python
|
502
|
+
import pulumi
|
503
|
+
import pulumi_oci as oci
|
504
|
+
|
505
|
+
test_internal_occm_demand_signal_delivery = oci.capacity_management.InternalOccmDemandSignalDelivery("test_internal_occm_demand_signal_delivery",
|
506
|
+
accepted_quantity=internal_occm_demand_signal_delivery_accepted_quantity,
|
507
|
+
compartment_id=compartment_id,
|
508
|
+
demand_signal_id=test_demand_signal["id"],
|
509
|
+
demand_signal_item_id=test_demand_signal_item["id"],
|
510
|
+
occ_customer_group_id=test_occ_customer_group["id"],
|
511
|
+
defined_tags={
|
512
|
+
"foo-namespace.bar-key": "value",
|
513
|
+
},
|
514
|
+
freeform_tags={
|
515
|
+
"bar-key": "value",
|
516
|
+
},
|
517
|
+
justification=internal_occm_demand_signal_delivery_justification,
|
518
|
+
notes=internal_occm_demand_signal_delivery_notes)
|
519
|
+
```
|
520
|
+
|
521
|
+
## Import
|
522
|
+
|
523
|
+
InternalOccmDemandSignalDeliveries can be imported using the `id`, e.g.
|
524
|
+
|
525
|
+
```sh
|
526
|
+
$ pulumi import oci:CapacityManagement/internalOccmDemandSignalDelivery:InternalOccmDemandSignalDelivery test_internal_occm_demand_signal_delivery "internal/occmDemandSignalDeliveries/{occmDemandSignalDeliveryId}"
|
527
|
+
```
|
528
|
+
|
529
|
+
:param str resource_name: The name of the resource.
|
530
|
+
:param InternalOccmDemandSignalDeliveryArgs args: The arguments to use to populate this resource's properties.
|
531
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
532
|
+
"""
|
533
|
+
...
|
534
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
535
|
+
resource_args, opts = _utilities.get_resource_args_opts(InternalOccmDemandSignalDeliveryArgs, pulumi.ResourceOptions, *args, **kwargs)
|
536
|
+
if resource_args is not None:
|
537
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
538
|
+
else:
|
539
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
540
|
+
|
541
|
+
def _internal_init(__self__,
|
542
|
+
resource_name: str,
|
543
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
544
|
+
accepted_quantity: Optional[pulumi.Input[builtins.str]] = None,
|
545
|
+
compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
546
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
547
|
+
demand_signal_id: Optional[pulumi.Input[builtins.str]] = None,
|
548
|
+
demand_signal_item_id: Optional[pulumi.Input[builtins.str]] = None,
|
549
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
550
|
+
justification: Optional[pulumi.Input[builtins.str]] = None,
|
551
|
+
lifecycle_details: Optional[pulumi.Input[builtins.str]] = None,
|
552
|
+
notes: Optional[pulumi.Input[builtins.str]] = None,
|
553
|
+
occ_customer_group_id: Optional[pulumi.Input[builtins.str]] = None,
|
554
|
+
__props__=None):
|
555
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
556
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
557
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
558
|
+
if opts.id is None:
|
559
|
+
if __props__ is not None:
|
560
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
561
|
+
__props__ = InternalOccmDemandSignalDeliveryArgs.__new__(InternalOccmDemandSignalDeliveryArgs)
|
562
|
+
|
563
|
+
if accepted_quantity is None and not opts.urn:
|
564
|
+
raise TypeError("Missing required property 'accepted_quantity'")
|
565
|
+
__props__.__dict__["accepted_quantity"] = accepted_quantity
|
566
|
+
if compartment_id is None and not opts.urn:
|
567
|
+
raise TypeError("Missing required property 'compartment_id'")
|
568
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
569
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
570
|
+
if demand_signal_id is None and not opts.urn:
|
571
|
+
raise TypeError("Missing required property 'demand_signal_id'")
|
572
|
+
__props__.__dict__["demand_signal_id"] = demand_signal_id
|
573
|
+
if demand_signal_item_id is None and not opts.urn:
|
574
|
+
raise TypeError("Missing required property 'demand_signal_item_id'")
|
575
|
+
__props__.__dict__["demand_signal_item_id"] = demand_signal_item_id
|
576
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
577
|
+
__props__.__dict__["justification"] = justification
|
578
|
+
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
579
|
+
__props__.__dict__["notes"] = notes
|
580
|
+
if occ_customer_group_id is None and not opts.urn:
|
581
|
+
raise TypeError("Missing required property 'occ_customer_group_id'")
|
582
|
+
__props__.__dict__["occ_customer_group_id"] = occ_customer_group_id
|
583
|
+
__props__.__dict__["state"] = None
|
584
|
+
__props__.__dict__["system_tags"] = None
|
585
|
+
__props__.__dict__["time_delivered"] = None
|
586
|
+
super(InternalOccmDemandSignalDelivery, __self__).__init__(
|
587
|
+
'oci:CapacityManagement/internalOccmDemandSignalDelivery:InternalOccmDemandSignalDelivery',
|
588
|
+
resource_name,
|
589
|
+
__props__,
|
590
|
+
opts)
|
591
|
+
|
592
|
+
@staticmethod
|
593
|
+
def get(resource_name: str,
|
594
|
+
id: pulumi.Input[str],
|
595
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
596
|
+
accepted_quantity: Optional[pulumi.Input[builtins.str]] = None,
|
597
|
+
compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
598
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
599
|
+
demand_signal_id: Optional[pulumi.Input[builtins.str]] = None,
|
600
|
+
demand_signal_item_id: Optional[pulumi.Input[builtins.str]] = None,
|
601
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
602
|
+
justification: Optional[pulumi.Input[builtins.str]] = None,
|
603
|
+
lifecycle_details: Optional[pulumi.Input[builtins.str]] = None,
|
604
|
+
notes: Optional[pulumi.Input[builtins.str]] = None,
|
605
|
+
occ_customer_group_id: Optional[pulumi.Input[builtins.str]] = None,
|
606
|
+
state: Optional[pulumi.Input[builtins.str]] = None,
|
607
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
608
|
+
time_delivered: Optional[pulumi.Input[builtins.str]] = None) -> 'InternalOccmDemandSignalDelivery':
|
609
|
+
"""
|
610
|
+
Get an existing InternalOccmDemandSignalDelivery resource's state with the given name, id, and optional extra
|
611
|
+
properties used to qualify the lookup.
|
612
|
+
|
613
|
+
:param str resource_name: The unique name of the resulting resource.
|
614
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
615
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
616
|
+
:param pulumi.Input[builtins.str] accepted_quantity: (Updatable) The quantity of the resource that Oracle Cloud Infrastructure will supply to the customer.
|
617
|
+
:param pulumi.Input[builtins.str] compartment_id: The OCID of the tenancy from which the demand signal delivery resource is created.
|
618
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] defined_tags: (Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
619
|
+
:param pulumi.Input[builtins.str] demand_signal_id: The OCID of the demand signal under which this delivery will be grouped.
|
620
|
+
:param pulumi.Input[builtins.str] demand_signal_item_id: The OCID of the demand signal item corresponding to which this delivery is made.
|
621
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: (Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
622
|
+
:param pulumi.Input[builtins.str] justification: (Updatable) This field could be used by Oracle Cloud Infrastructure to communicate the reason for declining the request.
|
623
|
+
:param pulumi.Input[builtins.str] lifecycle_details: The enum values corresponding to the various states associated with the delivery resource.
|
624
|
+
:param pulumi.Input[builtins.str] notes: (Updatable) This field acts as a notes section for operators.
|
625
|
+
:param pulumi.Input[builtins.str] occ_customer_group_id: The OCID of the corresponding customer group to which this demand signal delivery resource belongs to.
|
626
|
+
|
627
|
+
|
628
|
+
** IMPORTANT **
|
629
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
630
|
+
:param pulumi.Input[builtins.str] state: The current lifecycle state of the resource.
|
631
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] system_tags: System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
632
|
+
:param pulumi.Input[builtins.str] time_delivered: 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.
|
633
|
+
"""
|
634
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
635
|
+
|
636
|
+
__props__ = _InternalOccmDemandSignalDeliveryState.__new__(_InternalOccmDemandSignalDeliveryState)
|
637
|
+
|
638
|
+
__props__.__dict__["accepted_quantity"] = accepted_quantity
|
639
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
640
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
641
|
+
__props__.__dict__["demand_signal_id"] = demand_signal_id
|
642
|
+
__props__.__dict__["demand_signal_item_id"] = demand_signal_item_id
|
643
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
644
|
+
__props__.__dict__["justification"] = justification
|
645
|
+
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
646
|
+
__props__.__dict__["notes"] = notes
|
647
|
+
__props__.__dict__["occ_customer_group_id"] = occ_customer_group_id
|
648
|
+
__props__.__dict__["state"] = state
|
649
|
+
__props__.__dict__["system_tags"] = system_tags
|
650
|
+
__props__.__dict__["time_delivered"] = time_delivered
|
651
|
+
return InternalOccmDemandSignalDelivery(resource_name, opts=opts, __props__=__props__)
|
652
|
+
|
653
|
+
@property
|
654
|
+
@pulumi.getter(name="acceptedQuantity")
|
655
|
+
def accepted_quantity(self) -> pulumi.Output[builtins.str]:
|
656
|
+
"""
|
657
|
+
(Updatable) The quantity of the resource that Oracle Cloud Infrastructure will supply to the customer.
|
658
|
+
"""
|
659
|
+
return pulumi.get(self, "accepted_quantity")
|
660
|
+
|
661
|
+
@property
|
662
|
+
@pulumi.getter(name="compartmentId")
|
663
|
+
def compartment_id(self) -> pulumi.Output[builtins.str]:
|
664
|
+
"""
|
665
|
+
The OCID of the tenancy from which the demand signal delivery resource is created.
|
666
|
+
"""
|
667
|
+
return pulumi.get(self, "compartment_id")
|
668
|
+
|
669
|
+
@property
|
670
|
+
@pulumi.getter(name="definedTags")
|
671
|
+
def defined_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
|
672
|
+
"""
|
673
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
674
|
+
"""
|
675
|
+
return pulumi.get(self, "defined_tags")
|
676
|
+
|
677
|
+
@property
|
678
|
+
@pulumi.getter(name="demandSignalId")
|
679
|
+
def demand_signal_id(self) -> pulumi.Output[builtins.str]:
|
680
|
+
"""
|
681
|
+
The OCID of the demand signal under which this delivery will be grouped.
|
682
|
+
"""
|
683
|
+
return pulumi.get(self, "demand_signal_id")
|
684
|
+
|
685
|
+
@property
|
686
|
+
@pulumi.getter(name="demandSignalItemId")
|
687
|
+
def demand_signal_item_id(self) -> pulumi.Output[builtins.str]:
|
688
|
+
"""
|
689
|
+
The OCID of the demand signal item corresponding to which this delivery is made.
|
690
|
+
"""
|
691
|
+
return pulumi.get(self, "demand_signal_item_id")
|
692
|
+
|
693
|
+
@property
|
694
|
+
@pulumi.getter(name="freeformTags")
|
695
|
+
def freeform_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
|
696
|
+
"""
|
697
|
+
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
698
|
+
"""
|
699
|
+
return pulumi.get(self, "freeform_tags")
|
700
|
+
|
701
|
+
@property
|
702
|
+
@pulumi.getter
|
703
|
+
def justification(self) -> pulumi.Output[builtins.str]:
|
704
|
+
"""
|
705
|
+
(Updatable) This field could be used by Oracle Cloud Infrastructure to communicate the reason for declining the request.
|
706
|
+
"""
|
707
|
+
return pulumi.get(self, "justification")
|
708
|
+
|
709
|
+
@property
|
710
|
+
@pulumi.getter(name="lifecycleDetails")
|
711
|
+
def lifecycle_details(self) -> pulumi.Output[builtins.str]:
|
712
|
+
"""
|
713
|
+
The enum values corresponding to the various states associated with the delivery resource.
|
714
|
+
"""
|
715
|
+
return pulumi.get(self, "lifecycle_details")
|
716
|
+
|
717
|
+
@property
|
718
|
+
@pulumi.getter
|
719
|
+
def notes(self) -> pulumi.Output[builtins.str]:
|
720
|
+
"""
|
721
|
+
(Updatable) This field acts as a notes section for operators.
|
722
|
+
"""
|
723
|
+
return pulumi.get(self, "notes")
|
724
|
+
|
725
|
+
@property
|
726
|
+
@pulumi.getter(name="occCustomerGroupId")
|
727
|
+
def occ_customer_group_id(self) -> pulumi.Output[builtins.str]:
|
728
|
+
"""
|
729
|
+
The OCID of the corresponding customer group to which this demand signal delivery resource belongs to.
|
730
|
+
|
731
|
+
|
732
|
+
** IMPORTANT **
|
733
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
734
|
+
"""
|
735
|
+
return pulumi.get(self, "occ_customer_group_id")
|
736
|
+
|
737
|
+
@property
|
738
|
+
@pulumi.getter
|
739
|
+
def state(self) -> pulumi.Output[builtins.str]:
|
740
|
+
"""
|
741
|
+
The current lifecycle state of the resource.
|
742
|
+
"""
|
743
|
+
return pulumi.get(self, "state")
|
744
|
+
|
745
|
+
@property
|
746
|
+
@pulumi.getter(name="systemTags")
|
747
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
|
748
|
+
"""
|
749
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
750
|
+
"""
|
751
|
+
return pulumi.get(self, "system_tags")
|
752
|
+
|
753
|
+
@property
|
754
|
+
@pulumi.getter(name="timeDelivered")
|
755
|
+
def time_delivered(self) -> pulumi.Output[builtins.str]:
|
756
|
+
"""
|
757
|
+
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.
|
758
|
+
"""
|
759
|
+
return pulumi.get(self, "time_delivered")
|
760
|
+
|