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,564 @@
|
|
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__ = ['InternalOccmDemandSignalArgs', 'InternalOccmDemandSignal']
|
19
|
+
|
20
|
+
@pulumi.input_type
|
21
|
+
class InternalOccmDemandSignalArgs:
|
22
|
+
def __init__(__self__, *,
|
23
|
+
occm_demand_signal_id: pulumi.Input[builtins.str],
|
24
|
+
lifecycle_details: Optional[pulumi.Input[builtins.str]] = None):
|
25
|
+
"""
|
26
|
+
The set of arguments for constructing a InternalOccmDemandSignal resource.
|
27
|
+
:param pulumi.Input[builtins.str] occm_demand_signal_id: The OCID of the demand signal.
|
28
|
+
|
29
|
+
|
30
|
+
** IMPORTANT **
|
31
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
32
|
+
:param pulumi.Input[builtins.str] lifecycle_details: (Updatable) The subset of demand signal states available for operators for updating the demand signal.
|
33
|
+
|
34
|
+
IN_PROGRESS > Transitions the demand signal to IN_PROGRESS state. REJECTED > Transitions the demand signal to REJECTED state. COMPLETED > This will transition the demand signal to COMPLETED state.
|
35
|
+
"""
|
36
|
+
pulumi.set(__self__, "occm_demand_signal_id", occm_demand_signal_id)
|
37
|
+
if lifecycle_details is not None:
|
38
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
39
|
+
|
40
|
+
@property
|
41
|
+
@pulumi.getter(name="occmDemandSignalId")
|
42
|
+
def occm_demand_signal_id(self) -> pulumi.Input[builtins.str]:
|
43
|
+
"""
|
44
|
+
The OCID of the demand signal.
|
45
|
+
|
46
|
+
|
47
|
+
** IMPORTANT **
|
48
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
49
|
+
"""
|
50
|
+
return pulumi.get(self, "occm_demand_signal_id")
|
51
|
+
|
52
|
+
@occm_demand_signal_id.setter
|
53
|
+
def occm_demand_signal_id(self, value: pulumi.Input[builtins.str]):
|
54
|
+
pulumi.set(self, "occm_demand_signal_id", value)
|
55
|
+
|
56
|
+
@property
|
57
|
+
@pulumi.getter(name="lifecycleDetails")
|
58
|
+
def lifecycle_details(self) -> Optional[pulumi.Input[builtins.str]]:
|
59
|
+
"""
|
60
|
+
(Updatable) The subset of demand signal states available for operators for updating the demand signal.
|
61
|
+
|
62
|
+
IN_PROGRESS > Transitions the demand signal to IN_PROGRESS state. REJECTED > Transitions the demand signal to REJECTED state. COMPLETED > This will transition the demand signal to COMPLETED state.
|
63
|
+
"""
|
64
|
+
return pulumi.get(self, "lifecycle_details")
|
65
|
+
|
66
|
+
@lifecycle_details.setter
|
67
|
+
def lifecycle_details(self, value: Optional[pulumi.Input[builtins.str]]):
|
68
|
+
pulumi.set(self, "lifecycle_details", value)
|
69
|
+
|
70
|
+
|
71
|
+
@pulumi.input_type
|
72
|
+
class _InternalOccmDemandSignalState:
|
73
|
+
def __init__(__self__, *,
|
74
|
+
compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
75
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
76
|
+
description: Optional[pulumi.Input[builtins.str]] = None,
|
77
|
+
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
78
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
79
|
+
lifecycle_details: Optional[pulumi.Input[builtins.str]] = None,
|
80
|
+
occ_customer_group_id: Optional[pulumi.Input[builtins.str]] = None,
|
81
|
+
occm_demand_signal_id: Optional[pulumi.Input[builtins.str]] = None,
|
82
|
+
state: Optional[pulumi.Input[builtins.str]] = None,
|
83
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
84
|
+
time_created: Optional[pulumi.Input[builtins.str]] = None,
|
85
|
+
time_updated: Optional[pulumi.Input[builtins.str]] = None):
|
86
|
+
"""
|
87
|
+
Input properties used for looking up and filtering InternalOccmDemandSignal resources.
|
88
|
+
:param pulumi.Input[builtins.str] compartment_id: The OCID of the tenancy from which the request to create the demand signal was made.
|
89
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
90
|
+
:param pulumi.Input[builtins.str] description: A short description about the demand signal.
|
91
|
+
:param pulumi.Input[builtins.str] display_name: The display name of the demand signal.
|
92
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
93
|
+
:param pulumi.Input[builtins.str] lifecycle_details: (Updatable) The subset of demand signal states available for operators for updating the demand signal.
|
94
|
+
|
95
|
+
IN_PROGRESS > Transitions the demand signal to IN_PROGRESS state. REJECTED > Transitions the demand signal to REJECTED state. COMPLETED > This will transition the demand signal to COMPLETED state.
|
96
|
+
:param pulumi.Input[builtins.str] occ_customer_group_id: The OCID of the customer group in which the demand signal is created.
|
97
|
+
:param pulumi.Input[builtins.str] occm_demand_signal_id: The OCID of the demand signal.
|
98
|
+
|
99
|
+
|
100
|
+
** IMPORTANT **
|
101
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
102
|
+
:param pulumi.Input[builtins.str] state: The current lifecycle state of the demand signal.
|
103
|
+
: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"}`
|
104
|
+
:param pulumi.Input[builtins.str] time_created: The time when the demand signal was created.
|
105
|
+
:param pulumi.Input[builtins.str] time_updated: The time when the demand signal was last updated.
|
106
|
+
"""
|
107
|
+
if compartment_id is not None:
|
108
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
109
|
+
if defined_tags is not None:
|
110
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
111
|
+
if description is not None:
|
112
|
+
pulumi.set(__self__, "description", description)
|
113
|
+
if display_name is not None:
|
114
|
+
pulumi.set(__self__, "display_name", display_name)
|
115
|
+
if freeform_tags is not None:
|
116
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
117
|
+
if lifecycle_details is not None:
|
118
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
119
|
+
if occ_customer_group_id is not None:
|
120
|
+
pulumi.set(__self__, "occ_customer_group_id", occ_customer_group_id)
|
121
|
+
if occm_demand_signal_id is not None:
|
122
|
+
pulumi.set(__self__, "occm_demand_signal_id", occm_demand_signal_id)
|
123
|
+
if state is not None:
|
124
|
+
pulumi.set(__self__, "state", state)
|
125
|
+
if system_tags is not None:
|
126
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
127
|
+
if time_created is not None:
|
128
|
+
pulumi.set(__self__, "time_created", time_created)
|
129
|
+
if time_updated is not None:
|
130
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
131
|
+
|
132
|
+
@property
|
133
|
+
@pulumi.getter(name="compartmentId")
|
134
|
+
def compartment_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
135
|
+
"""
|
136
|
+
The OCID of the tenancy from which the request to create the demand signal was made.
|
137
|
+
"""
|
138
|
+
return pulumi.get(self, "compartment_id")
|
139
|
+
|
140
|
+
@compartment_id.setter
|
141
|
+
def compartment_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
142
|
+
pulumi.set(self, "compartment_id", value)
|
143
|
+
|
144
|
+
@property
|
145
|
+
@pulumi.getter(name="definedTags")
|
146
|
+
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
147
|
+
"""
|
148
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
149
|
+
"""
|
150
|
+
return pulumi.get(self, "defined_tags")
|
151
|
+
|
152
|
+
@defined_tags.setter
|
153
|
+
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
154
|
+
pulumi.set(self, "defined_tags", value)
|
155
|
+
|
156
|
+
@property
|
157
|
+
@pulumi.getter
|
158
|
+
def description(self) -> Optional[pulumi.Input[builtins.str]]:
|
159
|
+
"""
|
160
|
+
A short description about the demand signal.
|
161
|
+
"""
|
162
|
+
return pulumi.get(self, "description")
|
163
|
+
|
164
|
+
@description.setter
|
165
|
+
def description(self, value: Optional[pulumi.Input[builtins.str]]):
|
166
|
+
pulumi.set(self, "description", value)
|
167
|
+
|
168
|
+
@property
|
169
|
+
@pulumi.getter(name="displayName")
|
170
|
+
def display_name(self) -> Optional[pulumi.Input[builtins.str]]:
|
171
|
+
"""
|
172
|
+
The display name of the demand signal.
|
173
|
+
"""
|
174
|
+
return pulumi.get(self, "display_name")
|
175
|
+
|
176
|
+
@display_name.setter
|
177
|
+
def display_name(self, value: Optional[pulumi.Input[builtins.str]]):
|
178
|
+
pulumi.set(self, "display_name", value)
|
179
|
+
|
180
|
+
@property
|
181
|
+
@pulumi.getter(name="freeformTags")
|
182
|
+
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
183
|
+
"""
|
184
|
+
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
185
|
+
"""
|
186
|
+
return pulumi.get(self, "freeform_tags")
|
187
|
+
|
188
|
+
@freeform_tags.setter
|
189
|
+
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
190
|
+
pulumi.set(self, "freeform_tags", value)
|
191
|
+
|
192
|
+
@property
|
193
|
+
@pulumi.getter(name="lifecycleDetails")
|
194
|
+
def lifecycle_details(self) -> Optional[pulumi.Input[builtins.str]]:
|
195
|
+
"""
|
196
|
+
(Updatable) The subset of demand signal states available for operators for updating the demand signal.
|
197
|
+
|
198
|
+
IN_PROGRESS > Transitions the demand signal to IN_PROGRESS state. REJECTED > Transitions the demand signal to REJECTED state. COMPLETED > This will transition the demand signal to COMPLETED state.
|
199
|
+
"""
|
200
|
+
return pulumi.get(self, "lifecycle_details")
|
201
|
+
|
202
|
+
@lifecycle_details.setter
|
203
|
+
def lifecycle_details(self, value: Optional[pulumi.Input[builtins.str]]):
|
204
|
+
pulumi.set(self, "lifecycle_details", value)
|
205
|
+
|
206
|
+
@property
|
207
|
+
@pulumi.getter(name="occCustomerGroupId")
|
208
|
+
def occ_customer_group_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
209
|
+
"""
|
210
|
+
The OCID of the customer group in which the demand signal is created.
|
211
|
+
"""
|
212
|
+
return pulumi.get(self, "occ_customer_group_id")
|
213
|
+
|
214
|
+
@occ_customer_group_id.setter
|
215
|
+
def occ_customer_group_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
216
|
+
pulumi.set(self, "occ_customer_group_id", value)
|
217
|
+
|
218
|
+
@property
|
219
|
+
@pulumi.getter(name="occmDemandSignalId")
|
220
|
+
def occm_demand_signal_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
221
|
+
"""
|
222
|
+
The OCID of the demand signal.
|
223
|
+
|
224
|
+
|
225
|
+
** IMPORTANT **
|
226
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
227
|
+
"""
|
228
|
+
return pulumi.get(self, "occm_demand_signal_id")
|
229
|
+
|
230
|
+
@occm_demand_signal_id.setter
|
231
|
+
def occm_demand_signal_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
232
|
+
pulumi.set(self, "occm_demand_signal_id", value)
|
233
|
+
|
234
|
+
@property
|
235
|
+
@pulumi.getter
|
236
|
+
def state(self) -> Optional[pulumi.Input[builtins.str]]:
|
237
|
+
"""
|
238
|
+
The current lifecycle state of the demand signal.
|
239
|
+
"""
|
240
|
+
return pulumi.get(self, "state")
|
241
|
+
|
242
|
+
@state.setter
|
243
|
+
def state(self, value: Optional[pulumi.Input[builtins.str]]):
|
244
|
+
pulumi.set(self, "state", value)
|
245
|
+
|
246
|
+
@property
|
247
|
+
@pulumi.getter(name="systemTags")
|
248
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
249
|
+
"""
|
250
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
251
|
+
"""
|
252
|
+
return pulumi.get(self, "system_tags")
|
253
|
+
|
254
|
+
@system_tags.setter
|
255
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
256
|
+
pulumi.set(self, "system_tags", value)
|
257
|
+
|
258
|
+
@property
|
259
|
+
@pulumi.getter(name="timeCreated")
|
260
|
+
def time_created(self) -> Optional[pulumi.Input[builtins.str]]:
|
261
|
+
"""
|
262
|
+
The time when the demand signal was created.
|
263
|
+
"""
|
264
|
+
return pulumi.get(self, "time_created")
|
265
|
+
|
266
|
+
@time_created.setter
|
267
|
+
def time_created(self, value: Optional[pulumi.Input[builtins.str]]):
|
268
|
+
pulumi.set(self, "time_created", value)
|
269
|
+
|
270
|
+
@property
|
271
|
+
@pulumi.getter(name="timeUpdated")
|
272
|
+
def time_updated(self) -> Optional[pulumi.Input[builtins.str]]:
|
273
|
+
"""
|
274
|
+
The time when the demand signal was last updated.
|
275
|
+
"""
|
276
|
+
return pulumi.get(self, "time_updated")
|
277
|
+
|
278
|
+
@time_updated.setter
|
279
|
+
def time_updated(self, value: Optional[pulumi.Input[builtins.str]]):
|
280
|
+
pulumi.set(self, "time_updated", value)
|
281
|
+
|
282
|
+
|
283
|
+
@pulumi.type_token("oci:CapacityManagement/internalOccmDemandSignal:InternalOccmDemandSignal")
|
284
|
+
class InternalOccmDemandSignal(pulumi.CustomResource):
|
285
|
+
@overload
|
286
|
+
def __init__(__self__,
|
287
|
+
resource_name: str,
|
288
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
289
|
+
lifecycle_details: Optional[pulumi.Input[builtins.str]] = None,
|
290
|
+
occm_demand_signal_id: Optional[pulumi.Input[builtins.str]] = None,
|
291
|
+
__props__=None):
|
292
|
+
"""
|
293
|
+
This resource provides the Internal Occm Demand Signal resource in Oracle Cloud Infrastructure Capacity Management service.
|
294
|
+
|
295
|
+
This is a internal PUT API which shall be used to update the metadata of the demand signal.
|
296
|
+
|
297
|
+
## Example Usage
|
298
|
+
|
299
|
+
```python
|
300
|
+
import pulumi
|
301
|
+
import pulumi_oci as oci
|
302
|
+
|
303
|
+
test_internal_occm_demand_signal = oci.capacity_management.InternalOccmDemandSignal("test_internal_occm_demand_signal",
|
304
|
+
occm_demand_signal_id=test_occm_demand_signal["id"],
|
305
|
+
lifecycle_details=internal_occm_demand_signal_lifecycle_details)
|
306
|
+
```
|
307
|
+
|
308
|
+
## Import
|
309
|
+
|
310
|
+
InternalOccmDemandSignals can be imported using the `id`, e.g.
|
311
|
+
|
312
|
+
```sh
|
313
|
+
$ pulumi import oci:CapacityManagement/internalOccmDemandSignal:InternalOccmDemandSignal test_internal_occm_demand_signal "internal/occmDemandSignals/{occmDemandSignalId}"
|
314
|
+
```
|
315
|
+
|
316
|
+
:param str resource_name: The name of the resource.
|
317
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
318
|
+
:param pulumi.Input[builtins.str] lifecycle_details: (Updatable) The subset of demand signal states available for operators for updating the demand signal.
|
319
|
+
|
320
|
+
IN_PROGRESS > Transitions the demand signal to IN_PROGRESS state. REJECTED > Transitions the demand signal to REJECTED state. COMPLETED > This will transition the demand signal to COMPLETED state.
|
321
|
+
:param pulumi.Input[builtins.str] occm_demand_signal_id: The OCID of the demand signal.
|
322
|
+
|
323
|
+
|
324
|
+
** IMPORTANT **
|
325
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
326
|
+
"""
|
327
|
+
...
|
328
|
+
@overload
|
329
|
+
def __init__(__self__,
|
330
|
+
resource_name: str,
|
331
|
+
args: InternalOccmDemandSignalArgs,
|
332
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
333
|
+
"""
|
334
|
+
This resource provides the Internal Occm Demand Signal resource in Oracle Cloud Infrastructure Capacity Management service.
|
335
|
+
|
336
|
+
This is a internal PUT API which shall be used to update the metadata of the demand signal.
|
337
|
+
|
338
|
+
## Example Usage
|
339
|
+
|
340
|
+
```python
|
341
|
+
import pulumi
|
342
|
+
import pulumi_oci as oci
|
343
|
+
|
344
|
+
test_internal_occm_demand_signal = oci.capacity_management.InternalOccmDemandSignal("test_internal_occm_demand_signal",
|
345
|
+
occm_demand_signal_id=test_occm_demand_signal["id"],
|
346
|
+
lifecycle_details=internal_occm_demand_signal_lifecycle_details)
|
347
|
+
```
|
348
|
+
|
349
|
+
## Import
|
350
|
+
|
351
|
+
InternalOccmDemandSignals can be imported using the `id`, e.g.
|
352
|
+
|
353
|
+
```sh
|
354
|
+
$ pulumi import oci:CapacityManagement/internalOccmDemandSignal:InternalOccmDemandSignal test_internal_occm_demand_signal "internal/occmDemandSignals/{occmDemandSignalId}"
|
355
|
+
```
|
356
|
+
|
357
|
+
:param str resource_name: The name of the resource.
|
358
|
+
:param InternalOccmDemandSignalArgs args: The arguments to use to populate this resource's properties.
|
359
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
360
|
+
"""
|
361
|
+
...
|
362
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
363
|
+
resource_args, opts = _utilities.get_resource_args_opts(InternalOccmDemandSignalArgs, pulumi.ResourceOptions, *args, **kwargs)
|
364
|
+
if resource_args is not None:
|
365
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
366
|
+
else:
|
367
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
368
|
+
|
369
|
+
def _internal_init(__self__,
|
370
|
+
resource_name: str,
|
371
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
372
|
+
lifecycle_details: Optional[pulumi.Input[builtins.str]] = None,
|
373
|
+
occm_demand_signal_id: Optional[pulumi.Input[builtins.str]] = None,
|
374
|
+
__props__=None):
|
375
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
376
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
377
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
378
|
+
if opts.id is None:
|
379
|
+
if __props__ is not None:
|
380
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
381
|
+
__props__ = InternalOccmDemandSignalArgs.__new__(InternalOccmDemandSignalArgs)
|
382
|
+
|
383
|
+
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
384
|
+
if occm_demand_signal_id is None and not opts.urn:
|
385
|
+
raise TypeError("Missing required property 'occm_demand_signal_id'")
|
386
|
+
__props__.__dict__["occm_demand_signal_id"] = occm_demand_signal_id
|
387
|
+
__props__.__dict__["compartment_id"] = None
|
388
|
+
__props__.__dict__["defined_tags"] = None
|
389
|
+
__props__.__dict__["description"] = None
|
390
|
+
__props__.__dict__["display_name"] = None
|
391
|
+
__props__.__dict__["freeform_tags"] = None
|
392
|
+
__props__.__dict__["occ_customer_group_id"] = None
|
393
|
+
__props__.__dict__["state"] = None
|
394
|
+
__props__.__dict__["system_tags"] = None
|
395
|
+
__props__.__dict__["time_created"] = None
|
396
|
+
__props__.__dict__["time_updated"] = None
|
397
|
+
super(InternalOccmDemandSignal, __self__).__init__(
|
398
|
+
'oci:CapacityManagement/internalOccmDemandSignal:InternalOccmDemandSignal',
|
399
|
+
resource_name,
|
400
|
+
__props__,
|
401
|
+
opts)
|
402
|
+
|
403
|
+
@staticmethod
|
404
|
+
def get(resource_name: str,
|
405
|
+
id: pulumi.Input[str],
|
406
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
407
|
+
compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
408
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
409
|
+
description: Optional[pulumi.Input[builtins.str]] = None,
|
410
|
+
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
411
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
412
|
+
lifecycle_details: Optional[pulumi.Input[builtins.str]] = None,
|
413
|
+
occ_customer_group_id: Optional[pulumi.Input[builtins.str]] = None,
|
414
|
+
occm_demand_signal_id: Optional[pulumi.Input[builtins.str]] = None,
|
415
|
+
state: Optional[pulumi.Input[builtins.str]] = None,
|
416
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
417
|
+
time_created: Optional[pulumi.Input[builtins.str]] = None,
|
418
|
+
time_updated: Optional[pulumi.Input[builtins.str]] = None) -> 'InternalOccmDemandSignal':
|
419
|
+
"""
|
420
|
+
Get an existing InternalOccmDemandSignal resource's state with the given name, id, and optional extra
|
421
|
+
properties used to qualify the lookup.
|
422
|
+
|
423
|
+
:param str resource_name: The unique name of the resulting resource.
|
424
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
425
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
426
|
+
:param pulumi.Input[builtins.str] compartment_id: The OCID of the tenancy from which the request to create the demand signal was made.
|
427
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
428
|
+
:param pulumi.Input[builtins.str] description: A short description about the demand signal.
|
429
|
+
:param pulumi.Input[builtins.str] display_name: The display name of the demand signal.
|
430
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
431
|
+
:param pulumi.Input[builtins.str] lifecycle_details: (Updatable) The subset of demand signal states available for operators for updating the demand signal.
|
432
|
+
|
433
|
+
IN_PROGRESS > Transitions the demand signal to IN_PROGRESS state. REJECTED > Transitions the demand signal to REJECTED state. COMPLETED > This will transition the demand signal to COMPLETED state.
|
434
|
+
:param pulumi.Input[builtins.str] occ_customer_group_id: The OCID of the customer group in which the demand signal is created.
|
435
|
+
:param pulumi.Input[builtins.str] occm_demand_signal_id: The OCID of the demand signal.
|
436
|
+
|
437
|
+
|
438
|
+
** IMPORTANT **
|
439
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
440
|
+
:param pulumi.Input[builtins.str] state: The current lifecycle state of the demand signal.
|
441
|
+
: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"}`
|
442
|
+
:param pulumi.Input[builtins.str] time_created: The time when the demand signal was created.
|
443
|
+
:param pulumi.Input[builtins.str] time_updated: The time when the demand signal was last updated.
|
444
|
+
"""
|
445
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
446
|
+
|
447
|
+
__props__ = _InternalOccmDemandSignalState.__new__(_InternalOccmDemandSignalState)
|
448
|
+
|
449
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
450
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
451
|
+
__props__.__dict__["description"] = description
|
452
|
+
__props__.__dict__["display_name"] = display_name
|
453
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
454
|
+
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
455
|
+
__props__.__dict__["occ_customer_group_id"] = occ_customer_group_id
|
456
|
+
__props__.__dict__["occm_demand_signal_id"] = occm_demand_signal_id
|
457
|
+
__props__.__dict__["state"] = state
|
458
|
+
__props__.__dict__["system_tags"] = system_tags
|
459
|
+
__props__.__dict__["time_created"] = time_created
|
460
|
+
__props__.__dict__["time_updated"] = time_updated
|
461
|
+
return InternalOccmDemandSignal(resource_name, opts=opts, __props__=__props__)
|
462
|
+
|
463
|
+
@property
|
464
|
+
@pulumi.getter(name="compartmentId")
|
465
|
+
def compartment_id(self) -> pulumi.Output[builtins.str]:
|
466
|
+
"""
|
467
|
+
The OCID of the tenancy from which the request to create the demand signal was made.
|
468
|
+
"""
|
469
|
+
return pulumi.get(self, "compartment_id")
|
470
|
+
|
471
|
+
@property
|
472
|
+
@pulumi.getter(name="definedTags")
|
473
|
+
def defined_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
|
474
|
+
"""
|
475
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
476
|
+
"""
|
477
|
+
return pulumi.get(self, "defined_tags")
|
478
|
+
|
479
|
+
@property
|
480
|
+
@pulumi.getter
|
481
|
+
def description(self) -> pulumi.Output[builtins.str]:
|
482
|
+
"""
|
483
|
+
A short description about the demand signal.
|
484
|
+
"""
|
485
|
+
return pulumi.get(self, "description")
|
486
|
+
|
487
|
+
@property
|
488
|
+
@pulumi.getter(name="displayName")
|
489
|
+
def display_name(self) -> pulumi.Output[builtins.str]:
|
490
|
+
"""
|
491
|
+
The display name of the demand signal.
|
492
|
+
"""
|
493
|
+
return pulumi.get(self, "display_name")
|
494
|
+
|
495
|
+
@property
|
496
|
+
@pulumi.getter(name="freeformTags")
|
497
|
+
def freeform_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
|
498
|
+
"""
|
499
|
+
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
500
|
+
"""
|
501
|
+
return pulumi.get(self, "freeform_tags")
|
502
|
+
|
503
|
+
@property
|
504
|
+
@pulumi.getter(name="lifecycleDetails")
|
505
|
+
def lifecycle_details(self) -> pulumi.Output[builtins.str]:
|
506
|
+
"""
|
507
|
+
(Updatable) The subset of demand signal states available for operators for updating the demand signal.
|
508
|
+
|
509
|
+
IN_PROGRESS > Transitions the demand signal to IN_PROGRESS state. REJECTED > Transitions the demand signal to REJECTED state. COMPLETED > This will transition the demand signal to COMPLETED state.
|
510
|
+
"""
|
511
|
+
return pulumi.get(self, "lifecycle_details")
|
512
|
+
|
513
|
+
@property
|
514
|
+
@pulumi.getter(name="occCustomerGroupId")
|
515
|
+
def occ_customer_group_id(self) -> pulumi.Output[builtins.str]:
|
516
|
+
"""
|
517
|
+
The OCID of the customer group in which the demand signal is created.
|
518
|
+
"""
|
519
|
+
return pulumi.get(self, "occ_customer_group_id")
|
520
|
+
|
521
|
+
@property
|
522
|
+
@pulumi.getter(name="occmDemandSignalId")
|
523
|
+
def occm_demand_signal_id(self) -> pulumi.Output[builtins.str]:
|
524
|
+
"""
|
525
|
+
The OCID of the demand signal.
|
526
|
+
|
527
|
+
|
528
|
+
** IMPORTANT **
|
529
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
530
|
+
"""
|
531
|
+
return pulumi.get(self, "occm_demand_signal_id")
|
532
|
+
|
533
|
+
@property
|
534
|
+
@pulumi.getter
|
535
|
+
def state(self) -> pulumi.Output[builtins.str]:
|
536
|
+
"""
|
537
|
+
The current lifecycle state of the demand signal.
|
538
|
+
"""
|
539
|
+
return pulumi.get(self, "state")
|
540
|
+
|
541
|
+
@property
|
542
|
+
@pulumi.getter(name="systemTags")
|
543
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
|
544
|
+
"""
|
545
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
546
|
+
"""
|
547
|
+
return pulumi.get(self, "system_tags")
|
548
|
+
|
549
|
+
@property
|
550
|
+
@pulumi.getter(name="timeCreated")
|
551
|
+
def time_created(self) -> pulumi.Output[builtins.str]:
|
552
|
+
"""
|
553
|
+
The time when the demand signal was created.
|
554
|
+
"""
|
555
|
+
return pulumi.get(self, "time_created")
|
556
|
+
|
557
|
+
@property
|
558
|
+
@pulumi.getter(name="timeUpdated")
|
559
|
+
def time_updated(self) -> pulumi.Output[builtins.str]:
|
560
|
+
"""
|
561
|
+
The time when the demand signal was last updated.
|
562
|
+
"""
|
563
|
+
return pulumi.get(self, "time_updated")
|
564
|
+
|