pulumi-oci 3.1.0a1750230541__py3-none-any.whl → 3.2.0a1752121229__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +339 -0
- pulumi_oci/bigdataservice/__init__.py +10 -0
- pulumi_oci/bigdataservice/_inputs.py +378 -0
- pulumi_oci/bigdataservice/bds_instance_node_backup.py +481 -0
- pulumi_oci/bigdataservice/bds_instance_node_backup_configuration.py +611 -0
- pulumi_oci/bigdataservice/bds_instance_node_replace_configuration.py +538 -0
- pulumi_oci/bigdataservice/bds_instance_replace_node_action.py +406 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backup.py +245 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backup_configuration.py +263 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backup_configurations.py +192 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backups.py +211 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_replace_configuration.py +246 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_replace_configurations.py +192 -0
- pulumi_oci/bigdataservice/outputs.py +798 -0
- pulumi_oci/capacitymanagement/__init__.py +18 -0
- pulumi_oci/capacitymanagement/_inputs.py +459 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal.py +268 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog.py +254 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog_resources.py +233 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalogs.py +192 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_deliveries.py +197 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_delivery.py +296 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_items.py +233 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signals.py +222 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal.py +254 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_catalog_resources.py +189 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_deliveries.py +175 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_item.py +352 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_items.py +211 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signals.py +200 -0
- pulumi_oci/capacitymanagement/internal_occm_demand_signal.py +564 -0
- pulumi_oci/capacitymanagement/internal_occm_demand_signal_delivery.py +760 -0
- pulumi_oci/capacitymanagement/occm_demand_signal.py +585 -0
- pulumi_oci/capacitymanagement/occm_demand_signal_item.py +950 -0
- pulumi_oci/capacitymanagement/outputs.py +3499 -1230
- pulumi_oci/containerengine/get_cluster.py +7 -7
- pulumi_oci/core/__init__.py +4 -0
- pulumi_oci/core/_inputs.py +477 -0
- pulumi_oci/core/compute_host.py +910 -0
- pulumi_oci/core/compute_host_group.py +648 -0
- pulumi_oci/core/dedicated_vm_host.py +56 -0
- pulumi_oci/core/get_compute_host.py +72 -1
- pulumi_oci/core/get_compute_host_group.py +269 -0
- pulumi_oci/core/get_compute_host_groups.py +148 -0
- pulumi_oci/core/get_compute_hosts.py +37 -1
- pulumi_oci/core/get_dedicated_vm_host.py +29 -1
- pulumi_oci/core/outputs.py +912 -24
- pulumi_oci/database/__init__.py +2 -0
- pulumi_oci/database/_inputs.py +739 -52
- pulumi_oci/database/autonomous_container_database.py +141 -12
- pulumi_oci/database/autonomous_container_database_add_standby.py +8 -10
- pulumi_oci/database/autonomous_container_database_dataguard_association.py +8 -16
- pulumi_oci/database/autonomous_container_database_snapshot_standby.py +4 -6
- pulumi_oci/database/autonomous_database_software_image.py +28 -0
- pulumi_oci/database/autonomous_vm_cluster.py +28 -0
- pulumi_oci/database/backup_destination.py +28 -0
- pulumi_oci/database/cloud_autonomous_vm_cluster.py +126 -0
- pulumi_oci/database/cloud_vm_cluster.py +82 -7
- pulumi_oci/database/database.py +28 -0
- pulumi_oci/database/database_software_image.py +28 -0
- pulumi_oci/database/database_upgrade.py +28 -0
- pulumi_oci/database/db_home.py +28 -0
- pulumi_oci/database/db_node.py +28 -0
- pulumi_oci/database/db_system.py +28 -0
- pulumi_oci/database/exadata_infrastructure.py +28 -0
- pulumi_oci/database/exadata_infrastructure_compute.py +39 -24
- pulumi_oci/database/external_container_database.py +28 -0
- pulumi_oci/database/external_database_connector.py +28 -0
- pulumi_oci/database/external_non_container_database.py +28 -0
- pulumi_oci/database/external_pluggable_database.py +28 -0
- pulumi_oci/database/get_autonomous_container_database.py +52 -2
- pulumi_oci/database/get_autonomous_container_database_backups.py +255 -0
- pulumi_oci/database/get_autonomous_container_database_dataguard_association.py +2 -2
- pulumi_oci/database/get_autonomous_container_database_dataguard_associations.py +2 -2
- pulumi_oci/database/get_autonomous_database_dataguard_associations.py +2 -2
- pulumi_oci/database/get_autonomous_database_resource_pool_members.py +145 -0
- pulumi_oci/database/get_autonomous_database_software_image.py +15 -1
- pulumi_oci/database/get_autonomous_vm_cluster.py +15 -1
- pulumi_oci/database/get_backup_destination.py +15 -1
- pulumi_oci/database/get_cloud_autonomous_vm_cluster.py +40 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +30 -2
- pulumi_oci/database/get_database.py +15 -1
- pulumi_oci/database/get_database_software_image.py +15 -1
- pulumi_oci/database/get_db_home.py +15 -1
- pulumi_oci/database/get_db_node.py +15 -1
- pulumi_oci/database/get_db_nodes.py +2 -2
- pulumi_oci/database/get_db_server.py +15 -1
- pulumi_oci/database/get_exadata_infrastructure.py +15 -1
- pulumi_oci/database/get_external_container_database.py +15 -1
- pulumi_oci/database/get_external_database_connector.py +15 -1
- pulumi_oci/database/get_external_non_container_database.py +15 -1
- pulumi_oci/database/get_external_pluggable_database.py +15 -1
- pulumi_oci/database/get_key_store.py +15 -1
- pulumi_oci/database/get_maintenance_run.py +15 -1
- pulumi_oci/database/get_oneoff_patch.py +15 -1
- pulumi_oci/database/get_pluggable_database.py +15 -1
- pulumi_oci/database/get_vm_cluster.py +15 -1
- pulumi_oci/database/get_vm_cluster_network.py +15 -1
- pulumi_oci/database/key_store.py +28 -0
- pulumi_oci/database/maintenance_run.py +28 -0
- pulumi_oci/database/oneoff_patch.py +28 -0
- pulumi_oci/database/outputs.py +1624 -54
- pulumi_oci/database/pluggable_database.py +28 -0
- pulumi_oci/database/pluggable_databases_local_clone.py +28 -0
- pulumi_oci/database/pluggable_databases_remote_clone.py +28 -0
- pulumi_oci/database/vm_cluster.py +28 -0
- pulumi_oci/database/vm_cluster_network.py +28 -0
- pulumi_oci/databasemanagement/__init__.py +7 -0
- pulumi_oci/databasemanagement/_inputs.py +196 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database.py +15 -1
- pulumi_oci/databasemanagement/get_managed_my_sql_database_binary_log_information.py +198 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_digest_errors.py +164 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_general_replication_information.py +352 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_high_availability_members.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_inbound_replications.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_outbound_replications.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_query_detail.py +176 -0
- pulumi_oci/databasemanagement/outputs.py +1330 -19
- pulumi_oci/databasemigration/_inputs.py +94 -0
- pulumi_oci/databasemigration/get_migration.py +15 -1
- pulumi_oci/databasemigration/get_migrations.py +15 -1
- pulumi_oci/databasemigration/job.py +28 -0
- pulumi_oci/databasemigration/migration.py +52 -3
- pulumi_oci/databasemigration/outputs.py +73 -0
- pulumi_oci/dataflow/_inputs.py +20 -0
- pulumi_oci/dataflow/outputs.py +36 -0
- pulumi_oci/fleetappsmanagement/__init__.py +48 -0
- pulumi_oci/fleetappsmanagement/_inputs.py +11016 -30
- pulumi_oci/fleetappsmanagement/catalog_item.py +1156 -0
- pulumi_oci/fleetappsmanagement/compliance_policy_rule.py +811 -0
- pulumi_oci/fleetappsmanagement/fleet.py +1003 -0
- pulumi_oci/fleetappsmanagement/fleet_credential.py +623 -0
- pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
- pulumi_oci/fleetappsmanagement/fleet_resource.py +853 -0
- pulumi_oci/fleetappsmanagement/get_announcements.py +29 -7
- pulumi_oci/fleetappsmanagement/get_catalog_item.py +434 -0
- pulumi_oci/fleetappsmanagement/get_catalog_items.py +274 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policies.py +36 -12
- pulumi_oci/fleetappsmanagement/get_compliance_policy.py +20 -6
- pulumi_oci/fleetappsmanagement/get_compliance_policy_rule.py +325 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policy_rules.py +244 -0
- pulumi_oci/fleetappsmanagement/get_compliance_record_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_compliance_records.py +299 -0
- pulumi_oci/fleetappsmanagement/get_fleet.py +409 -0
- pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +15 -1
- pulumi_oci/fleetappsmanagement/get_fleet_credential.py +274 -0
- pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +283 -0
- pulumi_oci/fleetappsmanagement/get_fleet_products.py +2 -2
- pulumi_oci/fleetappsmanagement/get_fleet_properties.py +197 -0
- pulumi_oci/fleetappsmanagement/get_fleet_property.py +287 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resource.py +399 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resources.py +216 -0
- pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
- pulumi_oci/fleetappsmanagement/get_inventory_records.py +205 -0
- pulumi_oci/fleetappsmanagement/get_inventory_resources.py +4 -2
- pulumi_oci/fleetappsmanagement/get_maintenance_window.py +338 -0
- pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +221 -0
- pulumi_oci/fleetappsmanagement/get_managed_entity_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +26 -5
- pulumi_oci/fleetappsmanagement/get_onboardings.py +180 -0
- pulumi_oci/fleetappsmanagement/get_patch.py +364 -0
- pulumi_oci/fleetappsmanagement/get_patches.py +338 -0
- pulumi_oci/fleetappsmanagement/get_platform_configuration.py +297 -0
- pulumi_oci/fleetappsmanagement/get_platform_configurations.py +265 -0
- pulumi_oci/fleetappsmanagement/get_properties.py +37 -13
- pulumi_oci/fleetappsmanagement/get_property.py +1 -1
- pulumi_oci/fleetappsmanagement/get_provision.py +493 -0
- pulumi_oci/fleetappsmanagement/get_provisions.py +224 -0
- pulumi_oci/fleetappsmanagement/get_runbook.py +406 -0
- pulumi_oci/fleetappsmanagement/get_runbook_version.py +319 -0
- pulumi_oci/fleetappsmanagement/get_runbook_versions.py +230 -0
- pulumi_oci/fleetappsmanagement/get_runbooks.py +265 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +395 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +167 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +347 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_executions.py +334 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_job_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_steps.py +2 -2
- pulumi_oci/fleetappsmanagement/get_task_record.py +308 -0
- pulumi_oci/fleetappsmanagement/get_task_records.py +265 -0
- pulumi_oci/fleetappsmanagement/maintenance_window.py +840 -0
- pulumi_oci/fleetappsmanagement/onboarding.py +631 -0
- pulumi_oci/fleetappsmanagement/outputs.py +25528 -1223
- pulumi_oci/fleetappsmanagement/patch.py +980 -0
- pulumi_oci/fleetappsmanagement/platform_configuration.py +694 -0
- pulumi_oci/fleetappsmanagement/property.py +28 -27
- pulumi_oci/fleetappsmanagement/provision.py +1195 -0
- pulumi_oci/fleetappsmanagement/runbook.py +1277 -0
- pulumi_oci/fleetappsmanagement/runbook_version.py +996 -0
- pulumi_oci/fleetappsmanagement/scheduler_definition.py +946 -0
- pulumi_oci/fleetappsmanagement/task_record.py +786 -0
- pulumi_oci/fleetsoftwareupdate/_inputs.py +88 -15
- pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +71 -42
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +21 -7
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +1 -1
- pulumi_oci/fleetsoftwareupdate/outputs.py +172 -15
- pulumi_oci/generativeai/__init__.py +3 -0
- pulumi_oci/generativeai/_inputs.py +1479 -132
- pulumi_oci/generativeai/agent_agent.py +66 -11
- pulumi_oci/generativeai/agent_agent_endpoint.py +296 -25
- pulumi_oci/generativeai/agent_data_source.py +70 -21
- pulumi_oci/generativeai/agent_tool.py +619 -0
- pulumi_oci/generativeai/get_agent_agent.py +17 -2
- pulumi_oci/generativeai/get_agent_agent_endpoint.py +72 -6
- pulumi_oci/generativeai/get_agent_agent_endpoints.py +0 -4
- pulumi_oci/generativeai/get_agent_data_source.py +15 -1
- pulumi_oci/generativeai/get_agent_tool.py +283 -0
- pulumi_oci/generativeai/get_agent_tools.py +214 -0
- pulumi_oci/generativeai/outputs.py +4001 -1259
- pulumi_oci/goldengate/_inputs.py +449 -3
- pulumi_oci/goldengate/connection.py +200 -56
- pulumi_oci/goldengate/get_connection.py +59 -28
- pulumi_oci/goldengate/get_connections.py +0 -3
- pulumi_oci/goldengate/outputs.py +886 -22
- pulumi_oci/kms/vault_verification.py +62 -2
- pulumi_oci/loadbalancer/_inputs.py +24 -6
- pulumi_oci/loadbalancer/backend.py +35 -7
- pulumi_oci/loadbalancer/backend_set.py +35 -7
- pulumi_oci/loadbalancer/listener.py +7 -7
- pulumi_oci/loadbalancer/load_balancer.py +81 -0
- pulumi_oci/loadbalancer/outputs.py +29 -10
- pulumi_oci/loganalytics/__init__.py +3 -0
- pulumi_oci/loganalytics/_inputs.py +123 -0
- pulumi_oci/loganalytics/get_log_analytics_entities.py +52 -0
- pulumi_oci/loganalytics/get_log_analytics_entity_type.py +254 -0
- pulumi_oci/loganalytics/get_log_analytics_entity_types.py +230 -0
- pulumi_oci/loganalytics/log_analytics_entity_type.py +508 -0
- pulumi_oci/loganalytics/outputs.py +258 -0
- pulumi_oci/mysql/_inputs.py +274 -0
- pulumi_oci/mysql/get_mysql_backup.py +29 -1
- pulumi_oci/mysql/get_mysql_backups.py +23 -1
- pulumi_oci/mysql/get_mysql_db_system.py +15 -1
- pulumi_oci/mysql/get_replica.py +15 -1
- pulumi_oci/mysql/mysql_backup.py +98 -2
- pulumi_oci/mysql/mysql_db_system.py +57 -0
- pulumi_oci/mysql/outputs.py +594 -0
- pulumi_oci/mysql/replica.py +28 -0
- pulumi_oci/nosql/__init__.py +2 -0
- pulumi_oci/nosql/_inputs.py +129 -3
- pulumi_oci/nosql/configuration.py +383 -0
- pulumi_oci/nosql/get_configuration.py +162 -0
- pulumi_oci/nosql/index.py +7 -7
- pulumi_oci/nosql/outputs.py +164 -2
- pulumi_oci/nosql/table_replica.py +9 -9
- pulumi_oci/oci/__init__.py +56 -0
- pulumi_oci/oci/_inputs.py +1615 -0
- pulumi_oci/oci/apiaccesscontrol_privileged_api_control.py +930 -0
- pulumi_oci/oci/apiaccesscontrol_privileged_api_request.py +1303 -0
- pulumi_oci/oci/dbmulticloud_multi_cloud_resource_discovery.py +675 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_container.py +743 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_mount.py +675 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_connector.py +740 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault.py +840 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault_association.py +673 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadata.py +310 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadata_by_entity_types.py +208 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadatas.py +208 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_control.py +367 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_controls.py +222 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_request.py +535 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_requests.py +244 -0
- pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discoveries.py +252 -0
- pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discovery.py +297 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_container.py +310 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_containers.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mount.py +296 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mounts.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connector.py +311 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connectors.py +233 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_key.py +282 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_keys.py +233 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault.py +338 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_association.py +296 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_associations.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vaults.py +252 -0
- pulumi_oci/oci/get_wlms_managed_instance.py +255 -0
- pulumi_oci/oci/get_wlms_managed_instance_scan_results.py +189 -0
- pulumi_oci/oci/get_wlms_managed_instance_server.py +378 -0
- pulumi_oci/oci/get_wlms_managed_instance_server_installed_patches.py +168 -0
- pulumi_oci/oci/get_wlms_managed_instance_servers.py +170 -0
- pulumi_oci/oci/get_wlms_managed_instances.py +200 -0
- pulumi_oci/oci/get_wlms_wls_domain.py +311 -0
- pulumi_oci/oci/get_wlms_wls_domain_agreement_records.py +145 -0
- pulumi_oci/oci/get_wlms_wls_domain_applicable_patches.py +145 -0
- pulumi_oci/oci/get_wlms_wls_domain_scan_results.py +170 -0
- pulumi_oci/oci/get_wlms_wls_domain_server.py +378 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backup.py +230 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backup_content.py +189 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backups.py +168 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_installed_patches.py +168 -0
- pulumi_oci/oci/get_wlms_wls_domain_servers.py +170 -0
- pulumi_oci/oci/get_wlms_wls_domains.py +266 -0
- pulumi_oci/oci/outputs.py +5617 -0
- pulumi_oci/ospgateway/_inputs.py +20 -0
- pulumi_oci/ospgateway/get_subscription.py +15 -1
- pulumi_oci/ospgateway/outputs.py +47 -0
- pulumi_oci/ospgateway/subscription.py +28 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/__init__.py +8 -0
- pulumi_oci/redis/_inputs.py +179 -0
- pulumi_oci/redis/get_oci_cache_user.py +283 -0
- pulumi_oci/redis/get_oci_cache_users.py +192 -0
- pulumi_oci/redis/oci_cache_user.py +695 -0
- pulumi_oci/redis/oci_cache_user_get_redis_cluster.py +333 -0
- pulumi_oci/redis/outputs.py +330 -0
- pulumi_oci/redis/redis_cluster_attach_oci_cache_user.py +263 -0
- pulumi_oci/redis/redis_cluster_create_identity_token.py +439 -0
- pulumi_oci/redis/redis_cluster_detach_oci_cache_user.py +263 -0
- pulumi_oci/redis/redis_cluster_get_oci_cache_user.py +333 -0
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0a1752121229.dist-info}/METADATA +1 -1
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0a1752121229.dist-info}/RECORD +313 -159
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0a1752121229.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0a1752121229.dist-info}/top_level.txt +0 -0
@@ -1,7 +1,7 @@
|
|
1
|
-
pulumi_oci/__init__.py,sha256=
|
1
|
+
pulumi_oci/__init__.py,sha256=npCUCYo7KR4eznlj6sCdg5vYuD15IBVtN7oUI6TLcYY,191773
|
2
2
|
pulumi_oci/_utilities.py,sha256=66uLGQDI1oMFOI3Fe5igAphtexWhcSLDyuVW50jW3ik,10789
|
3
3
|
pulumi_oci/provider.py,sha256=0bfJPDKWIXVcBS2jXnPOfeMELjg9ppSJsIsbT4Ced-Y,27097
|
4
|
-
pulumi_oci/pulumi-plugin.json,sha256=
|
4
|
+
pulumi_oci/pulumi-plugin.json,sha256=uQXoxr-7V1jbHVozfYu3hE4_JL_uB_NrSoLauAMA7U0,79
|
5
5
|
pulumi_oci/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
6
6
|
pulumi_oci/adm/__init__.py,sha256=Q51pU-my-diUjNMWhPJgRFhovj4XDVslfioqfKszgNo,1047
|
7
7
|
pulumi_oci/adm/_inputs.py,sha256=l12jeA-fX9-_o6pUMtQJUIF2Tl6es2dM0V2i6pPiehc,74338
|
@@ -204,17 +204,21 @@ pulumi_oci/bastion/get_session.py,sha256=Y-LWiHsDcj4k2h46mVDVE4XShB3WVk-j2SzDdMD
|
|
204
204
|
pulumi_oci/bastion/get_sessions.py,sha256=d0xfGXKwQqL0ehUEQe0eQeiCnFMhboM-yVhvSX4Ydn8,9192
|
205
205
|
pulumi_oci/bastion/outputs.py,sha256=pZVNSARBb85QlXixf2uyelpn5hMjlW08QC54ZxoOgXo,39416
|
206
206
|
pulumi_oci/bastion/session.py,sha256=pZb-mZkCIuvUMvKhj4w1obGZKJQhVn6U2gFMBdThvMQ,33310
|
207
|
-
pulumi_oci/bigdataservice/__init__.py,sha256=
|
208
|
-
pulumi_oci/bigdataservice/_inputs.py,sha256
|
207
|
+
pulumi_oci/bigdataservice/__init__.py,sha256=NNDQtHqnn_0XGxWGogLHsdMkBUNSl2CGgk440hPWOnU,2239
|
208
|
+
pulumi_oci/bigdataservice/_inputs.py,sha256=RjGGPsLDf0jfk5jqBcsKOQ4aAtnDoLefguonFQeetsA,257134
|
209
209
|
pulumi_oci/bigdataservice/auto_scaling_configuration.py,sha256=vp4Sk4j46F4jY6wQA_9P6tJ_5KmUIKYBp4wY43Fh7ds,40955
|
210
210
|
pulumi_oci/bigdataservice/bds_capacity_report.py,sha256=27494a73mw_acZuD6wyAqKHooorr8ziTg_9pbbNooNs,13685
|
211
211
|
pulumi_oci/bigdataservice/bds_instance.py,sha256=u9KkeJmdCJOaVbU6mSV39h1bAwS-zCqjtGeyzHIwnSs,93859
|
212
212
|
pulumi_oci/bigdataservice/bds_instance_api_key.py,sha256=00NR0VZSihEFd3a76Z-3I9PyNgZmEtSXkgGfOi3T4j4,29010
|
213
213
|
pulumi_oci/bigdataservice/bds_instance_identity_configuration.py,sha256=msjv9VdWogu0KdCa_U1Ktp-zvB1T7i7i9U2Or5WVMu0,52959
|
214
214
|
pulumi_oci/bigdataservice/bds_instance_metastore_config.py,sha256=Bmu5DffWxgEWDNmFG5gBbPuTRQ6miS6o40VuViBw04U,30142
|
215
|
+
pulumi_oci/bigdataservice/bds_instance_node_backup.py,sha256=2IuGtRI926__wMnP_PoQX4n3Q7OO2vzVXl731AwKW6g,22616
|
216
|
+
pulumi_oci/bigdataservice/bds_instance_node_backup_configuration.py,sha256=Ty0yCJs8XnAazS5vugws46TDFxfWCeQ7q-3Xgrk9c0I,33800
|
217
|
+
pulumi_oci/bigdataservice/bds_instance_node_replace_configuration.py,sha256=SuG1suD3b4cavuYPKWbz7n5cmKsRLHQ-G0J0J53CnYk,28948
|
215
218
|
pulumi_oci/bigdataservice/bds_instance_operation_certificate_managements_management.py,sha256=2oEgZJApHQWNik-mi79An4Zso-b_nL1O58WwM7s4vwI,35102
|
216
219
|
pulumi_oci/bigdataservice/bds_instance_os_patch_action.py,sha256=gkVDFnCCCAeeM43MqM3dVauRJE4xgKmpnSu5N4pxcmw,21593
|
217
220
|
pulumi_oci/bigdataservice/bds_instance_patch_action.py,sha256=GkvNCTwNBcm75Fu835HCZvHbKVrFYTlWe1qa9ES4EWA,18817
|
221
|
+
pulumi_oci/bigdataservice/bds_instance_replace_node_action.py,sha256=KKUnprgaZDc19W45YqlqrWWArtjwUPokDDfuKADhKT8,19394
|
218
222
|
pulumi_oci/bigdataservice/bds_instance_resource_principal_configuration.py,sha256=4fxTvRu6q4ohyW4X6hIlY-NzHomDd3L75YEpcUbGSLU,29340
|
219
223
|
pulumi_oci/bigdataservice/bds_instance_software_update_action.py,sha256=wx0qCeNuf_gssNEWoy0CgqCCZS3M_DqSeMRzccxccB8,8893
|
220
224
|
pulumi_oci/bigdataservice/get_auto_scaling_configuration.py,sha256=Af8DZ_GuMltFX7UDxD-NzAzoIzZZaIucFJn0eNcn8GQ,11848
|
@@ -229,6 +233,12 @@ pulumi_oci/bigdataservice/get_bds_instance_identity_configurations.py,sha256=D7t
|
|
229
233
|
pulumi_oci/bigdataservice/get_bds_instance_list_os_patches.py,sha256=b6kdgYTgSabQG845MgcWphQV6QrD_E5C5z70kBfyWGs,6032
|
230
234
|
pulumi_oci/bigdataservice/get_bds_instance_metastore_config.py,sha256=k7dSj3W_x8f9EuOvVRaOA7gtkAazyy_c4TQdPYd3Hbs,12076
|
231
235
|
pulumi_oci/bigdataservice/get_bds_instance_metastore_configs.py,sha256=pnbpPo8mXEw9Xjew1e0fdKDv5Ewh9EiwU0abYL7ciNM,12699
|
236
|
+
pulumi_oci/bigdataservice/get_bds_instance_node_backup.py,sha256=gekSdLXUas6BWLbOB8OR6EKPDeqfKyTUDP9kwG8umWQ,10806
|
237
|
+
pulumi_oci/bigdataservice/get_bds_instance_node_backup_configuration.py,sha256=FbcUEyMfnSU1rozk5_gbi7SL_VMyrIzTpqvo5XKhx1Y,12684
|
238
|
+
pulumi_oci/bigdataservice/get_bds_instance_node_backup_configurations.py,sha256=6yJvALaEF4RF42m5hFTt1b05-i0dwqU7qAEqeAhJyaA,9297
|
239
|
+
pulumi_oci/bigdataservice/get_bds_instance_node_backups.py,sha256=TSVnV6-3E8ZJbmvRp7tHRbG5biUROCuWMmbQzv_AYzk,9373
|
240
|
+
pulumi_oci/bigdataservice/get_bds_instance_node_replace_configuration.py,sha256=ZdDqwWOztA7xkTDl1vqxWutLtWLqg5f4TNQFopFEaEI,12002
|
241
|
+
pulumi_oci/bigdataservice/get_bds_instance_node_replace_configurations.py,sha256=aR1lwXRAyRPRzEFPkEraZtBr6fBp94chAmwC5n-HB_M,9334
|
232
242
|
pulumi_oci/bigdataservice/get_bds_instance_patch_histories.py,sha256=TSYhZaQQBSUxOMH0ZXrx8zlYl-bc5R92HY6JiBhFOuE,9425
|
233
243
|
pulumi_oci/bigdataservice/get_bds_instance_patches.py,sha256=W3Nhc8BBZ2LakmufTs7oPAo4nXEGltmlleIqz9vMmmI,5715
|
234
244
|
pulumi_oci/bigdataservice/get_bds_instance_resource_principal_configuration.py,sha256=NFMCgKvY2-I_IcYl48EOHe0NSQV3f53AxU-4upxAYAc,13620
|
@@ -236,7 +246,7 @@ pulumi_oci/bigdataservice/get_bds_instance_resource_principal_configurations.py,
|
|
236
246
|
pulumi_oci/bigdataservice/get_bds_instance_software_update.py,sha256=nt7n7beBebufN2WExCgS8PnQ3iAJwKdvlMMQkYbwc1U,9182
|
237
247
|
pulumi_oci/bigdataservice/get_bds_instance_software_updates.py,sha256=ykd2ihYANBDVmUMroK8mVf-j1Mxw8s7xVgTXfPrhFhE,6401
|
238
248
|
pulumi_oci/bigdataservice/get_bds_instances.py,sha256=edzw-SGcX-rMFUyfislX2bf2k__0BX0JfHC771FeuOk,7697
|
239
|
-
pulumi_oci/bigdataservice/outputs.py,sha256=
|
249
|
+
pulumi_oci/bigdataservice/outputs.py,sha256=NX9wBqowogAGSulyj6fJDiPL0cU-Dt_l8t07MSxlfvA,456612
|
240
250
|
pulumi_oci/blockchain/__init__.py,sha256=f7nAqERS9ms5GIItX89xMJRU943dVoffTR9W7QPxKOM,608
|
241
251
|
pulumi_oci/blockchain/_inputs.py,sha256=IA4MCgulZvOGp7AZt6MV5R_ZdLxRq1H7t3szdvCNKRk,28465
|
242
252
|
pulumi_oci/blockchain/blockchain_platform.py,sha256=ly_hPIi2z2ygz3P5dn1TxL6joHdezPqr6ZdH_qZsViA,65684
|
@@ -259,12 +269,20 @@ pulumi_oci/budget/get_budget.py,sha256=A4cb4sq-ECOOSVHlPr4Gjcg27ADE2tOpeRLLYw47G
|
|
259
269
|
pulumi_oci/budget/get_budgets.py,sha256=coW06IV54tqlmAPqQwevDpRiJ5NtRQ6wJScf1TeS_YU,9571
|
260
270
|
pulumi_oci/budget/outputs.py,sha256=o0tlLe3Z--sFmMt395IRy7pyKyBB0HHjg502iPdj9VI,23068
|
261
271
|
pulumi_oci/budget/rule.py,sha256=6as4nLIBiP3KnLN1IZxsqicGzD3jevpyk447-0KFOaQ,40021
|
262
|
-
pulumi_oci/capacitymanagement/__init__.py,sha256=
|
263
|
-
pulumi_oci/capacitymanagement/_inputs.py,sha256=
|
272
|
+
pulumi_oci/capacitymanagement/__init__.py,sha256=emVeUFxSqSkOtCe8G_qsD0sJh_jwaZg-Vt5crImFDN0,2079
|
273
|
+
pulumi_oci/capacitymanagement/_inputs.py,sha256=N4aZDSDhxg1J2wafa-kH_bONuzder8r7i3qZ-xEJtuE,67263
|
264
274
|
pulumi_oci/capacitymanagement/get_internal_namespace_occ_overviews.py,sha256=MSs4Fx3u2u1bl_Uy0Von5xFop3BVsmpNbgICvIchQfw,12599
|
265
275
|
pulumi_oci/capacitymanagement/get_internal_occ_availability_catalogs.py,sha256=MR4OiShSdzdgqwik457G49CKXSLB0qAycSss3gjrPG0,12953
|
266
276
|
pulumi_oci/capacitymanagement/get_internal_occ_handover_resource_block_details.py,sha256=pcMfOE_1rq_6lb3kC_LIF9RJbUtX2whBba_eN61FSaE,9034
|
267
277
|
pulumi_oci/capacitymanagement/get_internal_occ_handover_resource_blocks.py,sha256=7lmRt3reTAX3cUj9ey6juDH_LcsGTiGmBQ4xHEv30-0,17016
|
278
|
+
pulumi_oci/capacitymanagement/get_internal_occm_demand_signal.py,sha256=k2G21LQNfXlBU4GKEGULXtbfOBw2Gwas8wqT0qgSRdA,11889
|
279
|
+
pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog.py,sha256=992taI48l45xDTZeq20pmuz4Qe3BieSxJu6PxFX5lGA,11583
|
280
|
+
pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog_resources.py,sha256=i3IpTfl1B7BIqHzGuq-fd6g40VcOLmy7vxtbSGM1VyI,13563
|
281
|
+
pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalogs.py,sha256=ejsr2Yju5OC8BvoaHVooDQ90RnvzVxrtkHZyKrnNEHw,9884
|
282
|
+
pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_deliveries.py,sha256=EjoSmNv8qC150aCxE-iJ6OvaHqhFGzoKGhdq4h169Qw,11040
|
283
|
+
pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_delivery.py,sha256=y2CwSlV15PtVwHoZJKrd1txQ5sLQKmk6HTkC587ny44,14280
|
284
|
+
pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_items.py,sha256=-X8Z7kJoyVFEtdvEgd2nE-DtF1xHpFTIT3rm54PQQ2g,13021
|
285
|
+
pulumi_oci/capacitymanagement/get_internal_occm_demand_signals.py,sha256=0miIY6yB4hQoZ0nkHBkQUdnVTYlYUPfh-ICoSpOnONU,11590
|
268
286
|
pulumi_oci/capacitymanagement/get_namespace_occ_overviews.py,sha256=99tgMmzNTMo3I3HujG1XN2Yf4W_k0fxO3vOM7xUnEBI,10821
|
269
287
|
pulumi_oci/capacitymanagement/get_occ_availability_catalog.py,sha256=Mf8jL-8dAY1VHi4pVnW8ZQ9LrFUXqtOS8mXC0DGciQA,15512
|
270
288
|
pulumi_oci/capacitymanagement/get_occ_availability_catalog_content.py,sha256=hh6plgscJrTUDpGwCLAD4wS2S-5fAoouTICIc72LEMo,5071
|
@@ -276,11 +294,21 @@ pulumi_oci/capacitymanagement/get_occ_customer_group.py,sha256=Zil6VjzwryEO2Jvnc
|
|
276
294
|
pulumi_oci/capacitymanagement/get_occ_customer_groups.py,sha256=KrL36zOuqigL0RYRq0H548vWPRYtx8fhSPp0RL6Xcfg,9237
|
277
295
|
pulumi_oci/capacitymanagement/get_occ_handover_resource_block_details.py,sha256=7DbYYrccBzJnzbk3j7FLwYvh_AFTea1UDh-SCpJW3TU,8706
|
278
296
|
pulumi_oci/capacitymanagement/get_occ_handover_resource_blocks.py,sha256=yHcZcqPoQ8y5Oly5I0I3Ty8fVttiuP3vnVz2nydmr2w,14999
|
297
|
+
pulumi_oci/capacitymanagement/get_occm_demand_signal.py,sha256=AB0nGd1jKBt7WfKecbpSRwCklP0cnhYulIpbQ6Fv9kE,10939
|
298
|
+
pulumi_oci/capacitymanagement/get_occm_demand_signal_catalog_resources.py,sha256=298GJsUBTSM8iheFj1Ig9fNE2KLaocpBkBbBr5dREEM,10123
|
299
|
+
pulumi_oci/capacitymanagement/get_occm_demand_signal_deliveries.py,sha256=Ti6fZiv4tMQL3TreJPULg3n4d6ershEd1HKg6Z13nb0,9042
|
300
|
+
pulumi_oci/capacitymanagement/get_occm_demand_signal_item.py,sha256=ni1vwhbPFXe7MybSrZhUrQNQibn3_ybJbUwwUHET24k,16946
|
301
|
+
pulumi_oci/capacitymanagement/get_occm_demand_signal_items.py,sha256=ye73hL7C2zM-pIeHiyy16JWu5B2jHLiW2T2MnJizMzM,11042
|
302
|
+
pulumi_oci/capacitymanagement/get_occm_demand_signals.py,sha256=FHhWe9VHg1hs00LMFYkDn-pCABsQXAnJ9G1lRQAS4bE,9573
|
303
|
+
pulumi_oci/capacitymanagement/internal_occm_demand_signal.py,sha256=dgC_LR4xR8qbnR-u4AcrsXUmMRSD1igcs71EF1li07A,27841
|
304
|
+
pulumi_oci/capacitymanagement/internal_occm_demand_signal_delivery.py,sha256=KQTN6uXVMVQbmIdbPwsl8XG61IymHMYviTEqsjFGZIo,40608
|
279
305
|
pulumi_oci/capacitymanagement/occ_availability_catalog.py,sha256=Yjg7gttQpkU-PUKrm7Y3PesOXynHZ_ExhIfEed-z61g,43052
|
280
306
|
pulumi_oci/capacitymanagement/occ_capacity_request.py,sha256=hLTzaIFR2Z7hgLjVOVyuY5bWu-SVV1M0BAZkDgouQDM,55108
|
281
307
|
pulumi_oci/capacitymanagement/occ_customer_group.py,sha256=wFNJRr07eOvIRDNG64pikOKPQRV6gWPM7wlGWs7fkqU,35224
|
282
308
|
pulumi_oci/capacitymanagement/occ_customer_group_occ_customer.py,sha256=fc0F-Q67tdHPn5XylEu6AnKt3TD0yTjk0JtECga9n38,18439
|
283
|
-
pulumi_oci/capacitymanagement/
|
309
|
+
pulumi_oci/capacitymanagement/occm_demand_signal.py,sha256=syFgn3xwG34veG35k-7jp294SkRVFC8Tg0RYCAWWbfU,28543
|
310
|
+
pulumi_oci/capacitymanagement/occm_demand_signal_item.py,sha256=Wykr4p_iTcKrLRZizGcUhmVJg7rmQuyP2wLDASX6EpU,52028
|
311
|
+
pulumi_oci/capacitymanagement/outputs.py,sha256=d9QXIA0NK8m_1W1AP0eY9B7GF4OHHeMMjAGO5MCBUss,267623
|
284
312
|
pulumi_oci/certificatesmanagement/__init__.py,sha256=zbdeUj0I6RmgDMz-qubwjrDKu748rPSSBSIWcZXzihE,848
|
285
313
|
pulumi_oci/certificatesmanagement/_inputs.py,sha256=lo28rEGey_X2k_sBOXC5h2FsL43oCGSqVTbzN0ZI_3g,152057
|
286
314
|
pulumi_oci/certificatesmanagement/ca_bundle.py,sha256=KN4d4cNc02c_BE64a0qQxlgtcJm-5TRC1yMNy-vMKYA,29229
|
@@ -426,7 +454,7 @@ pulumi_oci/containerengine/container_instance.py,sha256=IFc9cZC3e-_0L3mSqkMlI_Pj
|
|
426
454
|
pulumi_oci/containerengine/get_addon.py,sha256=vsEHFcsSt_SLLs7iJ1EPAh6VoFpnZPqLpoZqdkmPH_w,9762
|
427
455
|
pulumi_oci/containerengine/get_addon_options.py,sha256=8t4Wmjv6uMtLA0CQjnZrpO3yA4m0klQ0V4LSkrZSsiA,6705
|
428
456
|
pulumi_oci/containerengine/get_addons.py,sha256=Emu_2YXXAlTssUJ_SCFjsD_gtt2AYtkWlIdiCWk1Yw0,5078
|
429
|
-
pulumi_oci/containerengine/get_cluster.py,sha256=
|
457
|
+
pulumi_oci/containerengine/get_cluster.py,sha256=nNI9XJmc-9rAt_4mR079E9xPyFZ4Cin_xREUWD0Z9uc,18820
|
430
458
|
pulumi_oci/containerengine/get_cluster_credential_rotation_status.py,sha256=kRDiY_ZvG29U53mCZVVWv-PisPxGpXxAD_81IKbnwAA,7477
|
431
459
|
pulumi_oci/containerengine/get_cluster_kube_config.py,sha256=FAGibuv5acR0x8zpKwoYpsiTaNI9Ujt5DfMrhmu5EDE,7884
|
432
460
|
pulumi_oci/containerengine/get_cluster_option.py,sha256=v4EN0tStjkTPTBR3P96ZSy59tBcoJqv-5ZrcHiZgB_A,7161
|
@@ -453,8 +481,8 @@ pulumi_oci/containerinstances/get_container_instance_shape.py,sha256=DH8dYPNugoe
|
|
453
481
|
pulumi_oci/containerinstances/get_container_instance_shapes.py,sha256=uCqpB51CxbPOfHTyE9K09gxXfZILbLwpDSDeswjr3ww,7961
|
454
482
|
pulumi_oci/containerinstances/get_container_instances.py,sha256=x5C3He0BGHigt67QJONLrodLBfOPTMPYOSW9Wy9Fu4A,10023
|
455
483
|
pulumi_oci/containerinstances/outputs.py,sha256=wY4lJ65CLbXXs_5wVhtH3hnz3hBVdg9de3lIMgIMQXs,103834
|
456
|
-
pulumi_oci/core/__init__.py,sha256=
|
457
|
-
pulumi_oci/core/_inputs.py,sha256=
|
484
|
+
pulumi_oci/core/__init__.py,sha256=NUl-9t4DwUqQ5HJrsXN1Ph8ZXAQHICXSCuRqPwv89z0,9326
|
485
|
+
pulumi_oci/core/_inputs.py,sha256=3Zl-PodOJMt7hvepfozVtebgXjj3SFLcWbUfUXFe3BE,1302341
|
458
486
|
pulumi_oci/core/app_catalog_listing_resource_version_agreement.py,sha256=Kb3wCKiHW0CQWSd3H8wsKLIiCeVX9LWgOjWsCihixE4,15239
|
459
487
|
pulumi_oci/core/app_catalog_subscription.py,sha256=W4QYgSrgXYCT8G5Ev_3GPxv_BRFmY7PIbcqQtnzCaRM,30532
|
460
488
|
pulumi_oci/core/boot_volume.py,sha256=eD1Ie1DBycHUwhxxZS7C-63Yb45JPKa1sHF2YMfapCo,74637
|
@@ -468,12 +496,14 @@ pulumi_oci/core/compute_capacity_topology.py,sha256=RaphXkksVFO8WL7e4J6eP6PNpu4B
|
|
468
496
|
pulumi_oci/core/compute_cluster.py,sha256=xem-O6C3czKxNinf_hfruBeBxLPAPdgvH6SYi4Skw_M,28009
|
469
497
|
pulumi_oci/core/compute_gpu_memory_cluster.py,sha256=b0RqPzeLMAxGQqZmh-bckVsfB6SZShEjmviMlgpkyyQ,39292
|
470
498
|
pulumi_oci/core/compute_gpu_memory_fabric.py,sha256=aqIFgXRmTR4qDBU89GbNqpsQn_SwcaYkFQmPDkdbJhc,38248
|
499
|
+
pulumi_oci/core/compute_host.py,sha256=xF24fnmcal3TSTnDRSFmDgsaSo_vkm8xxpiW4PP1gNg,51099
|
500
|
+
pulumi_oci/core/compute_host_group.py,sha256=q2hOQS-vZR0vlghTyVSRC8bS7tVBDYQAgQQYF-wEFe8,37157
|
471
501
|
pulumi_oci/core/compute_image_capability_schema.py,sha256=ICZ7rf3ZIdAFu9sCEaPcvESfOzIlnVMnWR8Nz8HGPko,30175
|
472
502
|
pulumi_oci/core/console_history.py,sha256=ObeEkdD7sQCuWw47ytRYm6hdKYWn4ZBrMzdv9S41HjA,27154
|
473
503
|
pulumi_oci/core/cpe.py,sha256=xub55cjpU7GiICUTWxKAJIOYgKy9-QEH0B4Z2jZ4oVk,39957
|
474
504
|
pulumi_oci/core/cross_connect.py,sha256=GhUW3zw6WBPy8vMdh91kPj-KUozrg7-mUSiZh7Vd2ME,62523
|
475
505
|
pulumi_oci/core/cross_connect_group.py,sha256=2vJpWeuvCOjxuIzOx5pwKOmM9xBiRN8AiSVdGtIQB-4,35028
|
476
|
-
pulumi_oci/core/dedicated_vm_host.py,sha256=
|
506
|
+
pulumi_oci/core/dedicated_vm_host.py,sha256=yk-tITSOHdtjhb1tHABav65xYf7oPqdQaj0NLjNPVQw,48538
|
477
507
|
pulumi_oci/core/default_dhcp_options.py,sha256=QLuLFjdf-e2wvdu5lQSOMn1nODM5u0FMDtffuEYQWA4,17771
|
478
508
|
pulumi_oci/core/default_route_table.py,sha256=gUu3PsExyOw7XEAg0Jq4LgA6ofwjeI0UREf2MxW7Wrk,16294
|
479
509
|
pulumi_oci/core/default_security_list.py,sha256=qsYBV3VMx3D1IPt1LF5C6MDacamNkeBJwguSQeiRHIs,19300
|
@@ -531,8 +561,10 @@ pulumi_oci/core/get_compute_gpu_memory_cluster_instances.py,sha256=_LsYqYsPgv36q
|
|
531
561
|
pulumi_oci/core/get_compute_gpu_memory_clusters.py,sha256=uXs3VN5pS30gyG84W7Ywa-3xCpxISyIcHuZLTFsGgsM,12864
|
532
562
|
pulumi_oci/core/get_compute_gpu_memory_fabric.py,sha256=PGwBmsrdiI_HK5L36Pqp3q9ovgHlIs7WMbSTEYIBJdI,15209
|
533
563
|
pulumi_oci/core/get_compute_gpu_memory_fabrics.py,sha256=pmfJO0c1mYlpEERP072DdPI0HEw6KWqIG-1X4AmlHbw,17956
|
534
|
-
pulumi_oci/core/get_compute_host.py,sha256=
|
535
|
-
pulumi_oci/core/
|
564
|
+
pulumi_oci/core/get_compute_host.py,sha256=rqJcclLEcNe5aJhrvw6BDSwU1Peuq8vTl5taCD-Pd2o,22824
|
565
|
+
pulumi_oci/core/get_compute_host_group.py,sha256=Z-9SY9xhlEUYFjlEzm-0asmzC8a42z1CPaGAelyKxpQ,12778
|
566
|
+
pulumi_oci/core/get_compute_host_groups.py,sha256=DCHAOC2twETsUqa1WBUArzYDZabQ91f-tYpau9VUons,6291
|
567
|
+
pulumi_oci/core/get_compute_hosts.py,sha256=Gokj2rC4gPXthFcjxaNirA7mVBG1Cm4tM2wl2EOEhF0,15630
|
536
568
|
pulumi_oci/core/get_compute_image_capability_schema.py,sha256=0EQJX2sX-dNRt2AJQ1giRBjwwOQPQmS8ZtbMTfJWUpE,13780
|
537
569
|
pulumi_oci/core/get_compute_image_capability_schemas.py,sha256=YZD6fWgZZe83BZyiVVUwbtndZYKcdasmY2oCNrhfgQ0,9361
|
538
570
|
pulumi_oci/core/get_console_histories.py,sha256=rSH0rMqmpFIGwmssQfsx9t2o6wPoSDVZhFYaI5g5cD8,9527
|
@@ -547,7 +579,7 @@ pulumi_oci/core/get_cross_connect_locations.py,sha256=4267CKiN5t9-sUS0xJQ6bCxi3i
|
|
547
579
|
pulumi_oci/core/get_cross_connect_port_speed_shape.py,sha256=OmaMetggHPOIpZYTG4eg2RP9VKBxM66nQq6K6lrYC8o,6782
|
548
580
|
pulumi_oci/core/get_cross_connect_status.py,sha256=s8bZB-NBmtKLl27crH9WRpoknSnpTmgU3oXBaPbX7_A,7565
|
549
581
|
pulumi_oci/core/get_cross_connects.py,sha256=0ZsKa_TQzoVA9tT-WFxbynkFkbhvmfOmtd9ICfV5l4M,10156
|
550
|
-
pulumi_oci/core/get_dedicated_vm_host.py,sha256=
|
582
|
+
pulumi_oci/core/get_dedicated_vm_host.py,sha256=7cXs3AbIh1E4Hc9GByQ1DTNOfBLZD61sAfVL6cHy7Go,16356
|
551
583
|
pulumi_oci/core/get_dedicated_vm_host_instance_shapes.py,sha256=q9VBiFJbstUux96OXsZeACDJ6CI5JCBjJUp15BTEFBs,9856
|
552
584
|
pulumi_oci/core/get_dedicated_vm_host_instances.py,sha256=UWDG9Ow8scD1zVYfNqJl0ZAcGTzNn2vnjJIRjW9tAlk,9281
|
553
585
|
pulumi_oci/core/get_dedicated_vm_host_shapes.py,sha256=4b2cXkeNXTiSuCEcrNwNKIceGvL3ic_O8vUSyuQCfAo,8972
|
@@ -664,7 +696,7 @@ pulumi_oci/core/local_peering_gateway.py,sha256=dcXo-G9H4r_zP6NcQYksdLxigF3v6bR8
|
|
664
696
|
pulumi_oci/core/nat_gateway.py,sha256=oYN3l74Y6jfR5cUNj6TzvsXdozOZ3Q-oHggASrxREh8,37581
|
665
697
|
pulumi_oci/core/network_security_group.py,sha256=_eo-kyd9lmwIlhNzmqgEpckd928SRci7_qgVszzfuAU,26569
|
666
698
|
pulumi_oci/core/network_security_group_security_rule.py,sha256=D3249oc7Mj-7j8dsrbLpVtOFPOoz10EuKPrwIH6imf0,55703
|
667
|
-
pulumi_oci/core/outputs.py,sha256=
|
699
|
+
pulumi_oci/core/outputs.py,sha256=kePFv-CSuS_EA5s4qWD9YnyHQWcnC_JV7wsh70xtYzk,2720041
|
668
700
|
pulumi_oci/core/private_ip.py,sha256=JC5kSe5nXnDcGxib7W5eFmM2v1VoqOUMhaXy_XgXwuo,53730
|
669
701
|
pulumi_oci/core/public_ip.py,sha256=HIOHd5G6B3ivWhL_F3O0CTew8PkEuKy75twpNX7WoyI,50565
|
670
702
|
pulumi_oci/core/public_ip_pool.py,sha256=snU0bi7Toh-L_4-G--3MAdPd-EVINfHqwbg06OR6ekU,24867
|
@@ -689,46 +721,46 @@ pulumi_oci/core/volume_backup_policy_assignment.py,sha256=5BMWl2QmGIxNhZWmLfxEpV
|
|
689
721
|
pulumi_oci/core/volume_group.py,sha256=XZxpK_P4KyhUFWM5_BYW_OkQ08mX1YNUOqu_jdcmew0,56815
|
690
722
|
pulumi_oci/core/volume_group_backup.py,sha256=r2sEHBKtg30P5It8Lwf50wDThTVIR4lkUs0mj_aTRRc,46221
|
691
723
|
pulumi_oci/core/vtap.py,sha256=_YASXmtzuvf8H44QQognQErpxxdeLcLSAVfpypZ1-aU,65297
|
692
|
-
pulumi_oci/database/__init__.py,sha256=
|
693
|
-
pulumi_oci/database/_inputs.py,sha256=
|
724
|
+
pulumi_oci/database/__init__.py,sha256=TMs-MlGZTEwbmo65wOl9eyob7xGveshbaJB582YEkls,10391
|
725
|
+
pulumi_oci/database/_inputs.py,sha256=0Vis2iLGXgFD7G-vroeG_CSpYNbCfmxrN_UlQOv44XY,1342242
|
694
726
|
pulumi_oci/database/application_vip.py,sha256=lZluTd1rGqwDwqwAkJ10MXmF2TcfddJcVQE1kavC09k,32585
|
695
|
-
pulumi_oci/database/autonomous_container_database.py,sha256=
|
696
|
-
pulumi_oci/database/autonomous_container_database_add_standby.py,sha256=
|
697
|
-
pulumi_oci/database/autonomous_container_database_dataguard_association.py,sha256=
|
727
|
+
pulumi_oci/database/autonomous_container_database.py,sha256=CPzWkQXCI8bpB9UeRuOiZh3aRooLOw_MtofEsgSnNjY,205154
|
728
|
+
pulumi_oci/database/autonomous_container_database_add_standby.py,sha256=LaKphfzu9VHQTlpQDiJ11UtmpJaM1FJUhPV4YNPXF-w,139179
|
729
|
+
pulumi_oci/database/autonomous_container_database_dataguard_association.py,sha256=eGpjxra56DOd1Lj827xFJEtRcIrP-pGALBBf7HnkDiQ,80473
|
698
730
|
pulumi_oci/database/autonomous_container_database_dataguard_association_operation.py,sha256=eQw4mOleH0wp_yyuOTO0ICUuo5Wqm8iovSUx6dIjuO0,18466
|
699
731
|
pulumi_oci/database/autonomous_container_database_dataguard_role_change.py,sha256=wc8ikLwyIPaqMcoEbT-vn9ko8DQZBGynomGQbw_WU2Y,12910
|
700
|
-
pulumi_oci/database/autonomous_container_database_snapshot_standby.py,sha256=
|
732
|
+
pulumi_oci/database/autonomous_container_database_snapshot_standby.py,sha256=LWsN9kfB00mvNXcDPewhBI4r1DJt0JyLjhR4mG1T6wE,17448
|
701
733
|
pulumi_oci/database/autonomous_database.py,sha256=Fi7FCG6oot0C5nbpgAXOOl8yDhM0pdwrqRADkISFwrk,518993
|
702
734
|
pulumi_oci/database/autonomous_database_backup.py,sha256=1iL6V2tbKyaQet3688sJPkg2y_-VrNuGcePBzBewpCg,45272
|
703
735
|
pulumi_oci/database/autonomous_database_instance_wallet_management.py,sha256=HjbGPduqTdClCKAmKHOQuOyKq7d0J0AGQM5p1JMpsVQ,19368
|
704
736
|
pulumi_oci/database/autonomous_database_regional_wallet_management.py,sha256=HqbL0NS9BTxD9GGj4FlR5wf-zqnqeLeYJk80rs_kWuo,16254
|
705
737
|
pulumi_oci/database/autonomous_database_saas_admin_user.py,sha256=o5VcnRrmhPPKo20kiPRD_jI8UVH2qd5zOLfukXISxJk,27685
|
706
|
-
pulumi_oci/database/autonomous_database_software_image.py,sha256=
|
738
|
+
pulumi_oci/database/autonomous_database_software_image.py,sha256=s0eyqygJmDXOiGlxt9ktKOvOA7QOz7x1blVGsXDvVjc,36726
|
707
739
|
pulumi_oci/database/autonomous_database_wallet.py,sha256=mtwy9opeCn5iTVPy9V1SUPyKAalSPhb9H1Zpu0VelfA,23805
|
708
740
|
pulumi_oci/database/autonomous_exadata_infrastructure.py,sha256=RjKqRQ0Iimx0Wez0UO8_44Se5mfjMQ8X0uJzFJ8rLLo,70202
|
709
|
-
pulumi_oci/database/autonomous_vm_cluster.py,sha256=
|
741
|
+
pulumi_oci/database/autonomous_vm_cluster.py,sha256=iakkpmuB8tO7BdNwAT9GpdSzx_MnM8Bc98WxUsvYSyU,118203
|
710
742
|
pulumi_oci/database/autonomous_vm_cluster_ords_certificate_management.py,sha256=CF6T0rtQXHjwkhgYbmDekLJYuPphRq3j9RfEU-QMmuA,22456
|
711
743
|
pulumi_oci/database/autonomous_vm_cluster_ssl_certificate_management.py,sha256=pcfzdgNHDFb5nMjHtDjSjZctfwgPo_CQYN4xsLavdew,22366
|
712
744
|
pulumi_oci/database/backup.py,sha256=fq9F3IXeYwPN-sAx3QxNi8HWak9erfGZKqnNSO1lY8E,44810
|
713
745
|
pulumi_oci/database/backup_cancel_management.py,sha256=XhYv5-XJncYssQc2Amju2eWQOCxYXI0cRAGqkvKW3Eo,12002
|
714
|
-
pulumi_oci/database/backup_destination.py,sha256=
|
715
|
-
pulumi_oci/database/cloud_autonomous_vm_cluster.py,sha256=
|
746
|
+
pulumi_oci/database/backup_destination.py,sha256=y50Gh2hGm1ciRfeMLQmH42_p04qlZJFN8_NNSR-JDBA,54520
|
747
|
+
pulumi_oci/database/cloud_autonomous_vm_cluster.py,sha256=4_SpcOHWBtlaDmWDmNB6MtW5dC4OyhbSALFjznvEnN4,155368
|
716
748
|
pulumi_oci/database/cloud_database_management.py,sha256=GwayH9k9IkE_0QoxYReIPbpCBuRA0xjSskL8q4Ia-LI,32967
|
717
749
|
pulumi_oci/database/cloud_exadata_infrastructure.py,sha256=NLrJKzq443lOjn5iv95Zj7Xnn7LGY1dyKGqojUxUd-c,91144
|
718
|
-
pulumi_oci/database/cloud_vm_cluster.py,sha256=
|
750
|
+
pulumi_oci/database/cloud_vm_cluster.py,sha256=tFEI1YoKImS6DpV2QrvA28Sy_bvHDcTzYvv50XzGeEY,175452
|
719
751
|
pulumi_oci/database/cloud_vm_cluster_iorm_config.py,sha256=bxGjth_x2TrUra5lqiyLOGOUQK3aDP6zFf__C6rQ76Y,17033
|
720
752
|
pulumi_oci/database/data_guard_association.py,sha256=SmHmOGQDzzmhNOThr7_-iaWlK7GTMtoFgh0TAeQDOsw,166933
|
721
|
-
pulumi_oci/database/database.py,sha256=
|
722
|
-
pulumi_oci/database/database_software_image.py,sha256=
|
723
|
-
pulumi_oci/database/database_upgrade.py,sha256=
|
724
|
-
pulumi_oci/database/db_home.py,sha256=
|
725
|
-
pulumi_oci/database/db_node.py,sha256=
|
753
|
+
pulumi_oci/database/database.py,sha256=UdLMQuuE4HwfgOozzzE7p8qn8Y9nyf8wDtMlM9_ddsY,91588
|
754
|
+
pulumi_oci/database/database_software_image.py,sha256=5StrRnyTLmveM6eofrh8ZC7g_SvlBM-g4kYkm4oEAEI,50547
|
755
|
+
pulumi_oci/database/database_upgrade.py,sha256=oARzhGYv5T9ub7A-d0wfCXoedTxN1wrpcvMSJnoQf4I,65453
|
756
|
+
pulumi_oci/database/db_home.py,sha256=GbhJdcOfX2SGq6SyWeTdVlIxRdEJH99thhNSI2T1e8E,61023
|
757
|
+
pulumi_oci/database/db_node.py,sha256=UkXjSLHsyV9mlTcmuUjeeCnf0PrsNXUJteoDxGC8ON0,55812
|
726
758
|
pulumi_oci/database/db_node_console_connection.py,sha256=AAGm0rYcq_Qu59wHY_ZZ-UrCAao9B8smgzEdo-qaFPw,28097
|
727
759
|
pulumi_oci/database/db_node_console_history.py,sha256=FsYZkl5bCWVq_rOSPlRX256SBMDn1WEywmjK5g4iVIM,25219
|
728
|
-
pulumi_oci/database/db_system.py,sha256=
|
760
|
+
pulumi_oci/database/db_system.py,sha256=zNxs6yYgDpCmPWTfJAtVQZOWXhb-SjTKRy_iq92gfbw,198859
|
729
761
|
pulumi_oci/database/db_systems_upgrade.py,sha256=p6QVevCmrpeTr1tmsVJ5NUM0M0xFRft-YhDzUiVFFYs,97315
|
730
|
-
pulumi_oci/database/exadata_infrastructure.py,sha256=
|
731
|
-
pulumi_oci/database/exadata_infrastructure_compute.py,sha256=
|
762
|
+
pulumi_oci/database/exadata_infrastructure.py,sha256=N5uiML4xDnQ_9exTkTJtjyuDh0Wo9Cyd-8zNng_-jMY,136643
|
763
|
+
pulumi_oci/database/exadata_infrastructure_compute.py,sha256=0mI-gbxwB2YN29vwB2oqOaLqjD1KFOzFTQTayeIHiI8,82651
|
732
764
|
pulumi_oci/database/exadata_infrastructure_configure_exascale_management.py,sha256=ZWjixh-Ag8ic7ByiZK6u7nTVYk-t5kTSk9ZxHEeU9H0,90716
|
733
765
|
pulumi_oci/database/exadata_infrastructure_storage.py,sha256=HbPHP4dcgu9H5VAQnDHA6wcRXpZ6v0ZJvWPqFORjoRc,54119
|
734
766
|
pulumi_oci/database/exadata_iorm_config.py,sha256=Z7vRcMvrZ_MhlmdnoyxANAXBD_KlBCP8y3N-axlClXc,18665
|
@@ -736,24 +768,25 @@ pulumi_oci/database/exadb_vm_cluster.py,sha256=uZMxN8pmYw2yzhtnauVwajd1cWhvOp8zc
|
|
736
768
|
pulumi_oci/database/exascale_db_storage_vault.py,sha256=QALgQ2tgv1VBCc_YeHqKCvm2_KM_LHE6zFzuUgvmd_4,55644
|
737
769
|
pulumi_oci/database/execution_action.py,sha256=opOqQvkCv65D5sJhv8nR7UyewLj0aHsMaSsVFuP_-TU,44049
|
738
770
|
pulumi_oci/database/execution_window.py,sha256=8j-aLiW4r19CksU_ReoeevOfXgg6sJ_Knm7j1a7AcXo,45714
|
739
|
-
pulumi_oci/database/external_container_database.py,sha256
|
771
|
+
pulumi_oci/database/external_container_database.py,sha256=-itkbmDmhWJ4rsUz7nuAe8OM9kvapQTYkBko1ZfAVO8,42892
|
740
772
|
pulumi_oci/database/external_container_database_management.py,sha256=F-N3PD-I78DDTrzD770JUCEXG63cSU76m_EJiEjDPB0,18303
|
741
773
|
pulumi_oci/database/external_container_databases_stack_monitoring.py,sha256=hsapJT57aUWSawhDSS7ezMOwzzuu4Sp2Cc_Ckg9ESz8,17903
|
742
|
-
pulumi_oci/database/external_database_connector.py,sha256=
|
743
|
-
pulumi_oci/database/external_non_container_database.py,sha256=
|
774
|
+
pulumi_oci/database/external_database_connector.py,sha256=q-b5qwOVgZ3BV23PfxGlGcEXndVsHL_I3KVdFIcLP_s,47186
|
775
|
+
pulumi_oci/database/external_non_container_database.py,sha256=3IHANmX9p9rkGDd9qjOebLieeSc-FxeEVf15B4DCubg,45270
|
744
776
|
pulumi_oci/database/external_non_container_database_management.py,sha256=q144PLT-sh2gTYc6HxYl4MRp_muMJUrQE8QtH0A2Q68,18562
|
745
777
|
pulumi_oci/database/external_non_container_database_operations_insights_management.py,sha256=_7QeklY5zPv0x-1B8sDP8M-8nXd8YKcB0zil9xJdh4o,18752
|
746
778
|
pulumi_oci/database/external_non_container_databases_stack_monitoring.py,sha256=P4DBbav55OIXlDRKa1iDanNk0KiBUVFR7Ce8jO7DUpM,18224
|
747
|
-
pulumi_oci/database/external_pluggable_database.py,sha256=
|
779
|
+
pulumi_oci/database/external_pluggable_database.py,sha256=DPQl8xYxX-P8M1T5Poe56VOpnhVwOLRDVbjwuv8MMJs,53954
|
748
780
|
pulumi_oci/database/external_pluggable_database_management.py,sha256=BT85menZbrK7POcPAkZdO08i1UnFqTvjlGC4nL5Ggzk,16687
|
749
781
|
pulumi_oci/database/external_pluggable_database_operations_insights_management.py,sha256=lWT23IRkjB6OsuWzHpNim2mIOW9ykw_koe5eUVrahI8,18446
|
750
782
|
pulumi_oci/database/external_pluggable_databases_stack_monitoring.py,sha256=o_O5YGk6O4yeB3uYcXz27ldYHJuYy7IADJKDOHU3-eA,17917
|
751
783
|
pulumi_oci/database/get_application_vip.py,sha256=kmIGeM2ps5jxpVUpMFSVFMnkLs5roCNl6CKac-GK9CE,12680
|
752
784
|
pulumi_oci/database/get_application_vips.py,sha256=WoIQXSdibnh4ZSXKfIxur-Qc8Ipwid3CyzCw_YZYx64,8726
|
753
785
|
pulumi_oci/database/get_autonomous_character_sets.py,sha256=S3I5w6H8m-hPK7kT5vSTeVreWPy3vQsR5JWaslKlOjo,9326
|
754
|
-
pulumi_oci/database/get_autonomous_container_database.py,sha256=
|
755
|
-
pulumi_oci/database/
|
756
|
-
pulumi_oci/database/
|
786
|
+
pulumi_oci/database/get_autonomous_container_database.py,sha256=jl3nDkgAE5qYgp3-iaBSq_8b3x_rKTCgrzhCPjJVPg0,67314
|
787
|
+
pulumi_oci/database/get_autonomous_container_database_backups.py,sha256=2EgyZ87lty3pIMM6bKo0wWwn-pn01kLBhANJ8Sl_8GQ,14344
|
788
|
+
pulumi_oci/database/get_autonomous_container_database_dataguard_association.py,sha256=N1A1DCrb040EhdIYMOC1IqPB4eI6eYV2C-bcVq5ep8E,28923
|
789
|
+
pulumi_oci/database/get_autonomous_container_database_dataguard_associations.py,sha256=fj0f4dI-1T9XyKrs5MhK4YzFqK859QzGUqGnR4L8ygQ,9067
|
757
790
|
pulumi_oci/database/get_autonomous_container_database_resource_usage.py,sha256=__Wk0-1Cmk_xOb6fsrxtIjYfzXxP8rwYIwNTAYLUu6E,14495
|
758
791
|
pulumi_oci/database/get_autonomous_container_database_versions.py,sha256=gV473dOt_UR4yv6bMHBtoB2I_rZhnVteBSLHmTzX-zE,8280
|
759
792
|
pulumi_oci/database/get_autonomous_container_databases.py,sha256=4kcV50c1axYKKW0Z1PZTcBm1L-DX4A0KBsC8U8Ia8no,19301
|
@@ -762,12 +795,13 @@ pulumi_oci/database/get_autonomous_database.py,sha256=okWvsguxKoBBgCxSHvZhekF34B
|
|
762
795
|
pulumi_oci/database/get_autonomous_database_backup.py,sha256=-T7Czz6JFNLCkmXRoOw1akTo-EXiNydSYLr1tzsibQw,20246
|
763
796
|
pulumi_oci/database/get_autonomous_database_backups.py,sha256=Pk3QiWIAQawLleP7Zc9hcwo_GWiIyq1v2TjVnKBFZ0k,11705
|
764
797
|
pulumi_oci/database/get_autonomous_database_dataguard_association.py,sha256=9ixc9zRr-ZIGkvggdYHS9JSZeTGdBa4zUKLTka6Svg4,15476
|
765
|
-
pulumi_oci/database/get_autonomous_database_dataguard_associations.py,sha256=
|
798
|
+
pulumi_oci/database/get_autonomous_database_dataguard_associations.py,sha256=OF086qYvbNX0sl0MuaNOcSDN3CgdBSli0cDN2A6MnKY,8109
|
766
799
|
pulumi_oci/database/get_autonomous_database_instance_wallet_management.py,sha256=pOSHoN3JrJxwayCxNvQDaEXtWaSObsXmLiHFJupA2bU,7714
|
767
800
|
pulumi_oci/database/get_autonomous_database_peers.py,sha256=s2EiJqtxVtTcvvV_mSbBHabtRyNjDv51D36mzXJ2-II,6750
|
768
801
|
pulumi_oci/database/get_autonomous_database_refreshable_clones.py,sha256=KD8gRwxN0u29AhG-UNBmh72TWXxjSX4mV_KSaLpzvUo,7255
|
769
802
|
pulumi_oci/database/get_autonomous_database_regional_wallet_management.py,sha256=YmgZ0d2bvx99a1cUaR-TxeawZgQgfTkYzTOh8Eua-jA,5975
|
770
|
-
pulumi_oci/database/
|
803
|
+
pulumi_oci/database/get_autonomous_database_resource_pool_members.py,sha256=bSGQhGFHdbtWmN1SJwpb2c9z9PjYVe98ZC7p1fju29I,7300
|
804
|
+
pulumi_oci/database/get_autonomous_database_software_image.py,sha256=-QasBJWlm1z-_-U271v9gOmX1v_5XNS7VDjel6Gp2Jw,14682
|
771
805
|
pulumi_oci/database/get_autonomous_database_software_images.py,sha256=t2bOTXr3oOlptuC3ymdvWvJkpXpO-tVLQlqWNBG-flw,11131
|
772
806
|
pulumi_oci/database/get_autonomous_database_wallet.py,sha256=c8cEAe5mhrIBPhaPEzBH999bd9eqJBTkUfxlj7f-PCE,9044
|
773
807
|
pulumi_oci/database/get_autonomous_databases.py,sha256=nWNDQ5qR1pEfuml22hFX_aj333fWEPlBvVOnCAPj3Y4,24429
|
@@ -781,47 +815,47 @@ pulumi_oci/database/get_autonomous_exadata_infrastructures.py,sha256=B4UEb95zGhq
|
|
781
815
|
pulumi_oci/database/get_autonomous_patch.py,sha256=A8Ns6mZGYYc82LKOWtqS_Ub9HclpjxfcuyxVslmm7KE,10413
|
782
816
|
pulumi_oci/database/get_autonomous_virtual_machine.py,sha256=CusiaNn4yjnf2ZGGYo8sKXqWn4L_zWhDXEbwj8i3NRo,13732
|
783
817
|
pulumi_oci/database/get_autonomous_virtual_machines.py,sha256=ZelWtR0T8YgN9y3KBUvtphf06lNRAjbYu5dhD04UQjI,9397
|
784
|
-
pulumi_oci/database/get_autonomous_vm_cluster.py,sha256=
|
818
|
+
pulumi_oci/database/get_autonomous_vm_cluster.py,sha256=cFNijvbEgQJqM6Wz45vKCiymKzIirxgshhhtL-bO-IE,46775
|
785
819
|
pulumi_oci/database/get_autonomous_vm_cluster_acd_resource_usages.py,sha256=oKz5EQWiwhE6GyOBsgEZL7NE6Q2crxhENZZ2-nBWS8I,8859
|
786
820
|
pulumi_oci/database/get_autonomous_vm_cluster_resource_usage.py,sha256=fT1VLylF_7JJHQqS209yViWGmWWILRAq9ECMxGPJ2Zw,22486
|
787
821
|
pulumi_oci/database/get_autonomous_vm_clusters.py,sha256=8CeEiyk3ArjW7h33lu8Z9Jv7KXytbinaTaOtl0w0BS8,10748
|
788
|
-
pulumi_oci/database/get_backup_destination.py,sha256=
|
822
|
+
pulumi_oci/database/get_backup_destination.py,sha256=oTLDbtR6QFiAPi-XXeLNC6yB7wyHlM3Y4J0_eXp1tIs,19593
|
789
823
|
pulumi_oci/database/get_backup_destinations.py,sha256=zrKpcalAMb8u0ObkqeOCHEmT9mrxDCaATxKDyC4HOPk,7161
|
790
824
|
pulumi_oci/database/get_backups.py,sha256=b33Vi4ai_82YyZFFZDV4ODeVchaBsc1VKG_wFJRqHBE,16054
|
791
|
-
pulumi_oci/database/get_cloud_autonomous_vm_cluster.py,sha256=
|
825
|
+
pulumi_oci/database/get_cloud_autonomous_vm_cluster.py,sha256=ZCgTBQbQcoMVTvnDS0DHvc9-Q7PKmhBsSobF5lu-qy8,55143
|
792
826
|
pulumi_oci/database/get_cloud_autonomous_vm_cluster_acd_resource_usages.py,sha256=mSbqGg9QfsEn1vAPlSgyh1iuW-pds5YmQtwXFMcXHaM,9251
|
793
827
|
pulumi_oci/database/get_cloud_autonomous_vm_cluster_resource_usage.py,sha256=Q0q5UXzKOteM1UrNuysmU3U8guKgfC_e22RR4lSe-rc,21894
|
794
828
|
pulumi_oci/database/get_cloud_autonomous_vm_clusters.py,sha256=4fPCQ6Zd4zPyAN41-6jpFpnahm-kMwOyOZUpB4hLNnc,12674
|
795
829
|
pulumi_oci/database/get_cloud_exadata_infrastructure.py,sha256=BrNcm66Unz3VBvp8_Xnsr576HU8QbAMYCNoKD_xO2Fg,35604
|
796
830
|
pulumi_oci/database/get_cloud_exadata_infrastructure_un_allocated_resource.py,sha256=_F3xGNK2OD7GUjJA-hjiqY0XWweJ3k0uN29Fd76eCz4,12125
|
797
831
|
pulumi_oci/database/get_cloud_exadata_infrastructures.py,sha256=up-aZv6WSmHZC7NRJv9CW6ujwJDGShnQzgcs12oN3hY,11177
|
798
|
-
pulumi_oci/database/get_cloud_vm_cluster.py,sha256=
|
832
|
+
pulumi_oci/database/get_cloud_vm_cluster.py,sha256=nkyFaqNDDFTDjIxNX_npRx9-HADphG0h_L6rI5hoYQA,48969
|
799
833
|
pulumi_oci/database/get_cloud_vm_cluster_iorm_config.py,sha256=7SWinMDoM7TLXeGSvogyO2jxlNYveh8zfaxjYGjcOVQ,7591
|
800
834
|
pulumi_oci/database/get_cloud_vm_clusters.py,sha256=A-oWnQxAROaTm58JIsVJ-H8Ye5ijTBLg-u1AEQhp0JE,11706
|
801
835
|
pulumi_oci/database/get_data_guard_association.py,sha256=qfy52dHKWKWZ__09tYtoPozPht_hzL4h6yKYBi1BNy4,34807
|
802
836
|
pulumi_oci/database/get_data_guard_associations.py,sha256=MZ2lY3vSAXmY7xWJwexpE_k3HRkMYrOQ-Zglw30-sqM,6285
|
803
|
-
pulumi_oci/database/get_database.py,sha256=
|
837
|
+
pulumi_oci/database/get_database.py,sha256=85Led45ztomNeuRQ6tH4DJ8_OZ6eDdouB1g0PW6jNsk,32229
|
804
838
|
pulumi_oci/database/get_database_maintenance_run_histories.py,sha256=S27HcrGl7s1LWOI141O2_d1L-yb9V3nYLRHISCKvmWQ,13072
|
805
839
|
pulumi_oci/database/get_database_maintenance_run_history.py,sha256=PxL6XYXfvXyEII8Cv0uaooQ4idRo32xW7evv-CawoJQ,8423
|
806
840
|
pulumi_oci/database/get_database_pdb_conversion_history_entries.py,sha256=tNkjI0tWH7nFL5zs1bMp_kwN8Lg6ADFCjIvx_46CKn0,10048
|
807
841
|
pulumi_oci/database/get_database_pdb_conversion_history_entry.py,sha256=iZ-Dz0MkUOlw4p8dGRfjBXaLaZatS-rerJ52t201X1U,14205
|
808
|
-
pulumi_oci/database/get_database_software_image.py,sha256=
|
842
|
+
pulumi_oci/database/get_database_software_image.py,sha256=loFilZp-t8mlIHBl0R5pD5A4RO6-If56kNBKlUq4pHY,18013
|
809
843
|
pulumi_oci/database/get_database_software_images.py,sha256=ZOIuZzu3ppECEgY9Ps27P78K1vwKvl3ZVCPdp4K8RZk,14300
|
810
844
|
pulumi_oci/database/get_database_upgrade_history_entries.py,sha256=lrTzNxvMQeD8Jq35cvoM3KMhGecQrSVaufr7wXhX_YU,9045
|
811
845
|
pulumi_oci/database/get_database_upgrade_history_entry.py,sha256=MI23VR37A-VcVaD-vPHIDAbOSK5hAMTlm7mqLgAQB6c,13558
|
812
846
|
pulumi_oci/database/get_databases.py,sha256=sdi6hLmWANcePtypN4fyWTmpq-AGXKKSCPZ96uBCMbw,10326
|
813
|
-
pulumi_oci/database/get_db_home.py,sha256=
|
847
|
+
pulumi_oci/database/get_db_home.py,sha256=rvkUl3s2Rfq3yUfkJQ9nM-fVWdca0IwvaK-RT3aFS8Q,18319
|
814
848
|
pulumi_oci/database/get_db_home_patch_history_entries.py,sha256=hGry_QPGXA2_sRr9OKZI6lnUzWL0jOJHKyTroQuR69k,6275
|
815
849
|
pulumi_oci/database/get_db_home_patches.py,sha256=pPA7gbaxANF06J4p6PZ4yuLcVjLNDqsngXD6XyNlo44,5527
|
816
850
|
pulumi_oci/database/get_db_homes.py,sha256=11aLg6XsS36joUPdSPzFbO0vrkMA33LpaqbWFx4VNSk,12379
|
817
|
-
pulumi_oci/database/get_db_node.py,sha256=
|
851
|
+
pulumi_oci/database/get_db_node.py,sha256=IqHDiOqD33BmvadlCUnXp3_d7FghA9jvaiap2lQIVws,23867
|
818
852
|
pulumi_oci/database/get_db_node_console_connection.py,sha256=B5KeyJdAsTPL7UMc5Biasu4kGsZDmOV5L7RgkE3VQSU,11044
|
819
853
|
pulumi_oci/database/get_db_node_console_connections.py,sha256=22S4KO3BxyHcnBAyyuru6I_5kvimzTH3-Y9kgL3lsQI,6242
|
820
854
|
pulumi_oci/database/get_db_node_console_histories.py,sha256=pjVfVsL88plJ1vIV0HvlTfMin2H_fLyWxAYw7gE4LRQ,8680
|
821
855
|
pulumi_oci/database/get_db_node_console_history.py,sha256=JnjgfcLMjR_0WC21h1aki60Agz4JtXx5PFGgqObe_FE,10328
|
822
856
|
pulumi_oci/database/get_db_node_console_history_content.py,sha256=5c2j3fw6Jm3QnY3LfRsTjACbZ4iZ5ifK-pIMwyLdJ_Y,5819
|
823
|
-
pulumi_oci/database/get_db_nodes.py,sha256=
|
824
|
-
pulumi_oci/database/get_db_server.py,sha256=
|
857
|
+
pulumi_oci/database/get_db_nodes.py,sha256=JmOBTBQ27_hIGvCNiRtsfIVQC0LWLuE2J4weMtomuOU,10722
|
858
|
+
pulumi_oci/database/get_db_server.py,sha256=FapIWt_6b3Aylju0nK8RDrxeobKAGpo5DGBClQ9TevA,21238
|
825
859
|
pulumi_oci/database/get_db_servers.py,sha256=9NGqMh3DxoRXIz6uPLJnOT1zhgN31Jwizimi7z9NY2U,9637
|
826
860
|
pulumi_oci/database/get_db_system_compute_performances.py,sha256=KpZ3oxMadIyfHexM9n1qhWr2I6jc-2fcBOFtrFKd06E,6788
|
827
861
|
pulumi_oci/database/get_db_system_history_entries.py,sha256=5fk66kBHGRRzpvpROwsW8JrLXWk_TptBBgzNo9-9ClI,6232
|
@@ -832,7 +866,7 @@ pulumi_oci/database/get_db_systems.py,sha256=2E6wupHtX2U03IB-dAtOsw8LpMKLqmSgyZK
|
|
832
866
|
pulumi_oci/database/get_db_systems_upgrade_history_entries.py,sha256=jo1CC-Z6IQ7TLPDRYlLYG_qWgEBLteN7gWP71-jnpyQ,9089
|
833
867
|
pulumi_oci/database/get_db_systems_upgrade_history_entry.py,sha256=FEEPgrsTP7R7Qwq2FYXNl9GdbIKL_Bn1OilSZyuw5no,12838
|
834
868
|
pulumi_oci/database/get_db_versions.py,sha256=A1UTMTmD3rhGocAqsSg7OIUJ2z8A43XiioUR-TaVABQ,13231
|
835
|
-
pulumi_oci/database/get_exadata_infrastructure.py,sha256=
|
869
|
+
pulumi_oci/database/get_exadata_infrastructure.py,sha256=O5omZT-lxFel8b0vl3WvUNQqHfauwvo6icLhFDAnyvc,45501
|
836
870
|
pulumi_oci/database/get_exadata_infrastructure_download_config_file.py,sha256=k-kAiIWH2i7yERube1YawLT1ehJcnEznX8KZ5IBd5Ug,7155
|
837
871
|
pulumi_oci/database/get_exadata_infrastructure_un_allocated_resource.py,sha256=zBJ5N7bPDlc0C7ZW5vS4GO3GEXqHCMQVscsX-3d-uyM,11195
|
838
872
|
pulumi_oci/database/get_exadata_infrastructures.py,sha256=YIJV1t51M19Phzod_Cmp-5sxxgmWL2_Hv15bOtMTOeU,8812
|
@@ -849,27 +883,27 @@ pulumi_oci/database/get_execution_action.py,sha256=o77zfGymcAbBbLItOu8efWRqRcnde
|
|
849
883
|
pulumi_oci/database/get_execution_actions.py,sha256=8oAa8ogDbZEdl1Rz7bpPG-PCENOaVtH3dyXHArAdi5s,9977
|
850
884
|
pulumi_oci/database/get_execution_window.py,sha256=fHezzL1v9-fY3AJJ8PvRpcUmuBght2bytE_KnqWGNsg,17908
|
851
885
|
pulumi_oci/database/get_execution_windows.py,sha256=by-lUbV03HcSi7ljXnomKz7ccneszDUZntpLGaHRVAA,10012
|
852
|
-
pulumi_oci/database/get_external_container_database.py,sha256=
|
886
|
+
pulumi_oci/database/get_external_container_database.py,sha256=QEZX2NlK9M0ApBJ8szi9CgJF0mcATmbQTKSwcUY0oBg,18564
|
853
887
|
pulumi_oci/database/get_external_container_databases.py,sha256=bfpQGTKUCSrEzemTgRJiwp-X-gy2uhTYU1aKK7BkB90,9095
|
854
|
-
pulumi_oci/database/get_external_database_connector.py,sha256=
|
888
|
+
pulumi_oci/database/get_external_database_connector.py,sha256=n3EA_znNMcEiYuLTaDi7PDRhgHHsyvOjpaSUdpIQK14,16765
|
855
889
|
pulumi_oci/database/get_external_database_connectors.py,sha256=yGKmnm5e4p50ovOh3KUJa4XVxIquiaRhwN4z9Mdo2-4,10812
|
856
|
-
pulumi_oci/database/get_external_non_container_database.py,sha256=
|
890
|
+
pulumi_oci/database/get_external_non_container_database.py,sha256=Abt6wTkIInnO1_l-1ECOrOhF_bo7PkgnX_Jwb9G5Yrs,19718
|
857
891
|
pulumi_oci/database/get_external_non_container_databases.py,sha256=RhuCbn3jypjk8BNEB5Vfv0jgRfeFPTXdk12JrGNefRI,9320
|
858
|
-
pulumi_oci/database/get_external_pluggable_database.py,sha256=
|
892
|
+
pulumi_oci/database/get_external_pluggable_database.py,sha256=UVSgy7GK9FIwPp1SHItLFaZ9RszXu0bFthyerRE7gSk,21677
|
859
893
|
pulumi_oci/database/get_external_pluggable_databases.py,sha256=yxSUrgQ6xz4rt7G8l8E-j86qEHNFMjXNKVmlmAttqrE,11477
|
860
894
|
pulumi_oci/database/get_flex_components.py,sha256=_j_IdLk9J0i0V2X90V88PS-QcfZDiyuvQ6wuQ2Xp8Og,8350
|
861
895
|
pulumi_oci/database/get_gi_version_minor_versions.py,sha256=NazOb3_a799nMqL4aWcCNoaBqRk0fPqyTyiq_zxGFBQ,12480
|
862
896
|
pulumi_oci/database/get_gi_versions.py,sha256=YQC5k-8Gp9acCeZBlCimIQNxXUPyqFRYo0FyiyHoDwU,8735
|
863
897
|
pulumi_oci/database/get_infrastructure_target_version.py,sha256=Ky-9ZDl5zQHGFFN08dzdm0EiyFD1EBxvM2clU7MwPX4,9820
|
864
|
-
pulumi_oci/database/get_key_store.py,sha256=
|
898
|
+
pulumi_oci/database/get_key_store.py,sha256=iEAZPLhWLPejsbj1knqdtLwxH36sGegJWUfMp7Ali0U,11763
|
865
899
|
pulumi_oci/database/get_key_stores.py,sha256=1iwVaV_3tHnkW_Nti9OlCA354zQd6Xr70icQa2pLDRI,5660
|
866
|
-
pulumi_oci/database/get_maintenance_run.py,sha256=
|
900
|
+
pulumi_oci/database/get_maintenance_run.py,sha256=9aqeFuF6g9Nu3xvmeDjE0iBu4zaiWTqog2MGuL0hT_g,30231
|
867
901
|
pulumi_oci/database/get_maintenance_runs.py,sha256=j3zxtpXidJqQVKD5G_7C0DSsZxOcpfDQpasAD8WeH48,14849
|
868
902
|
pulumi_oci/database/get_managed_preferred_credential.py,sha256=QLosXx2ma_XpnNrFDpPNOh_4bLdZiarckVentpXJYLo,11178
|
869
903
|
pulumi_oci/database/get_managed_preferred_credentials.py,sha256=y4qMjwv-ki4WGyIA2WCZsRO9v1CN3Z4G0IYJdInjWTA,6827
|
870
|
-
pulumi_oci/database/get_oneoff_patch.py,sha256=
|
904
|
+
pulumi_oci/database/get_oneoff_patch.py,sha256=sVYO2UEWOGV9W4P-djcneJq3Zi9VOlY5bKfYz_ubzbI,15180
|
871
905
|
pulumi_oci/database/get_oneoff_patches.py,sha256=leEwD8BOGfiRAFemm_AEDRB5tjMNEXXrhpKvG4sPAzM,8117
|
872
|
-
pulumi_oci/database/get_pluggable_database.py,sha256=
|
906
|
+
pulumi_oci/database/get_pluggable_database.py,sha256=U5Jan5hMqhHh2bIV444Vjo2qAfkUF1GHlW7ya-OtbWs,23293
|
873
907
|
pulumi_oci/database/get_pluggable_databases.py,sha256=s_Pwgi728pw0oZFqdlU8m8Rgv-NXBFv7KPf0XK4M0X8,10023
|
874
908
|
pulumi_oci/database/get_scheduled_action.py,sha256=LEK24Pa_Lqers9IkXS8Uok1-q_8iqeyh0LIheCVDOHQ,15006
|
875
909
|
pulumi_oci/database/get_scheduled_action_params.py,sha256=W2LnVTHupzYQUDa5gRcIJW2mPrZltcBF1r4mz3C4K68,6002
|
@@ -883,8 +917,8 @@ pulumi_oci/database/get_scheduling_policy_scheduling_window.py,sha256=w1cEAPah09
|
|
883
917
|
pulumi_oci/database/get_scheduling_policy_scheduling_windows.py,sha256=koeVOABIri-SoXK-IIsVR6WSNavd7FJEIIiPqHdSjhM,10860
|
884
918
|
pulumi_oci/database/get_system_version_minor_versions.py,sha256=mI1EBcIak-raOqPX420bK_bm-s6sDVw2mcYPlh6wRhE,12103
|
885
919
|
pulumi_oci/database/get_system_versions.py,sha256=ruvFUegzg2J7u97CSvF8nuMlnlEyjX1M9L8rcHFiLJE,10073
|
886
|
-
pulumi_oci/database/get_vm_cluster.py,sha256=
|
887
|
-
pulumi_oci/database/get_vm_cluster_network.py,sha256=
|
920
|
+
pulumi_oci/database/get_vm_cluster.py,sha256=vbqnmJ6TRRNp-PB3IWdgVa4BEokQwvJgyGQoP08SalI,30924
|
921
|
+
pulumi_oci/database/get_vm_cluster_network.py,sha256=96bsUuPYQ9bWXCYIJFJRyu9jTzGjf_0rbLpRJQ6Am-w,17727
|
888
922
|
pulumi_oci/database/get_vm_cluster_network_download_config_file.py,sha256=l1wNFfqygfmLu9LfwhxRyuz5CbZEYqognQ6y7CoKOog,8512
|
889
923
|
pulumi_oci/database/get_vm_cluster_networks.py,sha256=1q4pgN245j6-61-76rXdZQDwf2pbivg27jEpIYfa7X4,10987
|
890
924
|
pulumi_oci/database/get_vm_cluster_patch.py,sha256=dqR4RBY9VTmtCaTzs4X_RBqBID0XKn1J6cQXwbIfltY,9521
|
@@ -897,24 +931,24 @@ pulumi_oci/database/get_vm_cluster_update_history_entries.py,sha256=T9aH5xlHXvPq
|
|
897
931
|
pulumi_oci/database/get_vm_cluster_update_history_entry.py,sha256=1cjOjqQAPjT9v6obLFf0U4mEb-Yo6ypA866rflF_UUY,10669
|
898
932
|
pulumi_oci/database/get_vm_cluster_updates.py,sha256=ynB9f8xKvVF735NF21uNl-ydDqnCEu2paM4lbymSHlE,8292
|
899
933
|
pulumi_oci/database/get_vm_clusters.py,sha256=IZ9il2xJ3JBxRG0Gv1km6E-KmWbyDm0g62nUQ8LmBFc,11381
|
900
|
-
pulumi_oci/database/key_store.py,sha256=
|
901
|
-
pulumi_oci/database/maintenance_run.py,sha256=
|
902
|
-
pulumi_oci/database/oneoff_patch.py,sha256=
|
903
|
-
pulumi_oci/database/outputs.py,sha256=
|
904
|
-
pulumi_oci/database/pluggable_database.py,sha256=
|
934
|
+
pulumi_oci/database/key_store.py,sha256=CXmJPgz46NubQc-dbAJNTKINxfji3xX68HFF04lAZdo,30607
|
935
|
+
pulumi_oci/database/maintenance_run.py,sha256=8XqyE91DZIB9Fb0MN_bS5stqhUhJl58320X4SKWvIuA,71389
|
936
|
+
pulumi_oci/database/oneoff_patch.py,sha256=z6twjcQEjzCljqz_VJInq4DB5Zg8vkmU4QavP-e2LTs,42444
|
937
|
+
pulumi_oci/database/outputs.py,sha256=XYiAVX4RMUcOAATmpmVzWC8Cc9LJ9H3S3tQqS5jE8ck,3059881
|
938
|
+
pulumi_oci/database/pluggable_database.py,sha256=DzX_YLkvfqln_U5KjMYKWHuY2JkI54a6IPRIqAfwH4s,83420
|
905
939
|
pulumi_oci/database/pluggable_database_managements_management.py,sha256=0kaovAUJibI7jzA8TaIrABeGrj_MtLPL7NMhYRzPwOA,54646
|
906
|
-
pulumi_oci/database/pluggable_databases_local_clone.py,sha256=
|
907
|
-
pulumi_oci/database/pluggable_databases_remote_clone.py,sha256=
|
940
|
+
pulumi_oci/database/pluggable_databases_local_clone.py,sha256=fZd5nrvVbEoJBucQHiTzeVC01rJCTUodzqmiv21Vak8,54441
|
941
|
+
pulumi_oci/database/pluggable_databases_remote_clone.py,sha256=kGtd78b0GJP7kC1AP7acEJ3MX8MSXanMY0SW5jh-Zgc,61366
|
908
942
|
pulumi_oci/database/scheduled_action.py,sha256=soyMZr0I6NrDW4A1W59eeOVVTBpympIoed6rawnpE7w,42276
|
909
943
|
pulumi_oci/database/scheduling_plan.py,sha256=91gmpgyOX9Y2bHlt0n6lfjOAaQn0MTMu08LPCKimTB8,39924
|
910
944
|
pulumi_oci/database/scheduling_policy.py,sha256=z-WP4z1y3twMquXYUkAtWiO3_P-c_-biaD9dRY2jJzM,32518
|
911
945
|
pulumi_oci/database/scheduling_policy_scheduling_window.py,sha256=cXToUySc69Muh9kYKosqtEnoEtbJx5RipjWDJlF3h3Y,33063
|
912
|
-
pulumi_oci/database/vm_cluster.py,sha256=
|
946
|
+
pulumi_oci/database/vm_cluster.py,sha256=QIN7x7WAhd9FF5uoGkURy0GmqG3Sp2oRrP5D9TYEyYU,100382
|
913
947
|
pulumi_oci/database/vm_cluster_add_virtual_network.py,sha256=lMBIOrXpMUhY51NXLebiOU6e6RglbMprPbbnWgHJCAg,64920
|
914
|
-
pulumi_oci/database/vm_cluster_network.py,sha256=
|
948
|
+
pulumi_oci/database/vm_cluster_network.py,sha256=bsZ3N5L8WgXKW_SCbr_aTSzEoSr2o-c4bA_ZKFcae04,52278
|
915
949
|
pulumi_oci/database/vm_cluster_remove_virtual_machine.py,sha256=_ToM-0eUoUCJe60Qk1PNDo2RXz6UHVzKwOPSuscZSEM,62588
|
916
|
-
pulumi_oci/databasemanagement/__init__.py,sha256=
|
917
|
-
pulumi_oci/databasemanagement/_inputs.py,sha256=
|
950
|
+
pulumi_oci/databasemanagement/__init__.py,sha256=cjzBCoqR_vbvrCRZlFFUsmOf_l2pJTRC5FKodYth9vc,7945
|
951
|
+
pulumi_oci/databasemanagement/_inputs.py,sha256=gPm6H-_EPL44m01ikzc5lcoug6gBqUY1pw7Km3PLolQ,622354
|
918
952
|
pulumi_oci/databasemanagement/autonomous_database_autonomous_database_dbm_features_management.py,sha256=t231a_BmH5Ox8MdfCKP9IMDf1ec48fKeqoScvKIYLvM,17402
|
919
953
|
pulumi_oci/databasemanagement/database_dbm_features_management.py,sha256=_zkJtSLc89ulH2IzCxp2su44T06ESou0ETk8zeffuXg,20155
|
920
954
|
pulumi_oci/databasemanagement/db_management_private_endpoint.py,sha256=7gUqMPkTIn1_L8s8HNnKjC2OE6QOToOWQ3ReOmufZ5A,41929
|
@@ -1039,8 +1073,15 @@ pulumi_oci/databasemanagement/get_managed_databases_user_proxy_user.py,sha256=xi
|
|
1039
1073
|
pulumi_oci/databasemanagement/get_managed_databases_user_proxy_users.py,sha256=rOTIcYilSPDu8ygkkObijQO_UJZnago68yVmwJuaMb8,10198
|
1040
1074
|
pulumi_oci/databasemanagement/get_managed_databases_user_system_privilege.py,sha256=jJlvCpvxzQdfiCf8UpD8E4bXcVLpWsW4-QKWnxFlSos,7740
|
1041
1075
|
pulumi_oci/databasemanagement/get_managed_databases_user_system_privileges.py,sha256=aI3EG95MJ8GPpWsM3x3KIQsP90OagVgrx-alqXZoGt4,10581
|
1042
|
-
pulumi_oci/databasemanagement/get_managed_my_sql_database.py,sha256=
|
1076
|
+
pulumi_oci/databasemanagement/get_managed_my_sql_database.py,sha256=M4q0LuPE3N4GsuCETXsQVVb0yCklqvkv5C-Z8WWVyTQ,16909
|
1077
|
+
pulumi_oci/databasemanagement/get_managed_my_sql_database_binary_log_information.py,sha256=M9BACrVS41zCFkG_rSIUZACdubelLvGgPhDj4DuOm-Y,9737
|
1043
1078
|
pulumi_oci/databasemanagement/get_managed_my_sql_database_configuration_data.py,sha256=1ko0goj_EO2s2ohRfUuv4kr9tL0gScCPh4m1To32KfA,7321
|
1079
|
+
pulumi_oci/databasemanagement/get_managed_my_sql_database_digest_errors.py,sha256=2G1L7v07ka8pBmsFAHTtEqLWqX8bSdWuwCTkPznJsPw,7998
|
1080
|
+
pulumi_oci/databasemanagement/get_managed_my_sql_database_general_replication_information.py,sha256=kB1ZGYRscKEIglkIR24HhAQQeiahf9y_4lPA5lnsM_4,17773
|
1081
|
+
pulumi_oci/databasemanagement/get_managed_my_sql_database_high_availability_members.py,sha256=Nql1Uial6NUIGeqW6r8ssFb7eOBXZGH1FbTmVcHY1Pg,8028
|
1082
|
+
pulumi_oci/databasemanagement/get_managed_my_sql_database_inbound_replications.py,sha256=W0ANTAYJqPnVBhfg19ZVhGwGFCHSafJ9wPFc4fSgn_k,7761
|
1083
|
+
pulumi_oci/databasemanagement/get_managed_my_sql_database_outbound_replications.py,sha256=hRInaqszhThKjBOb1NdrMKjuKE6ELbJQTgundTm6TBQ,7825
|
1084
|
+
pulumi_oci/databasemanagement/get_managed_my_sql_database_query_detail.py,sha256=COK1M2gduxYgqhYGZAXfLkKD7POI54a8jtAi9X7bzpM,8439
|
1044
1085
|
pulumi_oci/databasemanagement/get_managed_my_sql_database_sql_data.py,sha256=EZdldIq0HD0l0a0qRWori5UIXMT9Ls4K5laywoEuuhI,11235
|
1045
1086
|
pulumi_oci/databasemanagement/get_managed_my_sql_databases.py,sha256=SeqY7p6cc-OFcXozu7dTAdnxohwDBgyVVMTtoXwWf8g,8377
|
1046
1087
|
pulumi_oci/databasemanagement/get_named_credential.py,sha256=PsRKXosIzN6RDooZnWGCBE4kc4TwraxBbCguriQeoXM,13779
|
@@ -1050,21 +1091,21 @@ pulumi_oci/databasemanagement/managed_database_group.py,sha256=sLh0MsmxNq4ZzYLEl
|
|
1050
1091
|
pulumi_oci/databasemanagement/managed_databases_change_database_parameter.py,sha256=yNlA7cP3SSjvn5F97KWhAdZGeQWusyB1B8Yjv4Z6Cog,29855
|
1051
1092
|
pulumi_oci/databasemanagement/managed_databases_reset_database_parameter.py,sha256=SB7c6vZxr9s4sCTD8qNnKyZXDhwkLfANd0NNzefw5Ak,27218
|
1052
1093
|
pulumi_oci/databasemanagement/named_credential.py,sha256=pniNXF2iUykPp7zED9qme2eKCLlTtRFC7zMD3S3NHD0,41666
|
1053
|
-
pulumi_oci/databasemanagement/outputs.py,sha256=
|
1094
|
+
pulumi_oci/databasemanagement/outputs.py,sha256=rLGEfmtEiMk0N4F2_COaHob_sBadTAHcT2u1iOABiBQ,1486084
|
1054
1095
|
pulumi_oci/databasemanagement/pluggabledatabase_pluggable_database_dbm_features_management.py,sha256=QcnwKGvfyeeAU-Wx0abzBVy7a8SvWfsP74_hWQEe6CQ,20719
|
1055
1096
|
pulumi_oci/databasemigration/__init__.py,sha256=slbYS9HjZXt8KYir9nKpR6vxFF2lfOA_rurTwPw1zMo,612
|
1056
|
-
pulumi_oci/databasemigration/_inputs.py,sha256=
|
1097
|
+
pulumi_oci/databasemigration/_inputs.py,sha256=Ju20X34bxqVeX-9OgUnY-kIsxsOTnUxMT8-th9cyACA,130384
|
1057
1098
|
pulumi_oci/databasemigration/connection.py,sha256=3NwqDTZuxaGINuJYBfomBkJ9at8EiBU6q60wd2rurWY,101776
|
1058
1099
|
pulumi_oci/databasemigration/get_connection.py,sha256=hQK0sKrY-e8Ln13rWnlZKGxuoZpJJ0sCEoE8cYqDN7k,28616
|
1059
1100
|
pulumi_oci/databasemigration/get_connections.py,sha256=Prl-WOpijZIfkw9yyTAGGkQaWGITo2y0Xa4TZ6ik06Y,11479
|
1060
1101
|
pulumi_oci/databasemigration/get_job_advisor_report.py,sha256=YaNdwlN12qI9BvtgMJlI7BkrZAsDHx0ynzHgXY75sD4,7986
|
1061
1102
|
pulumi_oci/databasemigration/get_job_output.py,sha256=ETs74sl-P4psEk1oqGQX9e0Gihf2RKed7K7flQJ2Lfk,4253
|
1062
|
-
pulumi_oci/databasemigration/get_migration.py,sha256=
|
1103
|
+
pulumi_oci/databasemigration/get_migration.py,sha256=e2ei9jnJKR5W9ITP30QLN83IIdX_MY3NCwjG4pmt-Ro,23948
|
1063
1104
|
pulumi_oci/databasemigration/get_migration_object_types.py,sha256=I5byYAYHBxWkd6NTFEchbSyZAuEDBm54TncbSZkEY2M,6100
|
1064
|
-
pulumi_oci/databasemigration/get_migrations.py,sha256=
|
1065
|
-
pulumi_oci/databasemigration/job.py,sha256=
|
1066
|
-
pulumi_oci/databasemigration/migration.py,sha256=
|
1067
|
-
pulumi_oci/databasemigration/outputs.py,sha256=
|
1105
|
+
pulumi_oci/databasemigration/get_migrations.py,sha256=cGqOQTeSNKqFGV5-t48Hu7up5X-DKQEEK54AASICOE4,23315
|
1106
|
+
pulumi_oci/databasemigration/job.py,sha256=p8ChVc9wifk9anR9FNwd7LZEERYbg6klpV3w63N-jMY,34557
|
1107
|
+
pulumi_oci/databasemigration/migration.py,sha256=vVDR_a7IaUCBZlpukhP99S-a5R1s-kIu3UmwIhhEnCU,92869
|
1108
|
+
pulumi_oci/databasemigration/outputs.py,sha256=xEZU2T5el_FbXTeNIZFBErZR--5GK4yAUFtny6NYHOk,211140
|
1068
1109
|
pulumi_oci/databasetools/__init__.py,sha256=nqbBikPs2buIg3eFQ4Am_c_7wZxbcPrhjnAFC9K7scQ,697
|
1069
1110
|
pulumi_oci/databasetools/_inputs.py,sha256=49ke8H5Nr3kf8SetQkey6cAxqBw6iD3AhgXLVRZGHkc,35700
|
1070
1111
|
pulumi_oci/databasetools/database_tools_connection.py,sha256=j_kyxBAD8o0jq_59S4_f4UcBs0Y4on3pdrUNrbQf7g8,57381
|
@@ -1097,7 +1138,7 @@ pulumi_oci/datacatalog/get_metastores.py,sha256=Cdl1g1f4Cnye9LuNHM-kPvxGSUaMr22d
|
|
1097
1138
|
pulumi_oci/datacatalog/metastore.py,sha256=xl5Blybf9aVD6yhKS9z0Xrus-9be51FWjcMVs3EQnGI,34852
|
1098
1139
|
pulumi_oci/datacatalog/outputs.py,sha256=qYalNE1jCM5h0pAPeE3YkwXo8hvaNFhAmhTiquozTuQ,73392
|
1099
1140
|
pulumi_oci/dataflow/__init__.py,sha256=3i5cxELdxN6ZITxQe248ezmCB8Kzf0pZgsvOBnaNaww,907
|
1100
|
-
pulumi_oci/dataflow/_inputs.py,sha256=
|
1141
|
+
pulumi_oci/dataflow/_inputs.py,sha256=Ns9qfqq3BMSQ4AvrcGm_A8_vw-x6Flkijs8yatxbs4s,68131
|
1101
1142
|
pulumi_oci/dataflow/application.py,sha256=4cCrGNM7zmzERvuWnDOfiYwT31nkjmALq0lTapjRprk,114292
|
1102
1143
|
pulumi_oci/dataflow/get_application.py,sha256=9ntLOVbnliFxX2NFlzE5YkEL-aNh11fLn4TqN6HF0lk,29748
|
1103
1144
|
pulumi_oci/dataflow/get_applications.py,sha256=PVfQFITdrlMRbarb9ctzTNWy5UrXr5ym5gVwBxilFLA,10950
|
@@ -1114,7 +1155,7 @@ pulumi_oci/dataflow/get_run_statements.py,sha256=c0VdsHsgUOzotqiL6gaEFx43WfOyJa4
|
|
1114
1155
|
pulumi_oci/dataflow/get_sql_endpoint.py,sha256=sGpGmFiFg_kS-86INsOmjpQ3Xr2xr3ppGaITFqA3j4U,20789
|
1115
1156
|
pulumi_oci/dataflow/get_sql_endpoints.py,sha256=rjxI8lvrjSJC9XpiXHKLK_XK--bTlweOfzt4AWTFprw,9470
|
1116
1157
|
pulumi_oci/dataflow/invoke_run.py,sha256=bZSw54JDGJO8kCi6SF8Fx9KtIiaPmewMho6JWxjlAJg,128185
|
1117
|
-
pulumi_oci/dataflow/outputs.py,sha256=
|
1158
|
+
pulumi_oci/dataflow/outputs.py,sha256=9uOrZDAMhYSBVzQv5moP86JiPt6ZUvQSOrwtEfrIeuE,203568
|
1118
1159
|
pulumi_oci/dataflow/pool.py,sha256=bgcJBjtrQO3kzF54lGShA3xbQAgqhj7QbTiC77LiP9c,43797
|
1119
1160
|
pulumi_oci/dataflow/private_endpoint.py,sha256=aF7S5InwNHGvQxT5gyAjssgskj4iI2ZJRgMyvHAq2-0,45144
|
1120
1161
|
pulumi_oci/dataflow/run_statement.py,sha256=2NceWXYXDwvonc_Wc7F4Tbr0hjk1Eg01Ns3sbKuhAgU,17161
|
@@ -1628,34 +1669,82 @@ pulumi_oci/filestorage/outbound_connector.py,sha256=aiu2EMcCCFEjpylm4xvJS9xkAh5k
|
|
1628
1669
|
pulumi_oci/filestorage/outputs.py,sha256=9hNgo379Pm0u9EYK_UovZUfuAlEIwmRqpgByE66AgKQ,213714
|
1629
1670
|
pulumi_oci/filestorage/replication.py,sha256=Zz0qVQ97VjafMl82kXJCAFb4ALEgRtZGWZ7Col5doXA,54283
|
1630
1671
|
pulumi_oci/filestorage/snapshot.py,sha256=NYwcvSLPwaXJviBpn0Bxa5E0fQzRlLLLE-G5xcJ1oK8,44032
|
1631
|
-
pulumi_oci/fleetappsmanagement/__init__.py,sha256=
|
1632
|
-
pulumi_oci/fleetappsmanagement/_inputs.py,sha256=
|
1633
|
-
pulumi_oci/fleetappsmanagement/
|
1634
|
-
pulumi_oci/fleetappsmanagement/
|
1635
|
-
pulumi_oci/fleetappsmanagement/
|
1636
|
-
pulumi_oci/fleetappsmanagement/
|
1637
|
-
pulumi_oci/fleetappsmanagement/
|
1638
|
-
pulumi_oci/fleetappsmanagement/
|
1672
|
+
pulumi_oci/fleetappsmanagement/__init__.py,sha256=t1Ps_HtUVC21tPUPD4MZJ7kdlI_bVgcN3mAbO3z9ZL4,2523
|
1673
|
+
pulumi_oci/fleetappsmanagement/_inputs.py,sha256=EQSOmxgLxMG0BuiaiceSKgern7tvxkEWJEVazhFjUoQ,464545
|
1674
|
+
pulumi_oci/fleetappsmanagement/catalog_item.py,sha256=9UnEEOhgavzPCSCq8lsMK2Hm3nzhVvWZT62y4kA7i2M,61490
|
1675
|
+
pulumi_oci/fleetappsmanagement/compliance_policy_rule.py,sha256=QNPMEnv1B2asoqLuJ5WsMLhzu54HEMFsL-6aCfuSEFo,46238
|
1676
|
+
pulumi_oci/fleetappsmanagement/fleet.py,sha256=1AlG45I2xvuIoCKVXzfxQbYXyenITi2-kWs9AsgD4dk,53992
|
1677
|
+
pulumi_oci/fleetappsmanagement/fleet_credential.py,sha256=-OxHBtKYMUw6veDVR2F50FsQn94hqf3CpRFCRBKTcEU,29170
|
1678
|
+
pulumi_oci/fleetappsmanagement/fleet_property.py,sha256=0hTkuTeJTvh5sKDw1abqnpiFAS24CeunmWxc7nIusAA,25200
|
1679
|
+
pulumi_oci/fleetappsmanagement/fleet_resource.py,sha256=X-toH175WnmGo_GdsjI8njZw_hPr-6HFKsSe30NXQr0,38207
|
1680
|
+
pulumi_oci/fleetappsmanagement/get_announcements.py,sha256=rTTyinlf0Ru7Zlt2cpIcKxNyPUheoqtRhN_o55s7bLU,8414
|
1681
|
+
pulumi_oci/fleetappsmanagement/get_catalog_item.py,sha256=ILeAcxAXYODuHmpQsiq9LNKDP2E3I8zVloEFkAQ-Shw,20682
|
1682
|
+
pulumi_oci/fleetappsmanagement/get_catalog_items.py,sha256=qHJZ9ejnpKuEVKYK4Y7qj4UJFNFhR3rNkQCc3sUxQXU,14542
|
1683
|
+
pulumi_oci/fleetappsmanagement/get_compliance_policies.py,sha256=XxmWo69mKuwTkAws19MG-Wc4k4OP-8rEdQ3R47ZVNCE,10430
|
1684
|
+
pulumi_oci/fleetappsmanagement/get_compliance_policy.py,sha256=22gRQRzoltY_laL25ZkCxSbWW0hX4Sb9L5cvzPZWINY,11679
|
1685
|
+
pulumi_oci/fleetappsmanagement/get_compliance_policy_rule.py,sha256=HRntHPhjrM83NufS_ZvdslsMcwAD914Sr5rrbezIppU,15398
|
1686
|
+
pulumi_oci/fleetappsmanagement/get_compliance_policy_rules.py,sha256=6KCCSAV0feox5dnECnCwagS5zeqI7jxZmWX5Uh-ITEk,12080
|
1687
|
+
pulumi_oci/fleetappsmanagement/get_compliance_record_counts.py,sha256=bmXwAyYt_G4n4sopOgN32Y_3WUzzvhOx9wayfxcImDk,8504
|
1688
|
+
pulumi_oci/fleetappsmanagement/get_compliance_records.py,sha256=OVSIEAGg2MsN26iUyrP_pkNeA2fqRTVLh9di53CFxAc,14362
|
1689
|
+
pulumi_oci/fleetappsmanagement/get_fleet.py,sha256=ff1ZoWnfprmrBAcJnojeBUrmh9Bk8xCTbIeWbJk8zH4,17787
|
1690
|
+
pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py,sha256=qw66B8JW6UMobYY3M9q2LHw2Z7UWeFBcOtHhZx_0L7s,7402
|
1691
|
+
pulumi_oci/fleetappsmanagement/get_fleet_credential.py,sha256=DPUb60R_YQQVh9MSWJ3oKeJ1ycHd7UElcywPU5CC-XM,11592
|
1692
|
+
pulumi_oci/fleetappsmanagement/get_fleet_credentials.py,sha256=vh3PP3gCuN21Ji-q0bmLsZVw3pjE2OArGzo8NcL9Mww,13116
|
1693
|
+
pulumi_oci/fleetappsmanagement/get_fleet_products.py,sha256=YQ9l0T_KqJiNUS74PohWa9EUpJBSujqQWnpNMvdkIww,10724
|
1694
|
+
pulumi_oci/fleetappsmanagement/get_fleet_properties.py,sha256=Q_4zDWSnkwIK-rmmZmJaWvIelKismxftUW3URrXtqJw,8556
|
1695
|
+
pulumi_oci/fleetappsmanagement/get_fleet_property.py,sha256=JttoeBcgsuK6ibHwZQmlmE-xhBLhhl43pCI4BESLj68,11729
|
1696
|
+
pulumi_oci/fleetappsmanagement/get_fleet_resource.py,sha256=oVFIOQXsPAFeuwTScakuVo3XLiBlCKQgPKMalLgFDYI,17061
|
1697
|
+
pulumi_oci/fleetappsmanagement/get_fleet_resources.py,sha256=9o8cmro0HQyErOliRDR2hF0b-JEszKh0TDEx5etKUSU,9848
|
1639
1698
|
pulumi_oci/fleetappsmanagement/get_fleet_targets.py,sha256=cs4Z8b6yGnUzRGYNVOguzlrh6L4Sibw-Rr1xKi8kVyQ,10281
|
1640
|
-
pulumi_oci/fleetappsmanagement/
|
1641
|
-
pulumi_oci/fleetappsmanagement/
|
1642
|
-
pulumi_oci/fleetappsmanagement/
|
1643
|
-
pulumi_oci/fleetappsmanagement/
|
1644
|
-
pulumi_oci/fleetappsmanagement/
|
1645
|
-
pulumi_oci/fleetappsmanagement/
|
1699
|
+
pulumi_oci/fleetappsmanagement/get_fleets.py,sha256=zOaUXV-f868gxTKGwgtvM1mfQ7p1zib9a7jDbdrPoQM,13390
|
1700
|
+
pulumi_oci/fleetappsmanagement/get_inventory_records.py,sha256=KAH-2ePnv8cm6bH_R_CODaQPcqwnnTN8Ge-MrodHPIw,9736
|
1701
|
+
pulumi_oci/fleetappsmanagement/get_inventory_resources.py,sha256=nrYst0D6swcuEd0iwJzixjyrZi5kjlnb5DvUrI4-NF4,18510
|
1702
|
+
pulumi_oci/fleetappsmanagement/get_maintenance_window.py,sha256=-ax-JmquSiGfD1FuSTBOLV6mbkrVkrjcAsJqh9aAy5g,15105
|
1703
|
+
pulumi_oci/fleetappsmanagement/get_maintenance_windows.py,sha256=GozPgqCCyuzjkCZfJWy4HM7OsT4uu3gWv-loYVd5J1g,11544
|
1704
|
+
pulumi_oci/fleetappsmanagement/get_managed_entity_counts.py,sha256=pbvsplkRLgu2pvmiHERE-96FoRceghjm7enc68U7WJ4,8328
|
1705
|
+
pulumi_oci/fleetappsmanagement/get_onboarding_policies.py,sha256=EPxTDjhdoNyOIJ1pSQpDMniUTJ8sJO4arIQPcR8CZmU,6201
|
1706
|
+
pulumi_oci/fleetappsmanagement/get_onboardings.py,sha256=BKmeqCAf1ylQixJf0oeLbBEio8OpyMovQUvvNc4kp0U,7697
|
1707
|
+
pulumi_oci/fleetappsmanagement/get_patch.py,sha256=nuA-jmm16PUlmjdYVxw1PCqu9sSA3KsoNcR-HiMbu-U,15037
|
1708
|
+
pulumi_oci/fleetappsmanagement/get_patches.py,sha256=M2YzOP9tfqYnoWoSSMn54OdSorw6v8cFvo7ROGZvUnk,17142
|
1709
|
+
pulumi_oci/fleetappsmanagement/get_platform_configuration.py,sha256=rkEO9tZxrTcdhm87IAe6X5lyZUn1ULNPvchSaHuShuI,13302
|
1710
|
+
pulumi_oci/fleetappsmanagement/get_platform_configurations.py,sha256=LfqGlNH2sUcTu1c63FrhL3o7Q6KlaCNDw81zZXKvYCg,13722
|
1711
|
+
pulumi_oci/fleetappsmanagement/get_properties.py,sha256=JY13HSc5gEwzz1p_JLfWHxE5pk1pdb8dFf1OA2B-2_M,10703
|
1712
|
+
pulumi_oci/fleetappsmanagement/get_property.py,sha256=1ztRs9dLJpnBuAwHgIQ8bhlXYPEaSETCvG_8FbVf_Pc,13067
|
1713
|
+
pulumi_oci/fleetappsmanagement/get_provision.py,sha256=z-WVXleiGmMRWPc4P99bW5tudj9FdKuNb_oSBn8t418,25169
|
1714
|
+
pulumi_oci/fleetappsmanagement/get_provisions.py,sha256=nGanX0_rLbxnE4vG_eK1UWRGECwZjQwKRCxr0qW-7iY,10119
|
1715
|
+
pulumi_oci/fleetappsmanagement/get_runbook.py,sha256=x9z7vYX9Il3Nf8TIB8O-8jKP14e3kcNZ2nbgoFVX2-I,17105
|
1716
|
+
pulumi_oci/fleetappsmanagement/get_runbook_version.py,sha256=PmZ7U7jOjZOCC6MYnqhxdyN3eGYTB0I2j26tnnjHVsk,13808
|
1717
|
+
pulumi_oci/fleetappsmanagement/get_runbook_versions.py,sha256=J93dReJNA2OWw-ps2n7_R4ZoPj9sGsJ5wxEgPLFWJu4,10226
|
1718
|
+
pulumi_oci/fleetappsmanagement/get_runbooks.py,sha256=o5wBJml0Ut_EgkNtg5XUHtr0OM3msZqJGX83r-cGYFE,11694
|
1719
|
+
pulumi_oci/fleetappsmanagement/get_scheduler_definition.py,sha256=Wrjtk_z2h0MwP-Xy_eLF7__vl9qFl1hc71c70w3ZFRE,18304
|
1720
|
+
pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py,sha256=Ufz0nZGg0JSaa6occWMkg6H4vBQoDZZF2Ps5rininS4,8298
|
1721
|
+
pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py,sha256=3B1bhjK3WAisxdjZyE5th7IFlTkeU7hhwv7v1eLDNXk,18682
|
1722
|
+
pulumi_oci/fleetappsmanagement/get_scheduler_executions.py,sha256=aR7Bv79NkCWoFBYmUjJBneJQ4d6rwlJGZ5Af-TtXQC8,17867
|
1723
|
+
pulumi_oci/fleetappsmanagement/get_scheduler_job_counts.py,sha256=XeaYBKsyIMj1osatNFesfWqON_GWd5JDN2mWieeFf_c,8264
|
1646
1724
|
pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_resources.py,sha256=NpxQp8foG3y5aP0Uoap33_ZHcWN8KUGD6gbo1jc1qS0,11882
|
1647
|
-
pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_steps.py,sha256=
|
1648
|
-
pulumi_oci/fleetappsmanagement/
|
1649
|
-
pulumi_oci/fleetappsmanagement/
|
1725
|
+
pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_steps.py,sha256=3E_0o2EsW3TKA-BCuwfBNVltn9HIKRFXzXWcxEkf9sw,11603
|
1726
|
+
pulumi_oci/fleetappsmanagement/get_task_record.py,sha256=1xywArJTfQrbaHfyIHwhxsMSY9c-Gc0kmYwq7ReV0P0,12715
|
1727
|
+
pulumi_oci/fleetappsmanagement/get_task_records.py,sha256=u5oZk0Ez93k3irEO8Y_4kxDcu0kc4F0uYOo6VB-4f_U,11737
|
1728
|
+
pulumi_oci/fleetappsmanagement/maintenance_window.py,sha256=ka_DGPpl_ZCCd0KYfvt5wXUypntWWUX2LS79SgBdHII,43262
|
1729
|
+
pulumi_oci/fleetappsmanagement/onboarding.py,sha256=cZx3MkcxL7df-wb7RAC-3UA_E2_ZPqzvY1Iv_mrOUdY,30623
|
1730
|
+
pulumi_oci/fleetappsmanagement/outputs.py,sha256=0D1AClwcJqA15p4Hl0sDjwgTj3F-o3IqwKyEqWaalVs,1072387
|
1731
|
+
pulumi_oci/fleetappsmanagement/patch.py,sha256=Okk3-bZSdMmWN8hyBaX4xPM0zljOwgAExrphbdtHqkA,47804
|
1732
|
+
pulumi_oci/fleetappsmanagement/platform_configuration.py,sha256=a-mGTLqis6cF7j2bIW-00ChWraYbuLnDHSt8SebcvFo,35796
|
1733
|
+
pulumi_oci/fleetappsmanagement/property.py,sha256=xS2H4W2Txhq4lYHYunRAnhUrLTFGVSTQ-uQhv0Y6OCA,32002
|
1734
|
+
pulumi_oci/fleetappsmanagement/provision.py,sha256=UMdIwzxYZzbZzQoz2yhTnMkZdl9YFy8Yp3l6lfsNc8I,67155
|
1735
|
+
pulumi_oci/fleetappsmanagement/runbook.py,sha256=dxE_AuMAW5jZDQYRh1UchJ-1eRCZolM_YlOUZv7b1tM,69760
|
1736
|
+
pulumi_oci/fleetappsmanagement/runbook_version.py,sha256=Jdz1S9CxZqemwB3mdXvq14LGs4mznYyZjaBEHQKHCPw,55804
|
1737
|
+
pulumi_oci/fleetappsmanagement/scheduler_definition.py,sha256=04AeJp9W_SMRS1Ll8KI3rsR8Z0T6w3RPuVP-io7L3rw,49563
|
1738
|
+
pulumi_oci/fleetappsmanagement/task_record.py,sha256=GlRfKO64MgSdYqMLLa9aAfp4Pp8W8kIUvcbb5lIPnqE,39180
|
1650
1739
|
pulumi_oci/fleetsoftwareupdate/__init__.py,sha256=w9ElyRZ8GGbZWShPPik-i-skgLzpA9tbQtrLixd13uU,495
|
1651
|
-
pulumi_oci/fleetsoftwareupdate/_inputs.py,sha256=
|
1740
|
+
pulumi_oci/fleetsoftwareupdate/_inputs.py,sha256=d-QtRmn6-zE_dzDTRXpncfWRbT9Zo6hcHjsyCKezheA,42071
|
1652
1741
|
pulumi_oci/fleetsoftwareupdate/fsu_collection.py,sha256=pQsYm0WoHWMvEhrzN8_xj4hDnMQADTiCEBFwXWjd0fM,45470
|
1653
|
-
pulumi_oci/fleetsoftwareupdate/fsu_cycle.py,sha256=
|
1742
|
+
pulumi_oci/fleetsoftwareupdate/fsu_cycle.py,sha256=OVH1PO80Tjawteo2gvYBqfWDGLZcSCpQkURWihXBUBQ,79244
|
1654
1743
|
pulumi_oci/fleetsoftwareupdate/get_fsu_collection.py,sha256=r5RINV0So4F_ISmP1N0Hew8XFj7Y-QtyLViTjogRzik,15556
|
1655
1744
|
pulumi_oci/fleetsoftwareupdate/get_fsu_collections.py,sha256=0malWiL2ll7S3W4mmAwczha-e-N1OKG9kODAfsdd1C4,9363
|
1656
|
-
pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py,sha256
|
1657
|
-
pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py,sha256=
|
1658
|
-
pulumi_oci/fleetsoftwareupdate/outputs.py,sha256=
|
1745
|
+
pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py,sha256=iDh7LX_BUn4wBIqGl9AmB8azP53Q0Tr4r6WKtYr638M,25230
|
1746
|
+
pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py,sha256=xgWfx3HJx0ZC6NJDoq1j5dJGO0hCuC0BUBNThcp5mG4,11901
|
1747
|
+
pulumi_oci/fleetsoftwareupdate/outputs.py,sha256=XXdWjx6sHC5qhgAqWiNgCmeoIoyIg17LEmOz2u1qSIc,101227
|
1659
1748
|
pulumi_oci/functions/__init__.py,sha256=h_hoJMcfXdFMMGsn9GMpwh881wgeAOJFxBzHOo60El0,1732
|
1660
1749
|
pulumi_oci/functions/_inputs.py,sha256=SGbZwX9kDnxjVcvEZ9uruT4vc4rFEQ_fb75xqQ7F34M,33145
|
1661
1750
|
pulumi_oci/functions/application.py,sha256=9kR745jzUSmhtNSjiYd0CN7zequ3c12aDR7VhzjMmKg,52915
|
@@ -1699,26 +1788,29 @@ pulumi_oci/fusionapps/fusion_environment_family.py,sha256=DFgcEhPfZ0du_PUOkVXVxl
|
|
1699
1788
|
pulumi_oci/fusionapps/fusion_environment_refresh_activity.py,sha256=wWgUeK955XvD_1SDOMtwBjxDt_qJE4XDJoYnmqOW3VE,29778
|
1700
1789
|
pulumi_oci/fusionapps/fusion_environment_service_attachment.py,sha256=RXlkansW6-1kJdGRGAFFxFtVqsyljM0yj4Ktw42QOaE,28575
|
1701
1790
|
pulumi_oci/fusionapps/outputs.py,sha256=7X-MFUlQCvnNf9KuRaMl5IT0Vjfct7ZFL5sEhSKPCsI,28275
|
1702
|
-
pulumi_oci/generativeai/__init__.py,sha256=
|
1703
|
-
pulumi_oci/generativeai/_inputs.py,sha256=
|
1704
|
-
pulumi_oci/generativeai/agent_agent.py,sha256=
|
1705
|
-
pulumi_oci/generativeai/agent_agent_endpoint.py,sha256=
|
1791
|
+
pulumi_oci/generativeai/__init__.py,sha256=oc1kRqXLvuyPyPtMbHCURXUKceWJx5Le89Szhl_Ag6s,1286
|
1792
|
+
pulumi_oci/generativeai/_inputs.py,sha256=Lr28MV5DgfBaP2eGCIrhTxdf3axJBhGAzi8seQ9EnGE,132768
|
1793
|
+
pulumi_oci/generativeai/agent_agent.py,sha256=te1NynMIrG-dOt5bP8_hdOLON2g64UYZqMu8eNnVu6M,39629
|
1794
|
+
pulumi_oci/generativeai/agent_agent_endpoint.py,sha256=mLkDCM97zXqCmGrus1uomuNYyEO5zwytXdbLWvwfgbA,67353
|
1706
1795
|
pulumi_oci/generativeai/agent_data_ingestion_job.py,sha256=345h-LQ16nkOyx_l8tvXSgjbU2nJeraUuH6gddBbRf0,35912
|
1707
|
-
pulumi_oci/generativeai/agent_data_source.py,sha256=
|
1796
|
+
pulumi_oci/generativeai/agent_data_source.py,sha256=itbv-oQLVXEmmsS8A4cSR81DOkQtI15boe8bEOS95P0,40542
|
1708
1797
|
pulumi_oci/generativeai/agent_knowledge_base.py,sha256=IIx6SDFaXYE96zYYmjno1MY4KvXg7eF_AXv4Op3GBu8,36096
|
1798
|
+
pulumi_oci/generativeai/agent_tool.py,sha256=GZDK6XBeSWuIPdbwFESZlYizyCanRvdZCsG2pPLBGCQ,33105
|
1709
1799
|
pulumi_oci/generativeai/dedicated_ai_cluster.py,sha256=UuSKfSxBSJk_RfnT9CmcNf-rwi2ikplvtKa9bxdP-Zw,41865
|
1710
1800
|
pulumi_oci/generativeai/endpoint.py,sha256=nzza-ohSqWpSTUaCQXClI-EOSa7U_NWFE6ahZhfVMpQ,38884
|
1711
|
-
pulumi_oci/generativeai/get_agent_agent.py,sha256=
|
1712
|
-
pulumi_oci/generativeai/get_agent_agent_endpoint.py,sha256=
|
1713
|
-
pulumi_oci/generativeai/get_agent_agent_endpoints.py,sha256=
|
1801
|
+
pulumi_oci/generativeai/get_agent_agent.py,sha256=PLvuvhxQhgDzQXDZMNhfKtYnVhjdJZqMbEuWPcJJ6f0,13228
|
1802
|
+
pulumi_oci/generativeai/get_agent_agent_endpoint.py,sha256=d7kkctbwVaW4Dt5HpClz18MlqoLl61TIHnReD08eEic,19742
|
1803
|
+
pulumi_oci/generativeai/get_agent_agent_endpoints.py,sha256=te8OkEX3kIaTw5SbL6kPuvuQHoIokvR8ZOMF5jS-4e8,9815
|
1714
1804
|
pulumi_oci/generativeai/get_agent_agents.py,sha256=44qY84FmHkAsKfo4edfjaOHs0mNPOUFCZ_BuTWaP5pU,8157
|
1715
1805
|
pulumi_oci/generativeai/get_agent_data_ingestion_job.py,sha256=6IEZwZxXIxnh2WxxxoHMQYPHaHgOSdcwkIvzIdXC1RY,13597
|
1716
1806
|
pulumi_oci/generativeai/get_agent_data_ingestion_job_log_content.py,sha256=CmstPi_xcxVkFnqOWPKNljAtaS5gNuitBJHrowrozNM,5161
|
1717
1807
|
pulumi_oci/generativeai/get_agent_data_ingestion_jobs.py,sha256=Qi_WTs7VsDKjklB5rnPvJMtsHxouv9qK-pXl3LRhRhI,10362
|
1718
|
-
pulumi_oci/generativeai/get_agent_data_source.py,sha256=
|
1808
|
+
pulumi_oci/generativeai/get_agent_data_source.py,sha256=D0Iar1hnyx0eYkt9xihVahLJqXyW6aQOPNMKisRIEM4,13527
|
1719
1809
|
pulumi_oci/generativeai/get_agent_data_sources.py,sha256=bcrEMKFTezWobrvWqwYs5oLlxvw2plsutHiz-ALVwqw,9996
|
1720
1810
|
pulumi_oci/generativeai/get_agent_knowledge_base.py,sha256=uGxv-v8xj405XZCdsicIHmjxuyU6Ad0XcUo8TEtIf-k,12338
|
1721
1811
|
pulumi_oci/generativeai/get_agent_knowledge_bases.py,sha256=ueegdI5Hf3j_E0JnE2ea0FvdpPEhnHofN0zpeAEywiU,8733
|
1812
|
+
pulumi_oci/generativeai/get_agent_tool.py,sha256=tnMzv_aIc63B9zBID3_6fG03ezm89x481p6ggepBbbo,11929
|
1813
|
+
pulumi_oci/generativeai/get_agent_tools.py,sha256=QmDbA0m2g80FJJ7S5j0Guw4mbs4KwjlzWfTDxkLRldg,9180
|
1722
1814
|
pulumi_oci/generativeai/get_dedicated_ai_cluster.py,sha256=yjckY-pLlvKRxFkLQmd7zIGtczEBfmj0_NmV62tfg6E,12034
|
1723
1815
|
pulumi_oci/generativeai/get_dedicated_ai_clusters.py,sha256=QI7PQGYB9WoFYHrFE-M-1jA19i9RKblGCpoZGf_cmhI,9176
|
1724
1816
|
pulumi_oci/generativeai/get_endpoint.py,sha256=6R13TwZccBYjAhmMGGPvhlHOVBUvxW-ldHpz8yPBh1Q,11671
|
@@ -1726,7 +1818,7 @@ pulumi_oci/generativeai/get_endpoints.py,sha256=fzKOy3skxMP5NX0vuravG0CkNBPKAM-i
|
|
1726
1818
|
pulumi_oci/generativeai/get_model.py,sha256=zczAaJxcXwW_zx4FywJTpxXZ0L-5H6YcdkGfc01AjfI,15820
|
1727
1819
|
pulumi_oci/generativeai/get_models.py,sha256=A9tKiujgmmJlF0wcAm4LveHTvjzkPl5l6RnrfscZTVU,10367
|
1728
1820
|
pulumi_oci/generativeai/model.py,sha256=tjLBMQsU98FWSmm-PoT9vRaEoaOJjXmUUz6lqIdI0sA,43979
|
1729
|
-
pulumi_oci/generativeai/outputs.py,sha256=
|
1821
|
+
pulumi_oci/generativeai/outputs.py,sha256=x4LKwIueHrSAL7TpiI3QrVxD7bm5Ybr8N0mmeyEAoZc,302544
|
1730
1822
|
pulumi_oci/genericartifactscontent/__init__.py,sha256=uqLBTKKewo4gWfYeafhBschsxGAS5B9r1kl4IIiIltI,380
|
1731
1823
|
pulumi_oci/genericartifactscontent/artifact_by_path.py,sha256=O_UR7TygRBNhHGbdcnGEG9XsP_cWvDqacImXu_WQoes,33218
|
1732
1824
|
pulumi_oci/genericartifactscontent/get_artifact_by_path.py,sha256=MxO9IVuvMbuDAyK8WlR2TWysotE_9mfsaoS-DbiYnAM,11776
|
@@ -1741,17 +1833,17 @@ pulumi_oci/globallydistributeddatabase/outputs.py,sha256=vl_hZt__darbhAgw_NS7lJX
|
|
1741
1833
|
pulumi_oci/globallydistributeddatabase/private_endpoint.py,sha256=MjRe7RU_X_QPPpQloCsnG0qQKxtou22VXHJZoremQqE,40866
|
1742
1834
|
pulumi_oci/globallydistributeddatabase/sharded_database.py,sha256=zPnm0tI38wBU3-UNhHqr9hNWqdbK2iUCa2ttCh0G_Oo,127798
|
1743
1835
|
pulumi_oci/goldengate/__init__.py,sha256=j2G4_dh4OPKmUO01l6Ox0qaQ-EE0shc6LWLdR1R2Vjw,1640
|
1744
|
-
pulumi_oci/goldengate/_inputs.py,sha256=
|
1745
|
-
pulumi_oci/goldengate/connection.py,sha256=
|
1836
|
+
pulumi_oci/goldengate/_inputs.py,sha256=e_XMbGHIkKQSkWYp7voKlYublefBz5AMYjF_krS5bkM,139363
|
1837
|
+
pulumi_oci/goldengate/connection.py,sha256=qzpUNJEsHw--GG9xVWoXmwhLxerGvc0LLUow0ILxqE4,397792
|
1746
1838
|
pulumi_oci/goldengate/connection_assignment.py,sha256=htFsOL8Gq0MXGhAyUjQrO5qMfGAUMAAzJxZrdQA9Dn8,21651
|
1747
1839
|
pulumi_oci/goldengate/database_registration.py,sha256=APU5elSM2twFKH7SB7SvxJOMYogYvSDhmEKlO6S4-N4,74079
|
1748
1840
|
pulumi_oci/goldengate/deployment.py,sha256=F9FdfiyNcfximzEV26d5hhBwpdPVhrsGmF1Cmysoit0,122754
|
1749
1841
|
pulumi_oci/goldengate/deployment_backup.py,sha256=w-YMZTrWg5mKqbQKlkFcf2kyIlq7Ilkg_PDNaHY4hJI,54539
|
1750
1842
|
pulumi_oci/goldengate/deployment_certificate.py,sha256=r3uTzpopVf_y7ATvOkMhuDb0B817bMOIPi8r-yDAbj8,37334
|
1751
|
-
pulumi_oci/goldengate/get_connection.py,sha256=
|
1843
|
+
pulumi_oci/goldengate/get_connection.py,sha256=MqpmIbLnT8SIijK9nnXoJ5ir5sv6ThbS2SSG1iYSklI,90406
|
1752
1844
|
pulumi_oci/goldengate/get_connection_assignment.py,sha256=LS4qQFHk7BDg6nFAzG17ta8RAPP1gEt6RJaBG8dDWNg,10038
|
1753
1845
|
pulumi_oci/goldengate/get_connection_assignments.py,sha256=2BsskqhqH--jAlV59wlfcY5OqWIO2u3Gnlc_CX67riE,11743
|
1754
|
-
pulumi_oci/goldengate/get_connections.py,sha256=
|
1846
|
+
pulumi_oci/goldengate/get_connections.py,sha256=R6Q6j7lXjIWcIQIot1cQXzl-5aeBKpKjGoPy4a3WcPM,15312
|
1755
1847
|
pulumi_oci/goldengate/get_database_registration.py,sha256=s-DxIoBHUrbewHOoA7GQLaMpEfy4Za49TFQ2tt0v1bk,21806
|
1756
1848
|
pulumi_oci/goldengate/get_database_registrations.py,sha256=V8xi2VlvWp9LjMS8ChOKauPj1g_66M24g5LChIoTUHg,9360
|
1757
1849
|
pulumi_oci/goldengate/get_deployment.py,sha256=l9u7yXXrq_4VKrK7otGP1AIWb6bQ4RdBAwNAXz_H_jw,43306
|
@@ -1779,7 +1871,7 @@ pulumi_oci/goldengate/get_trail_file.py,sha256=L65tk9PgfhZEG-ZUrs6s68GscLgMBn8Wg
|
|
1779
1871
|
pulumi_oci/goldengate/get_trail_files.py,sha256=rhbvZVMgOPsXdBH8F_dPIIut7TbSzoEk6-4MN5uqGgQ,8097
|
1780
1872
|
pulumi_oci/goldengate/get_trail_sequence.py,sha256=ZyOk5m4zDV_gvPAvf-aVwWv5qKs70mUJhCf1WEeJYS8,8793
|
1781
1873
|
pulumi_oci/goldengate/get_trail_sequences.py,sha256=2wH7l8kj8gMQjuMvp3F1KNYGhSErDYQgXPFPwQ6nPYg,9442
|
1782
|
-
pulumi_oci/goldengate/outputs.py,sha256=
|
1874
|
+
pulumi_oci/goldengate/outputs.py,sha256=rrhr-oUc1twB0yijT3qzsuyrc-3Mdw3FEpVxqQUH4zI,468486
|
1783
1875
|
pulumi_oci/goldengate/pipeline.py,sha256=bV0g-gfJOc5lfIvRB1S4t9_ljCxgHN5rmsIQzSQTzPc,52619
|
1784
1876
|
pulumi_oci/healthchecks/__init__.py,sha256=4_XSORawE75Og4h31SUnpL2CCfPAmE4Ka7wYG8ZhehM,660
|
1785
1877
|
pulumi_oci/healthchecks/_inputs.py,sha256=J8XLJAUzQ6yn3FY6bMGC3cxQtiAfuvMGk_GdAWU9q_M,7877
|
@@ -2100,7 +2192,7 @@ pulumi_oci/kms/key_version.py,sha256=YRw_o5EhmRjHUf3zW5hJlyPJ4BC4cT0fpmROPnrXRjI
|
|
2100
2192
|
pulumi_oci/kms/outputs.py,sha256=dMEChRHYpoTn_MiThOGQ_g4BG71SZ2hH-McnlNFxycs,139095
|
2101
2193
|
pulumi_oci/kms/sign.py,sha256=ViYq7T5b0kASvrrzLCiOHurWZ0zpLh2jCRZ8jCb_WlM,26596
|
2102
2194
|
pulumi_oci/kms/vault.py,sha256=R3jU-KPKZqcvkvg6FmBtEHmRWVdFgtfE_zNVjniC0Uw,55514
|
2103
|
-
pulumi_oci/kms/vault_verification.py,sha256=
|
2195
|
+
pulumi_oci/kms/vault_verification.py,sha256=ryYDCIQ5WVr86RbWZj_OCzX2t8Y6_B1K9DXDhh_G8jI,15657
|
2104
2196
|
pulumi_oci/kms/verify.py,sha256=6no1yvPdv3TpIf1lmInH0QrZYDNcpA3QfQTTupjkT-M,29972
|
2105
2197
|
pulumi_oci/licensemanager/__init__.py,sha256=4TUbGneJ_yVaFPyszDJlNOhHeSHz8JgICtEBUqn_Vo8,745
|
2106
2198
|
pulumi_oci/licensemanager/_inputs.py,sha256=vkIkHGsxz0JlXsZYpfwTo64kEtkXF4l6RlyFfRk0sHI,7312
|
@@ -2128,9 +2220,9 @@ pulumi_oci/limits/get_services.py,sha256=JBv8iPei0HgjvhaKQgvYyeKPBjBNT3GpbNKBohZ
|
|
2128
2220
|
pulumi_oci/limits/outputs.py,sha256=yedztFEmUWpxrpfHl_yq7PUTINXt2BzFVj8ZJWV48hw,26049
|
2129
2221
|
pulumi_oci/limits/quota.py,sha256=IVPnDpxN0iGpsokOEs9PeIglzgUo4EE8wBNvHhkl1n0,31101
|
2130
2222
|
pulumi_oci/loadbalancer/__init__.py,sha256=nGY0ifyqWwapvbu2dsHPgLNcSqPQd1mfxfC315QxxDA,1229
|
2131
|
-
pulumi_oci/loadbalancer/_inputs.py,sha256=
|
2132
|
-
pulumi_oci/loadbalancer/backend.py,sha256=
|
2133
|
-
pulumi_oci/loadbalancer/backend_set.py,sha256=
|
2223
|
+
pulumi_oci/loadbalancer/_inputs.py,sha256=ZF3GJxxzFo2BhTVFXY0M9-ZHB4T4BopcF_UbzmA4Iss,197310
|
2224
|
+
pulumi_oci/loadbalancer/backend.py,sha256=CaqTnBXeIBcp_-Uze2id_ES8Dn9qZtII-ecv2j9LGvQ,38010
|
2225
|
+
pulumi_oci/loadbalancer/backend_set.py,sha256=PemNUODHNTkccHyFUXOx7snYnWeftyydu83cx0KDAfI,66537
|
2134
2226
|
pulumi_oci/loadbalancer/certificate.py,sha256=dee64ac2VC70DotCZlpdqNXkkTGrcP6my_JusHwoSUY,33002
|
2135
2227
|
pulumi_oci/loadbalancer/get_backend_health.py,sha256=rhOkdsobH5cWi1UiVsvwxhZio1L0jqRuYVZeWXNGQcc,8658
|
2136
2228
|
pulumi_oci/loadbalancer/get_backend_set_health.py,sha256=_5DTZADc4jjCtYUAjuugd_vj6xfYurgvwsmxIET917s,10502
|
@@ -2152,21 +2244,23 @@ pulumi_oci/loadbalancer/get_shapes.py,sha256=m91LTB8RkKCGF6ZhcKo_a7I2nR5OQEDYR6P
|
|
2152
2244
|
pulumi_oci/loadbalancer/get_ssl_cipher_suite.py,sha256=HodJzySBEb944Zb9diQfulb-vDbzX0qXKrYMFmujeKg,6353
|
2153
2245
|
pulumi_oci/loadbalancer/get_ssl_cipher_suites.py,sha256=PMioCeBzlFNHwcMhnwhbxKq4hooupG2ALREP0a0EzUc,6040
|
2154
2246
|
pulumi_oci/loadbalancer/hostname.py,sha256=e2hH1-ClzATq8_J5VKcBewAYo34DnWHZyKUUJcWrPt4,15303
|
2155
|
-
pulumi_oci/loadbalancer/listener.py,sha256=
|
2156
|
-
pulumi_oci/loadbalancer/load_balancer.py,sha256=
|
2247
|
+
pulumi_oci/loadbalancer/listener.py,sha256=OLImoWhuZ29zH2oLUR_Mo3uuKh6fYg5vaWTgbTOX4VY,43446
|
2248
|
+
pulumi_oci/loadbalancer/load_balancer.py,sha256=ujazNSgUsCThZLX63Yeqc9DRP8YdBO6Ow6O0kk3XfXw,99052
|
2157
2249
|
pulumi_oci/loadbalancer/load_balancer_routing_policy.py,sha256=qWdwEzByLBpcVa-CXx8qU-O8uOhyMDgn41SWB0GK6nQ,19124
|
2158
|
-
pulumi_oci/loadbalancer/outputs.py,sha256=
|
2250
|
+
pulumi_oci/loadbalancer/outputs.py,sha256=IEOPErt3uwcqyfmKH9QKLwyxxdcxSKV1huDv8mHYxeI,275542
|
2159
2251
|
pulumi_oci/loadbalancer/path_route_set.py,sha256=pnMp8I7E0l3YPFWOKWRuWkEhrutjJW_9pzde2D-5h-Q,15379
|
2160
2252
|
pulumi_oci/loadbalancer/rule_set.py,sha256=ba0Lm2QFRY_eCtf9EJmbHTbKj-JHDZBqodG96LS-COg,19672
|
2161
2253
|
pulumi_oci/loadbalancer/ssl_cipher_suite.py,sha256=JireF50Tz5-7ExnqNOCWK44V69Myt5s7agUSFwN58iI,19612
|
2162
|
-
pulumi_oci/loganalytics/__init__.py,sha256=
|
2163
|
-
pulumi_oci/loganalytics/_inputs.py,sha256=
|
2254
|
+
pulumi_oci/loganalytics/__init__.py,sha256=yIlVBy3CN5ern41zXxSh6wuFy-cD7iXiAbR7830Hy1U,2816
|
2255
|
+
pulumi_oci/loganalytics/_inputs.py,sha256=vtCiUnCWDoJFdw0K8IASrejUGwJ1MyE2REmakDH7wJo,103338
|
2164
2256
|
pulumi_oci/loganalytics/get_log_analytics_categories_list.py,sha256=r8WX-SaGL4yn5U6jyo6ZrVe9DMnrClpqDeULP8KN0Js,9152
|
2165
2257
|
pulumi_oci/loganalytics/get_log_analytics_category.py,sha256=JNOl7r4C5neUnD0KiT3V0TCfB9dikJREFv8oHM-nqhk,7449
|
2166
|
-
pulumi_oci/loganalytics/get_log_analytics_entities.py,sha256=
|
2258
|
+
pulumi_oci/loganalytics/get_log_analytics_entities.py,sha256=EoGo2ampzPZ6W6MmUkZb2rvmINn2Pvv8TODelzEpVuc,32549
|
2167
2259
|
pulumi_oci/loganalytics/get_log_analytics_entities_summary.py,sha256=5g0GuocXDjsIqdiTBUywcY2LHpwWJvW3MVt0xa-M3pc,8405
|
2168
2260
|
pulumi_oci/loganalytics/get_log_analytics_entity.py,sha256=VQcyr9E3V-un4Mo4E-n_B8fRTSkUJUNOMxxPMYMxOX4,22814
|
2169
2261
|
pulumi_oci/loganalytics/get_log_analytics_entity_topology.py,sha256=mf6CKaOHB6jeQ46qwseEcgyzyLg5cKHgo00h9hYsRLw,11315
|
2262
|
+
pulumi_oci/loganalytics/get_log_analytics_entity_type.py,sha256=HoAcQtUOaLJFboPmyMWg-T-ANUUL6iRlNjDEvweE8Oc,11022
|
2263
|
+
pulumi_oci/loganalytics/get_log_analytics_entity_types.py,sha256=qacgMk0vSjK7eU_Et8K5fUQ-EZSLguJUiLvBEPuLLfM,11072
|
2170
2264
|
pulumi_oci/loganalytics/get_log_analytics_log_group.py,sha256=A6IcKTFE0PMD9t1G2Rgf-fa-AOPwnHOExCw1b7C7rSU,10827
|
2171
2265
|
pulumi_oci/loganalytics/get_log_analytics_log_groups.py,sha256=IZncoEzdU4BgqTgAgIWnuNN80AtbjVO8Leafx2SXsl4,9380
|
2172
2266
|
pulumi_oci/loganalytics/get_log_analytics_log_groups_summary.py,sha256=0QL1l0RdxTZa5CG_CppjfbSUMxF7d5aOrxMuN348YAM,6222
|
@@ -2197,6 +2291,7 @@ pulumi_oci/loganalytics/get_namespace_template.py,sha256=e3QTbvYuzszPynEyGAyrzVZ
|
|
2197
2291
|
pulumi_oci/loganalytics/get_namespace_templates.py,sha256=PrR8gM0emneY5-gxmoqCAyVckpAej8vglir1v_ef1iM,13372
|
2198
2292
|
pulumi_oci/loganalytics/get_namespaces.py,sha256=GnINNhmDy22KKH6mtET3vhISfBOQgOUvo7jPaP9aKxU,5995
|
2199
2293
|
pulumi_oci/loganalytics/log_analytics_entity.py,sha256=QneBu2ff_MBaYuqKT1Gl_vxSMNh7ad5gqGe76a9cd_A,59142
|
2294
|
+
pulumi_oci/loganalytics/log_analytics_entity_type.py,sha256=a5dYNbh_Snn_r3OeaPdoWyOaGDqGp_TPe0ui6xOaGGU,22735
|
2200
2295
|
pulumi_oci/loganalytics/log_analytics_import_custom_content.py,sha256=0iGWEMfDs_3gDrLfSmicivLJAWimhCfs_l_lXk3ug8o,25492
|
2201
2296
|
pulumi_oci/loganalytics/log_analytics_log_group.py,sha256=z3V0OOYLj2rtfp5o3MpQvJvPJS6hD6-zZl3sS3tjT1M,27590
|
2202
2297
|
pulumi_oci/loganalytics/log_analytics_object_collection_rule.py,sha256=CSoXqXGNzgUJnkW2M9l0j1rtwsXFd5dXgf39R6lQgRs,103916
|
@@ -2212,7 +2307,7 @@ pulumi_oci/loganalytics/namespace_lookups_update_data_management.py,sha256=vwO4d
|
|
2212
2307
|
pulumi_oci/loganalytics/namespace_scheduled_task.py,sha256=UnhX27jVaJBtETM7JCG4phybODWkKQSQlrfzdsKsnk0,41656
|
2213
2308
|
pulumi_oci/loganalytics/namespace_storage_archival_config.py,sha256=h_zmNLmP13Bv5b3sPdM47tS2pYkwjZy6YYOFMwcj0Fw,14519
|
2214
2309
|
pulumi_oci/loganalytics/namespace_storage_enable_disable_archiving.py,sha256=fV-o-8-QziEubY8lx_hUSk2dXByui1UfkjK-dAxd0hU,13178
|
2215
|
-
pulumi_oci/loganalytics/outputs.py,sha256=
|
2310
|
+
pulumi_oci/loganalytics/outputs.py,sha256=O9dq9YRkjAYb2MSO2tA1nFsY-vTS7rDJe4UMXwiE3j0,260092
|
2216
2311
|
pulumi_oci/logging/__init__.py,sha256=z8aaBQjBRlpX6gMZMu9gWFfv_YVVBo6T9NBAiRbfVL0,706
|
2217
2312
|
pulumi_oci/logging/_inputs.py,sha256=5GiQnLHs9odnZt6atfpy9syfQvXnz-046sc-3MdyE2A,224868
|
2218
2313
|
pulumi_oci/logging/get_log.py,sha256=qwW3fkLzcOx0YKJIUCdAfw2zJ92VKeXjYdtftaZwt9I,12467
|
@@ -2344,27 +2439,27 @@ pulumi_oci/monitoring/get_metric_data.py,sha256=hVQRZQLzDmhfX-4H1eFsRGo4H3cY4Lqp
|
|
2344
2439
|
pulumi_oci/monitoring/get_metrics.py,sha256=iv_vbPx_HjMqPUfV9nvjfHKSM1uLNgRhliaKez5Tzas,16881
|
2345
2440
|
pulumi_oci/monitoring/outputs.py,sha256=xZ5j64dUcocRyJqn1cYYoo4oIZxo_hWsCX9ViRg2uBE,126595
|
2346
2441
|
pulumi_oci/mysql/__init__.py,sha256=7RQop2LZ232iFlX2igenjzk_vg6y7z4Eb7Qv7VNzFHY,906
|
2347
|
-
pulumi_oci/mysql/_inputs.py,sha256=
|
2442
|
+
pulumi_oci/mysql/_inputs.py,sha256=YiYG9lJONigoooiypS35iusnJ_6BFEPKAolFZdsP7B8,475988
|
2348
2443
|
pulumi_oci/mysql/channel.py,sha256=LEhjvcUJ3i9EYLaVGmUuMSTdJFRgEw-hlkXc6WtgR_A,32188
|
2349
2444
|
pulumi_oci/mysql/get_channel.py,sha256=ev6E9FWwy4U3DqccquyR9R_c5A54jA-nj9JTAPh1ynQ,12340
|
2350
2445
|
pulumi_oci/mysql/get_channels.py,sha256=LFbur-ozJkqhkenfgTzt_-GSLpy2qpOuJO8Cv0YpAis,10867
|
2351
2446
|
pulumi_oci/mysql/get_heat_wave_cluster.py,sha256=cdTDVrWkAXcoYH2B12BVh2uhCzveLm01PUgtfTSlyb0,9490
|
2352
|
-
pulumi_oci/mysql/get_mysql_backup.py,sha256
|
2353
|
-
pulumi_oci/mysql/get_mysql_backups.py,sha256=
|
2447
|
+
pulumi_oci/mysql/get_mysql_backup.py,sha256=-2G3P3m5YD7rMX_DaQkmmS-8wWayqz-rhEEBdMZzlUE,21438
|
2448
|
+
pulumi_oci/mysql/get_mysql_backups.py,sha256=pJIyiYm3jm0XW_c-GLQHlffUiBeqpGW0zKrR0dwX2m8,12065
|
2354
2449
|
pulumi_oci/mysql/get_mysql_configuration.py,sha256=GMka6EQs4s2cmAmrR_LorxLTjg7z0pZdmnjJFKdSHEs,13466
|
2355
2450
|
pulumi_oci/mysql/get_mysql_configurations.py,sha256=LlJFfWT8vXOw14pmrkCZIiiJbuSUaHtb33PPN_zf6Vw,11773
|
2356
|
-
pulumi_oci/mysql/get_mysql_db_system.py,sha256=
|
2451
|
+
pulumi_oci/mysql/get_mysql_db_system.py,sha256=ICMKc_Dwwr1FKnYRba7jTol_6eiGx4IdLv9mHXX4ARI,36374
|
2357
2452
|
pulumi_oci/mysql/get_mysql_db_systems.py,sha256=N3bVbMmhhvp3YbOp4sTwwnK0Ug0AD2HcHcCRsds7Fso,15190
|
2358
2453
|
pulumi_oci/mysql/get_mysql_version.py,sha256=SfXRhHQztESdvzYZsCu672JlpHHJZ1StRIJItwBMox0,5714
|
2359
|
-
pulumi_oci/mysql/get_replica.py,sha256=
|
2454
|
+
pulumi_oci/mysql/get_replica.py,sha256=N_UvunfMk1F4YNIYwd4bXOA7WastO6zvn6tm4SdiL7M,19494
|
2360
2455
|
pulumi_oci/mysql/get_replicas.py,sha256=vgRbNukKRHAhqiqcs2yjbIQYxm2AqERnSow-VKhMO3w,12351
|
2361
2456
|
pulumi_oci/mysql/get_shapes.py,sha256=yI8JSoFREHyWUFwN2V8EQxY1wQqNIENnhc3pMcC0UNM,8998
|
2362
2457
|
pulumi_oci/mysql/heat_wave_cluster.py,sha256=NKQAqtHZQamMPB2HwwXCj-ag_SXOI_JlQeOm9Q8At7k,27831
|
2363
|
-
pulumi_oci/mysql/mysql_backup.py,sha256=
|
2458
|
+
pulumi_oci/mysql/mysql_backup.py,sha256=E0m3QTyCQHDXAh69RmgqehH01k3y1endKkz2EgctvhU,55885
|
2364
2459
|
pulumi_oci/mysql/mysql_configuration.py,sha256=NMZQ8jqWYyHACCXmd0o8zqoNOxUY2pVytrYMA1IVZYE,60581
|
2365
|
-
pulumi_oci/mysql/mysql_db_system.py,sha256=
|
2366
|
-
pulumi_oci/mysql/outputs.py,sha256=
|
2367
|
-
pulumi_oci/mysql/replica.py,sha256=
|
2460
|
+
pulumi_oci/mysql/mysql_db_system.py,sha256=HVKnOtJIDQOtT36HKC4oaUAPh0kgqohIpFFh6vp-7ZU,147686
|
2461
|
+
pulumi_oci/mysql/outputs.py,sha256=2FKnUjWtWY8syn3DN7weTTiGhclEyeqw033o2YMTskk,836405
|
2462
|
+
pulumi_oci/mysql/replica.py,sha256=JKEaahhloZFMw6f_0k3LE4-xlmx1PYuM7Mu8tXWrGJ0,50834
|
2368
2463
|
pulumi_oci/networkfirewall/__init__.py,sha256=kUA6LUJWU4wLwb07ULAPdmFiHC7DFSFcdFDFnqFwUVg,2560
|
2369
2464
|
pulumi_oci/networkfirewall/_inputs.py,sha256=BmBd4Sj88O8r2YMs4Vu4frSVMo61B2-9iVS-BYlnz0s,59094
|
2370
2465
|
pulumi_oci/networkfirewall/get_network_firewall.py,sha256=HbzXcov6UPsrnv50wAsLQl9HRErM-rJJwN5hF_lYooY,16452
|
@@ -2431,16 +2526,18 @@ pulumi_oci/networkloadbalancer/listener.py,sha256=k4RSaPdvTH7Gyujhf_VD_P_rjgp5ci
|
|
2431
2526
|
pulumi_oci/networkloadbalancer/network_load_balancer.py,sha256=O7U3VyJjLvo-CXJAseU41L3sv3HFy6049iCkb6nK6PE,73752
|
2432
2527
|
pulumi_oci/networkloadbalancer/network_load_balancers_backend_sets_unified.py,sha256=M92M1JsgJi8JwCkGIq4ZsIAFqGdRkBEpCtx94Ok_wlg,53213
|
2433
2528
|
pulumi_oci/networkloadbalancer/outputs.py,sha256=0aWXj_Cmp6x8hEWJK9KMxu1JUT4NdB5pYczmIcoA5vs,125960
|
2434
|
-
pulumi_oci/nosql/__init__.py,sha256=
|
2435
|
-
pulumi_oci/nosql/_inputs.py,sha256=
|
2529
|
+
pulumi_oci/nosql/__init__.py,sha256=SGsRMxZN6p_6yL6g6xpXA688ipf0VMvEASC29NryYes,548
|
2530
|
+
pulumi_oci/nosql/_inputs.py,sha256=56qCNCTnBT4YNQ6pQAyjYSVfshuslSHKzbVgOz1YRTM,34758
|
2531
|
+
pulumi_oci/nosql/configuration.py,sha256=Dj-ptsQ4jGh-b9fRK56KVYhYOFTLjJtzmdE8M2U1cLc,18621
|
2532
|
+
pulumi_oci/nosql/get_configuration.py,sha256=GC7WQu-dqs0-y-uDvbtxu3Ld8_j3ShmsSYz6hZjroLI,6547
|
2436
2533
|
pulumi_oci/nosql/get_index.py,sha256=hnn8A4uJWLwrhdxM1ec0UoLixh-G0I7e7sHIg3N4IEI,9915
|
2437
2534
|
pulumi_oci/nosql/get_indexes.py,sha256=YlTFSRkuTmyVli_yfFltfK7KWi60bCZJQvLRhVu-Amk,8542
|
2438
2535
|
pulumi_oci/nosql/get_table.py,sha256=hCnuhv5jjPFZZHcjsjitn70BzzwTBE00hfRxNGlUdUU,16830
|
2439
2536
|
pulumi_oci/nosql/get_tables.py,sha256=UWwreyjCArybcmAwmgYFp9Zm3aEicEaItW7pSMAA3RU,7155
|
2440
|
-
pulumi_oci/nosql/index.py,sha256=
|
2441
|
-
pulumi_oci/nosql/outputs.py,sha256
|
2537
|
+
pulumi_oci/nosql/index.py,sha256=PG1YkZMBv7iZzWRvaSg_eB_Oh82bXY_tc0AA3y7IU0g,24663
|
2538
|
+
pulumi_oci/nosql/outputs.py,sha256=-sGkOdL8uNTK5Th2ZvW-7UVlcBbt8HLGIoslDoSHCbo,65320
|
2442
2539
|
pulumi_oci/nosql/table.py,sha256=gMcBS76nGQieAps6Nm8d6DKNuDVuqJ1DsV8DEyJNM_A,42244
|
2443
|
-
pulumi_oci/nosql/table_replica.py,sha256=
|
2540
|
+
pulumi_oci/nosql/table_replica.py,sha256=GKzFs_7K0hOiwhGUYXWiGR7hO3IQEQ19E6xJnYmwkic,20950
|
2444
2541
|
pulumi_oci/objectstorage/__init__.py,sha256=uliYxTqztjBZderq1GBUhchQE26MRSXU7NDw2-7r5cE,1092
|
2445
2542
|
pulumi_oci/objectstorage/_inputs.py,sha256=NCRhSDH9pT2t6DIZFMqg5HCAkXmzXzGUvPRlYTrg-ew,52075
|
2446
2543
|
pulumi_oci/objectstorage/bucket.py,sha256=MQb_7YoLndyfqL91Z6gi1U4b5KRSm240ZCHZpy25zco,71353
|
@@ -2473,6 +2570,55 @@ pulumi_oci/oce/get_oce_instance.py,sha256=F3jGcIG-WR5MMt9_8Dd7palklViCuyM0rB9rdH
|
|
2473
2570
|
pulumi_oci/oce/get_oce_instances.py,sha256=1ynrjVRI8oIhaech5071TJ4Pptb969QPc01Sqy2LcuY,8716
|
2474
2571
|
pulumi_oci/oce/instance.py,sha256=30mXw9ZX09lY212n2dxHPvuwlGbwplMFMnGXXv45QMI,61434
|
2475
2572
|
pulumi_oci/oce/outputs.py,sha256=6-Op3flk2gmkO6Z7hlISXnXG9r6NeJKpNVg2obyeOfY,13894
|
2573
|
+
pulumi_oci/oci/__init__.py,sha256=FqiFuVIZvVXJoBNqEDoA6xUwHhV-fTfLvKRkthSl6vw,2828
|
2574
|
+
pulumi_oci/oci/_inputs.py,sha256=nXXgZejv3maAWVJ8yoFHNm3XEYwVfqQA-J9PMej8Z18,54865
|
2575
|
+
pulumi_oci/oci/apiaccesscontrol_privileged_api_control.py,sha256=hXN61wD9TJyGV2rE-TQYvxcxluRxEb1QZJti94cx-Ts,55329
|
2576
|
+
pulumi_oci/oci/apiaccesscontrol_privileged_api_request.py,sha256=rCDENQbwmFf8OIYuOHArs0dp5fQL-Y-tjygHwXbG1Ec,73927
|
2577
|
+
pulumi_oci/oci/dbmulticloud_multi_cloud_resource_discovery.py,sha256=0MP8pIW8VKEvrMtjHLyv983RXUNrDHjs4kDjWoOLyyU,37524
|
2578
|
+
pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_container.py,sha256=mbz5f7adXG_T_t-LeLy9KnxW6AmdMYcRbHlp3VbnN3c,41415
|
2579
|
+
pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_mount.py,sha256=QuQP1URdpUAxg8hgjTqWM2PVdBTMFacUiK1lZP4Q3eM,37339
|
2580
|
+
pulumi_oci/oci/dbmulticloud_oracle_db_azure_connector.py,sha256=3SshkbBBuVrwEMVx-Lr5MMU082c2b_qAqMByt1p_Omc,38653
|
2581
|
+
pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault.py,sha256=gTJRubw2ojU7LKIaztLpat0PTEFs8cjY6nQl3v_YINs,44464
|
2582
|
+
pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault_association.py,sha256=wKYSD7Q77xDbqn4r3akz8EhihVUPvVFzr2GK7wCpWxo,39087
|
2583
|
+
pulumi_oci/oci/get_apiaccesscontrol_api_metadata.py,sha256=WxUMwawulvVbtX3ugpZbvhtFynRV5Cr0wRcmP6CjIPs,13895
|
2584
|
+
pulumi_oci/oci/get_apiaccesscontrol_api_metadata_by_entity_types.py,sha256=gcW_h9qyMo0FpFtbSqIRAc6cEySHyabyUQiXp-wraU0,10868
|
2585
|
+
pulumi_oci/oci/get_apiaccesscontrol_api_metadatas.py,sha256=Aa0FVExsuvLKyFPxkZEszK24hdeDglXfjtULnSve5Mk,9944
|
2586
|
+
pulumi_oci/oci/get_apiaccesscontrol_privileged_api_control.py,sha256=zxMo50P6WoC_zhGDnQG1zHi1KiF2fc-YCL9h5y-TDw4,18618
|
2587
|
+
pulumi_oci/oci/get_apiaccesscontrol_privileged_api_controls.py,sha256=8lKjoxuW90CIS14TB2k1iH04xZ5ue2H0xmkj0HAVyP8,11527
|
2588
|
+
pulumi_oci/oci/get_apiaccesscontrol_privileged_api_request.py,sha256=B1GlqPxo59DhLKX8mSABjNBITDHppdWc1Vswtl747mw,26776
|
2589
|
+
pulumi_oci/oci/get_apiaccesscontrol_privileged_api_requests.py,sha256=vER092s2WhhD3S_ZvtDuQODeb1bFwkfbTP_AGFleptQ,12801
|
2590
|
+
pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discoveries.py,sha256=31wgLsORFcVy2EsZ3bVHWbCFiuKZiTHGderz7bprDig,14568
|
2591
|
+
pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discovery.py,sha256=SPTUu0Buk7Yi8xYTJWLrlaNyJ4UgLDdyetUrLuLv6OU,14954
|
2592
|
+
pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_container.py,sha256=lbfhq8g2APhuWOyzZ1uFSIi7QAwllLZq5vIdLGs8_I4,15899
|
2593
|
+
pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_containers.py,sha256=iLDYhviRyjpuQdGToKnVPb4lDXLDy5afyBnfcTu85aM,14712
|
2594
|
+
pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mount.py,sha256=IrjGA2IkoOGJFmRKaFecgeb2w3f0MNKTBDHwCaWCMFM,14673
|
2595
|
+
pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mounts.py,sha256=4Vf0qOND1tln_g7tJswz_RNVchmq_8EHvxRJGBRhJBE,14507
|
2596
|
+
pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connector.py,sha256=h2-vzSeeOaY3o3NlX1Yi6GtaFrhtuJu5aP3dIGOvLo4,14958
|
2597
|
+
pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connectors.py,sha256=_rR0l3eit5W9AN5GocE9lgP2bm7t40raop7TKun4n3c,12751
|
2598
|
+
pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_key.py,sha256=h6zCaDn3uFaPG7lybW1dJ_sHgyxXe1pKdhVlL9zX0nw,13685
|
2599
|
+
pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_keys.py,sha256=hqUW2yXo1JRbuCuBI-Amua-6nXBGmTz42_9uvTgr6aE,12148
|
2600
|
+
pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault.py,sha256=tz0Xu1wHcmcjhQ3g7FjBoRznKiu04QiRJRTKm9MqKQ4,15951
|
2601
|
+
pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_association.py,sha256=5D3PtiP0pex1Ov5h1GmjsaXaMOGY-gug5PtoukCW3M8,15552
|
2602
|
+
pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_associations.py,sha256=46UIwucFbiHkc1d5KVb_BmLSDmCiF_nF4k8KWu2_L3U,15193
|
2603
|
+
pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vaults.py,sha256=wY8rnIrGH-mRFWsF49zZY5iBgzMNx7-Zem0fOy-p_TA,13855
|
2604
|
+
pulumi_oci/oci/get_wlms_managed_instance.py,sha256=17puXBKidZ1jVkA63BRTDpEZrOQh794lkHuF7WIRTAI,10874
|
2605
|
+
pulumi_oci/oci/get_wlms_managed_instance_scan_results.py,sha256=a7-FbvJP-l2cG9QJ9QpN-eqkFoPAbd8m8jGbFTI6Fcg,9245
|
2606
|
+
pulumi_oci/oci/get_wlms_managed_instance_server.py,sha256=zmbvJKyJEhD5a3FtoWNb1MpBEGB84PzeMWyDyrXQGf4,16568
|
2607
|
+
pulumi_oci/oci/get_wlms_managed_instance_server_installed_patches.py,sha256=W7mVM9GGyPR9wi0rl8NslB5s6uOmcwnSv5ONb4Y37qA,8414
|
2608
|
+
pulumi_oci/oci/get_wlms_managed_instance_servers.py,sha256=5o71ve8soqzHNlgVvoLyK2U3X6sn7yIDYtHTXniPFlc,7382
|
2609
|
+
pulumi_oci/oci/get_wlms_managed_instances.py,sha256=VmNTCsmRoQ2hjPgGEY0n660uYxFVM7D0HPApe-thnGs,9631
|
2610
|
+
pulumi_oci/oci/get_wlms_wls_domain.py,sha256=pcWUjyBG4qYuGHtJDLkp2Ob0u_vimgZaJZ9r1-7onxY,14331
|
2611
|
+
pulumi_oci/oci/get_wlms_wls_domain_agreement_records.py,sha256=NvPWiUz1-f7uRFuLV8gopQHQi-KFXTBIq8w9HA6SVXA,6581
|
2612
|
+
pulumi_oci/oci/get_wlms_wls_domain_applicable_patches.py,sha256=cXStyuYgPoj3Hu0t1HFRWM_BEFb0DXrDu7-LYvI2Ngc,6632
|
2613
|
+
pulumi_oci/oci/get_wlms_wls_domain_scan_results.py,sha256=7cBaxWsMuQxIPT2ehWMC6KWyU0UJwXHuP76CEpt1OTQ,7588
|
2614
|
+
pulumi_oci/oci/get_wlms_wls_domain_server.py,sha256=sCVPqCaazlyuolehz3BqSxCTCbfXBGMKhVH2HJu6CGk,16322
|
2615
|
+
pulumi_oci/oci/get_wlms_wls_domain_server_backup.py,sha256=Vcxv77x-kO94XCDxCmleLM8vukaYBFxjTjh9nmTEudg,10176
|
2616
|
+
pulumi_oci/oci/get_wlms_wls_domain_server_backup_content.py,sha256=x816a83i0aRbPgRuk87CUMjBrrPoRimVRXqDoSnVJY8,8492
|
2617
|
+
pulumi_oci/oci/get_wlms_wls_domain_server_backups.py,sha256=BNj6hVt20hFVgnBouMlJlYplrmvJpPCzjmq_w2y5q6s,7516
|
2618
|
+
pulumi_oci/oci/get_wlms_wls_domain_server_installed_patches.py,sha256=o60fw7K8ARJ2HgVDX955OlR9boD4Yd55Ipj1x1tTRa4,8014
|
2619
|
+
pulumi_oci/oci/get_wlms_wls_domain_servers.py,sha256=XdHNLtvoGsfSLlckPdJV6oG4ZAg0QCAE9qAYuVXENIc,7006
|
2620
|
+
pulumi_oci/oci/get_wlms_wls_domains.py,sha256=m0IK4WgFR_4M9mHFTdKVzEJDRNe_LqykcfYi0e424Go,12915
|
2621
|
+
pulumi_oci/oci/outputs.py,sha256=FiacmY99F47YmXcSxiKYjSdSPL6EH7s-BYmnRxMYuA8,247835
|
2476
2622
|
pulumi_oci/ocvp/__init__.py,sha256=5hsRqRVjubH8kEKJ8S0gmCLCMgC34aEsdU3oNoaKqxs,750
|
2477
2623
|
pulumi_oci/ocvp/_inputs.py,sha256=wpti6Zka0cnQqtWIRkS-2f3ZdHLlAjTUnUKyVAgX1F4,115425
|
2478
2624
|
pulumi_oci/ocvp/cluster.py,sha256=Cv9MrqIT5yayhOk2GoKbX9gAquEJQId0SN7NVYKGRis,84435
|
@@ -2732,7 +2878,7 @@ pulumi_oci/osmanagementhub/software_source_remove_packages_management.py,sha256=
|
|
2732
2878
|
pulumi_oci/osmanagementhub/software_source_replace_packages_management.py,sha256=bLcQhfonxIrisVQgu8ulh51MGjVPkznCeJUfnOkL4Qo,14311
|
2733
2879
|
pulumi_oci/osmanagementhub/work_request_rerun_management.py,sha256=K3Wn472qzc2qiynMNUfQyniNJAdas8wa2AMTBlD6ReU,17392
|
2734
2880
|
pulumi_oci/ospgateway/__init__.py,sha256=sJZV21NSLuNizFp2EiibygA-dssde0whrKHh9ezD3cA,645
|
2735
|
-
pulumi_oci/ospgateway/_inputs.py,sha256
|
2881
|
+
pulumi_oci/ospgateway/_inputs.py,sha256=-Sj2FgVU8cA2fgA4fl_8E06BSRyYcqcMWD5nb4GAv90,120780
|
2736
2882
|
pulumi_oci/ospgateway/address_action_verification.py,sha256=-IMyfn0Qidt8WL3MPFkP3k5YEIECTU_3yvTMbn-u1zo,69557
|
2737
2883
|
pulumi_oci/ospgateway/get_address.py,sha256=1aviu9t5Tjb2jcOB4HORCt2XS0argKTFOsNWLRf2k94,20672
|
2738
2884
|
pulumi_oci/ospgateway/get_address_rule.py,sha256=-yIYUTRnnI2Qq_2v0Ty-ik1mzhnpBvNXzesLv04A52E,8147
|
@@ -2740,10 +2886,10 @@ pulumi_oci/ospgateway/get_invoice.py,sha256=5CG8D_P0KZRG9NSeHMp1y8DUmkVHUoj28Ujz
|
|
2740
2886
|
pulumi_oci/ospgateway/get_invoices.py,sha256=_LKaQX9NX5m3MSExk4hsZ-NEpqAmeADltl6uiFZog8A,16277
|
2741
2887
|
pulumi_oci/ospgateway/get_invoices_invoice_line.py,sha256=Z6vyYaGse6Obo4eSIijYB0XQHIwMB7fm6aTMn2189P8,7293
|
2742
2888
|
pulumi_oci/ospgateway/get_invoices_invoice_lines.py,sha256=WeEIaZ2SDA4WAG10bMa1Y6sBAAseYfr4eKX2fRT8QuQ,8526
|
2743
|
-
pulumi_oci/ospgateway/get_subscription.py,sha256=
|
2889
|
+
pulumi_oci/ospgateway/get_subscription.py,sha256=evSBlgxjXTPBUbzEXfav8UXRcc_q42hVo_jCdQnY7No,21791
|
2744
2890
|
pulumi_oci/ospgateway/get_subscriptions.py,sha256=cDQkWjnea89l0h9JFDrSVKxZvBrzSimV9ulXXc6QQIY,7024
|
2745
|
-
pulumi_oci/ospgateway/outputs.py,sha256=
|
2746
|
-
pulumi_oci/ospgateway/subscription.py,sha256=
|
2891
|
+
pulumi_oci/ospgateway/outputs.py,sha256=mJ8W-6R6L2sInCDFhWtjabYMXgYf8W21DvIJ-BXULmY,263222
|
2892
|
+
pulumi_oci/ospgateway/subscription.py,sha256=E2purtZVQVWMSXY9JXM4NO9P3XZNeM0mu6X381B-5Is,46082
|
2747
2893
|
pulumi_oci/osubbillingschedule/__init__.py,sha256=6P-q3cNIFYNjwo4JzWrzhxrXYizraxqHptE7D_4vs1o,348
|
2748
2894
|
pulumi_oci/osubbillingschedule/_inputs.py,sha256=8nymG1AoyZzIPiaUtxtqJeje7YWGdpgQA-RhXRSdVs8,2123
|
2749
2895
|
pulumi_oci/osubbillingschedule/get_billing_schedule.py,sha256=sN_vBtgEI2jx2rfM3Rm9kZOh2OqJY3sPKazh4Efpph8,9896
|
@@ -2801,13 +2947,21 @@ pulumi_oci/recoverymod/outputs.py,sha256=H4gg0fZ_e8aPGyMk3MUYcC9y7owoiJ9WBfzkVgy
|
|
2801
2947
|
pulumi_oci/recoverymod/protected_database.py,sha256=7T_PBAkolxGZUYsX9qoWKCbtjyVzB6BmQ7JQDIiROt4,71076
|
2802
2948
|
pulumi_oci/recoverymod/protection_policy.py,sha256=kKKwIA1FCCs1i96KMwGnPjjOjy_na5dBsTKjGccoEwo,51009
|
2803
2949
|
pulumi_oci/recoverymod/recovery_service_subnet.py,sha256=0ILA0ggceuZTYvECkrjevOYnMx_t_shjPAz-_MXFsm0,42163
|
2804
|
-
pulumi_oci/redis/__init__.py,sha256=
|
2805
|
-
pulumi_oci/redis/_inputs.py,sha256=
|
2950
|
+
pulumi_oci/redis/__init__.py,sha256=V2ztCkz0nb4M39H1HLlnBzJBjBMo3P44E_0bPSpFtus,795
|
2951
|
+
pulumi_oci/redis/_inputs.py,sha256=Y4NimkxS_cGrkmF_bnhoi4ugF7v_5KMi25wBdXEDqj8,14998
|
2952
|
+
pulumi_oci/redis/get_oci_cache_user.py,sha256=-hxUctFt9VFvSJa06lWyEdoHoko9KTc9akM-TNpN7Q8,12021
|
2953
|
+
pulumi_oci/redis/get_oci_cache_users.py,sha256=4t6neJLpfkI7wIPF5TnWXAD2xr9ymV0iy8rDwygexrg,8073
|
2806
2954
|
pulumi_oci/redis/get_redis_cluster.py,sha256=7SQ37evMNfATAGdfiJyiaz2byWQ7AnMc5NkdkNGpFxE,19361
|
2807
2955
|
pulumi_oci/redis/get_redis_cluster_nodes.py,sha256=2UduHgJy7-2h9WAHWemg0NS3D-ILZHWJAoOc4Y0zCzI,7335
|
2808
2956
|
pulumi_oci/redis/get_redis_clusters.py,sha256=UgZZhQYCEMcw0K5kfUjd7O6_Hridfs7car2HCmeFWCU,9140
|
2809
|
-
pulumi_oci/redis/
|
2957
|
+
pulumi_oci/redis/oci_cache_user.py,sha256=cAuSA41wklRue5DmPJPzg8KjlAGUm8Xk3Zt7nLSGpic,35273
|
2958
|
+
pulumi_oci/redis/oci_cache_user_get_redis_cluster.py,sha256=aoQIVV555rV0uTuhT2qQBssrAxj9vEj1_NiZ6Rgmv7A,15717
|
2959
|
+
pulumi_oci/redis/outputs.py,sha256=oegWNzcKZTWh8SHcliu3F65iDFpxRUuPpm9ZJaUz-0U,40761
|
2810
2960
|
pulumi_oci/redis/redis_cluster.py,sha256=RO3hqsvY-i7ajfJuhEpJFh-HsIXbBexPZgYTGBQ0iTM,54999
|
2961
|
+
pulumi_oci/redis/redis_cluster_attach_oci_cache_user.py,sha256=1YWoDLfrywxlolhy4SjEUCyR4GNsomWVMwAMKTVPNJc,12505
|
2962
|
+
pulumi_oci/redis/redis_cluster_create_identity_token.py,sha256=3Ee2q_PJWwd0QiEbczHaG9r9WsHfeiAt7P51sWgKw_4,21761
|
2963
|
+
pulumi_oci/redis/redis_cluster_detach_oci_cache_user.py,sha256=24eY7eoU8-EdNKtFNjH6jHcRdlotx7fO_dnTf1Py7RY,12505
|
2964
|
+
pulumi_oci/redis/redis_cluster_get_oci_cache_user.py,sha256=0uIUSlF1ipBmILFOoqpPbJRSb_bEy2kPjeYa6lxp7hw,15612
|
2811
2965
|
pulumi_oci/resourcemanager/__init__.py,sha256=ALNzf2z4sPX7MuiLIChV8S-AphhQiDJSUjkREB1mlRw,551
|
2812
2966
|
pulumi_oci/resourcemanager/_inputs.py,sha256=jM1v9MPI13Rppm3Lj4dis8rEs9xTOVG6r3KrWchDUPI,3338
|
2813
2967
|
pulumi_oci/resourcemanager/get_private_endpoint.py,sha256=HtUUAef71I91Tws3YO1MAP9-9mRgtYyf01YRmx2LA2s,13898
|
@@ -3064,7 +3218,7 @@ pulumi_oci/zpr/get_zpr_policies.py,sha256=uUbCvTQoQjq22Qt_ALwWf0xeGd6eH2idVKNGty
|
|
3064
3218
|
pulumi_oci/zpr/get_zpr_policy.py,sha256=0V6Io7EfDUn9YaW1ChtBpeH8KmePoGqOZe5tAXUoG6Q,11616
|
3065
3219
|
pulumi_oci/zpr/outputs.py,sha256=fRmSFG5R8HLgVUhj7oOyZyMZy5jufe1_U9iqNVFaHVE,9319
|
3066
3220
|
pulumi_oci/zpr/zpr_policy.py,sha256=i4GgbtPrCmQHOH9O1g3Dgypo_1vYRic_gXHh5fkNJ-0,33682
|
3067
|
-
pulumi_oci-3.
|
3068
|
-
pulumi_oci-3.
|
3069
|
-
pulumi_oci-3.
|
3070
|
-
pulumi_oci-3.
|
3221
|
+
pulumi_oci-3.2.0a1752121229.dist-info/METADATA,sha256=EHxbjLBl8RmeXDknSedfEEpjHdDyaLAkohOsU6hU8Nw,4751
|
3222
|
+
pulumi_oci-3.2.0a1752121229.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
3223
|
+
pulumi_oci-3.2.0a1752121229.dist-info/top_level.txt,sha256=0k-nWr_IdDNVF3qcT4ALORmmu1SNCLxWZfHDMN7TWsg,11
|
3224
|
+
pulumi_oci-3.2.0a1752121229.dist-info/RECORD,,
|