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