pulumi-oci 3.0.0__py3-none-any.whl → 3.1.0__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.0.0.dist-info → pulumi_oci-3.1.0.dist-info}/METADATA +1 -1
- {pulumi_oci-3.0.0.dist-info → pulumi_oci-3.1.0.dist-info}/RECORD +282 -141
- {pulumi_oci-3.0.0.dist-info → pulumi_oci-3.1.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.0.0.dist-info → pulumi_oci-3.1.0.dist-info}/top_level.txt +0 -0
@@ -29,10 +29,13 @@ class GetAnnouncementsResult:
|
|
29
29
|
"""
|
30
30
|
A collection of values returned by getAnnouncements.
|
31
31
|
"""
|
32
|
-
def __init__(__self__, announcement_collections=None, display_name=None, filters=None, id=None, summary_contains=None):
|
32
|
+
def __init__(__self__, announcement_collections=None, compartment_id=None, display_name=None, filters=None, id=None, summary_contains=None):
|
33
33
|
if announcement_collections and not isinstance(announcement_collections, list):
|
34
34
|
raise TypeError("Expected argument 'announcement_collections' to be a list")
|
35
35
|
pulumi.set(__self__, "announcement_collections", announcement_collections)
|
36
|
+
if compartment_id and not isinstance(compartment_id, str):
|
37
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
38
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
36
39
|
if display_name and not isinstance(display_name, str):
|
37
40
|
raise TypeError("Expected argument 'display_name' to be a str")
|
38
41
|
pulumi.set(__self__, "display_name", display_name)
|
@@ -54,6 +57,14 @@ class GetAnnouncementsResult:
|
|
54
57
|
"""
|
55
58
|
return pulumi.get(self, "announcement_collections")
|
56
59
|
|
60
|
+
@property
|
61
|
+
@pulumi.getter(name="compartmentId")
|
62
|
+
def compartment_id(self) -> builtins.str:
|
63
|
+
"""
|
64
|
+
Tenancy OCID
|
65
|
+
"""
|
66
|
+
return pulumi.get(self, "compartment_id")
|
67
|
+
|
57
68
|
@property
|
58
69
|
@pulumi.getter(name="displayName")
|
59
70
|
def display_name(self) -> Optional[builtins.str]:
|
@@ -88,20 +99,22 @@ class AwaitableGetAnnouncementsResult(GetAnnouncementsResult):
|
|
88
99
|
yield self
|
89
100
|
return GetAnnouncementsResult(
|
90
101
|
announcement_collections=self.announcement_collections,
|
102
|
+
compartment_id=self.compartment_id,
|
91
103
|
display_name=self.display_name,
|
92
104
|
filters=self.filters,
|
93
105
|
id=self.id,
|
94
106
|
summary_contains=self.summary_contains)
|
95
107
|
|
96
108
|
|
97
|
-
def get_announcements(
|
109
|
+
def get_announcements(compartment_id: Optional[builtins.str] = None,
|
110
|
+
display_name: Optional[builtins.str] = None,
|
98
111
|
filters: Optional[Sequence[Union['GetAnnouncementsFilterArgs', 'GetAnnouncementsFilterArgsDict']]] = None,
|
99
112
|
summary_contains: Optional[builtins.str] = None,
|
100
113
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetAnnouncementsResult:
|
101
114
|
"""
|
102
115
|
This data source provides the list of Announcements in Oracle Cloud Infrastructure Fleet Apps Management service.
|
103
116
|
|
104
|
-
Return a list of
|
117
|
+
Return a list of Announcement Summary items in a tenancy.
|
105
118
|
|
106
119
|
## Example Usage
|
107
120
|
|
@@ -109,15 +122,18 @@ def get_announcements(display_name: Optional[builtins.str] = None,
|
|
109
122
|
import pulumi
|
110
123
|
import pulumi_oci as oci
|
111
124
|
|
112
|
-
test_announcements = oci.FleetAppsManagement.get_announcements(
|
125
|
+
test_announcements = oci.FleetAppsManagement.get_announcements(compartment_id=compartment_id,
|
126
|
+
display_name=announcement_display_name,
|
113
127
|
summary_contains=announcement_summary_contains)
|
114
128
|
```
|
115
129
|
|
116
130
|
|
131
|
+
:param builtins.str compartment_id: The ID of the compartment in which to list resources.
|
117
132
|
:param builtins.str display_name: A filter to return only resources that match the entire display name given.
|
118
133
|
:param builtins.str summary_contains: Filter the list of announcements that contains the given summary value.
|
119
134
|
"""
|
120
135
|
__args__ = dict()
|
136
|
+
__args__['compartmentId'] = compartment_id
|
121
137
|
__args__['displayName'] = display_name
|
122
138
|
__args__['filters'] = filters
|
123
139
|
__args__['summaryContains'] = summary_contains
|
@@ -126,18 +142,20 @@ def get_announcements(display_name: Optional[builtins.str] = None,
|
|
126
142
|
|
127
143
|
return AwaitableGetAnnouncementsResult(
|
128
144
|
announcement_collections=pulumi.get(__ret__, 'announcement_collections'),
|
145
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
129
146
|
display_name=pulumi.get(__ret__, 'display_name'),
|
130
147
|
filters=pulumi.get(__ret__, 'filters'),
|
131
148
|
id=pulumi.get(__ret__, 'id'),
|
132
149
|
summary_contains=pulumi.get(__ret__, 'summary_contains'))
|
133
|
-
def get_announcements_output(
|
150
|
+
def get_announcements_output(compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
151
|
+
display_name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
134
152
|
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetAnnouncementsFilterArgs', 'GetAnnouncementsFilterArgsDict']]]]] = None,
|
135
153
|
summary_contains: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
136
154
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetAnnouncementsResult]:
|
137
155
|
"""
|
138
156
|
This data source provides the list of Announcements in Oracle Cloud Infrastructure Fleet Apps Management service.
|
139
157
|
|
140
|
-
Return a list of
|
158
|
+
Return a list of Announcement Summary items in a tenancy.
|
141
159
|
|
142
160
|
## Example Usage
|
143
161
|
|
@@ -145,15 +163,18 @@ def get_announcements_output(display_name: Optional[pulumi.Input[Optional[builti
|
|
145
163
|
import pulumi
|
146
164
|
import pulumi_oci as oci
|
147
165
|
|
148
|
-
test_announcements = oci.FleetAppsManagement.get_announcements(
|
166
|
+
test_announcements = oci.FleetAppsManagement.get_announcements(compartment_id=compartment_id,
|
167
|
+
display_name=announcement_display_name,
|
149
168
|
summary_contains=announcement_summary_contains)
|
150
169
|
```
|
151
170
|
|
152
171
|
|
172
|
+
:param builtins.str compartment_id: The ID of the compartment in which to list resources.
|
153
173
|
:param builtins.str display_name: A filter to return only resources that match the entire display name given.
|
154
174
|
:param builtins.str summary_contains: Filter the list of announcements that contains the given summary value.
|
155
175
|
"""
|
156
176
|
__args__ = dict()
|
177
|
+
__args__['compartmentId'] = compartment_id
|
157
178
|
__args__['displayName'] = display_name
|
158
179
|
__args__['filters'] = filters
|
159
180
|
__args__['summaryContains'] = summary_contains
|
@@ -161,6 +182,7 @@ def get_announcements_output(display_name: Optional[pulumi.Input[Optional[builti
|
|
161
182
|
__ret__ = pulumi.runtime.invoke_output('oci:FleetAppsManagement/getAnnouncements:getAnnouncements', __args__, opts=opts, typ=GetAnnouncementsResult)
|
162
183
|
return __ret__.apply(lambda __response__: GetAnnouncementsResult(
|
163
184
|
announcement_collections=pulumi.get(__response__, 'announcement_collections'),
|
185
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
164
186
|
display_name=pulumi.get(__response__, 'display_name'),
|
165
187
|
filters=pulumi.get(__response__, 'filters'),
|
166
188
|
id=pulumi.get(__response__, 'id'),
|
@@ -0,0 +1,434 @@
|
|
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
|
+
|
19
|
+
__all__ = [
|
20
|
+
'GetCatalogItemResult',
|
21
|
+
'AwaitableGetCatalogItemResult',
|
22
|
+
'get_catalog_item',
|
23
|
+
'get_catalog_item_output',
|
24
|
+
]
|
25
|
+
|
26
|
+
@pulumi.output_type
|
27
|
+
class GetCatalogItemResult:
|
28
|
+
"""
|
29
|
+
A collection of values returned by getCatalogItem.
|
30
|
+
"""
|
31
|
+
def __init__(__self__, catalog_item_id=None, catalog_result_payloads=None, catalog_source_payloads=None, clone_catalog_item_trigger=None, compartment_id=None, config_source_type=None, defined_tags=None, description=None, display_name=None, freeform_tags=None, id=None, lifecycle_details=None, listing_id=None, listing_version=None, package_type=None, short_description=None, should_list_public_items=None, state=None, system_tags=None, time_backfill_last_checked=None, time_created=None, time_last_checked=None, time_released=None, time_updated=None, version_description=None):
|
32
|
+
if catalog_item_id and not isinstance(catalog_item_id, str):
|
33
|
+
raise TypeError("Expected argument 'catalog_item_id' to be a str")
|
34
|
+
pulumi.set(__self__, "catalog_item_id", catalog_item_id)
|
35
|
+
if catalog_result_payloads and not isinstance(catalog_result_payloads, list):
|
36
|
+
raise TypeError("Expected argument 'catalog_result_payloads' to be a list")
|
37
|
+
pulumi.set(__self__, "catalog_result_payloads", catalog_result_payloads)
|
38
|
+
if catalog_source_payloads and not isinstance(catalog_source_payloads, list):
|
39
|
+
raise TypeError("Expected argument 'catalog_source_payloads' to be a list")
|
40
|
+
pulumi.set(__self__, "catalog_source_payloads", catalog_source_payloads)
|
41
|
+
if clone_catalog_item_trigger and not isinstance(clone_catalog_item_trigger, int):
|
42
|
+
raise TypeError("Expected argument 'clone_catalog_item_trigger' to be a int")
|
43
|
+
pulumi.set(__self__, "clone_catalog_item_trigger", clone_catalog_item_trigger)
|
44
|
+
if compartment_id and not isinstance(compartment_id, str):
|
45
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
46
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
47
|
+
if config_source_type and not isinstance(config_source_type, str):
|
48
|
+
raise TypeError("Expected argument 'config_source_type' to be a str")
|
49
|
+
pulumi.set(__self__, "config_source_type", config_source_type)
|
50
|
+
if defined_tags and not isinstance(defined_tags, dict):
|
51
|
+
raise TypeError("Expected argument 'defined_tags' to be a dict")
|
52
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
53
|
+
if description and not isinstance(description, str):
|
54
|
+
raise TypeError("Expected argument 'description' to be a str")
|
55
|
+
pulumi.set(__self__, "description", description)
|
56
|
+
if display_name and not isinstance(display_name, str):
|
57
|
+
raise TypeError("Expected argument 'display_name' to be a str")
|
58
|
+
pulumi.set(__self__, "display_name", display_name)
|
59
|
+
if freeform_tags and not isinstance(freeform_tags, dict):
|
60
|
+
raise TypeError("Expected argument 'freeform_tags' to be a dict")
|
61
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
62
|
+
if id and not isinstance(id, str):
|
63
|
+
raise TypeError("Expected argument 'id' to be a str")
|
64
|
+
pulumi.set(__self__, "id", id)
|
65
|
+
if lifecycle_details and not isinstance(lifecycle_details, str):
|
66
|
+
raise TypeError("Expected argument 'lifecycle_details' to be a str")
|
67
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
68
|
+
if listing_id and not isinstance(listing_id, str):
|
69
|
+
raise TypeError("Expected argument 'listing_id' to be a str")
|
70
|
+
pulumi.set(__self__, "listing_id", listing_id)
|
71
|
+
if listing_version and not isinstance(listing_version, str):
|
72
|
+
raise TypeError("Expected argument 'listing_version' to be a str")
|
73
|
+
pulumi.set(__self__, "listing_version", listing_version)
|
74
|
+
if package_type and not isinstance(package_type, str):
|
75
|
+
raise TypeError("Expected argument 'package_type' to be a str")
|
76
|
+
pulumi.set(__self__, "package_type", package_type)
|
77
|
+
if short_description and not isinstance(short_description, str):
|
78
|
+
raise TypeError("Expected argument 'short_description' to be a str")
|
79
|
+
pulumi.set(__self__, "short_description", short_description)
|
80
|
+
if should_list_public_items and not isinstance(should_list_public_items, bool):
|
81
|
+
raise TypeError("Expected argument 'should_list_public_items' to be a bool")
|
82
|
+
pulumi.set(__self__, "should_list_public_items", should_list_public_items)
|
83
|
+
if state and not isinstance(state, str):
|
84
|
+
raise TypeError("Expected argument 'state' to be a str")
|
85
|
+
pulumi.set(__self__, "state", state)
|
86
|
+
if system_tags and not isinstance(system_tags, dict):
|
87
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
88
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
89
|
+
if time_backfill_last_checked and not isinstance(time_backfill_last_checked, str):
|
90
|
+
raise TypeError("Expected argument 'time_backfill_last_checked' to be a str")
|
91
|
+
pulumi.set(__self__, "time_backfill_last_checked", time_backfill_last_checked)
|
92
|
+
if time_created and not isinstance(time_created, str):
|
93
|
+
raise TypeError("Expected argument 'time_created' to be a str")
|
94
|
+
pulumi.set(__self__, "time_created", time_created)
|
95
|
+
if time_last_checked and not isinstance(time_last_checked, str):
|
96
|
+
raise TypeError("Expected argument 'time_last_checked' to be a str")
|
97
|
+
pulumi.set(__self__, "time_last_checked", time_last_checked)
|
98
|
+
if time_released and not isinstance(time_released, str):
|
99
|
+
raise TypeError("Expected argument 'time_released' to be a str")
|
100
|
+
pulumi.set(__self__, "time_released", time_released)
|
101
|
+
if time_updated and not isinstance(time_updated, str):
|
102
|
+
raise TypeError("Expected argument 'time_updated' to be a str")
|
103
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
104
|
+
if version_description and not isinstance(version_description, str):
|
105
|
+
raise TypeError("Expected argument 'version_description' to be a str")
|
106
|
+
pulumi.set(__self__, "version_description", version_description)
|
107
|
+
|
108
|
+
@property
|
109
|
+
@pulumi.getter(name="catalogItemId")
|
110
|
+
def catalog_item_id(self) -> builtins.str:
|
111
|
+
return pulumi.get(self, "catalog_item_id")
|
112
|
+
|
113
|
+
@property
|
114
|
+
@pulumi.getter(name="catalogResultPayloads")
|
115
|
+
def catalog_result_payloads(self) -> Sequence['outputs.GetCatalogItemCatalogResultPayloadResult']:
|
116
|
+
"""
|
117
|
+
Catalog result payload.
|
118
|
+
"""
|
119
|
+
return pulumi.get(self, "catalog_result_payloads")
|
120
|
+
|
121
|
+
@property
|
122
|
+
@pulumi.getter(name="catalogSourcePayloads")
|
123
|
+
def catalog_source_payloads(self) -> Sequence['outputs.GetCatalogItemCatalogSourcePayloadResult']:
|
124
|
+
"""
|
125
|
+
Catalog source payload.
|
126
|
+
"""
|
127
|
+
return pulumi.get(self, "catalog_source_payloads")
|
128
|
+
|
129
|
+
@property
|
130
|
+
@pulumi.getter(name="cloneCatalogItemTrigger")
|
131
|
+
def clone_catalog_item_trigger(self) -> builtins.int:
|
132
|
+
return pulumi.get(self, "clone_catalog_item_trigger")
|
133
|
+
|
134
|
+
@property
|
135
|
+
@pulumi.getter(name="compartmentId")
|
136
|
+
def compartment_id(self) -> builtins.str:
|
137
|
+
"""
|
138
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the compartment.
|
139
|
+
"""
|
140
|
+
return pulumi.get(self, "compartment_id")
|
141
|
+
|
142
|
+
@property
|
143
|
+
@pulumi.getter(name="configSourceType")
|
144
|
+
def config_source_type(self) -> builtins.str:
|
145
|
+
"""
|
146
|
+
Config source type Eg: STACK_TEMPLATE_CATALOG_SOURCE, PAR_CATALOG_SOURCE, GIT_CATALOG_SOURCE, MARKETPLACE_CATALOG_SOURCE.
|
147
|
+
"""
|
148
|
+
return pulumi.get(self, "config_source_type")
|
149
|
+
|
150
|
+
@property
|
151
|
+
@pulumi.getter(name="definedTags")
|
152
|
+
def defined_tags(self) -> Mapping[str, builtins.str]:
|
153
|
+
"""
|
154
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
155
|
+
"""
|
156
|
+
return pulumi.get(self, "defined_tags")
|
157
|
+
|
158
|
+
@property
|
159
|
+
@pulumi.getter
|
160
|
+
def description(self) -> builtins.str:
|
161
|
+
"""
|
162
|
+
Description about the catalog item.
|
163
|
+
"""
|
164
|
+
return pulumi.get(self, "description")
|
165
|
+
|
166
|
+
@property
|
167
|
+
@pulumi.getter(name="displayName")
|
168
|
+
def display_name(self) -> builtins.str:
|
169
|
+
"""
|
170
|
+
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information.
|
171
|
+
"""
|
172
|
+
return pulumi.get(self, "display_name")
|
173
|
+
|
174
|
+
@property
|
175
|
+
@pulumi.getter(name="freeformTags")
|
176
|
+
def freeform_tags(self) -> Mapping[str, builtins.str]:
|
177
|
+
"""
|
178
|
+
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
179
|
+
"""
|
180
|
+
return pulumi.get(self, "freeform_tags")
|
181
|
+
|
182
|
+
@property
|
183
|
+
@pulumi.getter
|
184
|
+
def id(self) -> builtins.str:
|
185
|
+
"""
|
186
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the catalog.
|
187
|
+
"""
|
188
|
+
return pulumi.get(self, "id")
|
189
|
+
|
190
|
+
@property
|
191
|
+
@pulumi.getter(name="lifecycleDetails")
|
192
|
+
def lifecycle_details(self) -> builtins.str:
|
193
|
+
"""
|
194
|
+
The details of lifecycle state CatalogItem.
|
195
|
+
"""
|
196
|
+
return pulumi.get(self, "lifecycle_details")
|
197
|
+
|
198
|
+
@property
|
199
|
+
@pulumi.getter(name="listingId")
|
200
|
+
def listing_id(self) -> builtins.str:
|
201
|
+
"""
|
202
|
+
The catalog listing Id.
|
203
|
+
"""
|
204
|
+
return pulumi.get(self, "listing_id")
|
205
|
+
|
206
|
+
@property
|
207
|
+
@pulumi.getter(name="listingVersion")
|
208
|
+
def listing_version(self) -> builtins.str:
|
209
|
+
"""
|
210
|
+
The catalog package version.
|
211
|
+
"""
|
212
|
+
return pulumi.get(self, "listing_version")
|
213
|
+
|
214
|
+
@property
|
215
|
+
@pulumi.getter(name="packageType")
|
216
|
+
def package_type(self) -> builtins.str:
|
217
|
+
"""
|
218
|
+
Config package type Eg: TF_PACKAGE, NON_TF_PACKAGE, CONFIG_FILE.
|
219
|
+
"""
|
220
|
+
return pulumi.get(self, "package_type")
|
221
|
+
|
222
|
+
@property
|
223
|
+
@pulumi.getter(name="shortDescription")
|
224
|
+
def short_description(self) -> builtins.str:
|
225
|
+
"""
|
226
|
+
Short description about the catalog item.
|
227
|
+
"""
|
228
|
+
return pulumi.get(self, "short_description")
|
229
|
+
|
230
|
+
@property
|
231
|
+
@pulumi.getter(name="shouldListPublicItems")
|
232
|
+
def should_list_public_items(self) -> builtins.bool:
|
233
|
+
"""
|
234
|
+
The indicator to append Public Items from the root compartment to any query, when set to TRUE.
|
235
|
+
"""
|
236
|
+
return pulumi.get(self, "should_list_public_items")
|
237
|
+
|
238
|
+
@property
|
239
|
+
@pulumi.getter
|
240
|
+
def state(self) -> builtins.str:
|
241
|
+
"""
|
242
|
+
The current state of the CatalogItem.
|
243
|
+
"""
|
244
|
+
return pulumi.get(self, "state")
|
245
|
+
|
246
|
+
@property
|
247
|
+
@pulumi.getter(name="systemTags")
|
248
|
+
def system_tags(self) -> Mapping[str, builtins.str]:
|
249
|
+
"""
|
250
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
251
|
+
"""
|
252
|
+
return pulumi.get(self, "system_tags")
|
253
|
+
|
254
|
+
@property
|
255
|
+
@pulumi.getter(name="timeBackfillLastChecked")
|
256
|
+
def time_backfill_last_checked(self) -> builtins.str:
|
257
|
+
"""
|
258
|
+
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`
|
259
|
+
"""
|
260
|
+
return pulumi.get(self, "time_backfill_last_checked")
|
261
|
+
|
262
|
+
@property
|
263
|
+
@pulumi.getter(name="timeCreated")
|
264
|
+
def time_created(self) -> builtins.str:
|
265
|
+
"""
|
266
|
+
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`
|
267
|
+
"""
|
268
|
+
return pulumi.get(self, "time_created")
|
269
|
+
|
270
|
+
@property
|
271
|
+
@pulumi.getter(name="timeLastChecked")
|
272
|
+
def time_last_checked(self) -> builtins.str:
|
273
|
+
"""
|
274
|
+
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`
|
275
|
+
"""
|
276
|
+
return pulumi.get(self, "time_last_checked")
|
277
|
+
|
278
|
+
@property
|
279
|
+
@pulumi.getter(name="timeReleased")
|
280
|
+
def time_released(self) -> builtins.str:
|
281
|
+
"""
|
282
|
+
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`
|
283
|
+
"""
|
284
|
+
return pulumi.get(self, "time_released")
|
285
|
+
|
286
|
+
@property
|
287
|
+
@pulumi.getter(name="timeUpdated")
|
288
|
+
def time_updated(self) -> builtins.str:
|
289
|
+
"""
|
290
|
+
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`
|
291
|
+
"""
|
292
|
+
return pulumi.get(self, "time_updated")
|
293
|
+
|
294
|
+
@property
|
295
|
+
@pulumi.getter(name="versionDescription")
|
296
|
+
def version_description(self) -> builtins.str:
|
297
|
+
"""
|
298
|
+
Version description about the catalog item.
|
299
|
+
"""
|
300
|
+
return pulumi.get(self, "version_description")
|
301
|
+
|
302
|
+
|
303
|
+
class AwaitableGetCatalogItemResult(GetCatalogItemResult):
|
304
|
+
# pylint: disable=using-constant-test
|
305
|
+
def __await__(self):
|
306
|
+
if False:
|
307
|
+
yield self
|
308
|
+
return GetCatalogItemResult(
|
309
|
+
catalog_item_id=self.catalog_item_id,
|
310
|
+
catalog_result_payloads=self.catalog_result_payloads,
|
311
|
+
catalog_source_payloads=self.catalog_source_payloads,
|
312
|
+
clone_catalog_item_trigger=self.clone_catalog_item_trigger,
|
313
|
+
compartment_id=self.compartment_id,
|
314
|
+
config_source_type=self.config_source_type,
|
315
|
+
defined_tags=self.defined_tags,
|
316
|
+
description=self.description,
|
317
|
+
display_name=self.display_name,
|
318
|
+
freeform_tags=self.freeform_tags,
|
319
|
+
id=self.id,
|
320
|
+
lifecycle_details=self.lifecycle_details,
|
321
|
+
listing_id=self.listing_id,
|
322
|
+
listing_version=self.listing_version,
|
323
|
+
package_type=self.package_type,
|
324
|
+
short_description=self.short_description,
|
325
|
+
should_list_public_items=self.should_list_public_items,
|
326
|
+
state=self.state,
|
327
|
+
system_tags=self.system_tags,
|
328
|
+
time_backfill_last_checked=self.time_backfill_last_checked,
|
329
|
+
time_created=self.time_created,
|
330
|
+
time_last_checked=self.time_last_checked,
|
331
|
+
time_released=self.time_released,
|
332
|
+
time_updated=self.time_updated,
|
333
|
+
version_description=self.version_description)
|
334
|
+
|
335
|
+
|
336
|
+
def get_catalog_item(catalog_item_id: Optional[builtins.str] = None,
|
337
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetCatalogItemResult:
|
338
|
+
"""
|
339
|
+
This data source provides details about a specific Catalog Item resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
340
|
+
|
341
|
+
Gets information about a CatalogItem.
|
342
|
+
|
343
|
+
## Example Usage
|
344
|
+
|
345
|
+
```python
|
346
|
+
import pulumi
|
347
|
+
import pulumi_oci as oci
|
348
|
+
|
349
|
+
test_catalog_item = oci.FleetAppsManagement.get_catalog_item(catalog_item_id=test_catalog_item_oci_fleet_apps_management_catalog_item["id"])
|
350
|
+
```
|
351
|
+
|
352
|
+
|
353
|
+
:param builtins.str catalog_item_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the CatalogItem.
|
354
|
+
"""
|
355
|
+
__args__ = dict()
|
356
|
+
__args__['catalogItemId'] = catalog_item_id
|
357
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
358
|
+
__ret__ = pulumi.runtime.invoke('oci:FleetAppsManagement/getCatalogItem:getCatalogItem', __args__, opts=opts, typ=GetCatalogItemResult).value
|
359
|
+
|
360
|
+
return AwaitableGetCatalogItemResult(
|
361
|
+
catalog_item_id=pulumi.get(__ret__, 'catalog_item_id'),
|
362
|
+
catalog_result_payloads=pulumi.get(__ret__, 'catalog_result_payloads'),
|
363
|
+
catalog_source_payloads=pulumi.get(__ret__, 'catalog_source_payloads'),
|
364
|
+
clone_catalog_item_trigger=pulumi.get(__ret__, 'clone_catalog_item_trigger'),
|
365
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
366
|
+
config_source_type=pulumi.get(__ret__, 'config_source_type'),
|
367
|
+
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
368
|
+
description=pulumi.get(__ret__, 'description'),
|
369
|
+
display_name=pulumi.get(__ret__, 'display_name'),
|
370
|
+
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
371
|
+
id=pulumi.get(__ret__, 'id'),
|
372
|
+
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
373
|
+
listing_id=pulumi.get(__ret__, 'listing_id'),
|
374
|
+
listing_version=pulumi.get(__ret__, 'listing_version'),
|
375
|
+
package_type=pulumi.get(__ret__, 'package_type'),
|
376
|
+
short_description=pulumi.get(__ret__, 'short_description'),
|
377
|
+
should_list_public_items=pulumi.get(__ret__, 'should_list_public_items'),
|
378
|
+
state=pulumi.get(__ret__, 'state'),
|
379
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
380
|
+
time_backfill_last_checked=pulumi.get(__ret__, 'time_backfill_last_checked'),
|
381
|
+
time_created=pulumi.get(__ret__, 'time_created'),
|
382
|
+
time_last_checked=pulumi.get(__ret__, 'time_last_checked'),
|
383
|
+
time_released=pulumi.get(__ret__, 'time_released'),
|
384
|
+
time_updated=pulumi.get(__ret__, 'time_updated'),
|
385
|
+
version_description=pulumi.get(__ret__, 'version_description'))
|
386
|
+
def get_catalog_item_output(catalog_item_id: Optional[pulumi.Input[builtins.str]] = None,
|
387
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetCatalogItemResult]:
|
388
|
+
"""
|
389
|
+
This data source provides details about a specific Catalog Item resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
390
|
+
|
391
|
+
Gets information about a CatalogItem.
|
392
|
+
|
393
|
+
## Example Usage
|
394
|
+
|
395
|
+
```python
|
396
|
+
import pulumi
|
397
|
+
import pulumi_oci as oci
|
398
|
+
|
399
|
+
test_catalog_item = oci.FleetAppsManagement.get_catalog_item(catalog_item_id=test_catalog_item_oci_fleet_apps_management_catalog_item["id"])
|
400
|
+
```
|
401
|
+
|
402
|
+
|
403
|
+
:param builtins.str catalog_item_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the CatalogItem.
|
404
|
+
"""
|
405
|
+
__args__ = dict()
|
406
|
+
__args__['catalogItemId'] = catalog_item_id
|
407
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
408
|
+
__ret__ = pulumi.runtime.invoke_output('oci:FleetAppsManagement/getCatalogItem:getCatalogItem', __args__, opts=opts, typ=GetCatalogItemResult)
|
409
|
+
return __ret__.apply(lambda __response__: GetCatalogItemResult(
|
410
|
+
catalog_item_id=pulumi.get(__response__, 'catalog_item_id'),
|
411
|
+
catalog_result_payloads=pulumi.get(__response__, 'catalog_result_payloads'),
|
412
|
+
catalog_source_payloads=pulumi.get(__response__, 'catalog_source_payloads'),
|
413
|
+
clone_catalog_item_trigger=pulumi.get(__response__, 'clone_catalog_item_trigger'),
|
414
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
415
|
+
config_source_type=pulumi.get(__response__, 'config_source_type'),
|
416
|
+
defined_tags=pulumi.get(__response__, 'defined_tags'),
|
417
|
+
description=pulumi.get(__response__, 'description'),
|
418
|
+
display_name=pulumi.get(__response__, 'display_name'),
|
419
|
+
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
420
|
+
id=pulumi.get(__response__, 'id'),
|
421
|
+
lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
|
422
|
+
listing_id=pulumi.get(__response__, 'listing_id'),
|
423
|
+
listing_version=pulumi.get(__response__, 'listing_version'),
|
424
|
+
package_type=pulumi.get(__response__, 'package_type'),
|
425
|
+
short_description=pulumi.get(__response__, 'short_description'),
|
426
|
+
should_list_public_items=pulumi.get(__response__, 'should_list_public_items'),
|
427
|
+
state=pulumi.get(__response__, 'state'),
|
428
|
+
system_tags=pulumi.get(__response__, 'system_tags'),
|
429
|
+
time_backfill_last_checked=pulumi.get(__response__, 'time_backfill_last_checked'),
|
430
|
+
time_created=pulumi.get(__response__, 'time_created'),
|
431
|
+
time_last_checked=pulumi.get(__response__, 'time_last_checked'),
|
432
|
+
time_released=pulumi.get(__response__, 'time_released'),
|
433
|
+
time_updated=pulumi.get(__response__, 'time_updated'),
|
434
|
+
version_description=pulumi.get(__response__, 'version_description')))
|