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,274 @@
|
|
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
|
+
'GetFleetCredentialResult',
|
21
|
+
'AwaitableGetFleetCredentialResult',
|
22
|
+
'get_fleet_credential',
|
23
|
+
'get_fleet_credential_output',
|
24
|
+
]
|
25
|
+
|
26
|
+
@pulumi.output_type
|
27
|
+
class GetFleetCredentialResult:
|
28
|
+
"""
|
29
|
+
A collection of values returned by getFleetCredential.
|
30
|
+
"""
|
31
|
+
def __init__(__self__, compartment_id=None, display_name=None, entity_specifics=None, fleet_credential_id=None, fleet_id=None, id=None, lifecycle_details=None, passwords=None, state=None, system_tags=None, time_created=None, time_updated=None, users=None):
|
32
|
+
if compartment_id and not isinstance(compartment_id, str):
|
33
|
+
raise TypeError("Expected argument 'compartment_id' to be a str")
|
34
|
+
pulumi.set(__self__, "compartment_id", compartment_id)
|
35
|
+
if display_name and not isinstance(display_name, str):
|
36
|
+
raise TypeError("Expected argument 'display_name' to be a str")
|
37
|
+
pulumi.set(__self__, "display_name", display_name)
|
38
|
+
if entity_specifics and not isinstance(entity_specifics, list):
|
39
|
+
raise TypeError("Expected argument 'entity_specifics' to be a list")
|
40
|
+
pulumi.set(__self__, "entity_specifics", entity_specifics)
|
41
|
+
if fleet_credential_id and not isinstance(fleet_credential_id, str):
|
42
|
+
raise TypeError("Expected argument 'fleet_credential_id' to be a str")
|
43
|
+
pulumi.set(__self__, "fleet_credential_id", fleet_credential_id)
|
44
|
+
if fleet_id and not isinstance(fleet_id, str):
|
45
|
+
raise TypeError("Expected argument 'fleet_id' to be a str")
|
46
|
+
pulumi.set(__self__, "fleet_id", fleet_id)
|
47
|
+
if id and not isinstance(id, str):
|
48
|
+
raise TypeError("Expected argument 'id' to be a str")
|
49
|
+
pulumi.set(__self__, "id", id)
|
50
|
+
if lifecycle_details and not isinstance(lifecycle_details, str):
|
51
|
+
raise TypeError("Expected argument 'lifecycle_details' to be a str")
|
52
|
+
pulumi.set(__self__, "lifecycle_details", lifecycle_details)
|
53
|
+
if passwords and not isinstance(passwords, list):
|
54
|
+
raise TypeError("Expected argument 'passwords' to be a list")
|
55
|
+
pulumi.set(__self__, "passwords", passwords)
|
56
|
+
if state and not isinstance(state, str):
|
57
|
+
raise TypeError("Expected argument 'state' to be a str")
|
58
|
+
pulumi.set(__self__, "state", state)
|
59
|
+
if system_tags and not isinstance(system_tags, dict):
|
60
|
+
raise TypeError("Expected argument 'system_tags' to be a dict")
|
61
|
+
pulumi.set(__self__, "system_tags", system_tags)
|
62
|
+
if time_created and not isinstance(time_created, str):
|
63
|
+
raise TypeError("Expected argument 'time_created' to be a str")
|
64
|
+
pulumi.set(__self__, "time_created", time_created)
|
65
|
+
if time_updated and not isinstance(time_updated, str):
|
66
|
+
raise TypeError("Expected argument 'time_updated' to be a str")
|
67
|
+
pulumi.set(__self__, "time_updated", time_updated)
|
68
|
+
if users and not isinstance(users, list):
|
69
|
+
raise TypeError("Expected argument 'users' to be a list")
|
70
|
+
pulumi.set(__self__, "users", users)
|
71
|
+
|
72
|
+
@property
|
73
|
+
@pulumi.getter(name="compartmentId")
|
74
|
+
def compartment_id(self) -> builtins.str:
|
75
|
+
"""
|
76
|
+
Compartment OCID
|
77
|
+
"""
|
78
|
+
return pulumi.get(self, "compartment_id")
|
79
|
+
|
80
|
+
@property
|
81
|
+
@pulumi.getter(name="displayName")
|
82
|
+
def display_name(self) -> builtins.str:
|
83
|
+
"""
|
84
|
+
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
|
85
|
+
"""
|
86
|
+
return pulumi.get(self, "display_name")
|
87
|
+
|
88
|
+
@property
|
89
|
+
@pulumi.getter(name="entitySpecifics")
|
90
|
+
def entity_specifics(self) -> Sequence['outputs.GetFleetCredentialEntitySpecificResult']:
|
91
|
+
"""
|
92
|
+
Credential specific Details.
|
93
|
+
"""
|
94
|
+
return pulumi.get(self, "entity_specifics")
|
95
|
+
|
96
|
+
@property
|
97
|
+
@pulumi.getter(name="fleetCredentialId")
|
98
|
+
def fleet_credential_id(self) -> builtins.str:
|
99
|
+
return pulumi.get(self, "fleet_credential_id")
|
100
|
+
|
101
|
+
@property
|
102
|
+
@pulumi.getter(name="fleetId")
|
103
|
+
def fleet_id(self) -> builtins.str:
|
104
|
+
return pulumi.get(self, "fleet_id")
|
105
|
+
|
106
|
+
@property
|
107
|
+
@pulumi.getter
|
108
|
+
def id(self) -> builtins.str:
|
109
|
+
"""
|
110
|
+
The unique id of the resource.
|
111
|
+
"""
|
112
|
+
return pulumi.get(self, "id")
|
113
|
+
|
114
|
+
@property
|
115
|
+
@pulumi.getter(name="lifecycleDetails")
|
116
|
+
def lifecycle_details(self) -> builtins.str:
|
117
|
+
"""
|
118
|
+
A message describing the current state in more detail. For example, can be used to provide actionable information for a resource in Failed state.
|
119
|
+
"""
|
120
|
+
return pulumi.get(self, "lifecycle_details")
|
121
|
+
|
122
|
+
@property
|
123
|
+
@pulumi.getter
|
124
|
+
def passwords(self) -> Sequence['outputs.GetFleetCredentialPasswordResult']:
|
125
|
+
"""
|
126
|
+
Credential Details.
|
127
|
+
"""
|
128
|
+
return pulumi.get(self, "passwords")
|
129
|
+
|
130
|
+
@property
|
131
|
+
@pulumi.getter
|
132
|
+
def state(self) -> builtins.str:
|
133
|
+
"""
|
134
|
+
The current state of the FleetCredential.
|
135
|
+
"""
|
136
|
+
return pulumi.get(self, "state")
|
137
|
+
|
138
|
+
@property
|
139
|
+
@pulumi.getter(name="systemTags")
|
140
|
+
def system_tags(self) -> Mapping[str, builtins.str]:
|
141
|
+
"""
|
142
|
+
System tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"orcl-cloud.free-tier-retained": "true"}`
|
143
|
+
"""
|
144
|
+
return pulumi.get(self, "system_tags")
|
145
|
+
|
146
|
+
@property
|
147
|
+
@pulumi.getter(name="timeCreated")
|
148
|
+
def time_created(self) -> builtins.str:
|
149
|
+
"""
|
150
|
+
The time this resource was created. An RFC3339 formatted datetime string.
|
151
|
+
"""
|
152
|
+
return pulumi.get(self, "time_created")
|
153
|
+
|
154
|
+
@property
|
155
|
+
@pulumi.getter(name="timeUpdated")
|
156
|
+
def time_updated(self) -> builtins.str:
|
157
|
+
"""
|
158
|
+
The time this resource was last updated. An RFC3339 formatted datetime string.
|
159
|
+
"""
|
160
|
+
return pulumi.get(self, "time_updated")
|
161
|
+
|
162
|
+
@property
|
163
|
+
@pulumi.getter
|
164
|
+
def users(self) -> Sequence['outputs.GetFleetCredentialUserResult']:
|
165
|
+
"""
|
166
|
+
Credential Details.
|
167
|
+
"""
|
168
|
+
return pulumi.get(self, "users")
|
169
|
+
|
170
|
+
|
171
|
+
class AwaitableGetFleetCredentialResult(GetFleetCredentialResult):
|
172
|
+
# pylint: disable=using-constant-test
|
173
|
+
def __await__(self):
|
174
|
+
if False:
|
175
|
+
yield self
|
176
|
+
return GetFleetCredentialResult(
|
177
|
+
compartment_id=self.compartment_id,
|
178
|
+
display_name=self.display_name,
|
179
|
+
entity_specifics=self.entity_specifics,
|
180
|
+
fleet_credential_id=self.fleet_credential_id,
|
181
|
+
fleet_id=self.fleet_id,
|
182
|
+
id=self.id,
|
183
|
+
lifecycle_details=self.lifecycle_details,
|
184
|
+
passwords=self.passwords,
|
185
|
+
state=self.state,
|
186
|
+
system_tags=self.system_tags,
|
187
|
+
time_created=self.time_created,
|
188
|
+
time_updated=self.time_updated,
|
189
|
+
users=self.users)
|
190
|
+
|
191
|
+
|
192
|
+
def get_fleet_credential(fleet_credential_id: Optional[builtins.str] = None,
|
193
|
+
fleet_id: Optional[builtins.str] = None,
|
194
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetFleetCredentialResult:
|
195
|
+
"""
|
196
|
+
This data source provides details about a specific Fleet Credential resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
197
|
+
|
198
|
+
Gets a fleet credential by identifier.
|
199
|
+
|
200
|
+
## Example Usage
|
201
|
+
|
202
|
+
```python
|
203
|
+
import pulumi
|
204
|
+
import pulumi_oci as oci
|
205
|
+
|
206
|
+
test_fleet_credential = oci.FleetAppsManagement.get_fleet_credential(fleet_credential_id=test_fleet_credential_oci_fleet_apps_management_fleet_credential["id"],
|
207
|
+
fleet_id=test_fleet["id"])
|
208
|
+
```
|
209
|
+
|
210
|
+
|
211
|
+
:param builtins.str fleet_credential_id: unique FleetCredential identifier
|
212
|
+
:param builtins.str fleet_id: Unique Fleet identifier.
|
213
|
+
"""
|
214
|
+
__args__ = dict()
|
215
|
+
__args__['fleetCredentialId'] = fleet_credential_id
|
216
|
+
__args__['fleetId'] = fleet_id
|
217
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
218
|
+
__ret__ = pulumi.runtime.invoke('oci:FleetAppsManagement/getFleetCredential:getFleetCredential', __args__, opts=opts, typ=GetFleetCredentialResult).value
|
219
|
+
|
220
|
+
return AwaitableGetFleetCredentialResult(
|
221
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
222
|
+
display_name=pulumi.get(__ret__, 'display_name'),
|
223
|
+
entity_specifics=pulumi.get(__ret__, 'entity_specifics'),
|
224
|
+
fleet_credential_id=pulumi.get(__ret__, 'fleet_credential_id'),
|
225
|
+
fleet_id=pulumi.get(__ret__, 'fleet_id'),
|
226
|
+
id=pulumi.get(__ret__, 'id'),
|
227
|
+
lifecycle_details=pulumi.get(__ret__, 'lifecycle_details'),
|
228
|
+
passwords=pulumi.get(__ret__, 'passwords'),
|
229
|
+
state=pulumi.get(__ret__, 'state'),
|
230
|
+
system_tags=pulumi.get(__ret__, 'system_tags'),
|
231
|
+
time_created=pulumi.get(__ret__, 'time_created'),
|
232
|
+
time_updated=pulumi.get(__ret__, 'time_updated'),
|
233
|
+
users=pulumi.get(__ret__, 'users'))
|
234
|
+
def get_fleet_credential_output(fleet_credential_id: Optional[pulumi.Input[builtins.str]] = None,
|
235
|
+
fleet_id: Optional[pulumi.Input[builtins.str]] = None,
|
236
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetFleetCredentialResult]:
|
237
|
+
"""
|
238
|
+
This data source provides details about a specific Fleet Credential resource in Oracle Cloud Infrastructure Fleet Apps Management service.
|
239
|
+
|
240
|
+
Gets a fleet credential by identifier.
|
241
|
+
|
242
|
+
## Example Usage
|
243
|
+
|
244
|
+
```python
|
245
|
+
import pulumi
|
246
|
+
import pulumi_oci as oci
|
247
|
+
|
248
|
+
test_fleet_credential = oci.FleetAppsManagement.get_fleet_credential(fleet_credential_id=test_fleet_credential_oci_fleet_apps_management_fleet_credential["id"],
|
249
|
+
fleet_id=test_fleet["id"])
|
250
|
+
```
|
251
|
+
|
252
|
+
|
253
|
+
:param builtins.str fleet_credential_id: unique FleetCredential identifier
|
254
|
+
:param builtins.str fleet_id: Unique Fleet identifier.
|
255
|
+
"""
|
256
|
+
__args__ = dict()
|
257
|
+
__args__['fleetCredentialId'] = fleet_credential_id
|
258
|
+
__args__['fleetId'] = fleet_id
|
259
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
260
|
+
__ret__ = pulumi.runtime.invoke_output('oci:FleetAppsManagement/getFleetCredential:getFleetCredential', __args__, opts=opts, typ=GetFleetCredentialResult)
|
261
|
+
return __ret__.apply(lambda __response__: GetFleetCredentialResult(
|
262
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
263
|
+
display_name=pulumi.get(__response__, 'display_name'),
|
264
|
+
entity_specifics=pulumi.get(__response__, 'entity_specifics'),
|
265
|
+
fleet_credential_id=pulumi.get(__response__, 'fleet_credential_id'),
|
266
|
+
fleet_id=pulumi.get(__response__, 'fleet_id'),
|
267
|
+
id=pulumi.get(__response__, 'id'),
|
268
|
+
lifecycle_details=pulumi.get(__response__, 'lifecycle_details'),
|
269
|
+
passwords=pulumi.get(__response__, 'passwords'),
|
270
|
+
state=pulumi.get(__response__, 'state'),
|
271
|
+
system_tags=pulumi.get(__response__, 'system_tags'),
|
272
|
+
time_created=pulumi.get(__response__, 'time_created'),
|
273
|
+
time_updated=pulumi.get(__response__, 'time_updated'),
|
274
|
+
users=pulumi.get(__response__, 'users')))
|
@@ -0,0 +1,283 @@
|
|
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
|
+
'GetFleetCredentialsResult',
|
22
|
+
'AwaitableGetFleetCredentialsResult',
|
23
|
+
'get_fleet_credentials',
|
24
|
+
'get_fleet_credentials_output',
|
25
|
+
]
|
26
|
+
|
27
|
+
@pulumi.output_type
|
28
|
+
class GetFleetCredentialsResult:
|
29
|
+
"""
|
30
|
+
A collection of values returned by getFleetCredentials.
|
31
|
+
"""
|
32
|
+
def __init__(__self__, compartment_id=None, credential_level=None, display_name=None, filters=None, fleet_credential_collections=None, fleet_id=None, id=None, resource_id=None, state=None, target=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 credential_level and not isinstance(credential_level, str):
|
37
|
+
raise TypeError("Expected argument 'credential_level' to be a str")
|
38
|
+
pulumi.set(__self__, "credential_level", credential_level)
|
39
|
+
if display_name and not isinstance(display_name, str):
|
40
|
+
raise TypeError("Expected argument 'display_name' to be a str")
|
41
|
+
pulumi.set(__self__, "display_name", display_name)
|
42
|
+
if filters and not isinstance(filters, list):
|
43
|
+
raise TypeError("Expected argument 'filters' to be a list")
|
44
|
+
pulumi.set(__self__, "filters", filters)
|
45
|
+
if fleet_credential_collections and not isinstance(fleet_credential_collections, list):
|
46
|
+
raise TypeError("Expected argument 'fleet_credential_collections' to be a list")
|
47
|
+
pulumi.set(__self__, "fleet_credential_collections", fleet_credential_collections)
|
48
|
+
if fleet_id and not isinstance(fleet_id, str):
|
49
|
+
raise TypeError("Expected argument 'fleet_id' to be a str")
|
50
|
+
pulumi.set(__self__, "fleet_id", fleet_id)
|
51
|
+
if id and not isinstance(id, str):
|
52
|
+
raise TypeError("Expected argument 'id' to be a str")
|
53
|
+
pulumi.set(__self__, "id", id)
|
54
|
+
if resource_id and not isinstance(resource_id, str):
|
55
|
+
raise TypeError("Expected argument 'resource_id' to be a str")
|
56
|
+
pulumi.set(__self__, "resource_id", resource_id)
|
57
|
+
if state and not isinstance(state, str):
|
58
|
+
raise TypeError("Expected argument 'state' to be a str")
|
59
|
+
pulumi.set(__self__, "state", state)
|
60
|
+
if target and not isinstance(target, str):
|
61
|
+
raise TypeError("Expected argument 'target' to be a str")
|
62
|
+
pulumi.set(__self__, "target", target)
|
63
|
+
|
64
|
+
@property
|
65
|
+
@pulumi.getter(name="compartmentId")
|
66
|
+
def compartment_id(self) -> Optional[builtins.str]:
|
67
|
+
"""
|
68
|
+
Compartment OCID
|
69
|
+
"""
|
70
|
+
return pulumi.get(self, "compartment_id")
|
71
|
+
|
72
|
+
@property
|
73
|
+
@pulumi.getter(name="credentialLevel")
|
74
|
+
def credential_level(self) -> Optional[builtins.str]:
|
75
|
+
"""
|
76
|
+
At what level the credential is provided?
|
77
|
+
"""
|
78
|
+
return pulumi.get(self, "credential_level")
|
79
|
+
|
80
|
+
@property
|
81
|
+
@pulumi.getter(name="displayName")
|
82
|
+
def display_name(self) -> Optional[builtins.str]:
|
83
|
+
"""
|
84
|
+
A user-friendly name. Does not have to be unique, and it's changeable. Avoid entering confidential information. Example: `My new resource`
|
85
|
+
"""
|
86
|
+
return pulumi.get(self, "display_name")
|
87
|
+
|
88
|
+
@property
|
89
|
+
@pulumi.getter
|
90
|
+
def filters(self) -> Optional[Sequence['outputs.GetFleetCredentialsFilterResult']]:
|
91
|
+
return pulumi.get(self, "filters")
|
92
|
+
|
93
|
+
@property
|
94
|
+
@pulumi.getter(name="fleetCredentialCollections")
|
95
|
+
def fleet_credential_collections(self) -> Sequence['outputs.GetFleetCredentialsFleetCredentialCollectionResult']:
|
96
|
+
"""
|
97
|
+
The list of fleet_credential_collection.
|
98
|
+
"""
|
99
|
+
return pulumi.get(self, "fleet_credential_collections")
|
100
|
+
|
101
|
+
@property
|
102
|
+
@pulumi.getter(name="fleetId")
|
103
|
+
def fleet_id(self) -> builtins.str:
|
104
|
+
return pulumi.get(self, "fleet_id")
|
105
|
+
|
106
|
+
@property
|
107
|
+
@pulumi.getter
|
108
|
+
def id(self) -> Optional[builtins.str]:
|
109
|
+
"""
|
110
|
+
The unique id of the resource.
|
111
|
+
"""
|
112
|
+
return pulumi.get(self, "id")
|
113
|
+
|
114
|
+
@property
|
115
|
+
@pulumi.getter(name="resourceId")
|
116
|
+
def resource_id(self) -> Optional[builtins.str]:
|
117
|
+
"""
|
118
|
+
OCID of the resource associated with the target for which the credential is created.
|
119
|
+
"""
|
120
|
+
return pulumi.get(self, "resource_id")
|
121
|
+
|
122
|
+
@property
|
123
|
+
@pulumi.getter
|
124
|
+
def state(self) -> Optional[builtins.str]:
|
125
|
+
"""
|
126
|
+
The current state of the FleetCredential.
|
127
|
+
"""
|
128
|
+
return pulumi.get(self, "state")
|
129
|
+
|
130
|
+
@property
|
131
|
+
@pulumi.getter
|
132
|
+
def target(self) -> Optional[builtins.str]:
|
133
|
+
"""
|
134
|
+
Target name for which the credential is provided.
|
135
|
+
"""
|
136
|
+
return pulumi.get(self, "target")
|
137
|
+
|
138
|
+
|
139
|
+
class AwaitableGetFleetCredentialsResult(GetFleetCredentialsResult):
|
140
|
+
# pylint: disable=using-constant-test
|
141
|
+
def __await__(self):
|
142
|
+
if False:
|
143
|
+
yield self
|
144
|
+
return GetFleetCredentialsResult(
|
145
|
+
compartment_id=self.compartment_id,
|
146
|
+
credential_level=self.credential_level,
|
147
|
+
display_name=self.display_name,
|
148
|
+
filters=self.filters,
|
149
|
+
fleet_credential_collections=self.fleet_credential_collections,
|
150
|
+
fleet_id=self.fleet_id,
|
151
|
+
id=self.id,
|
152
|
+
resource_id=self.resource_id,
|
153
|
+
state=self.state,
|
154
|
+
target=self.target)
|
155
|
+
|
156
|
+
|
157
|
+
def get_fleet_credentials(compartment_id: Optional[builtins.str] = None,
|
158
|
+
credential_level: Optional[builtins.str] = None,
|
159
|
+
display_name: Optional[builtins.str] = None,
|
160
|
+
filters: Optional[Sequence[Union['GetFleetCredentialsFilterArgs', 'GetFleetCredentialsFilterArgsDict']]] = None,
|
161
|
+
fleet_id: Optional[builtins.str] = None,
|
162
|
+
id: Optional[builtins.str] = None,
|
163
|
+
resource_id: Optional[builtins.str] = None,
|
164
|
+
state: Optional[builtins.str] = None,
|
165
|
+
target: Optional[builtins.str] = None,
|
166
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetFleetCredentialsResult:
|
167
|
+
"""
|
168
|
+
This data source provides the list of Fleet Credentials in Oracle Cloud Infrastructure Fleet Apps Management service.
|
169
|
+
|
170
|
+
List credentials associated with a fleet.
|
171
|
+
|
172
|
+
## Example Usage
|
173
|
+
|
174
|
+
```python
|
175
|
+
import pulumi
|
176
|
+
import pulumi_oci as oci
|
177
|
+
|
178
|
+
test_fleet_credentials = oci.FleetAppsManagement.get_fleet_credentials(fleet_id=test_fleet["id"],
|
179
|
+
credential_level=fleet_credential_credential_level,
|
180
|
+
display_name=fleet_credential_display_name,
|
181
|
+
id=fleet_credential_id,
|
182
|
+
resource_id=test_resource["id"],
|
183
|
+
state=fleet_credential_state,
|
184
|
+
target=fleet_credential_target)
|
185
|
+
```
|
186
|
+
|
187
|
+
|
188
|
+
:param builtins.str compartment_id: Compartment OCID
|
189
|
+
:param builtins.str credential_level: A filter to return only resources whose credentialLevel matches the given credentialLevel.
|
190
|
+
:param builtins.str display_name: A filter to return only resources that match the entire display name given.
|
191
|
+
:param builtins.str fleet_id: Unique Fleet identifier.
|
192
|
+
:param builtins.str id: A filter to return only resources whose credential identifier matches the given identifier.
|
193
|
+
:param builtins.str resource_id: Resource Identifier
|
194
|
+
:param builtins.str state: A filter to return only resources whose lifecycleState matches the given lifecycleState.
|
195
|
+
:param builtins.str target: A filter to return only resources whose target matches the given target name.
|
196
|
+
"""
|
197
|
+
__args__ = dict()
|
198
|
+
__args__['compartmentId'] = compartment_id
|
199
|
+
__args__['credentialLevel'] = credential_level
|
200
|
+
__args__['displayName'] = display_name
|
201
|
+
__args__['filters'] = filters
|
202
|
+
__args__['fleetId'] = fleet_id
|
203
|
+
__args__['id'] = id
|
204
|
+
__args__['resourceId'] = resource_id
|
205
|
+
__args__['state'] = state
|
206
|
+
__args__['target'] = target
|
207
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
208
|
+
__ret__ = pulumi.runtime.invoke('oci:FleetAppsManagement/getFleetCredentials:getFleetCredentials', __args__, opts=opts, typ=GetFleetCredentialsResult).value
|
209
|
+
|
210
|
+
return AwaitableGetFleetCredentialsResult(
|
211
|
+
compartment_id=pulumi.get(__ret__, 'compartment_id'),
|
212
|
+
credential_level=pulumi.get(__ret__, 'credential_level'),
|
213
|
+
display_name=pulumi.get(__ret__, 'display_name'),
|
214
|
+
filters=pulumi.get(__ret__, 'filters'),
|
215
|
+
fleet_credential_collections=pulumi.get(__ret__, 'fleet_credential_collections'),
|
216
|
+
fleet_id=pulumi.get(__ret__, 'fleet_id'),
|
217
|
+
id=pulumi.get(__ret__, 'id'),
|
218
|
+
resource_id=pulumi.get(__ret__, 'resource_id'),
|
219
|
+
state=pulumi.get(__ret__, 'state'),
|
220
|
+
target=pulumi.get(__ret__, 'target'))
|
221
|
+
def get_fleet_credentials_output(compartment_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
222
|
+
credential_level: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
223
|
+
display_name: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
224
|
+
filters: Optional[pulumi.Input[Optional[Sequence[Union['GetFleetCredentialsFilterArgs', 'GetFleetCredentialsFilterArgsDict']]]]] = None,
|
225
|
+
fleet_id: Optional[pulumi.Input[builtins.str]] = None,
|
226
|
+
id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
227
|
+
resource_id: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
228
|
+
state: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
229
|
+
target: Optional[pulumi.Input[Optional[builtins.str]]] = None,
|
230
|
+
opts: Optional[Union[pulumi.InvokeOptions, pulumi.InvokeOutputOptions]] = None) -> pulumi.Output[GetFleetCredentialsResult]:
|
231
|
+
"""
|
232
|
+
This data source provides the list of Fleet Credentials in Oracle Cloud Infrastructure Fleet Apps Management service.
|
233
|
+
|
234
|
+
List credentials associated with a fleet.
|
235
|
+
|
236
|
+
## Example Usage
|
237
|
+
|
238
|
+
```python
|
239
|
+
import pulumi
|
240
|
+
import pulumi_oci as oci
|
241
|
+
|
242
|
+
test_fleet_credentials = oci.FleetAppsManagement.get_fleet_credentials(fleet_id=test_fleet["id"],
|
243
|
+
credential_level=fleet_credential_credential_level,
|
244
|
+
display_name=fleet_credential_display_name,
|
245
|
+
id=fleet_credential_id,
|
246
|
+
resource_id=test_resource["id"],
|
247
|
+
state=fleet_credential_state,
|
248
|
+
target=fleet_credential_target)
|
249
|
+
```
|
250
|
+
|
251
|
+
|
252
|
+
:param builtins.str compartment_id: Compartment OCID
|
253
|
+
:param builtins.str credential_level: A filter to return only resources whose credentialLevel matches the given credentialLevel.
|
254
|
+
:param builtins.str display_name: A filter to return only resources that match the entire display name given.
|
255
|
+
:param builtins.str fleet_id: Unique Fleet identifier.
|
256
|
+
:param builtins.str id: A filter to return only resources whose credential identifier matches the given identifier.
|
257
|
+
:param builtins.str resource_id: Resource Identifier
|
258
|
+
:param builtins.str state: A filter to return only resources whose lifecycleState matches the given lifecycleState.
|
259
|
+
:param builtins.str target: A filter to return only resources whose target matches the given target name.
|
260
|
+
"""
|
261
|
+
__args__ = dict()
|
262
|
+
__args__['compartmentId'] = compartment_id
|
263
|
+
__args__['credentialLevel'] = credential_level
|
264
|
+
__args__['displayName'] = display_name
|
265
|
+
__args__['filters'] = filters
|
266
|
+
__args__['fleetId'] = fleet_id
|
267
|
+
__args__['id'] = id
|
268
|
+
__args__['resourceId'] = resource_id
|
269
|
+
__args__['state'] = state
|
270
|
+
__args__['target'] = target
|
271
|
+
opts = pulumi.InvokeOutputOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
272
|
+
__ret__ = pulumi.runtime.invoke_output('oci:FleetAppsManagement/getFleetCredentials:getFleetCredentials', __args__, opts=opts, typ=GetFleetCredentialsResult)
|
273
|
+
return __ret__.apply(lambda __response__: GetFleetCredentialsResult(
|
274
|
+
compartment_id=pulumi.get(__response__, 'compartment_id'),
|
275
|
+
credential_level=pulumi.get(__response__, 'credential_level'),
|
276
|
+
display_name=pulumi.get(__response__, 'display_name'),
|
277
|
+
filters=pulumi.get(__response__, 'filters'),
|
278
|
+
fleet_credential_collections=pulumi.get(__response__, 'fleet_credential_collections'),
|
279
|
+
fleet_id=pulumi.get(__response__, 'fleet_id'),
|
280
|
+
id=pulumi.get(__response__, 'id'),
|
281
|
+
resource_id=pulumi.get(__response__, 'resource_id'),
|
282
|
+
state=pulumi.get(__response__, 'state'),
|
283
|
+
target=pulumi.get(__response__, 'target')))
|
@@ -156,7 +156,7 @@ def get_fleet_products(compartment_id: Optional[builtins.str] = None,
|
|
156
156
|
```
|
157
157
|
|
158
158
|
|
159
|
-
:param builtins.str compartment_id: The ID of the compartment in which to list resources.
|
159
|
+
: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.
|
160
160
|
:param builtins.str display_name: A filter to return only resources that match the entire display name given.
|
161
161
|
:param builtins.str fleet_id: Unique Fleet identifier.
|
162
162
|
:param builtins.str resource_display_name: Resource Display Name.
|
@@ -207,7 +207,7 @@ def get_fleet_products_output(compartment_id: Optional[pulumi.Input[Optional[bui
|
|
207
207
|
```
|
208
208
|
|
209
209
|
|
210
|
-
:param builtins.str compartment_id: The ID of the compartment in which to list resources.
|
210
|
+
: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.
|
211
211
|
:param builtins.str display_name: A filter to return only resources that match the entire display name given.
|
212
212
|
:param builtins.str fleet_id: Unique Fleet identifier.
|
213
213
|
:param builtins.str resource_display_name: Resource Display Name.
|