pulumi-oci 3.1.0a1750230541__py3-none-any.whl → 3.2.0a1752121229__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 +339 -0
- pulumi_oci/bigdataservice/__init__.py +10 -0
- pulumi_oci/bigdataservice/_inputs.py +378 -0
- pulumi_oci/bigdataservice/bds_instance_node_backup.py +481 -0
- pulumi_oci/bigdataservice/bds_instance_node_backup_configuration.py +611 -0
- pulumi_oci/bigdataservice/bds_instance_node_replace_configuration.py +538 -0
- pulumi_oci/bigdataservice/bds_instance_replace_node_action.py +406 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backup.py +245 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backup_configuration.py +263 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backup_configurations.py +192 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backups.py +211 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_replace_configuration.py +246 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_replace_configurations.py +192 -0
- pulumi_oci/bigdataservice/outputs.py +798 -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/generativeai/__init__.py +3 -0
- pulumi_oci/generativeai/_inputs.py +1479 -132
- pulumi_oci/generativeai/agent_agent.py +66 -11
- pulumi_oci/generativeai/agent_agent_endpoint.py +296 -25
- pulumi_oci/generativeai/agent_data_source.py +70 -21
- pulumi_oci/generativeai/agent_tool.py +619 -0
- pulumi_oci/generativeai/get_agent_agent.py +17 -2
- pulumi_oci/generativeai/get_agent_agent_endpoint.py +72 -6
- pulumi_oci/generativeai/get_agent_agent_endpoints.py +0 -4
- pulumi_oci/generativeai/get_agent_data_source.py +15 -1
- pulumi_oci/generativeai/get_agent_tool.py +283 -0
- pulumi_oci/generativeai/get_agent_tools.py +214 -0
- pulumi_oci/generativeai/outputs.py +4001 -1259
- 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/kms/vault_verification.py +62 -2
- 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/ospgateway/_inputs.py +20 -0
- pulumi_oci/ospgateway/get_subscription.py +15 -1
- pulumi_oci/ospgateway/outputs.py +47 -0
- pulumi_oci/ospgateway/subscription.py +28 -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.0a1750230541.dist-info → pulumi_oci-3.2.0a1752121229.dist-info}/METADATA +1 -1
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0a1752121229.dist-info}/RECORD +313 -159
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0a1752121229.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0a1752121229.dist-info}/top_level.txt +0 -0
@@ -29,7 +29,10 @@ class GetOnboardingPoliciesResult:
|
|
29
29
|
"""
|
30
30
|
A collection of values returned by getOnboardingPolicies.
|
31
31
|
"""
|
32
|
-
def __init__(__self__, filters=None, id=None, onboarding_policy_collections=None):
|
32
|
+
def __init__(__self__, compartment_id=None, filters=None, id=None, onboarding_policy_collections=None):
|
33
|
+
if compartment_id and not isinstance(compartment_id, str):
|
34
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
35
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
33
36
|
if filters and not isinstance(filters, list):
|
34
37
|
raise TypeError("Expected argument 'filters' to be a list")
|
35
38
|
pulumi.set(__self__, "filters", filters)
|
@@ -40,6 +43,11 @@ class GetOnboardingPoliciesResult:
|
|
40
43
|
raise TypeError("Expected argument 'onboarding_policy_collections' to be a list")
|
41
44
|
pulumi.set(__self__, "onboarding_policy_collections", onboarding_policy_collections)
|
42
45
|
|
46
|
+
@property
|
47
|
+
@pulumi.getter(name="compartmentId")
|
48
|
+
def compartment_id(self) -> builtins.str:
|
49
|
+
return pulumi.get(self, "compartment_id")
|
50
|
+
|
43
51
|
@property
|
44
52
|
@pulumi.getter
|
45
53
|
def filters(self) -> Optional[Sequence['outputs.GetOnboardingPoliciesFilterResult']]:
|
@@ -68,12 +76,14 @@ class AwaitableGetOnboardingPoliciesResult(GetOnboardingPoliciesResult):
|
|
68
76
|
if False:
|
69
77
|
yield self
|
70
78
|
return GetOnboardingPoliciesResult(
|
79
|
+
compartment_id=self.compartment_id,
|
71
80
|
filters=self.filters,
|
72
81
|
id=self.id,
|
73
82
|
onboarding_policy_collections=self.onboarding_policy_collections)
|
74
83
|
|
75
84
|
|
76
|
-
def get_onboarding_policies(
|
85
|
+
def get_onboarding_policies(compartment_id: Optional[builtins.str] = None,
|
86
|
+
filters: Optional[Sequence[Union['GetOnboardingPoliciesFilterArgs', 'GetOnboardingPoliciesFilterArgsDict']]] = None,
|
77
87
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetOnboardingPoliciesResult:
|
78
88
|
"""
|
79
89
|
This data source provides the list of Onboarding Policies in Oracle Cloud Infrastructure Fleet Apps Management service.
|
@@ -86,19 +96,25 @@ def get_onboarding_policies(filters: Optional[Sequence[Union['GetOnboardingPolic
|
|
86
96
|
import pulumi
|
87
97
|
import pulumi_oci as oci
|
88
98
|
|
89
|
-
test_onboarding_policies = oci.FleetAppsManagement.get_onboarding_policies()
|
99
|
+
test_onboarding_policies = oci.FleetAppsManagement.get_onboarding_policies(compartment_id=compartment_id)
|
90
100
|
```
|
101
|
+
|
102
|
+
|
103
|
+
:param builtins.str compartment_id: The ID of the compartment in which to list resources.
|
91
104
|
"""
|
92
105
|
__args__ = dict()
|
106
|
+
__args__['compartmentId'] = compartment_id
|
93
107
|
__args__['filters'] = filters
|
94
108
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
95
109
|
__ret__ = pulumi.runtime.invoke('oci:FleetAppsManagement/getOnboardingPolicies:getOnboardingPolicies', __args__, opts=opts, typ=GetOnboardingPoliciesResult).value
|
96
110
|
|
97
111
|
return AwaitableGetOnboardingPoliciesResult(
|
112
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
98
113
|
filters=pulumi.get(__ret__, 'filters'),
|
99
114
|
id=pulumi.get(__ret__, 'id'),
|
100
115
|
onboarding_policy_collections=pulumi.get(__ret__, 'onboarding_policy_collections'))
|
101
|
-
def get_onboarding_policies_output(
|
116
|
+
def get_onboarding_policies_output(compartment_id: Optional[pulumi.Input[builtins.str]] = None,
|
117
|
+
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetOnboardingPoliciesFilterArgs', 'GetOnboardingPoliciesFilterArgsDict']]]]] = None,
|
102
118
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetOnboardingPoliciesResult]:
|
103
119
|
"""
|
104
120
|
This data source provides the list of Onboarding Policies in Oracle Cloud Infrastructure Fleet Apps Management service.
|
@@ -111,14 +127,19 @@ def get_onboarding_policies_output(filters: Optional[pulumi.Input[Optional[Seque
|
|
111
127
|
import pulumi
|
112
128
|
import pulumi_oci as oci
|
113
129
|
|
114
|
-
test_onboarding_policies = oci.FleetAppsManagement.get_onboarding_policies()
|
130
|
+
test_onboarding_policies = oci.FleetAppsManagement.get_onboarding_policies(compartment_id=compartment_id)
|
115
131
|
```
|
132
|
+
|
133
|
+
|
134
|
+
:param builtins.str compartment_id: The ID of the compartment in which to list resources.
|
116
135
|
"""
|
117
136
|
__args__ = dict()
|
137
|
+
__args__['compartmentId'] = compartment_id
|
118
138
|
__args__['filters'] = filters
|
119
139
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
120
140
|
__ret__ = pulumi.runtime.invoke_output('oci:FleetAppsManagement/getOnboardingPolicies:getOnboardingPolicies', __args__, opts=opts, typ=GetOnboardingPoliciesResult)
|
121
141
|
return __ret__.apply(lambda __response__: GetOnboardingPoliciesResult(
|
142
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
122
143
|
filters=pulumi.get(__response__, 'filters'),
|
123
144
|
id=pulumi.get(__response__, 'id'),
|
124
145
|
onboarding_policy_collections=pulumi.get(__response__, 'onboarding_policy_collections')))
|
@@ -0,0 +1,180 @@
|
|
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__ = [
|
21
|
+
'GetOnboardingsResult',
|
22
|
+
'AwaitableGetOnboardingsResult',
|
23
|
+
'get_onboardings',
|
24
|
+
'get_onboardings_output',
|
25
|
+
]
|
26
|
+
|
27
|
+
@pulumi.output_type
|
28
|
+
class GetOnboardingsResult:
|
29
|
+
"""
|
30
|
+
A collection of values returned by getOnboardings.
|
31
|
+
"""
|
32
|
+
def __init__(__self__, compartment_id=None, filters=None, id=None, onboarding_collections=None, state=None):
|
33
|
+
if compartment_id and not isinstance(compartment_id, str):
|
34
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
35
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
36
|
+
if filters and not isinstance(filters, list):
|
37
|
+
raise TypeError("Expected argument 'filters' to be a list")
|
38
|
+
pulumi.set(__self__, "filters", filters)
|
39
|
+
if id and not isinstance(id, str):
|
40
|
+
raise TypeError("Expected argument 'id' to be a str")
|
41
|
+
pulumi.set(__self__, "id", id)
|
42
|
+
if onboarding_collections and not isinstance(onboarding_collections, list):
|
43
|
+
raise TypeError("Expected argument 'onboarding_collections' to be a list")
|
44
|
+
pulumi.set(__self__, "onboarding_collections", onboarding_collections)
|
45
|
+
if state and not isinstance(state, str):
|
46
|
+
raise TypeError("Expected argument 'state' to be a str")
|
47
|
+
pulumi.set(__self__, "state", state)
|
48
|
+
|
49
|
+
@property
|
50
|
+
@pulumi.getter(name="compartmentId")
|
51
|
+
def compartment_id(self) -> Optional[builtins.str]:
|
52
|
+
"""
|
53
|
+
Tenancy OCID
|
54
|
+
"""
|
55
|
+
return pulumi.get(self, "compartment_id")
|
56
|
+
|
57
|
+
@property
|
58
|
+
@pulumi.getter
|
59
|
+
def filters(self) -> Optional[Sequence['outputs.GetOnboardingsFilterResult']]:
|
60
|
+
return pulumi.get(self, "filters")
|
61
|
+
|
62
|
+
@property
|
63
|
+
@pulumi.getter
|
64
|
+
def id(self) -> Optional[builtins.str]:
|
65
|
+
"""
|
66
|
+
The unique id of the resource.
|
67
|
+
"""
|
68
|
+
return pulumi.get(self, "id")
|
69
|
+
|
70
|
+
@property
|
71
|
+
@pulumi.getter(name="onboardingCollections")
|
72
|
+
def onboarding_collections(self) -> Sequence['outputs.GetOnboardingsOnboardingCollectionResult']:
|
73
|
+
"""
|
74
|
+
The list of onboarding_collection.
|
75
|
+
"""
|
76
|
+
return pulumi.get(self, "onboarding_collections")
|
77
|
+
|
78
|
+
@property
|
79
|
+
@pulumi.getter
|
80
|
+
def state(self) -> Optional[builtins.str]:
|
81
|
+
"""
|
82
|
+
The current state of the Onboarding.
|
83
|
+
"""
|
84
|
+
return pulumi.get(self, "state")
|
85
|
+
|
86
|
+
|
87
|
+
class AwaitableGetOnboardingsResult(GetOnboardingsResult):
|
88
|
+
# pylint: disable=using-constant-test
|
89
|
+
def __await__(self):
|
90
|
+
if False:
|
91
|
+
yield self
|
92
|
+
return GetOnboardingsResult(
|
93
|
+
compartment_id=self.compartment_id,
|
94
|
+
filters=self.filters,
|
95
|
+
id=self.id,
|
96
|
+
onboarding_collections=self.onboarding_collections,
|
97
|
+
state=self.state)
|
98
|
+
|
99
|
+
|
100
|
+
def get_onboardings(compartment_id: Optional[builtins.str] = None,
|
101
|
+
filters: Optional[Sequence[Union['GetOnboardingsFilterArgs', 'GetOnboardingsFilterArgsDict']]] = None,
|
102
|
+
id: Optional[builtins.str] = None,
|
103
|
+
state: Optional[builtins.str] = None,
|
104
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetOnboardingsResult:
|
105
|
+
"""
|
106
|
+
This data source provides the list of Onboardings in Oracle Cloud Infrastructure Fleet Apps Management service.
|
107
|
+
|
108
|
+
Returns a list of all the onboardings in the specified root compartment (tenancy).
|
109
|
+
The query parameter `compartmentId` is required unless the query parameter `id` is specified.
|
110
|
+
|
111
|
+
## Example Usage
|
112
|
+
|
113
|
+
```python
|
114
|
+
import pulumi
|
115
|
+
import pulumi_oci as oci
|
116
|
+
|
117
|
+
test_onboardings = oci.FleetAppsManagement.get_onboardings(compartment_id=compartment_id,
|
118
|
+
id=onboarding_id,
|
119
|
+
state=onboarding_state)
|
120
|
+
```
|
121
|
+
|
122
|
+
|
123
|
+
:param builtins.str compartment_id: The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
|
124
|
+
:param builtins.str id: Unique identifier or OCID for listing a single onboarding by id. Either compartmentId or id must be provided.
|
125
|
+
:param builtins.str state: A filter to return only resources whose lifecycleState matches the given lifecycleState.
|
126
|
+
"""
|
127
|
+
__args__ = dict()
|
128
|
+
__args__['compartmentId'] = compartment_id
|
129
|
+
__args__['filters'] = filters
|
130
|
+
__args__['id'] = id
|
131
|
+
__args__['state'] = state
|
132
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
133
|
+
__ret__ = pulumi.runtime.invoke('oci:FleetAppsManagement/getOnboardings:getOnboardings', __args__, opts=opts, typ=GetOnboardingsResult).value
|
134
|
+
|
135
|
+
return AwaitableGetOnboardingsResult(
|
136
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
137
|
+
filters=pulumi.get(__ret__, 'filters'),
|
138
|
+
id=pulumi.get(__ret__, 'id'),
|
139
|
+
onboarding_collections=pulumi.get(__ret__, 'onboarding_collections'),
|
140
|
+
state=pulumi.get(__ret__, 'state'))
|
141
|
+
def get_onboardings_output(compartment_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
142
|
+
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetOnboardingsFilterArgs', 'GetOnboardingsFilterArgsDict']]]]] = None,
|
143
|
+
id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
144
|
+
state: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
145
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetOnboardingsResult]:
|
146
|
+
"""
|
147
|
+
This data source provides the list of Onboardings in Oracle Cloud Infrastructure Fleet Apps Management service.
|
148
|
+
|
149
|
+
Returns a list of all the onboardings in the specified root compartment (tenancy).
|
150
|
+
The query parameter `compartmentId` is required unless the query parameter `id` is specified.
|
151
|
+
|
152
|
+
## Example Usage
|
153
|
+
|
154
|
+
```python
|
155
|
+
import pulumi
|
156
|
+
import pulumi_oci as oci
|
157
|
+
|
158
|
+
test_onboardings = oci.FleetAppsManagement.get_onboardings(compartment_id=compartment_id,
|
159
|
+
id=onboarding_id,
|
160
|
+
state=onboarding_state)
|
161
|
+
```
|
162
|
+
|
163
|
+
|
164
|
+
:param builtins.str compartment_id: The ID of the compartment in which to list resources. Empty only if the resource OCID query param is not specified.
|
165
|
+
:param builtins.str id: Unique identifier or OCID for listing a single onboarding by id. Either compartmentId or id must be provided.
|
166
|
+
:param builtins.str state: A filter to return only resources whose lifecycleState matches the given lifecycleState.
|
167
|
+
"""
|
168
|
+
__args__ = dict()
|
169
|
+
__args__['compartmentId'] = compartment_id
|
170
|
+
__args__['filters'] = filters
|
171
|
+
__args__['id'] = id
|
172
|
+
__args__['state'] = state
|
173
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
174
|
+
__ret__ = pulumi.runtime.invoke_output('oci:FleetAppsManagement/getOnboardings:getOnboardings', __args__, opts=opts, typ=GetOnboardingsResult)
|
175
|
+
return __ret__.apply(lambda __response__: GetOnboardingsResult(
|
176
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
177
|
+
filters=pulumi.get(__response__, 'filters'),
|
178
|
+
id=pulumi.get(__response__, 'id'),
|
179
|
+
onboarding_collections=pulumi.get(__response__, 'onboarding_collections'),
|
180
|
+
state=pulumi.get(__response__, 'state')))
|
@@ -0,0 +1,364 @@
|
|
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
|
+
'GetPatchResult',
|
21
|
+
'AwaitableGetPatchResult',
|
22
|
+
'get_patch',
|
23
|
+
'get_patch_output',
|
24
|
+
]
|
25
|
+
|
26
|
+
@pulumi.output_type
|
27
|
+
class GetPatchResult:
|
28
|
+
"""
|
29
|
+
A collection of values returned by getPatch.
|
30
|
+
"""
|
31
|
+
def __init__(__self__, artifact_details=None, compartment_id=None, defined_tags=None, dependent_patches=None, description=None, freeform_tags=None, id=None, lifecycle_details=None, name=None, patch_id=None, patch_types=None, products=None, resource_region=None, severity=None, state=None, system_tags=None, time_created=None, time_released=None, time_updated=None, type=None):
|
32
|
+
if artifact_details and not isinstance(artifact_details, list):
|
33
|
+
raise TypeError("Expected argument 'artifact_details' to be a list")
|
34
|
+
pulumi.set(__self__, "artifact_details", artifact_details)
|
35
|
+
if compartment_id and not isinstance(compartment_id, str):
|
36
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
37
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
38
|
+
if defined_tags and not isinstance(defined_tags, dict):
|
39
|
+
raise TypeError("Expected argument 'defined_tags' to be a dict")
|
40
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
41
|
+
if dependent_patches and not isinstance(dependent_patches, list):
|
42
|
+
raise TypeError("Expected argument 'dependent_patches' to be a list")
|
43
|
+
pulumi.set(__self__, "dependent_patches", dependent_patches)
|
44
|
+
if description and not isinstance(description, str):
|
45
|
+
raise TypeError("Expected argument 'description' to be a str")
|
46
|
+
pulumi.set(__self__, "description", description)
|
47
|
+
if freeform_tags and not isinstance(freeform_tags, dict):
|
48
|
+
raise TypeError("Expected argument 'freeform_tags' to be a dict")
|
49
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
50
|
+
if id and not isinstance(id, str):
|
51
|
+
raise TypeError("Expected argument 'id' to be a str")
|
52
|
+
pulumi.set(__self__, "id", id)
|
53
|
+
if lifecycle_details and not isinstance(lifecycle_details, str):
|
54
|
+
raise TypeError("Expected argument 'lifecycle_details' to be a str")
|
55
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
56
|
+
if name and not isinstance(name, str):
|
57
|
+
raise TypeError("Expected argument 'name' to be a str")
|
58
|
+
pulumi.set(__self__, "name", name)
|
59
|
+
if patch_id and not isinstance(patch_id, str):
|
60
|
+
raise TypeError("Expected argument 'patch_id' to be a str")
|
61
|
+
pulumi.set(__self__, "patch_id", patch_id)
|
62
|
+
if patch_types and not isinstance(patch_types, list):
|
63
|
+
raise TypeError("Expected argument 'patch_types' to be a list")
|
64
|
+
pulumi.set(__self__, "patch_types", patch_types)
|
65
|
+
if products and not isinstance(products, list):
|
66
|
+
raise TypeError("Expected argument 'products' to be a list")
|
67
|
+
pulumi.set(__self__, "products", products)
|
68
|
+
if resource_region and not isinstance(resource_region, str):
|
69
|
+
raise TypeError("Expected argument 'resource_region' to be a str")
|
70
|
+
pulumi.set(__self__, "resource_region", resource_region)
|
71
|
+
if severity and not isinstance(severity, str):
|
72
|
+
raise TypeError("Expected argument 'severity' to be a str")
|
73
|
+
pulumi.set(__self__, "severity", severity)
|
74
|
+
if state and not isinstance(state, str):
|
75
|
+
raise TypeError("Expected argument 'state' to be a str")
|
76
|
+
pulumi.set(__self__, "state", state)
|
77
|
+
if system_tags and not isinstance(system_tags, dict):
|
78
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
79
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
80
|
+
if time_created and not isinstance(time_created, str):
|
81
|
+
raise TypeError("Expected argument 'time_created' to be a str")
|
82
|
+
pulumi.set(__self__, "time_created", time_created)
|
83
|
+
if time_released and not isinstance(time_released, str):
|
84
|
+
raise TypeError("Expected argument 'time_released' to be a str")
|
85
|
+
pulumi.set(__self__, "time_released", time_released)
|
86
|
+
if time_updated and not isinstance(time_updated, str):
|
87
|
+
raise TypeError("Expected argument 'time_updated' to be a str")
|
88
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
89
|
+
if type and not isinstance(type, str):
|
90
|
+
raise TypeError("Expected argument 'type' to be a str")
|
91
|
+
pulumi.set(__self__, "type", type)
|
92
|
+
|
93
|
+
@property
|
94
|
+
@pulumi.getter(name="artifactDetails")
|
95
|
+
def artifact_details(self) -> Sequence['outputs.GetPatchArtifactDetailResult']:
|
96
|
+
"""
|
97
|
+
Patch artifact description and content details.
|
98
|
+
"""
|
99
|
+
return pulumi.get(self, "artifact_details")
|
100
|
+
|
101
|
+
@property
|
102
|
+
@pulumi.getter(name="compartmentId")
|
103
|
+
def compartment_id(self) -> builtins.str:
|
104
|
+
return pulumi.get(self, "compartment_id")
|
105
|
+
|
106
|
+
@property
|
107
|
+
@pulumi.getter(name="definedTags")
|
108
|
+
def defined_tags(self) -> Mapping[str, builtins.str]:
|
109
|
+
"""
|
110
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
111
|
+
"""
|
112
|
+
return pulumi.get(self, "defined_tags")
|
113
|
+
|
114
|
+
@property
|
115
|
+
@pulumi.getter(name="dependentPatches")
|
116
|
+
def dependent_patches(self) -> Sequence['outputs.GetPatchDependentPatchResult']:
|
117
|
+
"""
|
118
|
+
Dependent Patches for this patch.
|
119
|
+
"""
|
120
|
+
return pulumi.get(self, "dependent_patches")
|
121
|
+
|
122
|
+
@property
|
123
|
+
@pulumi.getter
|
124
|
+
def description(self) -> builtins.str:
|
125
|
+
"""
|
126
|
+
A user-friendly description. To provide some insight about the resource. Avoid entering confidential information.
|
127
|
+
"""
|
128
|
+
return pulumi.get(self, "description")
|
129
|
+
|
130
|
+
@property
|
131
|
+
@pulumi.getter(name="freeformTags")
|
132
|
+
def freeform_tags(self) -> Mapping[str, builtins.str]:
|
133
|
+
"""
|
134
|
+
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
135
|
+
"""
|
136
|
+
return pulumi.get(self, "freeform_tags")
|
137
|
+
|
138
|
+
@property
|
139
|
+
@pulumi.getter
|
140
|
+
def id(self) -> builtins.str:
|
141
|
+
"""
|
142
|
+
The OCID of the resource.
|
143
|
+
"""
|
144
|
+
return pulumi.get(self, "id")
|
145
|
+
|
146
|
+
@property
|
147
|
+
@pulumi.getter(name="lifecycleDetails")
|
148
|
+
def lifecycle_details(self) -> builtins.str:
|
149
|
+
"""
|
150
|
+
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
|
151
|
+
"""
|
152
|
+
return pulumi.get(self, "lifecycle_details")
|
153
|
+
|
154
|
+
@property
|
155
|
+
@pulumi.getter
|
156
|
+
def name(self) -> builtins.str:
|
157
|
+
"""
|
158
|
+
A user-friendly name. Should be unique within the tenancy, and cannot be changed after creation. Avoid entering confidential information.
|
159
|
+
"""
|
160
|
+
return pulumi.get(self, "name")
|
161
|
+
|
162
|
+
@property
|
163
|
+
@pulumi.getter(name="patchId")
|
164
|
+
def patch_id(self) -> builtins.str:
|
165
|
+
return pulumi.get(self, "patch_id")
|
166
|
+
|
167
|
+
@property
|
168
|
+
@pulumi.getter(name="patchTypes")
|
169
|
+
def patch_types(self) -> Sequence['outputs.GetPatchPatchTypeResult']:
|
170
|
+
"""
|
171
|
+
Patch Type
|
172
|
+
"""
|
173
|
+
return pulumi.get(self, "patch_types")
|
174
|
+
|
175
|
+
@property
|
176
|
+
@pulumi.getter
|
177
|
+
def products(self) -> Sequence['outputs.GetPatchProductResult']:
|
178
|
+
"""
|
179
|
+
Product
|
180
|
+
"""
|
181
|
+
return pulumi.get(self, "products")
|
182
|
+
|
183
|
+
@property
|
184
|
+
@pulumi.getter(name="resourceRegion")
|
185
|
+
def resource_region(self) -> builtins.str:
|
186
|
+
"""
|
187
|
+
Associated region
|
188
|
+
"""
|
189
|
+
return pulumi.get(self, "resource_region")
|
190
|
+
|
191
|
+
@property
|
192
|
+
@pulumi.getter
|
193
|
+
def severity(self) -> builtins.str:
|
194
|
+
"""
|
195
|
+
Patch Severity.
|
196
|
+
"""
|
197
|
+
return pulumi.get(self, "severity")
|
198
|
+
|
199
|
+
@property
|
200
|
+
@pulumi.getter
|
201
|
+
def state(self) -> builtins.str:
|
202
|
+
"""
|
203
|
+
The current state of the Patch.
|
204
|
+
"""
|
205
|
+
return pulumi.get(self, "state")
|
206
|
+
|
207
|
+
@property
|
208
|
+
@pulumi.getter(name="systemTags")
|
209
|
+
def system_tags(self) -> Mapping[str, builtins.str]:
|
210
|
+
"""
|
211
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
212
|
+
"""
|
213
|
+
return pulumi.get(self, "system_tags")
|
214
|
+
|
215
|
+
@property
|
216
|
+
@pulumi.getter(name="timeCreated")
|
217
|
+
def time_created(self) -> builtins.str:
|
218
|
+
"""
|
219
|
+
The time this resource was created. An RFC3339 formatted datetime string.
|
220
|
+
"""
|
221
|
+
return pulumi.get(self, "time_created")
|
222
|
+
|
223
|
+
@property
|
224
|
+
@pulumi.getter(name="timeReleased")
|
225
|
+
def time_released(self) -> builtins.str:
|
226
|
+
"""
|
227
|
+
Date when the patch was released.
|
228
|
+
"""
|
229
|
+
return pulumi.get(self, "time_released")
|
230
|
+
|
231
|
+
@property
|
232
|
+
@pulumi.getter(name="timeUpdated")
|
233
|
+
def time_updated(self) -> builtins.str:
|
234
|
+
"""
|
235
|
+
The time this resource was last updated. An RFC3339 formatted datetime string.
|
236
|
+
"""
|
237
|
+
return pulumi.get(self, "time_updated")
|
238
|
+
|
239
|
+
@property
|
240
|
+
@pulumi.getter
|
241
|
+
def type(self) -> builtins.str:
|
242
|
+
"""
|
243
|
+
Provide information on who defined the patch. Example: For Custom Patches the value will be USER_DEFINED For Oracle Defined Patches the value will be ORACLE_DEFINED
|
244
|
+
"""
|
245
|
+
return pulumi.get(self, "type")
|
246
|
+
|
247
|
+
|
248
|
+
class AwaitableGetPatchResult(GetPatchResult):
|
249
|
+
# pylint: disable=using-constant-test
|
250
|
+
def __await__(self):
|
251
|
+
if False:
|
252
|
+
yield self
|
253
|
+
return GetPatchResult(
|
254
|
+
artifact_details=self.artifact_details,
|
255
|
+
compartment_id=self.compartment_id,
|
256
|
+
defined_tags=self.defined_tags,
|
257
|
+
dependent_patches=self.dependent_patches,
|
258
|
+
description=self.description,
|
259
|
+
freeform_tags=self.freeform_tags,
|
260
|
+
id=self.id,
|
261
|
+
lifecycle_details=self.lifecycle_details,
|
262
|
+
name=self.name,
|
263
|
+
patch_id=self.patch_id,
|
264
|
+
patch_types=self.patch_types,
|
265
|
+
products=self.products,
|
266
|
+
resource_region=self.resource_region,
|
267
|
+
severity=self.severity,
|
268
|
+
state=self.state,
|
269
|
+
system_tags=self.system_tags,
|
270
|
+
time_created=self.time_created,
|
271
|
+
time_released=self.time_released,
|
272
|
+
time_updated=self.time_updated,
|
273
|
+
type=self.type)
|
274
|
+
|
275
|
+
|
276
|
+
def get_patch(patch_id: Optional[builtins.str] = None,
|
277
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetPatchResult:
|
278
|
+
"""
|
279
|
+
This data source provides details about a specific Patch resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
280
|
+
|
281
|
+
Gets a Patch by identifier.
|
282
|
+
|
283
|
+
## Example Usage
|
284
|
+
|
285
|
+
```python
|
286
|
+
import pulumi
|
287
|
+
import pulumi_oci as oci
|
288
|
+
|
289
|
+
test_patch = oci.FleetAppsManagement.get_patch(patch_id=test_patch_oci_fleet_apps_management_patch["id"])
|
290
|
+
```
|
291
|
+
|
292
|
+
|
293
|
+
:param builtins.str patch_id: Unique Patch identifier.
|
294
|
+
"""
|
295
|
+
__args__ = dict()
|
296
|
+
__args__['patchId'] = patch_id
|
297
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
298
|
+
__ret__ = pulumi.runtime.invoke('oci:FleetAppsManagement/getPatch:getPatch', __args__, opts=opts, typ=GetPatchResult).value
|
299
|
+
|
300
|
+
return AwaitableGetPatchResult(
|
301
|
+
artifact_details=pulumi.get(__ret__, 'artifact_details'),
|
302
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
303
|
+
defined_tags=pulumi.get(__ret__, 'defined_tags'),
|
304
|
+
dependent_patches=pulumi.get(__ret__, 'dependent_patches'),
|
305
|
+
description=pulumi.get(__ret__, 'description'),
|
306
|
+
freeform_tags=pulumi.get(__ret__, 'freeform_tags'),
|
307
|
+
id=pulumi.get(__ret__, 'id'),
|
308
|
+
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
309
|
+
name=pulumi.get(__ret__, 'name'),
|
310
|
+
patch_id=pulumi.get(__ret__, 'patch_id'),
|
311
|
+
patch_types=pulumi.get(__ret__, 'patch_types'),
|
312
|
+
products=pulumi.get(__ret__, 'products'),
|
313
|
+
resource_region=pulumi.get(__ret__, 'resource_region'),
|
314
|
+
severity=pulumi.get(__ret__, 'severity'),
|
315
|
+
state=pulumi.get(__ret__, 'state'),
|
316
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
317
|
+
time_created=pulumi.get(__ret__, 'time_created'),
|
318
|
+
time_released=pulumi.get(__ret__, 'time_released'),
|
319
|
+
time_updated=pulumi.get(__ret__, 'time_updated'),
|
320
|
+
type=pulumi.get(__ret__, 'type'))
|
321
|
+
def get_patch_output(patch_id: Optional[pulumi.Input[builtins.str]] = None,
|
322
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetPatchResult]:
|
323
|
+
"""
|
324
|
+
This data source provides details about a specific Patch resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
325
|
+
|
326
|
+
Gets a Patch by identifier.
|
327
|
+
|
328
|
+
## Example Usage
|
329
|
+
|
330
|
+
```python
|
331
|
+
import pulumi
|
332
|
+
import pulumi_oci as oci
|
333
|
+
|
334
|
+
test_patch = oci.FleetAppsManagement.get_patch(patch_id=test_patch_oci_fleet_apps_management_patch["id"])
|
335
|
+
```
|
336
|
+
|
337
|
+
|
338
|
+
:param builtins.str patch_id: Unique Patch identifier.
|
339
|
+
"""
|
340
|
+
__args__ = dict()
|
341
|
+
__args__['patchId'] = patch_id
|
342
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
343
|
+
__ret__ = pulumi.runtime.invoke_output('oci:FleetAppsManagement/getPatch:getPatch', __args__, opts=opts, typ=GetPatchResult)
|
344
|
+
return __ret__.apply(lambda __response__: GetPatchResult(
|
345
|
+
artifact_details=pulumi.get(__response__, 'artifact_details'),
|
346
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
347
|
+
defined_tags=pulumi.get(__response__, 'defined_tags'),
|
348
|
+
dependent_patches=pulumi.get(__response__, 'dependent_patches'),
|
349
|
+
description=pulumi.get(__response__, 'description'),
|
350
|
+
freeform_tags=pulumi.get(__response__, 'freeform_tags'),
|
351
|
+
id=pulumi.get(__response__, 'id'),
|
352
|
+
lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
|
353
|
+
name=pulumi.get(__response__, 'name'),
|
354
|
+
patch_id=pulumi.get(__response__, 'patch_id'),
|
355
|
+
patch_types=pulumi.get(__response__, 'patch_types'),
|
356
|
+
products=pulumi.get(__response__, 'products'),
|
357
|
+
resource_region=pulumi.get(__response__, 'resource_region'),
|
358
|
+
severity=pulumi.get(__response__, 'severity'),
|
359
|
+
state=pulumi.get(__response__, 'state'),
|
360
|
+
system_tags=pulumi.get(__response__, 'system_tags'),
|
361
|
+
time_created=pulumi.get(__response__, 'time_created'),
|
362
|
+
time_released=pulumi.get(__response__, 'time_released'),
|
363
|
+
time_updated=pulumi.get(__response__, 'time_updated'),
|
364
|
+
type=pulumi.get(__response__, 'type')))
|