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,1195 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import builtins
|
6
|
+
import copy
|
7
|
+
import warnings
|
8
|
+
import sys
|
9
|
+
import pulumi
|
10
|
+
import pulumi.runtime
|
11
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
12
|
+
if sys.version_info >= (3, 11):
|
13
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
14
|
+
else:
|
15
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
16
|
+
from .. import _utilities
|
17
|
+
from . import outputs
|
18
|
+
from ._inputs import *
|
19
|
+
|
20
|
+
__all__ = ['ProvisionArgs', 'Provision']
|
21
|
+
|
22
|
+
@pulumi.input_type
|
23
|
+
class ProvisionArgs:
|
24
|
+
def __init__(__self__, *,
|
25
|
+
compartment_id: pulumi.Input[builtins.str],
|
26
|
+
config_catalog_item_id: pulumi.Input[builtins.str],
|
27
|
+
fleet_id: pulumi.Input[builtins.str],
|
28
|
+
package_catalog_item_id: pulumi.Input[builtins.str],
|
29
|
+
tf_variable_region_id: pulumi.Input[builtins.str],
|
30
|
+
tf_variable_tenancy_id: pulumi.Input[builtins.str],
|
31
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
32
|
+
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
33
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
34
|
+
provision_description: Optional[pulumi.Input[builtins.str]] = None,
|
35
|
+
tf_variable_compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
36
|
+
tf_variable_current_user_id: Optional[pulumi.Input[builtins.str]] = None):
|
37
|
+
"""
|
38
|
+
The set of arguments for constructing a Provision resource.
|
39
|
+
:param pulumi.Input[builtins.str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the FamProvision in.
|
40
|
+
:param pulumi.Input[builtins.str] config_catalog_item_id: A [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Catalog Item to a file with key/value pairs to set up variables for createStack API.
|
41
|
+
:param pulumi.Input[builtins.str] fleet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Fleet.
|
42
|
+
:param pulumi.Input[builtins.str] package_catalog_item_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Catalog Item.
|
43
|
+
:param pulumi.Input[builtins.str] tf_variable_region_id: A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
|
44
|
+
:param pulumi.Input[builtins.str] tf_variable_tenancy_id: A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
|
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
|
+
: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"}`
|
50
|
+
:param pulumi.Input[builtins.str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
51
|
+
: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"}`
|
52
|
+
:param pulumi.Input[builtins.str] provision_description: (Updatable) A description of the provision.
|
53
|
+
:param pulumi.Input[builtins.str] tf_variable_compartment_id: An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
|
54
|
+
:param pulumi.Input[builtins.str] tf_variable_current_user_id: An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
|
55
|
+
"""
|
56
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
57
|
+
pulumi.set(__self__, "config_catalog_item_id", config_catalog_item_id)
|
58
|
+
pulumi.set(__self__, "fleet_id", fleet_id)
|
59
|
+
pulumi.set(__self__, "package_catalog_item_id", package_catalog_item_id)
|
60
|
+
pulumi.set(__self__, "tf_variable_region_id", tf_variable_region_id)
|
61
|
+
pulumi.set(__self__, "tf_variable_tenancy_id", tf_variable_tenancy_id)
|
62
|
+
if defined_tags is not None:
|
63
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
64
|
+
if display_name is not None:
|
65
|
+
pulumi.set(__self__, "display_name", display_name)
|
66
|
+
if freeform_tags is not None:
|
67
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
68
|
+
if provision_description is not None:
|
69
|
+
pulumi.set(__self__, "provision_description", provision_description)
|
70
|
+
if tf_variable_compartment_id is not None:
|
71
|
+
pulumi.set(__self__, "tf_variable_compartment_id", tf_variable_compartment_id)
|
72
|
+
if tf_variable_current_user_id is not None:
|
73
|
+
pulumi.set(__self__, "tf_variable_current_user_id", tf_variable_current_user_id)
|
74
|
+
|
75
|
+
@property
|
76
|
+
@pulumi.getter(name="compartmentId")
|
77
|
+
def compartment_id(self) -> pulumi.Input[builtins.str]:
|
78
|
+
"""
|
79
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the FamProvision in.
|
80
|
+
"""
|
81
|
+
return pulumi.get(self, "compartment_id")
|
82
|
+
|
83
|
+
@compartment_id.setter
|
84
|
+
def compartment_id(self, value: pulumi.Input[builtins.str]):
|
85
|
+
pulumi.set(self, "compartment_id", value)
|
86
|
+
|
87
|
+
@property
|
88
|
+
@pulumi.getter(name="configCatalogItemId")
|
89
|
+
def config_catalog_item_id(self) -> pulumi.Input[builtins.str]:
|
90
|
+
"""
|
91
|
+
A [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Catalog Item to a file with key/value pairs to set up variables for createStack API.
|
92
|
+
"""
|
93
|
+
return pulumi.get(self, "config_catalog_item_id")
|
94
|
+
|
95
|
+
@config_catalog_item_id.setter
|
96
|
+
def config_catalog_item_id(self, value: pulumi.Input[builtins.str]):
|
97
|
+
pulumi.set(self, "config_catalog_item_id", value)
|
98
|
+
|
99
|
+
@property
|
100
|
+
@pulumi.getter(name="fleetId")
|
101
|
+
def fleet_id(self) -> pulumi.Input[builtins.str]:
|
102
|
+
"""
|
103
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Fleet.
|
104
|
+
"""
|
105
|
+
return pulumi.get(self, "fleet_id")
|
106
|
+
|
107
|
+
@fleet_id.setter
|
108
|
+
def fleet_id(self, value: pulumi.Input[builtins.str]):
|
109
|
+
pulumi.set(self, "fleet_id", value)
|
110
|
+
|
111
|
+
@property
|
112
|
+
@pulumi.getter(name="packageCatalogItemId")
|
113
|
+
def package_catalog_item_id(self) -> pulumi.Input[builtins.str]:
|
114
|
+
"""
|
115
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Catalog Item.
|
116
|
+
"""
|
117
|
+
return pulumi.get(self, "package_catalog_item_id")
|
118
|
+
|
119
|
+
@package_catalog_item_id.setter
|
120
|
+
def package_catalog_item_id(self, value: pulumi.Input[builtins.str]):
|
121
|
+
pulumi.set(self, "package_catalog_item_id", value)
|
122
|
+
|
123
|
+
@property
|
124
|
+
@pulumi.getter(name="tfVariableRegionId")
|
125
|
+
def tf_variable_region_id(self) -> pulumi.Input[builtins.str]:
|
126
|
+
"""
|
127
|
+
A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
|
128
|
+
"""
|
129
|
+
return pulumi.get(self, "tf_variable_region_id")
|
130
|
+
|
131
|
+
@tf_variable_region_id.setter
|
132
|
+
def tf_variable_region_id(self, value: pulumi.Input[builtins.str]):
|
133
|
+
pulumi.set(self, "tf_variable_region_id", value)
|
134
|
+
|
135
|
+
@property
|
136
|
+
@pulumi.getter(name="tfVariableTenancyId")
|
137
|
+
def tf_variable_tenancy_id(self) -> pulumi.Input[builtins.str]:
|
138
|
+
"""
|
139
|
+
A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
|
140
|
+
|
141
|
+
|
142
|
+
** IMPORTANT **
|
143
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
144
|
+
"""
|
145
|
+
return pulumi.get(self, "tf_variable_tenancy_id")
|
146
|
+
|
147
|
+
@tf_variable_tenancy_id.setter
|
148
|
+
def tf_variable_tenancy_id(self, value: pulumi.Input[builtins.str]):
|
149
|
+
pulumi.set(self, "tf_variable_tenancy_id", value)
|
150
|
+
|
151
|
+
@property
|
152
|
+
@pulumi.getter(name="definedTags")
|
153
|
+
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
154
|
+
"""
|
155
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
156
|
+
"""
|
157
|
+
return pulumi.get(self, "defined_tags")
|
158
|
+
|
159
|
+
@defined_tags.setter
|
160
|
+
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
161
|
+
pulumi.set(self, "defined_tags", value)
|
162
|
+
|
163
|
+
@property
|
164
|
+
@pulumi.getter(name="displayName")
|
165
|
+
def display_name(self) -> Optional[pulumi.Input[builtins.str]]:
|
166
|
+
"""
|
167
|
+
(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
168
|
+
"""
|
169
|
+
return pulumi.get(self, "display_name")
|
170
|
+
|
171
|
+
@display_name.setter
|
172
|
+
def display_name(self, value: Optional[pulumi.Input[builtins.str]]):
|
173
|
+
pulumi.set(self, "display_name", value)
|
174
|
+
|
175
|
+
@property
|
176
|
+
@pulumi.getter(name="freeformTags")
|
177
|
+
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
178
|
+
"""
|
179
|
+
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
180
|
+
"""
|
181
|
+
return pulumi.get(self, "freeform_tags")
|
182
|
+
|
183
|
+
@freeform_tags.setter
|
184
|
+
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
185
|
+
pulumi.set(self, "freeform_tags", value)
|
186
|
+
|
187
|
+
@property
|
188
|
+
@pulumi.getter(name="provisionDescription")
|
189
|
+
def provision_description(self) -> Optional[pulumi.Input[builtins.str]]:
|
190
|
+
"""
|
191
|
+
(Updatable) A description of the provision.
|
192
|
+
"""
|
193
|
+
return pulumi.get(self, "provision_description")
|
194
|
+
|
195
|
+
@provision_description.setter
|
196
|
+
def provision_description(self, value: Optional[pulumi.Input[builtins.str]]):
|
197
|
+
pulumi.set(self, "provision_description", value)
|
198
|
+
|
199
|
+
@property
|
200
|
+
@pulumi.getter(name="tfVariableCompartmentId")
|
201
|
+
def tf_variable_compartment_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
202
|
+
"""
|
203
|
+
An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
|
204
|
+
"""
|
205
|
+
return pulumi.get(self, "tf_variable_compartment_id")
|
206
|
+
|
207
|
+
@tf_variable_compartment_id.setter
|
208
|
+
def tf_variable_compartment_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
209
|
+
pulumi.set(self, "tf_variable_compartment_id", value)
|
210
|
+
|
211
|
+
@property
|
212
|
+
@pulumi.getter(name="tfVariableCurrentUserId")
|
213
|
+
def tf_variable_current_user_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
214
|
+
"""
|
215
|
+
An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
|
216
|
+
"""
|
217
|
+
return pulumi.get(self, "tf_variable_current_user_id")
|
218
|
+
|
219
|
+
@tf_variable_current_user_id.setter
|
220
|
+
def tf_variable_current_user_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
221
|
+
pulumi.set(self, "tf_variable_current_user_id", value)
|
222
|
+
|
223
|
+
|
224
|
+
@pulumi.input_type
|
225
|
+
class _ProvisionState:
|
226
|
+
def __init__(__self__, *,
|
227
|
+
compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
228
|
+
config_catalog_item_display_name: Optional[pulumi.Input[builtins.str]] = None,
|
229
|
+
config_catalog_item_id: Optional[pulumi.Input[builtins.str]] = None,
|
230
|
+
config_catalog_item_listing_id: Optional[pulumi.Input[builtins.str]] = None,
|
231
|
+
config_catalog_item_listing_version: Optional[pulumi.Input[builtins.str]] = None,
|
232
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
233
|
+
deployed_resources: Optional[pulumi.Input[Sequence[pulumi.Input['ProvisionDeployedResourceArgs']]]] = None,
|
234
|
+
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
235
|
+
fleet_id: Optional[pulumi.Input[builtins.str]] = None,
|
236
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
237
|
+
lifecycle_details: Optional[pulumi.Input[builtins.str]] = None,
|
238
|
+
package_catalog_item_display_name: Optional[pulumi.Input[builtins.str]] = None,
|
239
|
+
package_catalog_item_id: Optional[pulumi.Input[builtins.str]] = None,
|
240
|
+
package_catalog_item_listing_id: Optional[pulumi.Input[builtins.str]] = None,
|
241
|
+
package_catalog_item_listing_version: Optional[pulumi.Input[builtins.str]] = None,
|
242
|
+
provision_description: Optional[pulumi.Input[builtins.str]] = None,
|
243
|
+
rms_apply_job_id: Optional[pulumi.Input[builtins.str]] = None,
|
244
|
+
stack_id: Optional[pulumi.Input[builtins.str]] = None,
|
245
|
+
state: Optional[pulumi.Input[builtins.str]] = None,
|
246
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
247
|
+
tf_outputs: Optional[pulumi.Input[Sequence[pulumi.Input['ProvisionTfOutputArgs']]]] = None,
|
248
|
+
tf_variable_compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
249
|
+
tf_variable_current_user_id: Optional[pulumi.Input[builtins.str]] = None,
|
250
|
+
tf_variable_region_id: Optional[pulumi.Input[builtins.str]] = None,
|
251
|
+
tf_variable_tenancy_id: Optional[pulumi.Input[builtins.str]] = None,
|
252
|
+
time_created: Optional[pulumi.Input[builtins.str]] = None,
|
253
|
+
time_updated: Optional[pulumi.Input[builtins.str]] = None):
|
254
|
+
"""
|
255
|
+
Input properties used for looking up and filtering Provision resources.
|
256
|
+
:param pulumi.Input[builtins.str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the FamProvision in.
|
257
|
+
:param pulumi.Input[builtins.str] config_catalog_item_display_name: A display Name of the Catalog Item in the Catalog.
|
258
|
+
:param pulumi.Input[builtins.str] config_catalog_item_id: A [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Catalog Item to a file with key/value pairs to set up variables for createStack API.
|
259
|
+
:param pulumi.Input[builtins.str] config_catalog_item_listing_id: A listing ID of the Catalog Item in the Catalog.
|
260
|
+
:param pulumi.Input[builtins.str] config_catalog_item_listing_version: A listing version of the Catalog Item in the Catalog.
|
261
|
+
: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"}`
|
262
|
+
:param pulumi.Input[Sequence[pulumi.Input['ProvisionDeployedResourceArgs']]] deployed_resources: The deployed resources and their summary
|
263
|
+
:param pulumi.Input[builtins.str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
264
|
+
:param pulumi.Input[builtins.str] fleet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Fleet.
|
265
|
+
: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"}`
|
266
|
+
:param pulumi.Input[builtins.str] lifecycle_details: A message that describes the current state of the FamProvision in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
|
267
|
+
:param pulumi.Input[builtins.str] package_catalog_item_display_name: A display Name of the Catalog Item in the Catalog.
|
268
|
+
:param pulumi.Input[builtins.str] package_catalog_item_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Catalog Item.
|
269
|
+
:param pulumi.Input[builtins.str] package_catalog_item_listing_id: A listing ID of the Catalog Item in the Catalog.
|
270
|
+
:param pulumi.Input[builtins.str] package_catalog_item_listing_version: A listing version of the Catalog Item in the Catalog.
|
271
|
+
:param pulumi.Input[builtins.str] provision_description: (Updatable) A description of the provision.
|
272
|
+
:param pulumi.Input[builtins.str] rms_apply_job_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the RMS APPLY Job.
|
273
|
+
:param pulumi.Input[builtins.str] stack_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the RMS Stack.
|
274
|
+
:param pulumi.Input[builtins.str] state: The current state of the FamProvision.
|
275
|
+
: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"}`
|
276
|
+
:param pulumi.Input[Sequence[pulumi.Input['ProvisionTfOutputArgs']]] tf_outputs: Outputs from the pulumi up job
|
277
|
+
:param pulumi.Input[builtins.str] tf_variable_compartment_id: An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
|
278
|
+
:param pulumi.Input[builtins.str] tf_variable_current_user_id: An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
|
279
|
+
:param pulumi.Input[builtins.str] tf_variable_region_id: A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
|
280
|
+
:param pulumi.Input[builtins.str] tf_variable_tenancy_id: A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
|
281
|
+
|
282
|
+
|
283
|
+
** IMPORTANT **
|
284
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
285
|
+
:param pulumi.Input[builtins.str] time_created: The date and time the FamProvision was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
286
|
+
:param pulumi.Input[builtins.str] time_updated: The date and time the FamProvision was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
287
|
+
"""
|
288
|
+
if compartment_id is not None:
|
289
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
290
|
+
if config_catalog_item_display_name is not None:
|
291
|
+
pulumi.set(__self__, "config_catalog_item_display_name", config_catalog_item_display_name)
|
292
|
+
if config_catalog_item_id is not None:
|
293
|
+
pulumi.set(__self__, "config_catalog_item_id", config_catalog_item_id)
|
294
|
+
if config_catalog_item_listing_id is not None:
|
295
|
+
pulumi.set(__self__, "config_catalog_item_listing_id", config_catalog_item_listing_id)
|
296
|
+
if config_catalog_item_listing_version is not None:
|
297
|
+
pulumi.set(__self__, "config_catalog_item_listing_version", config_catalog_item_listing_version)
|
298
|
+
if defined_tags is not None:
|
299
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
300
|
+
if deployed_resources is not None:
|
301
|
+
pulumi.set(__self__, "deployed_resources", deployed_resources)
|
302
|
+
if display_name is not None:
|
303
|
+
pulumi.set(__self__, "display_name", display_name)
|
304
|
+
if fleet_id is not None:
|
305
|
+
pulumi.set(__self__, "fleet_id", fleet_id)
|
306
|
+
if freeform_tags is not None:
|
307
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
308
|
+
if lifecycle_details is not None:
|
309
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
310
|
+
if package_catalog_item_display_name is not None:
|
311
|
+
pulumi.set(__self__, "package_catalog_item_display_name", package_catalog_item_display_name)
|
312
|
+
if package_catalog_item_id is not None:
|
313
|
+
pulumi.set(__self__, "package_catalog_item_id", package_catalog_item_id)
|
314
|
+
if package_catalog_item_listing_id is not None:
|
315
|
+
pulumi.set(__self__, "package_catalog_item_listing_id", package_catalog_item_listing_id)
|
316
|
+
if package_catalog_item_listing_version is not None:
|
317
|
+
pulumi.set(__self__, "package_catalog_item_listing_version", package_catalog_item_listing_version)
|
318
|
+
if provision_description is not None:
|
319
|
+
pulumi.set(__self__, "provision_description", provision_description)
|
320
|
+
if rms_apply_job_id is not None:
|
321
|
+
pulumi.set(__self__, "rms_apply_job_id", rms_apply_job_id)
|
322
|
+
if stack_id is not None:
|
323
|
+
pulumi.set(__self__, "stack_id", stack_id)
|
324
|
+
if state is not None:
|
325
|
+
pulumi.set(__self__, "state", state)
|
326
|
+
if system_tags is not None:
|
327
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
328
|
+
if tf_outputs is not None:
|
329
|
+
pulumi.set(__self__, "tf_outputs", tf_outputs)
|
330
|
+
if tf_variable_compartment_id is not None:
|
331
|
+
pulumi.set(__self__, "tf_variable_compartment_id", tf_variable_compartment_id)
|
332
|
+
if tf_variable_current_user_id is not None:
|
333
|
+
pulumi.set(__self__, "tf_variable_current_user_id", tf_variable_current_user_id)
|
334
|
+
if tf_variable_region_id is not None:
|
335
|
+
pulumi.set(__self__, "tf_variable_region_id", tf_variable_region_id)
|
336
|
+
if tf_variable_tenancy_id is not None:
|
337
|
+
pulumi.set(__self__, "tf_variable_tenancy_id", tf_variable_tenancy_id)
|
338
|
+
if time_created is not None:
|
339
|
+
pulumi.set(__self__, "time_created", time_created)
|
340
|
+
if time_updated is not None:
|
341
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
342
|
+
|
343
|
+
@property
|
344
|
+
@pulumi.getter(name="compartmentId")
|
345
|
+
def compartment_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
346
|
+
"""
|
347
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the FamProvision in.
|
348
|
+
"""
|
349
|
+
return pulumi.get(self, "compartment_id")
|
350
|
+
|
351
|
+
@compartment_id.setter
|
352
|
+
def compartment_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
353
|
+
pulumi.set(self, "compartment_id", value)
|
354
|
+
|
355
|
+
@property
|
356
|
+
@pulumi.getter(name="configCatalogItemDisplayName")
|
357
|
+
def config_catalog_item_display_name(self) -> Optional[pulumi.Input[builtins.str]]:
|
358
|
+
"""
|
359
|
+
A display Name of the Catalog Item in the Catalog.
|
360
|
+
"""
|
361
|
+
return pulumi.get(self, "config_catalog_item_display_name")
|
362
|
+
|
363
|
+
@config_catalog_item_display_name.setter
|
364
|
+
def config_catalog_item_display_name(self, value: Optional[pulumi.Input[builtins.str]]):
|
365
|
+
pulumi.set(self, "config_catalog_item_display_name", value)
|
366
|
+
|
367
|
+
@property
|
368
|
+
@pulumi.getter(name="configCatalogItemId")
|
369
|
+
def config_catalog_item_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
370
|
+
"""
|
371
|
+
A [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Catalog Item to a file with key/value pairs to set up variables for createStack API.
|
372
|
+
"""
|
373
|
+
return pulumi.get(self, "config_catalog_item_id")
|
374
|
+
|
375
|
+
@config_catalog_item_id.setter
|
376
|
+
def config_catalog_item_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
377
|
+
pulumi.set(self, "config_catalog_item_id", value)
|
378
|
+
|
379
|
+
@property
|
380
|
+
@pulumi.getter(name="configCatalogItemListingId")
|
381
|
+
def config_catalog_item_listing_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
382
|
+
"""
|
383
|
+
A listing ID of the Catalog Item in the Catalog.
|
384
|
+
"""
|
385
|
+
return pulumi.get(self, "config_catalog_item_listing_id")
|
386
|
+
|
387
|
+
@config_catalog_item_listing_id.setter
|
388
|
+
def config_catalog_item_listing_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
389
|
+
pulumi.set(self, "config_catalog_item_listing_id", value)
|
390
|
+
|
391
|
+
@property
|
392
|
+
@pulumi.getter(name="configCatalogItemListingVersion")
|
393
|
+
def config_catalog_item_listing_version(self) -> Optional[pulumi.Input[builtins.str]]:
|
394
|
+
"""
|
395
|
+
A listing version of the Catalog Item in the Catalog.
|
396
|
+
"""
|
397
|
+
return pulumi.get(self, "config_catalog_item_listing_version")
|
398
|
+
|
399
|
+
@config_catalog_item_listing_version.setter
|
400
|
+
def config_catalog_item_listing_version(self, value: Optional[pulumi.Input[builtins.str]]):
|
401
|
+
pulumi.set(self, "config_catalog_item_listing_version", value)
|
402
|
+
|
403
|
+
@property
|
404
|
+
@pulumi.getter(name="definedTags")
|
405
|
+
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
406
|
+
"""
|
407
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
408
|
+
"""
|
409
|
+
return pulumi.get(self, "defined_tags")
|
410
|
+
|
411
|
+
@defined_tags.setter
|
412
|
+
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
413
|
+
pulumi.set(self, "defined_tags", value)
|
414
|
+
|
415
|
+
@property
|
416
|
+
@pulumi.getter(name="deployedResources")
|
417
|
+
def deployed_resources(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ProvisionDeployedResourceArgs']]]]:
|
418
|
+
"""
|
419
|
+
The deployed resources and their summary
|
420
|
+
"""
|
421
|
+
return pulumi.get(self, "deployed_resources")
|
422
|
+
|
423
|
+
@deployed_resources.setter
|
424
|
+
def deployed_resources(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ProvisionDeployedResourceArgs']]]]):
|
425
|
+
pulumi.set(self, "deployed_resources", value)
|
426
|
+
|
427
|
+
@property
|
428
|
+
@pulumi.getter(name="displayName")
|
429
|
+
def display_name(self) -> Optional[pulumi.Input[builtins.str]]:
|
430
|
+
"""
|
431
|
+
(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
432
|
+
"""
|
433
|
+
return pulumi.get(self, "display_name")
|
434
|
+
|
435
|
+
@display_name.setter
|
436
|
+
def display_name(self, value: Optional[pulumi.Input[builtins.str]]):
|
437
|
+
pulumi.set(self, "display_name", value)
|
438
|
+
|
439
|
+
@property
|
440
|
+
@pulumi.getter(name="fleetId")
|
441
|
+
def fleet_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
442
|
+
"""
|
443
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Fleet.
|
444
|
+
"""
|
445
|
+
return pulumi.get(self, "fleet_id")
|
446
|
+
|
447
|
+
@fleet_id.setter
|
448
|
+
def fleet_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
449
|
+
pulumi.set(self, "fleet_id", value)
|
450
|
+
|
451
|
+
@property
|
452
|
+
@pulumi.getter(name="freeformTags")
|
453
|
+
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
454
|
+
"""
|
455
|
+
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
456
|
+
"""
|
457
|
+
return pulumi.get(self, "freeform_tags")
|
458
|
+
|
459
|
+
@freeform_tags.setter
|
460
|
+
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
461
|
+
pulumi.set(self, "freeform_tags", value)
|
462
|
+
|
463
|
+
@property
|
464
|
+
@pulumi.getter(name="lifecycleDetails")
|
465
|
+
def lifecycle_details(self) -> Optional[pulumi.Input[builtins.str]]:
|
466
|
+
"""
|
467
|
+
A message that describes the current state of the FamProvision in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
|
468
|
+
"""
|
469
|
+
return pulumi.get(self, "lifecycle_details")
|
470
|
+
|
471
|
+
@lifecycle_details.setter
|
472
|
+
def lifecycle_details(self, value: Optional[pulumi.Input[builtins.str]]):
|
473
|
+
pulumi.set(self, "lifecycle_details", value)
|
474
|
+
|
475
|
+
@property
|
476
|
+
@pulumi.getter(name="packageCatalogItemDisplayName")
|
477
|
+
def package_catalog_item_display_name(self) -> Optional[pulumi.Input[builtins.str]]:
|
478
|
+
"""
|
479
|
+
A display Name of the Catalog Item in the Catalog.
|
480
|
+
"""
|
481
|
+
return pulumi.get(self, "package_catalog_item_display_name")
|
482
|
+
|
483
|
+
@package_catalog_item_display_name.setter
|
484
|
+
def package_catalog_item_display_name(self, value: Optional[pulumi.Input[builtins.str]]):
|
485
|
+
pulumi.set(self, "package_catalog_item_display_name", value)
|
486
|
+
|
487
|
+
@property
|
488
|
+
@pulumi.getter(name="packageCatalogItemId")
|
489
|
+
def package_catalog_item_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
490
|
+
"""
|
491
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Catalog Item.
|
492
|
+
"""
|
493
|
+
return pulumi.get(self, "package_catalog_item_id")
|
494
|
+
|
495
|
+
@package_catalog_item_id.setter
|
496
|
+
def package_catalog_item_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
497
|
+
pulumi.set(self, "package_catalog_item_id", value)
|
498
|
+
|
499
|
+
@property
|
500
|
+
@pulumi.getter(name="packageCatalogItemListingId")
|
501
|
+
def package_catalog_item_listing_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
502
|
+
"""
|
503
|
+
A listing ID of the Catalog Item in the Catalog.
|
504
|
+
"""
|
505
|
+
return pulumi.get(self, "package_catalog_item_listing_id")
|
506
|
+
|
507
|
+
@package_catalog_item_listing_id.setter
|
508
|
+
def package_catalog_item_listing_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
509
|
+
pulumi.set(self, "package_catalog_item_listing_id", value)
|
510
|
+
|
511
|
+
@property
|
512
|
+
@pulumi.getter(name="packageCatalogItemListingVersion")
|
513
|
+
def package_catalog_item_listing_version(self) -> Optional[pulumi.Input[builtins.str]]:
|
514
|
+
"""
|
515
|
+
A listing version of the Catalog Item in the Catalog.
|
516
|
+
"""
|
517
|
+
return pulumi.get(self, "package_catalog_item_listing_version")
|
518
|
+
|
519
|
+
@package_catalog_item_listing_version.setter
|
520
|
+
def package_catalog_item_listing_version(self, value: Optional[pulumi.Input[builtins.str]]):
|
521
|
+
pulumi.set(self, "package_catalog_item_listing_version", value)
|
522
|
+
|
523
|
+
@property
|
524
|
+
@pulumi.getter(name="provisionDescription")
|
525
|
+
def provision_description(self) -> Optional[pulumi.Input[builtins.str]]:
|
526
|
+
"""
|
527
|
+
(Updatable) A description of the provision.
|
528
|
+
"""
|
529
|
+
return pulumi.get(self, "provision_description")
|
530
|
+
|
531
|
+
@provision_description.setter
|
532
|
+
def provision_description(self, value: Optional[pulumi.Input[builtins.str]]):
|
533
|
+
pulumi.set(self, "provision_description", value)
|
534
|
+
|
535
|
+
@property
|
536
|
+
@pulumi.getter(name="rmsApplyJobId")
|
537
|
+
def rms_apply_job_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
538
|
+
"""
|
539
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the RMS APPLY Job.
|
540
|
+
"""
|
541
|
+
return pulumi.get(self, "rms_apply_job_id")
|
542
|
+
|
543
|
+
@rms_apply_job_id.setter
|
544
|
+
def rms_apply_job_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
545
|
+
pulumi.set(self, "rms_apply_job_id", value)
|
546
|
+
|
547
|
+
@property
|
548
|
+
@pulumi.getter(name="stackId")
|
549
|
+
def stack_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
550
|
+
"""
|
551
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the RMS Stack.
|
552
|
+
"""
|
553
|
+
return pulumi.get(self, "stack_id")
|
554
|
+
|
555
|
+
@stack_id.setter
|
556
|
+
def stack_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
557
|
+
pulumi.set(self, "stack_id", value)
|
558
|
+
|
559
|
+
@property
|
560
|
+
@pulumi.getter
|
561
|
+
def state(self) -> Optional[pulumi.Input[builtins.str]]:
|
562
|
+
"""
|
563
|
+
The current state of the FamProvision.
|
564
|
+
"""
|
565
|
+
return pulumi.get(self, "state")
|
566
|
+
|
567
|
+
@state.setter
|
568
|
+
def state(self, value: Optional[pulumi.Input[builtins.str]]):
|
569
|
+
pulumi.set(self, "state", value)
|
570
|
+
|
571
|
+
@property
|
572
|
+
@pulumi.getter(name="systemTags")
|
573
|
+
def system_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
574
|
+
"""
|
575
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
576
|
+
"""
|
577
|
+
return pulumi.get(self, "system_tags")
|
578
|
+
|
579
|
+
@system_tags.setter
|
580
|
+
def system_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
581
|
+
pulumi.set(self, "system_tags", value)
|
582
|
+
|
583
|
+
@property
|
584
|
+
@pulumi.getter(name="tfOutputs")
|
585
|
+
def tf_outputs(self) -> Optional[pulumi.Input[Sequence[pulumi.Input['ProvisionTfOutputArgs']]]]:
|
586
|
+
"""
|
587
|
+
Outputs from the pulumi up job
|
588
|
+
"""
|
589
|
+
return pulumi.get(self, "tf_outputs")
|
590
|
+
|
591
|
+
@tf_outputs.setter
|
592
|
+
def tf_outputs(self, value: Optional[pulumi.Input[Sequence[pulumi.Input['ProvisionTfOutputArgs']]]]):
|
593
|
+
pulumi.set(self, "tf_outputs", value)
|
594
|
+
|
595
|
+
@property
|
596
|
+
@pulumi.getter(name="tfVariableCompartmentId")
|
597
|
+
def tf_variable_compartment_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
598
|
+
"""
|
599
|
+
An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
|
600
|
+
"""
|
601
|
+
return pulumi.get(self, "tf_variable_compartment_id")
|
602
|
+
|
603
|
+
@tf_variable_compartment_id.setter
|
604
|
+
def tf_variable_compartment_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
605
|
+
pulumi.set(self, "tf_variable_compartment_id", value)
|
606
|
+
|
607
|
+
@property
|
608
|
+
@pulumi.getter(name="tfVariableCurrentUserId")
|
609
|
+
def tf_variable_current_user_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
610
|
+
"""
|
611
|
+
An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
|
612
|
+
"""
|
613
|
+
return pulumi.get(self, "tf_variable_current_user_id")
|
614
|
+
|
615
|
+
@tf_variable_current_user_id.setter
|
616
|
+
def tf_variable_current_user_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
617
|
+
pulumi.set(self, "tf_variable_current_user_id", value)
|
618
|
+
|
619
|
+
@property
|
620
|
+
@pulumi.getter(name="tfVariableRegionId")
|
621
|
+
def tf_variable_region_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
622
|
+
"""
|
623
|
+
A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
|
624
|
+
"""
|
625
|
+
return pulumi.get(self, "tf_variable_region_id")
|
626
|
+
|
627
|
+
@tf_variable_region_id.setter
|
628
|
+
def tf_variable_region_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
629
|
+
pulumi.set(self, "tf_variable_region_id", value)
|
630
|
+
|
631
|
+
@property
|
632
|
+
@pulumi.getter(name="tfVariableTenancyId")
|
633
|
+
def tf_variable_tenancy_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
634
|
+
"""
|
635
|
+
A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
|
636
|
+
|
637
|
+
|
638
|
+
** IMPORTANT **
|
639
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
640
|
+
"""
|
641
|
+
return pulumi.get(self, "tf_variable_tenancy_id")
|
642
|
+
|
643
|
+
@tf_variable_tenancy_id.setter
|
644
|
+
def tf_variable_tenancy_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
645
|
+
pulumi.set(self, "tf_variable_tenancy_id", value)
|
646
|
+
|
647
|
+
@property
|
648
|
+
@pulumi.getter(name="timeCreated")
|
649
|
+
def time_created(self) -> Optional[pulumi.Input[builtins.str]]:
|
650
|
+
"""
|
651
|
+
The date and time the FamProvision was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
652
|
+
"""
|
653
|
+
return pulumi.get(self, "time_created")
|
654
|
+
|
655
|
+
@time_created.setter
|
656
|
+
def time_created(self, value: Optional[pulumi.Input[builtins.str]]):
|
657
|
+
pulumi.set(self, "time_created", value)
|
658
|
+
|
659
|
+
@property
|
660
|
+
@pulumi.getter(name="timeUpdated")
|
661
|
+
def time_updated(self) -> Optional[pulumi.Input[builtins.str]]:
|
662
|
+
"""
|
663
|
+
The date and time the FamProvision was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
664
|
+
"""
|
665
|
+
return pulumi.get(self, "time_updated")
|
666
|
+
|
667
|
+
@time_updated.setter
|
668
|
+
def time_updated(self, value: Optional[pulumi.Input[builtins.str]]):
|
669
|
+
pulumi.set(self, "time_updated", value)
|
670
|
+
|
671
|
+
|
672
|
+
@pulumi.type_token("oci:FleetAppsManagement/provision:Provision")
|
673
|
+
class Provision(pulumi.CustomResource):
|
674
|
+
@overload
|
675
|
+
def __init__(__self__,
|
676
|
+
resource_name: str,
|
677
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
678
|
+
compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
679
|
+
config_catalog_item_id: Optional[pulumi.Input[builtins.str]] = None,
|
680
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
681
|
+
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
682
|
+
fleet_id: Optional[pulumi.Input[builtins.str]] = None,
|
683
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
684
|
+
package_catalog_item_id: Optional[pulumi.Input[builtins.str]] = None,
|
685
|
+
provision_description: Optional[pulumi.Input[builtins.str]] = None,
|
686
|
+
tf_variable_compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
687
|
+
tf_variable_current_user_id: Optional[pulumi.Input[builtins.str]] = None,
|
688
|
+
tf_variable_region_id: Optional[pulumi.Input[builtins.str]] = None,
|
689
|
+
tf_variable_tenancy_id: Optional[pulumi.Input[builtins.str]] = None,
|
690
|
+
__props__=None):
|
691
|
+
"""
|
692
|
+
This resource provides the Provision resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
693
|
+
|
694
|
+
Creates a Provision.
|
695
|
+
|
696
|
+
## Example Usage
|
697
|
+
|
698
|
+
```python
|
699
|
+
import pulumi
|
700
|
+
import pulumi_oci as oci
|
701
|
+
|
702
|
+
test_provision = oci.fleet_apps_management.Provision("test_provision",
|
703
|
+
compartment_id=compartment_id,
|
704
|
+
config_catalog_item_id=test_catalog_item["id"],
|
705
|
+
fleet_id=test_fleet["id"],
|
706
|
+
package_catalog_item_id=test_catalog_item["id"],
|
707
|
+
tf_variable_region_id=test_region["id"],
|
708
|
+
tf_variable_tenancy_id=test_tenancy["id"],
|
709
|
+
defined_tags={
|
710
|
+
"foo-namespace.bar-key": "value",
|
711
|
+
},
|
712
|
+
display_name=provision_display_name,
|
713
|
+
freeform_tags={
|
714
|
+
"bar-key": "value",
|
715
|
+
},
|
716
|
+
provision_description=provision_provision_description,
|
717
|
+
tf_variable_compartment_id=test_compartment["id"],
|
718
|
+
tf_variable_current_user_id=test_user["id"])
|
719
|
+
```
|
720
|
+
|
721
|
+
## Import
|
722
|
+
|
723
|
+
Provisions can be imported using the `id`, e.g.
|
724
|
+
|
725
|
+
```sh
|
726
|
+
$ pulumi import oci:FleetAppsManagement/provision:Provision test_provision "id"
|
727
|
+
```
|
728
|
+
|
729
|
+
:param str resource_name: The name of the resource.
|
730
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
731
|
+
:param pulumi.Input[builtins.str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the FamProvision in.
|
732
|
+
:param pulumi.Input[builtins.str] config_catalog_item_id: A [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Catalog Item to a file with key/value pairs to set up variables for createStack API.
|
733
|
+
: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"}`
|
734
|
+
:param pulumi.Input[builtins.str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
735
|
+
:param pulumi.Input[builtins.str] fleet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Fleet.
|
736
|
+
: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"}`
|
737
|
+
:param pulumi.Input[builtins.str] package_catalog_item_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Catalog Item.
|
738
|
+
:param pulumi.Input[builtins.str] provision_description: (Updatable) A description of the provision.
|
739
|
+
:param pulumi.Input[builtins.str] tf_variable_compartment_id: An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
|
740
|
+
:param pulumi.Input[builtins.str] tf_variable_current_user_id: An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
|
741
|
+
:param pulumi.Input[builtins.str] tf_variable_region_id: A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
|
742
|
+
:param pulumi.Input[builtins.str] tf_variable_tenancy_id: A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
|
743
|
+
|
744
|
+
|
745
|
+
** IMPORTANT **
|
746
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
747
|
+
"""
|
748
|
+
...
|
749
|
+
@overload
|
750
|
+
def __init__(__self__,
|
751
|
+
resource_name: str,
|
752
|
+
args: ProvisionArgs,
|
753
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
754
|
+
"""
|
755
|
+
This resource provides the Provision resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
756
|
+
|
757
|
+
Creates a Provision.
|
758
|
+
|
759
|
+
## Example Usage
|
760
|
+
|
761
|
+
```python
|
762
|
+
import pulumi
|
763
|
+
import pulumi_oci as oci
|
764
|
+
|
765
|
+
test_provision = oci.fleet_apps_management.Provision("test_provision",
|
766
|
+
compartment_id=compartment_id,
|
767
|
+
config_catalog_item_id=test_catalog_item["id"],
|
768
|
+
fleet_id=test_fleet["id"],
|
769
|
+
package_catalog_item_id=test_catalog_item["id"],
|
770
|
+
tf_variable_region_id=test_region["id"],
|
771
|
+
tf_variable_tenancy_id=test_tenancy["id"],
|
772
|
+
defined_tags={
|
773
|
+
"foo-namespace.bar-key": "value",
|
774
|
+
},
|
775
|
+
display_name=provision_display_name,
|
776
|
+
freeform_tags={
|
777
|
+
"bar-key": "value",
|
778
|
+
},
|
779
|
+
provision_description=provision_provision_description,
|
780
|
+
tf_variable_compartment_id=test_compartment["id"],
|
781
|
+
tf_variable_current_user_id=test_user["id"])
|
782
|
+
```
|
783
|
+
|
784
|
+
## Import
|
785
|
+
|
786
|
+
Provisions can be imported using the `id`, e.g.
|
787
|
+
|
788
|
+
```sh
|
789
|
+
$ pulumi import oci:FleetAppsManagement/provision:Provision test_provision "id"
|
790
|
+
```
|
791
|
+
|
792
|
+
:param str resource_name: The name of the resource.
|
793
|
+
:param ProvisionArgs args: The arguments to use to populate this resource's properties.
|
794
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
795
|
+
"""
|
796
|
+
...
|
797
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
798
|
+
resource_args, opts = _utilities.get_resource_args_opts(ProvisionArgs, pulumi.ResourceOptions, *args, **kwargs)
|
799
|
+
if resource_args is not None:
|
800
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
801
|
+
else:
|
802
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
803
|
+
|
804
|
+
def _internal_init(__self__,
|
805
|
+
resource_name: str,
|
806
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
807
|
+
compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
808
|
+
config_catalog_item_id: Optional[pulumi.Input[builtins.str]] = None,
|
809
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
810
|
+
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
811
|
+
fleet_id: Optional[pulumi.Input[builtins.str]] = None,
|
812
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
813
|
+
package_catalog_item_id: Optional[pulumi.Input[builtins.str]] = None,
|
814
|
+
provision_description: Optional[pulumi.Input[builtins.str]] = None,
|
815
|
+
tf_variable_compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
816
|
+
tf_variable_current_user_id: Optional[pulumi.Input[builtins.str]] = None,
|
817
|
+
tf_variable_region_id: Optional[pulumi.Input[builtins.str]] = None,
|
818
|
+
tf_variable_tenancy_id: Optional[pulumi.Input[builtins.str]] = None,
|
819
|
+
__props__=None):
|
820
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
821
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
822
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
823
|
+
if opts.id is None:
|
824
|
+
if __props__ is not None:
|
825
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
826
|
+
__props__ = ProvisionArgs.__new__(ProvisionArgs)
|
827
|
+
|
828
|
+
if compartment_id is None and not opts.urn:
|
829
|
+
raise TypeError("Missing required property 'compartment_id'")
|
830
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
831
|
+
if config_catalog_item_id is None and not opts.urn:
|
832
|
+
raise TypeError("Missing required property 'config_catalog_item_id'")
|
833
|
+
__props__.__dict__["config_catalog_item_id"] = config_catalog_item_id
|
834
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
835
|
+
__props__.__dict__["display_name"] = display_name
|
836
|
+
if fleet_id is None and not opts.urn:
|
837
|
+
raise TypeError("Missing required property 'fleet_id'")
|
838
|
+
__props__.__dict__["fleet_id"] = fleet_id
|
839
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
840
|
+
if package_catalog_item_id is None and not opts.urn:
|
841
|
+
raise TypeError("Missing required property 'package_catalog_item_id'")
|
842
|
+
__props__.__dict__["package_catalog_item_id"] = package_catalog_item_id
|
843
|
+
__props__.__dict__["provision_description"] = provision_description
|
844
|
+
__props__.__dict__["tf_variable_compartment_id"] = tf_variable_compartment_id
|
845
|
+
__props__.__dict__["tf_variable_current_user_id"] = tf_variable_current_user_id
|
846
|
+
if tf_variable_region_id is None and not opts.urn:
|
847
|
+
raise TypeError("Missing required property 'tf_variable_region_id'")
|
848
|
+
__props__.__dict__["tf_variable_region_id"] = tf_variable_region_id
|
849
|
+
if tf_variable_tenancy_id is None and not opts.urn:
|
850
|
+
raise TypeError("Missing required property 'tf_variable_tenancy_id'")
|
851
|
+
__props__.__dict__["tf_variable_tenancy_id"] = tf_variable_tenancy_id
|
852
|
+
__props__.__dict__["config_catalog_item_display_name"] = None
|
853
|
+
__props__.__dict__["config_catalog_item_listing_id"] = None
|
854
|
+
__props__.__dict__["config_catalog_item_listing_version"] = None
|
855
|
+
__props__.__dict__["deployed_resources"] = None
|
856
|
+
__props__.__dict__["lifecycle_details"] = None
|
857
|
+
__props__.__dict__["package_catalog_item_display_name"] = None
|
858
|
+
__props__.__dict__["package_catalog_item_listing_id"] = None
|
859
|
+
__props__.__dict__["package_catalog_item_listing_version"] = None
|
860
|
+
__props__.__dict__["rms_apply_job_id"] = None
|
861
|
+
__props__.__dict__["stack_id"] = None
|
862
|
+
__props__.__dict__["state"] = None
|
863
|
+
__props__.__dict__["system_tags"] = None
|
864
|
+
__props__.__dict__["tf_outputs"] = None
|
865
|
+
__props__.__dict__["time_created"] = None
|
866
|
+
__props__.__dict__["time_updated"] = None
|
867
|
+
super(Provision, __self__).__init__(
|
868
|
+
'oci:FleetAppsManagement/provision:Provision',
|
869
|
+
resource_name,
|
870
|
+
__props__,
|
871
|
+
opts)
|
872
|
+
|
873
|
+
@staticmethod
|
874
|
+
def get(resource_name: str,
|
875
|
+
id: pulumi.Input[str],
|
876
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
877
|
+
compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
878
|
+
config_catalog_item_display_name: Optional[pulumi.Input[builtins.str]] = None,
|
879
|
+
config_catalog_item_id: Optional[pulumi.Input[builtins.str]] = None,
|
880
|
+
config_catalog_item_listing_id: Optional[pulumi.Input[builtins.str]] = None,
|
881
|
+
config_catalog_item_listing_version: Optional[pulumi.Input[builtins.str]] = None,
|
882
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
883
|
+
deployed_resources: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ProvisionDeployedResourceArgs', 'ProvisionDeployedResourceArgsDict']]]]] = None,
|
884
|
+
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
885
|
+
fleet_id: Optional[pulumi.Input[builtins.str]] = None,
|
886
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
887
|
+
lifecycle_details: Optional[pulumi.Input[builtins.str]] = None,
|
888
|
+
package_catalog_item_display_name: Optional[pulumi.Input[builtins.str]] = None,
|
889
|
+
package_catalog_item_id: Optional[pulumi.Input[builtins.str]] = None,
|
890
|
+
package_catalog_item_listing_id: Optional[pulumi.Input[builtins.str]] = None,
|
891
|
+
package_catalog_item_listing_version: Optional[pulumi.Input[builtins.str]] = None,
|
892
|
+
provision_description: Optional[pulumi.Input[builtins.str]] = None,
|
893
|
+
rms_apply_job_id: Optional[pulumi.Input[builtins.str]] = None,
|
894
|
+
stack_id: Optional[pulumi.Input[builtins.str]] = None,
|
895
|
+
state: Optional[pulumi.Input[builtins.str]] = None,
|
896
|
+
system_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
897
|
+
tf_outputs: Optional[pulumi.Input[Sequence[pulumi.Input[Union['ProvisionTfOutputArgs', 'ProvisionTfOutputArgsDict']]]]] = None,
|
898
|
+
tf_variable_compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
899
|
+
tf_variable_current_user_id: Optional[pulumi.Input[builtins.str]] = None,
|
900
|
+
tf_variable_region_id: Optional[pulumi.Input[builtins.str]] = None,
|
901
|
+
tf_variable_tenancy_id: Optional[pulumi.Input[builtins.str]] = None,
|
902
|
+
time_created: Optional[pulumi.Input[builtins.str]] = None,
|
903
|
+
time_updated: Optional[pulumi.Input[builtins.str]] = None) -> 'Provision':
|
904
|
+
"""
|
905
|
+
Get an existing Provision resource's state with the given name, id, and optional extra
|
906
|
+
properties used to qualify the lookup.
|
907
|
+
|
908
|
+
:param str resource_name: The unique name of the resulting resource.
|
909
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
910
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
911
|
+
:param pulumi.Input[builtins.str] compartment_id: (Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the FamProvision in.
|
912
|
+
:param pulumi.Input[builtins.str] config_catalog_item_display_name: A display Name of the Catalog Item in the Catalog.
|
913
|
+
:param pulumi.Input[builtins.str] config_catalog_item_id: A [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Catalog Item to a file with key/value pairs to set up variables for createStack API.
|
914
|
+
:param pulumi.Input[builtins.str] config_catalog_item_listing_id: A listing ID of the Catalog Item in the Catalog.
|
915
|
+
:param pulumi.Input[builtins.str] config_catalog_item_listing_version: A listing version of the Catalog Item in the Catalog.
|
916
|
+
: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"}`
|
917
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['ProvisionDeployedResourceArgs', 'ProvisionDeployedResourceArgsDict']]]] deployed_resources: The deployed resources and their summary
|
918
|
+
:param pulumi.Input[builtins.str] display_name: (Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
919
|
+
:param pulumi.Input[builtins.str] fleet_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Fleet.
|
920
|
+
: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"}`
|
921
|
+
:param pulumi.Input[builtins.str] lifecycle_details: A message that describes the current state of the FamProvision in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
|
922
|
+
:param pulumi.Input[builtins.str] package_catalog_item_display_name: A display Name of the Catalog Item in the Catalog.
|
923
|
+
:param pulumi.Input[builtins.str] package_catalog_item_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Catalog Item.
|
924
|
+
:param pulumi.Input[builtins.str] package_catalog_item_listing_id: A listing ID of the Catalog Item in the Catalog.
|
925
|
+
:param pulumi.Input[builtins.str] package_catalog_item_listing_version: A listing version of the Catalog Item in the Catalog.
|
926
|
+
:param pulumi.Input[builtins.str] provision_description: (Updatable) A description of the provision.
|
927
|
+
:param pulumi.Input[builtins.str] rms_apply_job_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the RMS APPLY Job.
|
928
|
+
:param pulumi.Input[builtins.str] stack_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the RMS Stack.
|
929
|
+
:param pulumi.Input[builtins.str] state: The current state of the FamProvision.
|
930
|
+
: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"}`
|
931
|
+
:param pulumi.Input[Sequence[pulumi.Input[Union['ProvisionTfOutputArgs', 'ProvisionTfOutputArgsDict']]]] tf_outputs: Outputs from the pulumi up job
|
932
|
+
:param pulumi.Input[builtins.str] tf_variable_compartment_id: An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
|
933
|
+
:param pulumi.Input[builtins.str] tf_variable_current_user_id: An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
|
934
|
+
:param pulumi.Input[builtins.str] tf_variable_region_id: A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
|
935
|
+
:param pulumi.Input[builtins.str] tf_variable_tenancy_id: A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
|
936
|
+
|
937
|
+
|
938
|
+
** IMPORTANT **
|
939
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
940
|
+
:param pulumi.Input[builtins.str] time_created: The date and time the FamProvision was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
941
|
+
:param pulumi.Input[builtins.str] time_updated: The date and time the FamProvision was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
942
|
+
"""
|
943
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
944
|
+
|
945
|
+
__props__ = _ProvisionState.__new__(_ProvisionState)
|
946
|
+
|
947
|
+
__props__.__dict__["compartment_id"] = compartment_id
|
948
|
+
__props__.__dict__["config_catalog_item_display_name"] = config_catalog_item_display_name
|
949
|
+
__props__.__dict__["config_catalog_item_id"] = config_catalog_item_id
|
950
|
+
__props__.__dict__["config_catalog_item_listing_id"] = config_catalog_item_listing_id
|
951
|
+
__props__.__dict__["config_catalog_item_listing_version"] = config_catalog_item_listing_version
|
952
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
953
|
+
__props__.__dict__["deployed_resources"] = deployed_resources
|
954
|
+
__props__.__dict__["display_name"] = display_name
|
955
|
+
__props__.__dict__["fleet_id"] = fleet_id
|
956
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
957
|
+
__props__.__dict__["lifecycle_details"] = lifecycle_details
|
958
|
+
__props__.__dict__["package_catalog_item_display_name"] = package_catalog_item_display_name
|
959
|
+
__props__.__dict__["package_catalog_item_id"] = package_catalog_item_id
|
960
|
+
__props__.__dict__["package_catalog_item_listing_id"] = package_catalog_item_listing_id
|
961
|
+
__props__.__dict__["package_catalog_item_listing_version"] = package_catalog_item_listing_version
|
962
|
+
__props__.__dict__["provision_description"] = provision_description
|
963
|
+
__props__.__dict__["rms_apply_job_id"] = rms_apply_job_id
|
964
|
+
__props__.__dict__["stack_id"] = stack_id
|
965
|
+
__props__.__dict__["state"] = state
|
966
|
+
__props__.__dict__["system_tags"] = system_tags
|
967
|
+
__props__.__dict__["tf_outputs"] = tf_outputs
|
968
|
+
__props__.__dict__["tf_variable_compartment_id"] = tf_variable_compartment_id
|
969
|
+
__props__.__dict__["tf_variable_current_user_id"] = tf_variable_current_user_id
|
970
|
+
__props__.__dict__["tf_variable_region_id"] = tf_variable_region_id
|
971
|
+
__props__.__dict__["tf_variable_tenancy_id"] = tf_variable_tenancy_id
|
972
|
+
__props__.__dict__["time_created"] = time_created
|
973
|
+
__props__.__dict__["time_updated"] = time_updated
|
974
|
+
return Provision(resource_name, opts=opts, __props__=__props__)
|
975
|
+
|
976
|
+
@property
|
977
|
+
@pulumi.getter(name="compartmentId")
|
978
|
+
def compartment_id(self) -> pulumi.Output[builtins.str]:
|
979
|
+
"""
|
980
|
+
(Updatable) The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment to create the FamProvision in.
|
981
|
+
"""
|
982
|
+
return pulumi.get(self, "compartment_id")
|
983
|
+
|
984
|
+
@property
|
985
|
+
@pulumi.getter(name="configCatalogItemDisplayName")
|
986
|
+
def config_catalog_item_display_name(self) -> pulumi.Output[builtins.str]:
|
987
|
+
"""
|
988
|
+
A display Name of the Catalog Item in the Catalog.
|
989
|
+
"""
|
990
|
+
return pulumi.get(self, "config_catalog_item_display_name")
|
991
|
+
|
992
|
+
@property
|
993
|
+
@pulumi.getter(name="configCatalogItemId")
|
994
|
+
def config_catalog_item_id(self) -> pulumi.Output[builtins.str]:
|
995
|
+
"""
|
996
|
+
A [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Catalog Item to a file with key/value pairs to set up variables for createStack API.
|
997
|
+
"""
|
998
|
+
return pulumi.get(self, "config_catalog_item_id")
|
999
|
+
|
1000
|
+
@property
|
1001
|
+
@pulumi.getter(name="configCatalogItemListingId")
|
1002
|
+
def config_catalog_item_listing_id(self) -> pulumi.Output[builtins.str]:
|
1003
|
+
"""
|
1004
|
+
A listing ID of the Catalog Item in the Catalog.
|
1005
|
+
"""
|
1006
|
+
return pulumi.get(self, "config_catalog_item_listing_id")
|
1007
|
+
|
1008
|
+
@property
|
1009
|
+
@pulumi.getter(name="configCatalogItemListingVersion")
|
1010
|
+
def config_catalog_item_listing_version(self) -> pulumi.Output[builtins.str]:
|
1011
|
+
"""
|
1012
|
+
A listing version of the Catalog Item in the Catalog.
|
1013
|
+
"""
|
1014
|
+
return pulumi.get(self, "config_catalog_item_listing_version")
|
1015
|
+
|
1016
|
+
@property
|
1017
|
+
@pulumi.getter(name="definedTags")
|
1018
|
+
def defined_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
|
1019
|
+
"""
|
1020
|
+
(Updatable) Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
1021
|
+
"""
|
1022
|
+
return pulumi.get(self, "defined_tags")
|
1023
|
+
|
1024
|
+
@property
|
1025
|
+
@pulumi.getter(name="deployedResources")
|
1026
|
+
def deployed_resources(self) -> pulumi.Output[Sequence['outputs.ProvisionDeployedResource']]:
|
1027
|
+
"""
|
1028
|
+
The deployed resources and their summary
|
1029
|
+
"""
|
1030
|
+
return pulumi.get(self, "deployed_resources")
|
1031
|
+
|
1032
|
+
@property
|
1033
|
+
@pulumi.getter(name="displayName")
|
1034
|
+
def display_name(self) -> pulumi.Output[builtins.str]:
|
1035
|
+
"""
|
1036
|
+
(Updatable) A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
1037
|
+
"""
|
1038
|
+
return pulumi.get(self, "display_name")
|
1039
|
+
|
1040
|
+
@property
|
1041
|
+
@pulumi.getter(name="fleetId")
|
1042
|
+
def fleet_id(self) -> pulumi.Output[builtins.str]:
|
1043
|
+
"""
|
1044
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Fleet.
|
1045
|
+
"""
|
1046
|
+
return pulumi.get(self, "fleet_id")
|
1047
|
+
|
1048
|
+
@property
|
1049
|
+
@pulumi.getter(name="freeformTags")
|
1050
|
+
def freeform_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
|
1051
|
+
"""
|
1052
|
+
(Updatable) Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
1053
|
+
"""
|
1054
|
+
return pulumi.get(self, "freeform_tags")
|
1055
|
+
|
1056
|
+
@property
|
1057
|
+
@pulumi.getter(name="lifecycleDetails")
|
1058
|
+
def lifecycle_details(self) -> pulumi.Output[builtins.str]:
|
1059
|
+
"""
|
1060
|
+
A message that describes the current state of the FamProvision in more detail. For example, can be used to provide actionable information for a resource in the Failed state.
|
1061
|
+
"""
|
1062
|
+
return pulumi.get(self, "lifecycle_details")
|
1063
|
+
|
1064
|
+
@property
|
1065
|
+
@pulumi.getter(name="packageCatalogItemDisplayName")
|
1066
|
+
def package_catalog_item_display_name(self) -> pulumi.Output[builtins.str]:
|
1067
|
+
"""
|
1068
|
+
A display Name of the Catalog Item in the Catalog.
|
1069
|
+
"""
|
1070
|
+
return pulumi.get(self, "package_catalog_item_display_name")
|
1071
|
+
|
1072
|
+
@property
|
1073
|
+
@pulumi.getter(name="packageCatalogItemId")
|
1074
|
+
def package_catalog_item_id(self) -> pulumi.Output[builtins.str]:
|
1075
|
+
"""
|
1076
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the Catalog Item.
|
1077
|
+
"""
|
1078
|
+
return pulumi.get(self, "package_catalog_item_id")
|
1079
|
+
|
1080
|
+
@property
|
1081
|
+
@pulumi.getter(name="packageCatalogItemListingId")
|
1082
|
+
def package_catalog_item_listing_id(self) -> pulumi.Output[builtins.str]:
|
1083
|
+
"""
|
1084
|
+
A listing ID of the Catalog Item in the Catalog.
|
1085
|
+
"""
|
1086
|
+
return pulumi.get(self, "package_catalog_item_listing_id")
|
1087
|
+
|
1088
|
+
@property
|
1089
|
+
@pulumi.getter(name="packageCatalogItemListingVersion")
|
1090
|
+
def package_catalog_item_listing_version(self) -> pulumi.Output[builtins.str]:
|
1091
|
+
"""
|
1092
|
+
A listing version of the Catalog Item in the Catalog.
|
1093
|
+
"""
|
1094
|
+
return pulumi.get(self, "package_catalog_item_listing_version")
|
1095
|
+
|
1096
|
+
@property
|
1097
|
+
@pulumi.getter(name="provisionDescription")
|
1098
|
+
def provision_description(self) -> pulumi.Output[builtins.str]:
|
1099
|
+
"""
|
1100
|
+
(Updatable) A description of the provision.
|
1101
|
+
"""
|
1102
|
+
return pulumi.get(self, "provision_description")
|
1103
|
+
|
1104
|
+
@property
|
1105
|
+
@pulumi.getter(name="rmsApplyJobId")
|
1106
|
+
def rms_apply_job_id(self) -> pulumi.Output[builtins.str]:
|
1107
|
+
"""
|
1108
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the RMS APPLY Job.
|
1109
|
+
"""
|
1110
|
+
return pulumi.get(self, "rms_apply_job_id")
|
1111
|
+
|
1112
|
+
@property
|
1113
|
+
@pulumi.getter(name="stackId")
|
1114
|
+
def stack_id(self) -> pulumi.Output[builtins.str]:
|
1115
|
+
"""
|
1116
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the RMS Stack.
|
1117
|
+
"""
|
1118
|
+
return pulumi.get(self, "stack_id")
|
1119
|
+
|
1120
|
+
@property
|
1121
|
+
@pulumi.getter
|
1122
|
+
def state(self) -> pulumi.Output[builtins.str]:
|
1123
|
+
"""
|
1124
|
+
The current state of the FamProvision.
|
1125
|
+
"""
|
1126
|
+
return pulumi.get(self, "state")
|
1127
|
+
|
1128
|
+
@property
|
1129
|
+
@pulumi.getter(name="systemTags")
|
1130
|
+
def system_tags(self) -> pulumi.Output[Mapping[str, builtins.str]]:
|
1131
|
+
"""
|
1132
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
1133
|
+
"""
|
1134
|
+
return pulumi.get(self, "system_tags")
|
1135
|
+
|
1136
|
+
@property
|
1137
|
+
@pulumi.getter(name="tfOutputs")
|
1138
|
+
def tf_outputs(self) -> pulumi.Output[Sequence['outputs.ProvisionTfOutput']]:
|
1139
|
+
"""
|
1140
|
+
Outputs from the pulumi up job
|
1141
|
+
"""
|
1142
|
+
return pulumi.get(self, "tf_outputs")
|
1143
|
+
|
1144
|
+
@property
|
1145
|
+
@pulumi.getter(name="tfVariableCompartmentId")
|
1146
|
+
def tf_variable_compartment_id(self) -> pulumi.Output[builtins.str]:
|
1147
|
+
"""
|
1148
|
+
An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
|
1149
|
+
"""
|
1150
|
+
return pulumi.get(self, "tf_variable_compartment_id")
|
1151
|
+
|
1152
|
+
@property
|
1153
|
+
@pulumi.getter(name="tfVariableCurrentUserId")
|
1154
|
+
def tf_variable_current_user_id(self) -> pulumi.Output[builtins.str]:
|
1155
|
+
"""
|
1156
|
+
An optional variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
|
1157
|
+
"""
|
1158
|
+
return pulumi.get(self, "tf_variable_current_user_id")
|
1159
|
+
|
1160
|
+
@property
|
1161
|
+
@pulumi.getter(name="tfVariableRegionId")
|
1162
|
+
def tf_variable_region_id(self) -> pulumi.Output[builtins.str]:
|
1163
|
+
"""
|
1164
|
+
A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
|
1165
|
+
"""
|
1166
|
+
return pulumi.get(self, "tf_variable_region_id")
|
1167
|
+
|
1168
|
+
@property
|
1169
|
+
@pulumi.getter(name="tfVariableTenancyId")
|
1170
|
+
def tf_variable_tenancy_id(self) -> pulumi.Output[builtins.str]:
|
1171
|
+
"""
|
1172
|
+
A mandatory variable added to a list of RMS variables for createStack API. Overrides the one supplied in configuration file.
|
1173
|
+
|
1174
|
+
|
1175
|
+
** IMPORTANT **
|
1176
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
1177
|
+
"""
|
1178
|
+
return pulumi.get(self, "tf_variable_tenancy_id")
|
1179
|
+
|
1180
|
+
@property
|
1181
|
+
@pulumi.getter(name="timeCreated")
|
1182
|
+
def time_created(self) -> pulumi.Output[builtins.str]:
|
1183
|
+
"""
|
1184
|
+
The date and time the FamProvision was created, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
1185
|
+
"""
|
1186
|
+
return pulumi.get(self, "time_created")
|
1187
|
+
|
1188
|
+
@property
|
1189
|
+
@pulumi.getter(name="timeUpdated")
|
1190
|
+
def time_updated(self) -> pulumi.Output[builtins.str]:
|
1191
|
+
"""
|
1192
|
+
The date and time the FamProvision was updated, in the format defined by [RFC 3339](https://tools.ietf.org/html/rfc3339). Example: `2016-08-25T21:10:29.600Z`
|
1193
|
+
"""
|
1194
|
+
return pulumi.get(self, "time_updated")
|
1195
|
+
|