pulumi-oci 3.1.0a1750230541__py3-none-any.whl → 3.2.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 +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.0.dist-info}/METADATA +1 -1
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0.dist-info}/RECORD +313 -159
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,197 @@
|
|
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
|
+
'GetFleetPropertiesResult',
|
22
|
+
'AwaitableGetFleetPropertiesResult',
|
23
|
+
'get_fleet_properties',
|
24
|
+
'get_fleet_properties_output',
|
25
|
+
]
|
26
|
+
|
27
|
+
@pulumi.output_type
|
28
|
+
class GetFleetPropertiesResult:
|
29
|
+
"""
|
30
|
+
A collection of values returned by getFleetProperties.
|
31
|
+
"""
|
32
|
+
def __init__(__self__, display_name=None, filters=None, fleet_id=None, fleet_property_collections=None, id=None, state=None):
|
33
|
+
if display_name and not isinstance(display_name, str):
|
34
|
+
raise TypeError("Expected argument 'display_name' to be a str")
|
35
|
+
pulumi.set(__self__, "display_name", display_name)
|
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 fleet_id and not isinstance(fleet_id, str):
|
40
|
+
raise TypeError("Expected argument 'fleet_id' to be a str")
|
41
|
+
pulumi.set(__self__, "fleet_id", fleet_id)
|
42
|
+
if fleet_property_collections and not isinstance(fleet_property_collections, list):
|
43
|
+
raise TypeError("Expected argument 'fleet_property_collections' to be a list")
|
44
|
+
pulumi.set(__self__, "fleet_property_collections", fleet_property_collections)
|
45
|
+
if id and not isinstance(id, str):
|
46
|
+
raise TypeError("Expected argument 'id' to be a str")
|
47
|
+
pulumi.set(__self__, "id", id)
|
48
|
+
if state and not isinstance(state, str):
|
49
|
+
raise TypeError("Expected argument 'state' to be a str")
|
50
|
+
pulumi.set(__self__, "state", state)
|
51
|
+
|
52
|
+
@property
|
53
|
+
@pulumi.getter(name="displayName")
|
54
|
+
def display_name(self) -> Optional[builtins.str]:
|
55
|
+
"""
|
56
|
+
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
|
57
|
+
"""
|
58
|
+
return pulumi.get(self, "display_name")
|
59
|
+
|
60
|
+
@property
|
61
|
+
@pulumi.getter
|
62
|
+
def filters(self) -> Optional[Sequence['outputs.GetFleetPropertiesFilterResult']]:
|
63
|
+
return pulumi.get(self, "filters")
|
64
|
+
|
65
|
+
@property
|
66
|
+
@pulumi.getter(name="fleetId")
|
67
|
+
def fleet_id(self) -> builtins.str:
|
68
|
+
return pulumi.get(self, "fleet_id")
|
69
|
+
|
70
|
+
@property
|
71
|
+
@pulumi.getter(name="fleetPropertyCollections")
|
72
|
+
def fleet_property_collections(self) -> Sequence['outputs.GetFleetPropertiesFleetPropertyCollectionResult']:
|
73
|
+
"""
|
74
|
+
The list of fleet_property_collection.
|
75
|
+
"""
|
76
|
+
return pulumi.get(self, "fleet_property_collections")
|
77
|
+
|
78
|
+
@property
|
79
|
+
@pulumi.getter
|
80
|
+
def id(self) -> Optional[builtins.str]:
|
81
|
+
"""
|
82
|
+
The unique id of the resource.
|
83
|
+
"""
|
84
|
+
return pulumi.get(self, "id")
|
85
|
+
|
86
|
+
@property
|
87
|
+
@pulumi.getter
|
88
|
+
def state(self) -> Optional[builtins.str]:
|
89
|
+
"""
|
90
|
+
The current state of the FleetProperty.
|
91
|
+
"""
|
92
|
+
return pulumi.get(self, "state")
|
93
|
+
|
94
|
+
|
95
|
+
class AwaitableGetFleetPropertiesResult(GetFleetPropertiesResult):
|
96
|
+
# pylint: disable=using-constant-test
|
97
|
+
def __await__(self):
|
98
|
+
if False:
|
99
|
+
yield self
|
100
|
+
return GetFleetPropertiesResult(
|
101
|
+
display_name=self.display_name,
|
102
|
+
filters=self.filters,
|
103
|
+
fleet_id=self.fleet_id,
|
104
|
+
fleet_property_collections=self.fleet_property_collections,
|
105
|
+
id=self.id,
|
106
|
+
state=self.state)
|
107
|
+
|
108
|
+
|
109
|
+
def get_fleet_properties(display_name: Optional[builtins.str] = None,
|
110
|
+
filters: Optional[Sequence[Union['GetFleetPropertiesFilterArgs', 'GetFleetPropertiesFilterArgsDict']]] = None,
|
111
|
+
fleet_id: Optional[builtins.str] = None,
|
112
|
+
id: Optional[builtins.str] = None,
|
113
|
+
state: Optional[builtins.str] = None,
|
114
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetFleetPropertiesResult:
|
115
|
+
"""
|
116
|
+
This data source provides the list of Fleet Properties in Oracle Cloud Infrastructure Fleet Apps Management service.
|
117
|
+
|
118
|
+
List properties associated with a fleet.
|
119
|
+
|
120
|
+
## Example Usage
|
121
|
+
|
122
|
+
```python
|
123
|
+
import pulumi
|
124
|
+
import pulumi_oci as oci
|
125
|
+
|
126
|
+
test_fleet_properties = oci.FleetAppsManagement.get_fleet_properties(fleet_id=test_fleet["id"],
|
127
|
+
display_name=fleet_property_display_name,
|
128
|
+
id=fleet_property_id,
|
129
|
+
state=fleet_property_state)
|
130
|
+
```
|
131
|
+
|
132
|
+
|
133
|
+
:param builtins.str display_name: A filter to return only resources that match the entire display name given.
|
134
|
+
:param builtins.str fleet_id: Unique Fleet identifier.
|
135
|
+
:param builtins.str id: A filter to return only resources whose fleetProperty identifier matches the given identifier.
|
136
|
+
:param builtins.str state: A filter to return only resources whose lifecycleState matches the given lifecycleState.
|
137
|
+
"""
|
138
|
+
__args__ = dict()
|
139
|
+
__args__['displayName'] = display_name
|
140
|
+
__args__['filters'] = filters
|
141
|
+
__args__['fleetId'] = fleet_id
|
142
|
+
__args__['id'] = id
|
143
|
+
__args__['state'] = state
|
144
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
145
|
+
__ret__ = pulumi.runtime.invoke('oci:FleetAppsManagement/getFleetProperties:getFleetProperties', __args__, opts=opts, typ=GetFleetPropertiesResult).value
|
146
|
+
|
147
|
+
return AwaitableGetFleetPropertiesResult(
|
148
|
+
display_name=pulumi.get(__ret__, 'display_name'),
|
149
|
+
filters=pulumi.get(__ret__, 'filters'),
|
150
|
+
fleet_id=pulumi.get(__ret__, 'fleet_id'),
|
151
|
+
fleet_property_collections=pulumi.get(__ret__, 'fleet_property_collections'),
|
152
|
+
id=pulumi.get(__ret__, 'id'),
|
153
|
+
state=pulumi.get(__ret__, 'state'))
|
154
|
+
def get_fleet_properties_output(display_name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
155
|
+
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetFleetPropertiesFilterArgs', 'GetFleetPropertiesFilterArgsDict']]]]] = None,
|
156
|
+
fleet_id: Optional[pulumi.Input[builtins.str]] = None,
|
157
|
+
id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
158
|
+
state: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
159
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetFleetPropertiesResult]:
|
160
|
+
"""
|
161
|
+
This data source provides the list of Fleet Properties in Oracle Cloud Infrastructure Fleet Apps Management service.
|
162
|
+
|
163
|
+
List properties associated with a fleet.
|
164
|
+
|
165
|
+
## Example Usage
|
166
|
+
|
167
|
+
```python
|
168
|
+
import pulumi
|
169
|
+
import pulumi_oci as oci
|
170
|
+
|
171
|
+
test_fleet_properties = oci.FleetAppsManagement.get_fleet_properties(fleet_id=test_fleet["id"],
|
172
|
+
display_name=fleet_property_display_name,
|
173
|
+
id=fleet_property_id,
|
174
|
+
state=fleet_property_state)
|
175
|
+
```
|
176
|
+
|
177
|
+
|
178
|
+
:param builtins.str display_name: A filter to return only resources that match the entire display name given.
|
179
|
+
:param builtins.str fleet_id: Unique Fleet identifier.
|
180
|
+
:param builtins.str id: A filter to return only resources whose fleetProperty identifier matches the given identifier.
|
181
|
+
:param builtins.str state: A filter to return only resources whose lifecycleState matches the given lifecycleState.
|
182
|
+
"""
|
183
|
+
__args__ = dict()
|
184
|
+
__args__['displayName'] = display_name
|
185
|
+
__args__['filters'] = filters
|
186
|
+
__args__['fleetId'] = fleet_id
|
187
|
+
__args__['id'] = id
|
188
|
+
__args__['state'] = state
|
189
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
190
|
+
__ret__ = pulumi.runtime.invoke_output('oci:FleetAppsManagement/getFleetProperties:getFleetProperties', __args__, opts=opts, typ=GetFleetPropertiesResult)
|
191
|
+
return __ret__.apply(lambda __response__: GetFleetPropertiesResult(
|
192
|
+
display_name=pulumi.get(__response__, 'display_name'),
|
193
|
+
filters=pulumi.get(__response__, 'filters'),
|
194
|
+
fleet_id=pulumi.get(__response__, 'fleet_id'),
|
195
|
+
fleet_property_collections=pulumi.get(__response__, 'fleet_property_collections'),
|
196
|
+
id=pulumi.get(__response__, 'id'),
|
197
|
+
state=pulumi.get(__response__, 'state')))
|
@@ -0,0 +1,287 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import builtins
|
6
|
+
import copy
|
7
|
+
import warnings
|
8
|
+
import sys
|
9
|
+
import pulumi
|
10
|
+
import pulumi.runtime
|
11
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
12
|
+
if sys.version_info >= (3, 11):
|
13
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
14
|
+
else:
|
15
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
16
|
+
from .. import _utilities
|
17
|
+
|
18
|
+
__all__ = [
|
19
|
+
'GetFleetPropertyResult',
|
20
|
+
'AwaitableGetFleetPropertyResult',
|
21
|
+
'get_fleet_property',
|
22
|
+
'get_fleet_property_output',
|
23
|
+
]
|
24
|
+
|
25
|
+
@pulumi.output_type
|
26
|
+
class GetFleetPropertyResult:
|
27
|
+
"""
|
28
|
+
A collection of values returned by getFleetProperty.
|
29
|
+
"""
|
30
|
+
def __init__(__self__, allowed_values=None, compartment_id=None, display_name=None, fleet_id=None, fleet_property_id=None, id=None, property_id=None, selection_type=None, state=None, system_tags=None, time_created=None, time_updated=None, value=None, value_type=None):
|
31
|
+
if allowed_values and not isinstance(allowed_values, list):
|
32
|
+
raise TypeError("Expected argument 'allowed_values' to be a list")
|
33
|
+
pulumi.set(__self__, "allowed_values", allowed_values)
|
34
|
+
if compartment_id and not isinstance(compartment_id, str):
|
35
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
36
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
37
|
+
if display_name and not isinstance(display_name, str):
|
38
|
+
raise TypeError("Expected argument 'display_name' to be a str")
|
39
|
+
pulumi.set(__self__, "display_name", display_name)
|
40
|
+
if fleet_id and not isinstance(fleet_id, str):
|
41
|
+
raise TypeError("Expected argument 'fleet_id' to be a str")
|
42
|
+
pulumi.set(__self__, "fleet_id", fleet_id)
|
43
|
+
if fleet_property_id and not isinstance(fleet_property_id, str):
|
44
|
+
raise TypeError("Expected argument 'fleet_property_id' to be a str")
|
45
|
+
pulumi.set(__self__, "fleet_property_id", fleet_property_id)
|
46
|
+
if id and not isinstance(id, str):
|
47
|
+
raise TypeError("Expected argument 'id' to be a str")
|
48
|
+
pulumi.set(__self__, "id", id)
|
49
|
+
if property_id and not isinstance(property_id, str):
|
50
|
+
raise TypeError("Expected argument 'property_id' to be a str")
|
51
|
+
pulumi.set(__self__, "property_id", property_id)
|
52
|
+
if selection_type and not isinstance(selection_type, str):
|
53
|
+
raise TypeError("Expected argument 'selection_type' to be a str")
|
54
|
+
pulumi.set(__self__, "selection_type", selection_type)
|
55
|
+
if state and not isinstance(state, str):
|
56
|
+
raise TypeError("Expected argument 'state' to be a str")
|
57
|
+
pulumi.set(__self__, "state", state)
|
58
|
+
if system_tags and not isinstance(system_tags, dict):
|
59
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
60
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
61
|
+
if time_created and not isinstance(time_created, str):
|
62
|
+
raise TypeError("Expected argument 'time_created' to be a str")
|
63
|
+
pulumi.set(__self__, "time_created", time_created)
|
64
|
+
if time_updated and not isinstance(time_updated, str):
|
65
|
+
raise TypeError("Expected argument 'time_updated' to be a str")
|
66
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
67
|
+
if value and not isinstance(value, str):
|
68
|
+
raise TypeError("Expected argument 'value' to be a str")
|
69
|
+
pulumi.set(__self__, "value", value)
|
70
|
+
if value_type and not isinstance(value_type, str):
|
71
|
+
raise TypeError("Expected argument 'value_type' to be a str")
|
72
|
+
pulumi.set(__self__, "value_type", value_type)
|
73
|
+
|
74
|
+
@property
|
75
|
+
@pulumi.getter(name="allowedValues")
|
76
|
+
def allowed_values(self) -> Sequence[builtins.str]:
|
77
|
+
"""
|
78
|
+
Values of the property (must be a single value if selectionType = 'SINGLE_CHOICE').
|
79
|
+
"""
|
80
|
+
return pulumi.get(self, "allowed_values")
|
81
|
+
|
82
|
+
@property
|
83
|
+
@pulumi.getter(name="compartmentId")
|
84
|
+
def compartment_id(self) -> builtins.str:
|
85
|
+
"""
|
86
|
+
Compartment OCID
|
87
|
+
"""
|
88
|
+
return pulumi.get(self, "compartment_id")
|
89
|
+
|
90
|
+
@property
|
91
|
+
@pulumi.getter(name="displayName")
|
92
|
+
def display_name(self) -> builtins.str:
|
93
|
+
"""
|
94
|
+
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
|
95
|
+
"""
|
96
|
+
return pulumi.get(self, "display_name")
|
97
|
+
|
98
|
+
@property
|
99
|
+
@pulumi.getter(name="fleetId")
|
100
|
+
def fleet_id(self) -> builtins.str:
|
101
|
+
return pulumi.get(self, "fleet_id")
|
102
|
+
|
103
|
+
@property
|
104
|
+
@pulumi.getter(name="fleetPropertyId")
|
105
|
+
def fleet_property_id(self) -> builtins.str:
|
106
|
+
return pulumi.get(self, "fleet_property_id")
|
107
|
+
|
108
|
+
@property
|
109
|
+
@pulumi.getter
|
110
|
+
def id(self) -> builtins.str:
|
111
|
+
"""
|
112
|
+
The unique id of the resource.
|
113
|
+
"""
|
114
|
+
return pulumi.get(self, "id")
|
115
|
+
|
116
|
+
@property
|
117
|
+
@pulumi.getter(name="propertyId")
|
118
|
+
def property_id(self) -> builtins.str:
|
119
|
+
"""
|
120
|
+
OCID referring to global level metadata property.
|
121
|
+
"""
|
122
|
+
return pulumi.get(self, "property_id")
|
123
|
+
|
124
|
+
@property
|
125
|
+
@pulumi.getter(name="selectionType")
|
126
|
+
def selection_type(self) -> builtins.str:
|
127
|
+
"""
|
128
|
+
Text selection of the property.
|
129
|
+
"""
|
130
|
+
return pulumi.get(self, "selection_type")
|
131
|
+
|
132
|
+
@property
|
133
|
+
@pulumi.getter
|
134
|
+
def state(self) -> builtins.str:
|
135
|
+
"""
|
136
|
+
The current state of the FleetProperty.
|
137
|
+
"""
|
138
|
+
return pulumi.get(self, "state")
|
139
|
+
|
140
|
+
@property
|
141
|
+
@pulumi.getter(name="systemTags")
|
142
|
+
def system_tags(self) -> Mapping[str, builtins.str]:
|
143
|
+
"""
|
144
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
145
|
+
"""
|
146
|
+
return pulumi.get(self, "system_tags")
|
147
|
+
|
148
|
+
@property
|
149
|
+
@pulumi.getter(name="timeCreated")
|
150
|
+
def time_created(self) -> builtins.str:
|
151
|
+
"""
|
152
|
+
The time this resource was created. An RFC3339 formatted datetime string.
|
153
|
+
"""
|
154
|
+
return pulumi.get(self, "time_created")
|
155
|
+
|
156
|
+
@property
|
157
|
+
@pulumi.getter(name="timeUpdated")
|
158
|
+
def time_updated(self) -> builtins.str:
|
159
|
+
"""
|
160
|
+
The time this resource was last updated. An RFC3339 formatted datetime string.
|
161
|
+
"""
|
162
|
+
return pulumi.get(self, "time_updated")
|
163
|
+
|
164
|
+
@property
|
165
|
+
@pulumi.getter
|
166
|
+
def value(self) -> builtins.str:
|
167
|
+
"""
|
168
|
+
Value of the Property.
|
169
|
+
"""
|
170
|
+
return pulumi.get(self, "value")
|
171
|
+
|
172
|
+
@property
|
173
|
+
@pulumi.getter(name="valueType")
|
174
|
+
def value_type(self) -> builtins.str:
|
175
|
+
"""
|
176
|
+
Format of the value.
|
177
|
+
"""
|
178
|
+
return pulumi.get(self, "value_type")
|
179
|
+
|
180
|
+
|
181
|
+
class AwaitableGetFleetPropertyResult(GetFleetPropertyResult):
|
182
|
+
# pylint: disable=using-constant-test
|
183
|
+
def __await__(self):
|
184
|
+
if False:
|
185
|
+
yield self
|
186
|
+
return GetFleetPropertyResult(
|
187
|
+
allowed_values=self.allowed_values,
|
188
|
+
compartment_id=self.compartment_id,
|
189
|
+
display_name=self.display_name,
|
190
|
+
fleet_id=self.fleet_id,
|
191
|
+
fleet_property_id=self.fleet_property_id,
|
192
|
+
id=self.id,
|
193
|
+
property_id=self.property_id,
|
194
|
+
selection_type=self.selection_type,
|
195
|
+
state=self.state,
|
196
|
+
system_tags=self.system_tags,
|
197
|
+
time_created=self.time_created,
|
198
|
+
time_updated=self.time_updated,
|
199
|
+
value=self.value,
|
200
|
+
value_type=self.value_type)
|
201
|
+
|
202
|
+
|
203
|
+
def get_fleet_property(fleet_id: Optional[builtins.str] = None,
|
204
|
+
fleet_property_id: Optional[builtins.str] = None,
|
205
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetFleetPropertyResult:
|
206
|
+
"""
|
207
|
+
This data source provides details about a specific Fleet Property resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
208
|
+
|
209
|
+
Gets a fleet property by identifier.
|
210
|
+
|
211
|
+
## Example Usage
|
212
|
+
|
213
|
+
```python
|
214
|
+
import pulumi
|
215
|
+
import pulumi_oci as oci
|
216
|
+
|
217
|
+
test_fleet_property = oci.FleetAppsManagement.get_fleet_property(fleet_id=test_fleet["id"],
|
218
|
+
fleet_property_id=test_property["id"])
|
219
|
+
```
|
220
|
+
|
221
|
+
|
222
|
+
:param builtins.str fleet_id: Unique Fleet identifier.
|
223
|
+
:param builtins.str fleet_property_id: Unique fleetProperty identifier.
|
224
|
+
"""
|
225
|
+
__args__ = dict()
|
226
|
+
__args__['fleetId'] = fleet_id
|
227
|
+
__args__['fleetPropertyId'] = fleet_property_id
|
228
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
229
|
+
__ret__ = pulumi.runtime.invoke('oci:FleetAppsManagement/getFleetProperty:getFleetProperty', __args__, opts=opts, typ=GetFleetPropertyResult).value
|
230
|
+
|
231
|
+
return AwaitableGetFleetPropertyResult(
|
232
|
+
allowed_values=pulumi.get(__ret__, 'allowed_values'),
|
233
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
234
|
+
display_name=pulumi.get(__ret__, 'display_name'),
|
235
|
+
fleet_id=pulumi.get(__ret__, 'fleet_id'),
|
236
|
+
fleet_property_id=pulumi.get(__ret__, 'fleet_property_id'),
|
237
|
+
id=pulumi.get(__ret__, 'id'),
|
238
|
+
property_id=pulumi.get(__ret__, 'property_id'),
|
239
|
+
selection_type=pulumi.get(__ret__, 'selection_type'),
|
240
|
+
state=pulumi.get(__ret__, 'state'),
|
241
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
242
|
+
time_created=pulumi.get(__ret__, 'time_created'),
|
243
|
+
time_updated=pulumi.get(__ret__, 'time_updated'),
|
244
|
+
value=pulumi.get(__ret__, 'value'),
|
245
|
+
value_type=pulumi.get(__ret__, 'value_type'))
|
246
|
+
def get_fleet_property_output(fleet_id: Optional[pulumi.Input[builtins.str]] = None,
|
247
|
+
fleet_property_id: Optional[pulumi.Input[builtins.str]] = None,
|
248
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetFleetPropertyResult]:
|
249
|
+
"""
|
250
|
+
This data source provides details about a specific Fleet Property resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
251
|
+
|
252
|
+
Gets a fleet property by identifier.
|
253
|
+
|
254
|
+
## Example Usage
|
255
|
+
|
256
|
+
```python
|
257
|
+
import pulumi
|
258
|
+
import pulumi_oci as oci
|
259
|
+
|
260
|
+
test_fleet_property = oci.FleetAppsManagement.get_fleet_property(fleet_id=test_fleet["id"],
|
261
|
+
fleet_property_id=test_property["id"])
|
262
|
+
```
|
263
|
+
|
264
|
+
|
265
|
+
:param builtins.str fleet_id: Unique Fleet identifier.
|
266
|
+
:param builtins.str fleet_property_id: Unique fleetProperty identifier.
|
267
|
+
"""
|
268
|
+
__args__ = dict()
|
269
|
+
__args__['fleetId'] = fleet_id
|
270
|
+
__args__['fleetPropertyId'] = fleet_property_id
|
271
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
272
|
+
__ret__ = pulumi.runtime.invoke_output('oci:FleetAppsManagement/getFleetProperty:getFleetProperty', __args__, opts=opts, typ=GetFleetPropertyResult)
|
273
|
+
return __ret__.apply(lambda __response__: GetFleetPropertyResult(
|
274
|
+
allowed_values=pulumi.get(__response__, 'allowed_values'),
|
275
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
276
|
+
display_name=pulumi.get(__response__, 'display_name'),
|
277
|
+
fleet_id=pulumi.get(__response__, 'fleet_id'),
|
278
|
+
fleet_property_id=pulumi.get(__response__, 'fleet_property_id'),
|
279
|
+
id=pulumi.get(__response__, 'id'),
|
280
|
+
property_id=pulumi.get(__response__, 'property_id'),
|
281
|
+
selection_type=pulumi.get(__response__, 'selection_type'),
|
282
|
+
state=pulumi.get(__response__, 'state'),
|
283
|
+
system_tags=pulumi.get(__response__, 'system_tags'),
|
284
|
+
time_created=pulumi.get(__response__, 'time_created'),
|
285
|
+
time_updated=pulumi.get(__response__, 'time_updated'),
|
286
|
+
value=pulumi.get(__response__, 'value'),
|
287
|
+
value_type=pulumi.get(__response__, 'value_type')))
|