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,265 @@
|
|
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
|
+
'GetPlatformConfigurationsResult',
|
22
|
+
'AwaitableGetPlatformConfigurationsResult',
|
23
|
+
'get_platform_configurations',
|
24
|
+
'get_platform_configurations_output',
|
25
|
+
]
|
26
|
+
|
27
|
+
@pulumi.output_type
|
28
|
+
class GetPlatformConfigurationsResult:
|
29
|
+
"""
|
30
|
+
A collection of values returned by getPlatformConfigurations.
|
31
|
+
"""
|
32
|
+
def __init__(__self__, compartment_id=None, compartment_id_in_subtree=None, config_category=None, display_name=None, filters=None, id=None, platform_configuration_collections=None, state=None, type=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 compartment_id_in_subtree and not isinstance(compartment_id_in_subtree, bool):
|
37
|
+
raise TypeError("Expected argument 'compartment_id_in_subtree' to be a bool")
|
38
|
+
pulumi.set(__self__, "compartment_id_in_subtree", compartment_id_in_subtree)
|
39
|
+
if config_category and not isinstance(config_category, str):
|
40
|
+
raise TypeError("Expected argument 'config_category' to be a str")
|
41
|
+
pulumi.set(__self__, "config_category", config_category)
|
42
|
+
if display_name and not isinstance(display_name, str):
|
43
|
+
raise TypeError("Expected argument 'display_name' to be a str")
|
44
|
+
pulumi.set(__self__, "display_name", display_name)
|
45
|
+
if filters and not isinstance(filters, list):
|
46
|
+
raise TypeError("Expected argument 'filters' to be a list")
|
47
|
+
pulumi.set(__self__, "filters", filters)
|
48
|
+
if id and not isinstance(id, str):
|
49
|
+
raise TypeError("Expected argument 'id' to be a str")
|
50
|
+
pulumi.set(__self__, "id", id)
|
51
|
+
if platform_configuration_collections and not isinstance(platform_configuration_collections, list):
|
52
|
+
raise TypeError("Expected argument 'platform_configuration_collections' to be a list")
|
53
|
+
pulumi.set(__self__, "platform_configuration_collections", platform_configuration_collections)
|
54
|
+
if state and not isinstance(state, str):
|
55
|
+
raise TypeError("Expected argument 'state' to be a str")
|
56
|
+
pulumi.set(__self__, "state", state)
|
57
|
+
if type and not isinstance(type, str):
|
58
|
+
raise TypeError("Expected argument 'type' to be a str")
|
59
|
+
pulumi.set(__self__, "type", type)
|
60
|
+
|
61
|
+
@property
|
62
|
+
@pulumi.getter(name="compartmentId")
|
63
|
+
def compartment_id(self) -> Optional[builtins.str]:
|
64
|
+
"""
|
65
|
+
Compartment OCID
|
66
|
+
"""
|
67
|
+
return pulumi.get(self, "compartment_id")
|
68
|
+
|
69
|
+
@property
|
70
|
+
@pulumi.getter(name="compartmentIdInSubtree")
|
71
|
+
def compartment_id_in_subtree(self) -> Optional[builtins.bool]:
|
72
|
+
return pulumi.get(self, "compartment_id_in_subtree")
|
73
|
+
|
74
|
+
@property
|
75
|
+
@pulumi.getter(name="configCategory")
|
76
|
+
def config_category(self) -> Optional[builtins.str]:
|
77
|
+
"""
|
78
|
+
Category of configuration
|
79
|
+
"""
|
80
|
+
return pulumi.get(self, "config_category")
|
81
|
+
|
82
|
+
@property
|
83
|
+
@pulumi.getter(name="displayName")
|
84
|
+
def display_name(self) -> Optional[builtins.str]:
|
85
|
+
"""
|
86
|
+
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
|
87
|
+
"""
|
88
|
+
return pulumi.get(self, "display_name")
|
89
|
+
|
90
|
+
@property
|
91
|
+
@pulumi.getter
|
92
|
+
def filters(self) -> Optional[Sequence['outputs.GetPlatformConfigurationsFilterResult']]:
|
93
|
+
return pulumi.get(self, "filters")
|
94
|
+
|
95
|
+
@property
|
96
|
+
@pulumi.getter
|
97
|
+
def id(self) -> Optional[builtins.str]:
|
98
|
+
"""
|
99
|
+
The OCID of the resource.
|
100
|
+
"""
|
101
|
+
return pulumi.get(self, "id")
|
102
|
+
|
103
|
+
@property
|
104
|
+
@pulumi.getter(name="platformConfigurationCollections")
|
105
|
+
def platform_configuration_collections(self) -> Sequence['outputs.GetPlatformConfigurationsPlatformConfigurationCollectionResult']:
|
106
|
+
"""
|
107
|
+
The list of platform_configuration_collection.
|
108
|
+
"""
|
109
|
+
return pulumi.get(self, "platform_configuration_collections")
|
110
|
+
|
111
|
+
@property
|
112
|
+
@pulumi.getter
|
113
|
+
def state(self) -> Optional[builtins.str]:
|
114
|
+
"""
|
115
|
+
The current state of the PlatformConfiguration.
|
116
|
+
"""
|
117
|
+
return pulumi.get(self, "state")
|
118
|
+
|
119
|
+
@property
|
120
|
+
@pulumi.getter
|
121
|
+
def type(self) -> Optional[builtins.str]:
|
122
|
+
"""
|
123
|
+
The type of the configuration.
|
124
|
+
"""
|
125
|
+
return pulumi.get(self, "type")
|
126
|
+
|
127
|
+
|
128
|
+
class AwaitableGetPlatformConfigurationsResult(GetPlatformConfigurationsResult):
|
129
|
+
# pylint: disable=using-constant-test
|
130
|
+
def __await__(self):
|
131
|
+
if False:
|
132
|
+
yield self
|
133
|
+
return GetPlatformConfigurationsResult(
|
134
|
+
compartment_id=self.compartment_id,
|
135
|
+
compartment_id_in_subtree=self.compartment_id_in_subtree,
|
136
|
+
config_category=self.config_category,
|
137
|
+
display_name=self.display_name,
|
138
|
+
filters=self.filters,
|
139
|
+
id=self.id,
|
140
|
+
platform_configuration_collections=self.platform_configuration_collections,
|
141
|
+
state=self.state,
|
142
|
+
type=self.type)
|
143
|
+
|
144
|
+
|
145
|
+
def get_platform_configurations(compartment_id: Optional[builtins.str] = None,
|
146
|
+
compartment_id_in_subtree: Optional[builtins.bool] = None,
|
147
|
+
config_category: Optional[builtins.str] = None,
|
148
|
+
display_name: Optional[builtins.str] = None,
|
149
|
+
filters: Optional[Sequence[Union['GetPlatformConfigurationsFilterArgs', 'GetPlatformConfigurationsFilterArgsDict']]] = None,
|
150
|
+
id: Optional[builtins.str] = None,
|
151
|
+
state: Optional[builtins.str] = None,
|
152
|
+
type: Optional[builtins.str] = None,
|
153
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetPlatformConfigurationsResult:
|
154
|
+
"""
|
155
|
+
This data source provides the list of Platform Configurations in Oracle Cloud Infrastructure Fleet Apps Management service.
|
156
|
+
|
157
|
+
Returns a list of all the Platform Configurations in the specified compartment.
|
158
|
+
The query parameter `compartmentId` is required unless the query parameter `id` is specified.
|
159
|
+
|
160
|
+
## Example Usage
|
161
|
+
|
162
|
+
```python
|
163
|
+
import pulumi
|
164
|
+
import pulumi_oci as oci
|
165
|
+
|
166
|
+
test_platform_configurations = oci.FleetAppsManagement.get_platform_configurations(compartment_id=compartment_id,
|
167
|
+
compartment_id_in_subtree=platform_configuration_compartment_id_in_subtree,
|
168
|
+
config_category=platform_configuration_config_category,
|
169
|
+
display_name=platform_configuration_display_name,
|
170
|
+
id=platform_configuration_id,
|
171
|
+
state=platform_configuration_state,
|
172
|
+
type=platform_configuration_type)
|
173
|
+
```
|
174
|
+
|
175
|
+
|
176
|
+
: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.
|
177
|
+
:param builtins.bool compartment_id_in_subtree: If set to true, resources will be returned for not only the provided compartment, but all compartments which descend from it. Which resources are returned and their field contents depends on the value of accessLevel.
|
178
|
+
:param builtins.str config_category: Config Category
|
179
|
+
:param builtins.str display_name: A filter to return only resources that match the entire display name given.
|
180
|
+
:param builtins.str id: Unique identifier or OCID for listing a single Platform Configuration by id. Either compartmentId or id must be provided.
|
181
|
+
:param builtins.str state: A filter to return only resources their lifecycleState matches the given lifecycleState.
|
182
|
+
:param builtins.str type: A filter to return Platform Configurations whose type matches the given type.
|
183
|
+
"""
|
184
|
+
__args__ = dict()
|
185
|
+
__args__['compartmentId'] = compartment_id
|
186
|
+
__args__['compartmentIdInSubtree'] = compartment_id_in_subtree
|
187
|
+
__args__['configCategory'] = config_category
|
188
|
+
__args__['displayName'] = display_name
|
189
|
+
__args__['filters'] = filters
|
190
|
+
__args__['id'] = id
|
191
|
+
__args__['state'] = state
|
192
|
+
__args__['type'] = type
|
193
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
194
|
+
__ret__ = pulumi.runtime.invoke('oci:FleetAppsManagement/getPlatformConfigurations:getPlatformConfigurations', __args__, opts=opts, typ=GetPlatformConfigurationsResult).value
|
195
|
+
|
196
|
+
return AwaitableGetPlatformConfigurationsResult(
|
197
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
198
|
+
compartment_id_in_subtree=pulumi.get(__ret__, 'compartment_id_in_subtree'),
|
199
|
+
config_category=pulumi.get(__ret__, 'config_category'),
|
200
|
+
display_name=pulumi.get(__ret__, 'display_name'),
|
201
|
+
filters=pulumi.get(__ret__, 'filters'),
|
202
|
+
id=pulumi.get(__ret__, 'id'),
|
203
|
+
platform_configuration_collections=pulumi.get(__ret__, 'platform_configuration_collections'),
|
204
|
+
state=pulumi.get(__ret__, 'state'),
|
205
|
+
type=pulumi.get(__ret__, 'type'))
|
206
|
+
def get_platform_configurations_output(compartment_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
207
|
+
compartment_id_in_subtree: Optional[pulumi.Input[Optional[builtins.bool]]] = None,
|
208
|
+
config_category: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
209
|
+
display_name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
210
|
+
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetPlatformConfigurationsFilterArgs', 'GetPlatformConfigurationsFilterArgsDict']]]]] = None,
|
211
|
+
id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
212
|
+
state: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
213
|
+
type: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
214
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetPlatformConfigurationsResult]:
|
215
|
+
"""
|
216
|
+
This data source provides the list of Platform Configurations in Oracle Cloud Infrastructure Fleet Apps Management service.
|
217
|
+
|
218
|
+
Returns a list of all the Platform Configurations in the specified compartment.
|
219
|
+
The query parameter `compartmentId` is required unless the query parameter `id` is specified.
|
220
|
+
|
221
|
+
## Example Usage
|
222
|
+
|
223
|
+
```python
|
224
|
+
import pulumi
|
225
|
+
import pulumi_oci as oci
|
226
|
+
|
227
|
+
test_platform_configurations = oci.FleetAppsManagement.get_platform_configurations(compartment_id=compartment_id,
|
228
|
+
compartment_id_in_subtree=platform_configuration_compartment_id_in_subtree,
|
229
|
+
config_category=platform_configuration_config_category,
|
230
|
+
display_name=platform_configuration_display_name,
|
231
|
+
id=platform_configuration_id,
|
232
|
+
state=platform_configuration_state,
|
233
|
+
type=platform_configuration_type)
|
234
|
+
```
|
235
|
+
|
236
|
+
|
237
|
+
: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.
|
238
|
+
:param builtins.bool compartment_id_in_subtree: If set to true, resources will be returned for not only the provided compartment, but all compartments which descend from it. Which resources are returned and their field contents depends on the value of accessLevel.
|
239
|
+
:param builtins.str config_category: Config Category
|
240
|
+
:param builtins.str display_name: A filter to return only resources that match the entire display name given.
|
241
|
+
:param builtins.str id: Unique identifier or OCID for listing a single Platform Configuration by id. Either compartmentId or id must be provided.
|
242
|
+
:param builtins.str state: A filter to return only resources their lifecycleState matches the given lifecycleState.
|
243
|
+
:param builtins.str type: A filter to return Platform Configurations whose type matches the given type.
|
244
|
+
"""
|
245
|
+
__args__ = dict()
|
246
|
+
__args__['compartmentId'] = compartment_id
|
247
|
+
__args__['compartmentIdInSubtree'] = compartment_id_in_subtree
|
248
|
+
__args__['configCategory'] = config_category
|
249
|
+
__args__['displayName'] = display_name
|
250
|
+
__args__['filters'] = filters
|
251
|
+
__args__['id'] = id
|
252
|
+
__args__['state'] = state
|
253
|
+
__args__['type'] = type
|
254
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
255
|
+
__ret__ = pulumi.runtime.invoke_output('oci:FleetAppsManagement/getPlatformConfigurations:getPlatformConfigurations', __args__, opts=opts, typ=GetPlatformConfigurationsResult)
|
256
|
+
return __ret__.apply(lambda __response__: GetPlatformConfigurationsResult(
|
257
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
258
|
+
compartment_id_in_subtree=pulumi.get(__response__, 'compartment_id_in_subtree'),
|
259
|
+
config_category=pulumi.get(__response__, 'config_category'),
|
260
|
+
display_name=pulumi.get(__response__, 'display_name'),
|
261
|
+
filters=pulumi.get(__response__, 'filters'),
|
262
|
+
id=pulumi.get(__response__, 'id'),
|
263
|
+
platform_configuration_collections=pulumi.get(__response__, 'platform_configuration_collections'),
|
264
|
+
state=pulumi.get(__response__, 'state'),
|
265
|
+
type=pulumi.get(__response__, 'type')))
|
@@ -29,7 +29,7 @@ class GetPropertiesResult:
|
|
29
29
|
"""
|
30
30
|
A collection of values returned by getProperties.
|
31
31
|
"""
|
32
|
-
def __init__(__self__, compartment_id=None, display_name=None, filters=None, id=None, property_collections=None, scope=None, state=None):
|
32
|
+
def __init__(__self__, compartment_id=None, display_name=None, filters=None, id=None, property_collections=None, scope=None, state=None, type=None):
|
33
33
|
if compartment_id and not isinstance(compartment_id, str):
|
34
34
|
raise TypeError("Expected argument 'compartment_id' to be a str")
|
35
35
|
pulumi.set(__self__, "compartment_id", compartment_id)
|
@@ -51,12 +51,15 @@ class GetPropertiesResult:
|
|
51
51
|
if state and not isinstance(state, str):
|
52
52
|
raise TypeError("Expected argument 'state' to be a str")
|
53
53
|
pulumi.set(__self__, "state", state)
|
54
|
+
if type and not isinstance(type, str):
|
55
|
+
raise TypeError("Expected argument 'type' to be a str")
|
56
|
+
pulumi.set(__self__, "type", type)
|
54
57
|
|
55
58
|
@property
|
56
59
|
@pulumi.getter(name="compartmentId")
|
57
60
|
def compartment_id(self) -> Optional[builtins.str]:
|
58
61
|
"""
|
59
|
-
|
62
|
+
Compartment OCID
|
60
63
|
"""
|
61
64
|
return pulumi.get(self, "compartment_id")
|
62
65
|
|
@@ -105,6 +108,14 @@ class GetPropertiesResult:
|
|
105
108
|
"""
|
106
109
|
return pulumi.get(self, "state")
|
107
110
|
|
111
|
+
@property
|
112
|
+
@pulumi.getter
|
113
|
+
def type(self) -> Optional[builtins.str]:
|
114
|
+
"""
|
115
|
+
The type of the property.
|
116
|
+
"""
|
117
|
+
return pulumi.get(self, "type")
|
118
|
+
|
108
119
|
|
109
120
|
class AwaitableGetPropertiesResult(GetPropertiesResult):
|
110
121
|
# pylint: disable=using-constant-test
|
@@ -118,7 +129,8 @@ class AwaitableGetPropertiesResult(GetPropertiesResult):
|
|
118
129
|
id=self.id,
|
119
130
|
property_collections=self.property_collections,
|
120
131
|
scope=self.scope,
|
121
|
-
state=self.state
|
132
|
+
state=self.state,
|
133
|
+
type=self.type)
|
122
134
|
|
123
135
|
|
124
136
|
def get_properties(compartment_id: Optional[builtins.str] = None,
|
@@ -127,11 +139,13 @@ def get_properties(compartment_id: Optional[builtins.str] = None,
|
|
127
139
|
id: Optional[builtins.str] = None,
|
128
140
|
scope: Optional[builtins.str] = None,
|
129
141
|
state: Optional[builtins.str] = None,
|
142
|
+
type: Optional[builtins.str] = None,
|
130
143
|
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetPropertiesResult:
|
131
144
|
"""
|
132
145
|
This data source provides the list of Properties in Oracle Cloud Infrastructure Fleet Apps Management service.
|
133
146
|
|
134
|
-
|
147
|
+
Returns a list of all the Properties in the specified compartment.
|
148
|
+
The query parameter `compartmentId` is required unless the query parameter `id` is specified.
|
135
149
|
|
136
150
|
## Example Usage
|
137
151
|
|
@@ -143,15 +157,17 @@ def get_properties(compartment_id: Optional[builtins.str] = None,
|
|
143
157
|
display_name=property_display_name,
|
144
158
|
id=property_id,
|
145
159
|
scope=property_scope,
|
146
|
-
state=property_state
|
160
|
+
state=property_state,
|
161
|
+
type=property_type)
|
147
162
|
```
|
148
163
|
|
149
164
|
|
150
|
-
:param builtins.str compartment_id: The ID of the compartment in which to list resources.
|
165
|
+
: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.
|
151
166
|
:param builtins.str display_name: A filter to return only resources that match the entire display name given.
|
152
|
-
:param builtins.str id:
|
167
|
+
:param builtins.str id: Unique identifier or OCID for listing a single Property by id. Either compartmentId or id must be provided.
|
153
168
|
:param builtins.str scope: A filter to return only resources their scope matches the given scope.
|
154
169
|
:param builtins.str state: A filter to return only resources whose lifecycleState matches the given lifecycleState.
|
170
|
+
:param builtins.str type: A filter to return properties whose type matches the given type.
|
155
171
|
"""
|
156
172
|
__args__ = dict()
|
157
173
|
__args__['compartmentId'] = compartment_id
|
@@ -160,6 +176,7 @@ def get_properties(compartment_id: Optional[builtins.str] = None,
|
|
160
176
|
__args__['id'] = id
|
161
177
|
__args__['scope'] = scope
|
162
178
|
__args__['state'] = state
|
179
|
+
__args__['type'] = type
|
163
180
|
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
164
181
|
__ret__ = pulumi.runtime.invoke('oci:FleetAppsManagement/getProperties:getProperties', __args__, opts=opts, typ=GetPropertiesResult).value
|
165
182
|
|
@@ -170,18 +187,21 @@ def get_properties(compartment_id: Optional[builtins.str] = None,
|
|
170
187
|
id=pulumi.get(__ret__, 'id'),
|
171
188
|
property_collections=pulumi.get(__ret__, 'property_collections'),
|
172
189
|
scope=pulumi.get(__ret__, 'scope'),
|
173
|
-
state=pulumi.get(__ret__, 'state')
|
190
|
+
state=pulumi.get(__ret__, 'state'),
|
191
|
+
type=pulumi.get(__ret__, 'type'))
|
174
192
|
def get_properties_output(compartment_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
175
193
|
display_name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
176
194
|
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetPropertiesFilterArgs', 'GetPropertiesFilterArgsDict']]]]] = None,
|
177
195
|
id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
178
196
|
scope: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
179
197
|
state: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
198
|
+
type: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
180
199
|
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetPropertiesResult]:
|
181
200
|
"""
|
182
201
|
This data source provides the list of Properties in Oracle Cloud Infrastructure Fleet Apps Management service.
|
183
202
|
|
184
|
-
|
203
|
+
Returns a list of all the Properties in the specified compartment.
|
204
|
+
The query parameter `compartmentId` is required unless the query parameter `id` is specified.
|
185
205
|
|
186
206
|
## Example Usage
|
187
207
|
|
@@ -193,15 +213,17 @@ def get_properties_output(compartment_id: Optional[pulumi.Input[Optional[builtin
|
|
193
213
|
display_name=property_display_name,
|
194
214
|
id=property_id,
|
195
215
|
scope=property_scope,
|
196
|
-
state=property_state
|
216
|
+
state=property_state,
|
217
|
+
type=property_type)
|
197
218
|
```
|
198
219
|
|
199
220
|
|
200
|
-
:param builtins.str compartment_id: The ID of the compartment in which to list resources.
|
221
|
+
: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.
|
201
222
|
:param builtins.str display_name: A filter to return only resources that match the entire display name given.
|
202
|
-
:param builtins.str id:
|
223
|
+
:param builtins.str id: Unique identifier or OCID for listing a single Property by id. Either compartmentId or id must be provided.
|
203
224
|
:param builtins.str scope: A filter to return only resources their scope matches the given scope.
|
204
225
|
:param builtins.str state: A filter to return only resources whose lifecycleState matches the given lifecycleState.
|
226
|
+
:param builtins.str type: A filter to return properties whose type matches the given type.
|
205
227
|
"""
|
206
228
|
__args__ = dict()
|
207
229
|
__args__['compartmentId'] = compartment_id
|
@@ -210,6 +232,7 @@ def get_properties_output(compartment_id: Optional[pulumi.Input[Optional[builtin
|
|
210
232
|
__args__['id'] = id
|
211
233
|
__args__['scope'] = scope
|
212
234
|
__args__['state'] = state
|
235
|
+
__args__['type'] = type
|
213
236
|
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
214
237
|
__ret__ = pulumi.runtime.invoke_output('oci:FleetAppsManagement/getProperties:getProperties', __args__, opts=opts, typ=GetPropertiesResult)
|
215
238
|
return __ret__.apply(lambda __response__: GetPropertiesResult(
|
@@ -219,4 +242,5 @@ def get_properties_output(compartment_id: Optional[pulumi.Input[Optional[builtin
|
|
219
242
|
id=pulumi.get(__response__, 'id'),
|
220
243
|
property_collections=pulumi.get(__response__, 'property_collections'),
|
221
244
|
scope=pulumi.get(__response__, 'scope'),
|
222
|
-
state=pulumi.get(__response__, 'state')
|
245
|
+
state=pulumi.get(__response__, 'state'),
|
246
|
+
type=pulumi.get(__response__, 'type')))
|