pulumi-oci 3.1.0a1750230541__py3-none-any.whl → 3.2.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +339 -0
- pulumi_oci/bigdataservice/__init__.py +10 -0
- pulumi_oci/bigdataservice/_inputs.py +378 -0
- pulumi_oci/bigdataservice/bds_instance_node_backup.py +481 -0
- pulumi_oci/bigdataservice/bds_instance_node_backup_configuration.py +611 -0
- pulumi_oci/bigdataservice/bds_instance_node_replace_configuration.py +538 -0
- pulumi_oci/bigdataservice/bds_instance_replace_node_action.py +406 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backup.py +245 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backup_configuration.py +263 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backup_configurations.py +192 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backups.py +211 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_replace_configuration.py +246 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_replace_configurations.py +192 -0
- pulumi_oci/bigdataservice/outputs.py +798 -0
- pulumi_oci/capacitymanagement/__init__.py +18 -0
- pulumi_oci/capacitymanagement/_inputs.py +459 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal.py +268 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog.py +254 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog_resources.py +233 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalogs.py +192 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_deliveries.py +197 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_delivery.py +296 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_items.py +233 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signals.py +222 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal.py +254 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_catalog_resources.py +189 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_deliveries.py +175 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_item.py +352 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_items.py +211 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signals.py +200 -0
- pulumi_oci/capacitymanagement/internal_occm_demand_signal.py +564 -0
- pulumi_oci/capacitymanagement/internal_occm_demand_signal_delivery.py +760 -0
- pulumi_oci/capacitymanagement/occm_demand_signal.py +585 -0
- pulumi_oci/capacitymanagement/occm_demand_signal_item.py +950 -0
- pulumi_oci/capacitymanagement/outputs.py +3499 -1230
- pulumi_oci/containerengine/get_cluster.py +7 -7
- pulumi_oci/core/__init__.py +4 -0
- pulumi_oci/core/_inputs.py +477 -0
- pulumi_oci/core/compute_host.py +910 -0
- pulumi_oci/core/compute_host_group.py +648 -0
- pulumi_oci/core/dedicated_vm_host.py +56 -0
- pulumi_oci/core/get_compute_host.py +72 -1
- pulumi_oci/core/get_compute_host_group.py +269 -0
- pulumi_oci/core/get_compute_host_groups.py +148 -0
- pulumi_oci/core/get_compute_hosts.py +37 -1
- pulumi_oci/core/get_dedicated_vm_host.py +29 -1
- pulumi_oci/core/outputs.py +912 -24
- pulumi_oci/database/__init__.py +2 -0
- pulumi_oci/database/_inputs.py +739 -52
- pulumi_oci/database/autonomous_container_database.py +141 -12
- pulumi_oci/database/autonomous_container_database_add_standby.py +8 -10
- pulumi_oci/database/autonomous_container_database_dataguard_association.py +8 -16
- pulumi_oci/database/autonomous_container_database_snapshot_standby.py +4 -6
- pulumi_oci/database/autonomous_database_software_image.py +28 -0
- pulumi_oci/database/autonomous_vm_cluster.py +28 -0
- pulumi_oci/database/backup_destination.py +28 -0
- pulumi_oci/database/cloud_autonomous_vm_cluster.py +126 -0
- pulumi_oci/database/cloud_vm_cluster.py +82 -7
- pulumi_oci/database/database.py +28 -0
- pulumi_oci/database/database_software_image.py +28 -0
- pulumi_oci/database/database_upgrade.py +28 -0
- pulumi_oci/database/db_home.py +28 -0
- pulumi_oci/database/db_node.py +28 -0
- pulumi_oci/database/db_system.py +28 -0
- pulumi_oci/database/exadata_infrastructure.py +28 -0
- pulumi_oci/database/exadata_infrastructure_compute.py +39 -24
- pulumi_oci/database/external_container_database.py +28 -0
- pulumi_oci/database/external_database_connector.py +28 -0
- pulumi_oci/database/external_non_container_database.py +28 -0
- pulumi_oci/database/external_pluggable_database.py +28 -0
- pulumi_oci/database/get_autonomous_container_database.py +52 -2
- pulumi_oci/database/get_autonomous_container_database_backups.py +255 -0
- pulumi_oci/database/get_autonomous_container_database_dataguard_association.py +2 -2
- pulumi_oci/database/get_autonomous_container_database_dataguard_associations.py +2 -2
- pulumi_oci/database/get_autonomous_database_dataguard_associations.py +2 -2
- pulumi_oci/database/get_autonomous_database_resource_pool_members.py +145 -0
- pulumi_oci/database/get_autonomous_database_software_image.py +15 -1
- pulumi_oci/database/get_autonomous_vm_cluster.py +15 -1
- pulumi_oci/database/get_backup_destination.py +15 -1
- pulumi_oci/database/get_cloud_autonomous_vm_cluster.py +40 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +30 -2
- pulumi_oci/database/get_database.py +15 -1
- pulumi_oci/database/get_database_software_image.py +15 -1
- pulumi_oci/database/get_db_home.py +15 -1
- pulumi_oci/database/get_db_node.py +15 -1
- pulumi_oci/database/get_db_nodes.py +2 -2
- pulumi_oci/database/get_db_server.py +15 -1
- pulumi_oci/database/get_exadata_infrastructure.py +15 -1
- pulumi_oci/database/get_external_container_database.py +15 -1
- pulumi_oci/database/get_external_database_connector.py +15 -1
- pulumi_oci/database/get_external_non_container_database.py +15 -1
- pulumi_oci/database/get_external_pluggable_database.py +15 -1
- pulumi_oci/database/get_key_store.py +15 -1
- pulumi_oci/database/get_maintenance_run.py +15 -1
- pulumi_oci/database/get_oneoff_patch.py +15 -1
- pulumi_oci/database/get_pluggable_database.py +15 -1
- pulumi_oci/database/get_vm_cluster.py +15 -1
- pulumi_oci/database/get_vm_cluster_network.py +15 -1
- pulumi_oci/database/key_store.py +28 -0
- pulumi_oci/database/maintenance_run.py +28 -0
- pulumi_oci/database/oneoff_patch.py +28 -0
- pulumi_oci/database/outputs.py +1624 -54
- pulumi_oci/database/pluggable_database.py +28 -0
- pulumi_oci/database/pluggable_databases_local_clone.py +28 -0
- pulumi_oci/database/pluggable_databases_remote_clone.py +28 -0
- pulumi_oci/database/vm_cluster.py +28 -0
- pulumi_oci/database/vm_cluster_network.py +28 -0
- pulumi_oci/databasemanagement/__init__.py +7 -0
- pulumi_oci/databasemanagement/_inputs.py +196 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database.py +15 -1
- pulumi_oci/databasemanagement/get_managed_my_sql_database_binary_log_information.py +198 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_digest_errors.py +164 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_general_replication_information.py +352 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_high_availability_members.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_inbound_replications.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_outbound_replications.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_query_detail.py +176 -0
- pulumi_oci/databasemanagement/outputs.py +1330 -19
- pulumi_oci/databasemigration/_inputs.py +94 -0
- pulumi_oci/databasemigration/get_migration.py +15 -1
- pulumi_oci/databasemigration/get_migrations.py +15 -1
- pulumi_oci/databasemigration/job.py +28 -0
- pulumi_oci/databasemigration/migration.py +52 -3
- pulumi_oci/databasemigration/outputs.py +73 -0
- pulumi_oci/dataflow/_inputs.py +20 -0
- pulumi_oci/dataflow/outputs.py +36 -0
- pulumi_oci/fleetappsmanagement/__init__.py +48 -0
- pulumi_oci/fleetappsmanagement/_inputs.py +11016 -30
- pulumi_oci/fleetappsmanagement/catalog_item.py +1156 -0
- pulumi_oci/fleetappsmanagement/compliance_policy_rule.py +811 -0
- pulumi_oci/fleetappsmanagement/fleet.py +1003 -0
- pulumi_oci/fleetappsmanagement/fleet_credential.py +623 -0
- pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
- pulumi_oci/fleetappsmanagement/fleet_resource.py +853 -0
- pulumi_oci/fleetappsmanagement/get_announcements.py +29 -7
- pulumi_oci/fleetappsmanagement/get_catalog_item.py +434 -0
- pulumi_oci/fleetappsmanagement/get_catalog_items.py +274 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policies.py +36 -12
- pulumi_oci/fleetappsmanagement/get_compliance_policy.py +20 -6
- pulumi_oci/fleetappsmanagement/get_compliance_policy_rule.py +325 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policy_rules.py +244 -0
- pulumi_oci/fleetappsmanagement/get_compliance_record_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_compliance_records.py +299 -0
- pulumi_oci/fleetappsmanagement/get_fleet.py +409 -0
- pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +15 -1
- pulumi_oci/fleetappsmanagement/get_fleet_credential.py +274 -0
- pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +283 -0
- pulumi_oci/fleetappsmanagement/get_fleet_products.py +2 -2
- pulumi_oci/fleetappsmanagement/get_fleet_properties.py +197 -0
- pulumi_oci/fleetappsmanagement/get_fleet_property.py +287 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resource.py +399 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resources.py +216 -0
- pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
- pulumi_oci/fleetappsmanagement/get_inventory_records.py +205 -0
- pulumi_oci/fleetappsmanagement/get_inventory_resources.py +4 -2
- pulumi_oci/fleetappsmanagement/get_maintenance_window.py +338 -0
- pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +221 -0
- pulumi_oci/fleetappsmanagement/get_managed_entity_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +26 -5
- pulumi_oci/fleetappsmanagement/get_onboardings.py +180 -0
- pulumi_oci/fleetappsmanagement/get_patch.py +364 -0
- pulumi_oci/fleetappsmanagement/get_patches.py +338 -0
- pulumi_oci/fleetappsmanagement/get_platform_configuration.py +297 -0
- pulumi_oci/fleetappsmanagement/get_platform_configurations.py +265 -0
- pulumi_oci/fleetappsmanagement/get_properties.py +37 -13
- pulumi_oci/fleetappsmanagement/get_property.py +1 -1
- pulumi_oci/fleetappsmanagement/get_provision.py +493 -0
- pulumi_oci/fleetappsmanagement/get_provisions.py +224 -0
- pulumi_oci/fleetappsmanagement/get_runbook.py +406 -0
- pulumi_oci/fleetappsmanagement/get_runbook_version.py +319 -0
- pulumi_oci/fleetappsmanagement/get_runbook_versions.py +230 -0
- pulumi_oci/fleetappsmanagement/get_runbooks.py +265 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +395 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +167 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +347 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_executions.py +334 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_job_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_steps.py +2 -2
- pulumi_oci/fleetappsmanagement/get_task_record.py +308 -0
- pulumi_oci/fleetappsmanagement/get_task_records.py +265 -0
- pulumi_oci/fleetappsmanagement/maintenance_window.py +840 -0
- pulumi_oci/fleetappsmanagement/onboarding.py +631 -0
- pulumi_oci/fleetappsmanagement/outputs.py +25528 -1223
- pulumi_oci/fleetappsmanagement/patch.py +980 -0
- pulumi_oci/fleetappsmanagement/platform_configuration.py +694 -0
- pulumi_oci/fleetappsmanagement/property.py +28 -27
- pulumi_oci/fleetappsmanagement/provision.py +1195 -0
- pulumi_oci/fleetappsmanagement/runbook.py +1277 -0
- pulumi_oci/fleetappsmanagement/runbook_version.py +996 -0
- pulumi_oci/fleetappsmanagement/scheduler_definition.py +946 -0
- pulumi_oci/fleetappsmanagement/task_record.py +786 -0
- pulumi_oci/fleetsoftwareupdate/_inputs.py +88 -15
- pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +71 -42
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +21 -7
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +1 -1
- pulumi_oci/fleetsoftwareupdate/outputs.py +172 -15
- pulumi_oci/generativeai/__init__.py +3 -0
- pulumi_oci/generativeai/_inputs.py +1479 -132
- pulumi_oci/generativeai/agent_agent.py +66 -11
- pulumi_oci/generativeai/agent_agent_endpoint.py +296 -25
- pulumi_oci/generativeai/agent_data_source.py +70 -21
- pulumi_oci/generativeai/agent_tool.py +619 -0
- pulumi_oci/generativeai/get_agent_agent.py +17 -2
- pulumi_oci/generativeai/get_agent_agent_endpoint.py +72 -6
- pulumi_oci/generativeai/get_agent_agent_endpoints.py +0 -4
- pulumi_oci/generativeai/get_agent_data_source.py +15 -1
- pulumi_oci/generativeai/get_agent_tool.py +283 -0
- pulumi_oci/generativeai/get_agent_tools.py +214 -0
- pulumi_oci/generativeai/outputs.py +4001 -1259
- pulumi_oci/goldengate/_inputs.py +449 -3
- pulumi_oci/goldengate/connection.py +200 -56
- pulumi_oci/goldengate/get_connection.py +59 -28
- pulumi_oci/goldengate/get_connections.py +0 -3
- pulumi_oci/goldengate/outputs.py +886 -22
- pulumi_oci/kms/vault_verification.py +62 -2
- pulumi_oci/loadbalancer/_inputs.py +24 -6
- pulumi_oci/loadbalancer/backend.py +35 -7
- pulumi_oci/loadbalancer/backend_set.py +35 -7
- pulumi_oci/loadbalancer/listener.py +7 -7
- pulumi_oci/loadbalancer/load_balancer.py +81 -0
- pulumi_oci/loadbalancer/outputs.py +29 -10
- pulumi_oci/loganalytics/__init__.py +3 -0
- pulumi_oci/loganalytics/_inputs.py +123 -0
- pulumi_oci/loganalytics/get_log_analytics_entities.py +52 -0
- pulumi_oci/loganalytics/get_log_analytics_entity_type.py +254 -0
- pulumi_oci/loganalytics/get_log_analytics_entity_types.py +230 -0
- pulumi_oci/loganalytics/log_analytics_entity_type.py +508 -0
- pulumi_oci/loganalytics/outputs.py +258 -0
- pulumi_oci/mysql/_inputs.py +274 -0
- pulumi_oci/mysql/get_mysql_backup.py +29 -1
- pulumi_oci/mysql/get_mysql_backups.py +23 -1
- pulumi_oci/mysql/get_mysql_db_system.py +15 -1
- pulumi_oci/mysql/get_replica.py +15 -1
- pulumi_oci/mysql/mysql_backup.py +98 -2
- pulumi_oci/mysql/mysql_db_system.py +57 -0
- pulumi_oci/mysql/outputs.py +594 -0
- pulumi_oci/mysql/replica.py +28 -0
- pulumi_oci/nosql/__init__.py +2 -0
- pulumi_oci/nosql/_inputs.py +129 -3
- pulumi_oci/nosql/configuration.py +383 -0
- pulumi_oci/nosql/get_configuration.py +162 -0
- pulumi_oci/nosql/index.py +7 -7
- pulumi_oci/nosql/outputs.py +164 -2
- pulumi_oci/nosql/table_replica.py +9 -9
- pulumi_oci/oci/__init__.py +56 -0
- pulumi_oci/oci/_inputs.py +1615 -0
- pulumi_oci/oci/apiaccesscontrol_privileged_api_control.py +930 -0
- pulumi_oci/oci/apiaccesscontrol_privileged_api_request.py +1303 -0
- pulumi_oci/oci/dbmulticloud_multi_cloud_resource_discovery.py +675 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_container.py +743 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_mount.py +675 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_connector.py +740 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault.py +840 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault_association.py +673 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadata.py +310 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadata_by_entity_types.py +208 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadatas.py +208 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_control.py +367 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_controls.py +222 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_request.py +535 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_requests.py +244 -0
- pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discoveries.py +252 -0
- pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discovery.py +297 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_container.py +310 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_containers.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mount.py +296 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mounts.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connector.py +311 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connectors.py +233 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_key.py +282 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_keys.py +233 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault.py +338 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_association.py +296 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_associations.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vaults.py +252 -0
- pulumi_oci/oci/get_wlms_managed_instance.py +255 -0
- pulumi_oci/oci/get_wlms_managed_instance_scan_results.py +189 -0
- pulumi_oci/oci/get_wlms_managed_instance_server.py +378 -0
- pulumi_oci/oci/get_wlms_managed_instance_server_installed_patches.py +168 -0
- pulumi_oci/oci/get_wlms_managed_instance_servers.py +170 -0
- pulumi_oci/oci/get_wlms_managed_instances.py +200 -0
- pulumi_oci/oci/get_wlms_wls_domain.py +311 -0
- pulumi_oci/oci/get_wlms_wls_domain_agreement_records.py +145 -0
- pulumi_oci/oci/get_wlms_wls_domain_applicable_patches.py +145 -0
- pulumi_oci/oci/get_wlms_wls_domain_scan_results.py +170 -0
- pulumi_oci/oci/get_wlms_wls_domain_server.py +378 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backup.py +230 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backup_content.py +189 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backups.py +168 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_installed_patches.py +168 -0
- pulumi_oci/oci/get_wlms_wls_domain_servers.py +170 -0
- pulumi_oci/oci/get_wlms_wls_domains.py +266 -0
- pulumi_oci/oci/outputs.py +5617 -0
- pulumi_oci/ospgateway/_inputs.py +20 -0
- pulumi_oci/ospgateway/get_subscription.py +15 -1
- pulumi_oci/ospgateway/outputs.py +47 -0
- pulumi_oci/ospgateway/subscription.py +28 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/__init__.py +8 -0
- pulumi_oci/redis/_inputs.py +179 -0
- pulumi_oci/redis/get_oci_cache_user.py +283 -0
- pulumi_oci/redis/get_oci_cache_users.py +192 -0
- pulumi_oci/redis/oci_cache_user.py +695 -0
- pulumi_oci/redis/oci_cache_user_get_redis_cluster.py +333 -0
- pulumi_oci/redis/outputs.py +330 -0
- pulumi_oci/redis/redis_cluster_attach_oci_cache_user.py +263 -0
- pulumi_oci/redis/redis_cluster_create_identity_token.py +439 -0
- pulumi_oci/redis/redis_cluster_detach_oci_cache_user.py +263 -0
- pulumi_oci/redis/redis_cluster_get_oci_cache_user.py +333 -0
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0.dist-info}/METADATA +1 -1
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0.dist-info}/RECORD +313 -159
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0.dist-info}/top_level.txt +0 -0
@@ -0,0 +1,263 @@
|
|
1
|
+
# coding=utf-8
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
4
|
+
|
5
|
+
import builtins
|
6
|
+
import copy
|
7
|
+
import warnings
|
8
|
+
import sys
|
9
|
+
import pulumi
|
10
|
+
import pulumi.runtime
|
11
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
12
|
+
if sys.version_info >= (3, 11):
|
13
|
+
from typing import NotRequired, TypedDict, TypeAlias
|
14
|
+
else:
|
15
|
+
from typing_extensions import NotRequired, TypedDict, TypeAlias
|
16
|
+
from .. import _utilities
|
17
|
+
|
18
|
+
__all__ = ['RedisClusterAttachOciCacheUserArgs', 'RedisClusterAttachOciCacheUser']
|
19
|
+
|
20
|
+
@pulumi.input_type
|
21
|
+
class RedisClusterAttachOciCacheUserArgs:
|
22
|
+
def __init__(__self__, *,
|
23
|
+
oci_cache_users: pulumi.Input[Sequence[pulumi.Input[builtins.str]]],
|
24
|
+
redis_cluster_id: pulumi.Input[builtins.str]):
|
25
|
+
"""
|
26
|
+
The set of arguments for constructing a RedisClusterAttachOciCacheUser resource.
|
27
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] oci_cache_users: List of Oracle Cloud Infrastructure cache user unique IDs (OCIDs).
|
28
|
+
:param pulumi.Input[builtins.str] redis_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster.
|
29
|
+
|
30
|
+
|
31
|
+
** IMPORTANT **
|
32
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
33
|
+
"""
|
34
|
+
pulumi.set(__self__, "oci_cache_users", oci_cache_users)
|
35
|
+
pulumi.set(__self__, "redis_cluster_id", redis_cluster_id)
|
36
|
+
|
37
|
+
@property
|
38
|
+
@pulumi.getter(name="ociCacheUsers")
|
39
|
+
def oci_cache_users(self) -> pulumi.Input[Sequence[pulumi.Input[builtins.str]]]:
|
40
|
+
"""
|
41
|
+
List of Oracle Cloud Infrastructure cache user unique IDs (OCIDs).
|
42
|
+
"""
|
43
|
+
return pulumi.get(self, "oci_cache_users")
|
44
|
+
|
45
|
+
@oci_cache_users.setter
|
46
|
+
def oci_cache_users(self, value: pulumi.Input[Sequence[pulumi.Input[builtins.str]]]):
|
47
|
+
pulumi.set(self, "oci_cache_users", value)
|
48
|
+
|
49
|
+
@property
|
50
|
+
@pulumi.getter(name="redisClusterId")
|
51
|
+
def redis_cluster_id(self) -> pulumi.Input[builtins.str]:
|
52
|
+
"""
|
53
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster.
|
54
|
+
|
55
|
+
|
56
|
+
** IMPORTANT **
|
57
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
58
|
+
"""
|
59
|
+
return pulumi.get(self, "redis_cluster_id")
|
60
|
+
|
61
|
+
@redis_cluster_id.setter
|
62
|
+
def redis_cluster_id(self, value: pulumi.Input[builtins.str]):
|
63
|
+
pulumi.set(self, "redis_cluster_id", value)
|
64
|
+
|
65
|
+
|
66
|
+
@pulumi.input_type
|
67
|
+
class _RedisClusterAttachOciCacheUserState:
|
68
|
+
def __init__(__self__, *,
|
69
|
+
oci_cache_users: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
70
|
+
redis_cluster_id: Optional[pulumi.Input[builtins.str]] = None):
|
71
|
+
"""
|
72
|
+
Input properties used for looking up and filtering RedisClusterAttachOciCacheUser resources.
|
73
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] oci_cache_users: List of Oracle Cloud Infrastructure cache user unique IDs (OCIDs).
|
74
|
+
:param pulumi.Input[builtins.str] redis_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster.
|
75
|
+
|
76
|
+
|
77
|
+
** IMPORTANT **
|
78
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
79
|
+
"""
|
80
|
+
if oci_cache_users is not None:
|
81
|
+
pulumi.set(__self__, "oci_cache_users", oci_cache_users)
|
82
|
+
if redis_cluster_id is not None:
|
83
|
+
pulumi.set(__self__, "redis_cluster_id", redis_cluster_id)
|
84
|
+
|
85
|
+
@property
|
86
|
+
@pulumi.getter(name="ociCacheUsers")
|
87
|
+
def oci_cache_users(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
|
88
|
+
"""
|
89
|
+
List of Oracle Cloud Infrastructure cache user unique IDs (OCIDs).
|
90
|
+
"""
|
91
|
+
return pulumi.get(self, "oci_cache_users")
|
92
|
+
|
93
|
+
@oci_cache_users.setter
|
94
|
+
def oci_cache_users(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]):
|
95
|
+
pulumi.set(self, "oci_cache_users", value)
|
96
|
+
|
97
|
+
@property
|
98
|
+
@pulumi.getter(name="redisClusterId")
|
99
|
+
def redis_cluster_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
100
|
+
"""
|
101
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster.
|
102
|
+
|
103
|
+
|
104
|
+
** IMPORTANT **
|
105
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
106
|
+
"""
|
107
|
+
return pulumi.get(self, "redis_cluster_id")
|
108
|
+
|
109
|
+
@redis_cluster_id.setter
|
110
|
+
def redis_cluster_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
111
|
+
pulumi.set(self, "redis_cluster_id", value)
|
112
|
+
|
113
|
+
|
114
|
+
@pulumi.type_token("oci:Redis/redisClusterAttachOciCacheUser:RedisClusterAttachOciCacheUser")
|
115
|
+
class RedisClusterAttachOciCacheUser(pulumi.CustomResource):
|
116
|
+
@overload
|
117
|
+
def __init__(__self__,
|
118
|
+
resource_name: str,
|
119
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
120
|
+
oci_cache_users: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
121
|
+
redis_cluster_id: Optional[pulumi.Input[builtins.str]] = None,
|
122
|
+
__props__=None):
|
123
|
+
"""
|
124
|
+
This resource provides the Redis Cluster Attach Oci Cache User resource in Oracle Cloud Infrastructure Redis service.
|
125
|
+
|
126
|
+
Attach existing Oracle Cloud Infrastructure cache users to a redis cluster.
|
127
|
+
|
128
|
+
## Example Usage
|
129
|
+
|
130
|
+
```python
|
131
|
+
import pulumi
|
132
|
+
import pulumi_oci as oci
|
133
|
+
|
134
|
+
test_redis_cluster_attach_oci_cache_user = oci.redis.RedisClusterAttachOciCacheUser("test_redis_cluster_attach_oci_cache_user",
|
135
|
+
oci_cache_users=redis_cluster_attach_oci_cache_user_oci_cache_users,
|
136
|
+
redis_cluster_id=test_redis_cluster["id"])
|
137
|
+
```
|
138
|
+
|
139
|
+
## Import
|
140
|
+
|
141
|
+
Import is not supported for this resource.
|
142
|
+
|
143
|
+
:param str resource_name: The name of the resource.
|
144
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
145
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] oci_cache_users: List of Oracle Cloud Infrastructure cache user unique IDs (OCIDs).
|
146
|
+
:param pulumi.Input[builtins.str] redis_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster.
|
147
|
+
|
148
|
+
|
149
|
+
** IMPORTANT **
|
150
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
151
|
+
"""
|
152
|
+
...
|
153
|
+
@overload
|
154
|
+
def __init__(__self__,
|
155
|
+
resource_name: str,
|
156
|
+
args: RedisClusterAttachOciCacheUserArgs,
|
157
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
158
|
+
"""
|
159
|
+
This resource provides the Redis Cluster Attach Oci Cache User resource in Oracle Cloud Infrastructure Redis service.
|
160
|
+
|
161
|
+
Attach existing Oracle Cloud Infrastructure cache users to a redis cluster.
|
162
|
+
|
163
|
+
## Example Usage
|
164
|
+
|
165
|
+
```python
|
166
|
+
import pulumi
|
167
|
+
import pulumi_oci as oci
|
168
|
+
|
169
|
+
test_redis_cluster_attach_oci_cache_user = oci.redis.RedisClusterAttachOciCacheUser("test_redis_cluster_attach_oci_cache_user",
|
170
|
+
oci_cache_users=redis_cluster_attach_oci_cache_user_oci_cache_users,
|
171
|
+
redis_cluster_id=test_redis_cluster["id"])
|
172
|
+
```
|
173
|
+
|
174
|
+
## Import
|
175
|
+
|
176
|
+
Import is not supported for this resource.
|
177
|
+
|
178
|
+
:param str resource_name: The name of the resource.
|
179
|
+
:param RedisClusterAttachOciCacheUserArgs args: The arguments to use to populate this resource's properties.
|
180
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
181
|
+
"""
|
182
|
+
...
|
183
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
184
|
+
resource_args, opts = _utilities.get_resource_args_opts(RedisClusterAttachOciCacheUserArgs, pulumi.ResourceOptions, *args, **kwargs)
|
185
|
+
if resource_args is not None:
|
186
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
187
|
+
else:
|
188
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
189
|
+
|
190
|
+
def _internal_init(__self__,
|
191
|
+
resource_name: str,
|
192
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
193
|
+
oci_cache_users: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
194
|
+
redis_cluster_id: Optional[pulumi.Input[builtins.str]] = None,
|
195
|
+
__props__=None):
|
196
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
197
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
198
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
199
|
+
if opts.id is None:
|
200
|
+
if __props__ is not None:
|
201
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
202
|
+
__props__ = RedisClusterAttachOciCacheUserArgs.__new__(RedisClusterAttachOciCacheUserArgs)
|
203
|
+
|
204
|
+
if oci_cache_users is None and not opts.urn:
|
205
|
+
raise TypeError("Missing required property 'oci_cache_users'")
|
206
|
+
__props__.__dict__["oci_cache_users"] = oci_cache_users
|
207
|
+
if redis_cluster_id is None and not opts.urn:
|
208
|
+
raise TypeError("Missing required property 'redis_cluster_id'")
|
209
|
+
__props__.__dict__["redis_cluster_id"] = redis_cluster_id
|
210
|
+
super(RedisClusterAttachOciCacheUser, __self__).__init__(
|
211
|
+
'oci:Redis/redisClusterAttachOciCacheUser:RedisClusterAttachOciCacheUser',
|
212
|
+
resource_name,
|
213
|
+
__props__,
|
214
|
+
opts)
|
215
|
+
|
216
|
+
@staticmethod
|
217
|
+
def get(resource_name: str,
|
218
|
+
id: pulumi.Input[str],
|
219
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
220
|
+
oci_cache_users: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
221
|
+
redis_cluster_id: Optional[pulumi.Input[builtins.str]] = None) -> 'RedisClusterAttachOciCacheUser':
|
222
|
+
"""
|
223
|
+
Get an existing RedisClusterAttachOciCacheUser resource's state with the given name, id, and optional extra
|
224
|
+
properties used to qualify the lookup.
|
225
|
+
|
226
|
+
:param str resource_name: The unique name of the resulting resource.
|
227
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
228
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
229
|
+
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] oci_cache_users: List of Oracle Cloud Infrastructure cache user unique IDs (OCIDs).
|
230
|
+
:param pulumi.Input[builtins.str] redis_cluster_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster.
|
231
|
+
|
232
|
+
|
233
|
+
** IMPORTANT **
|
234
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
235
|
+
"""
|
236
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
237
|
+
|
238
|
+
__props__ = _RedisClusterAttachOciCacheUserState.__new__(_RedisClusterAttachOciCacheUserState)
|
239
|
+
|
240
|
+
__props__.__dict__["oci_cache_users"] = oci_cache_users
|
241
|
+
__props__.__dict__["redis_cluster_id"] = redis_cluster_id
|
242
|
+
return RedisClusterAttachOciCacheUser(resource_name, opts=opts, __props__=__props__)
|
243
|
+
|
244
|
+
@property
|
245
|
+
@pulumi.getter(name="ociCacheUsers")
|
246
|
+
def oci_cache_users(self) -> pulumi.Output[Sequence[builtins.str]]:
|
247
|
+
"""
|
248
|
+
List of Oracle Cloud Infrastructure cache user unique IDs (OCIDs).
|
249
|
+
"""
|
250
|
+
return pulumi.get(self, "oci_cache_users")
|
251
|
+
|
252
|
+
@property
|
253
|
+
@pulumi.getter(name="redisClusterId")
|
254
|
+
def redis_cluster_id(self) -> pulumi.Output[builtins.str]:
|
255
|
+
"""
|
256
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster.
|
257
|
+
|
258
|
+
|
259
|
+
** IMPORTANT **
|
260
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
261
|
+
"""
|
262
|
+
return pulumi.get(self, "redis_cluster_id")
|
263
|
+
|