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
@@ -0,0 +1,439 @@
|
|
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__ = ['RedisClusterCreateIdentityTokenArgs', 'RedisClusterCreateIdentityToken']
|
19
|
+
|
20
|
+
@pulumi.input_type
|
21
|
+
class RedisClusterCreateIdentityTokenArgs:
|
22
|
+
def __init__(__self__, *,
|
23
|
+
public_key: pulumi.Input[builtins.str],
|
24
|
+
redis_cluster_id: pulumi.Input[builtins.str],
|
25
|
+
redis_user: pulumi.Input[builtins.str],
|
26
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
27
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None):
|
28
|
+
"""
|
29
|
+
The set of arguments for constructing a RedisClusterCreateIdentityToken resource.
|
30
|
+
:param pulumi.Input[builtins.str] public_key: User public key pair
|
31
|
+
: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.
|
32
|
+
:param pulumi.Input[builtins.str] redis_user: Redis User generating identity token.
|
33
|
+
|
34
|
+
|
35
|
+
** IMPORTANT **
|
36
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
37
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
38
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
39
|
+
"""
|
40
|
+
pulumi.set(__self__, "public_key", public_key)
|
41
|
+
pulumi.set(__self__, "redis_cluster_id", redis_cluster_id)
|
42
|
+
pulumi.set(__self__, "redis_user", redis_user)
|
43
|
+
if defined_tags is not None:
|
44
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
45
|
+
if freeform_tags is not None:
|
46
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
47
|
+
|
48
|
+
@property
|
49
|
+
@pulumi.getter(name="publicKey")
|
50
|
+
def public_key(self) -> pulumi.Input[builtins.str]:
|
51
|
+
"""
|
52
|
+
User public key pair
|
53
|
+
"""
|
54
|
+
return pulumi.get(self, "public_key")
|
55
|
+
|
56
|
+
@public_key.setter
|
57
|
+
def public_key(self, value: pulumi.Input[builtins.str]):
|
58
|
+
pulumi.set(self, "public_key", value)
|
59
|
+
|
60
|
+
@property
|
61
|
+
@pulumi.getter(name="redisClusterId")
|
62
|
+
def redis_cluster_id(self) -> pulumi.Input[builtins.str]:
|
63
|
+
"""
|
64
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster.
|
65
|
+
"""
|
66
|
+
return pulumi.get(self, "redis_cluster_id")
|
67
|
+
|
68
|
+
@redis_cluster_id.setter
|
69
|
+
def redis_cluster_id(self, value: pulumi.Input[builtins.str]):
|
70
|
+
pulumi.set(self, "redis_cluster_id", value)
|
71
|
+
|
72
|
+
@property
|
73
|
+
@pulumi.getter(name="redisUser")
|
74
|
+
def redis_user(self) -> pulumi.Input[builtins.str]:
|
75
|
+
"""
|
76
|
+
Redis User generating identity token.
|
77
|
+
|
78
|
+
|
79
|
+
** IMPORTANT **
|
80
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
81
|
+
"""
|
82
|
+
return pulumi.get(self, "redis_user")
|
83
|
+
|
84
|
+
@redis_user.setter
|
85
|
+
def redis_user(self, value: pulumi.Input[builtins.str]):
|
86
|
+
pulumi.set(self, "redis_user", value)
|
87
|
+
|
88
|
+
@property
|
89
|
+
@pulumi.getter(name="definedTags")
|
90
|
+
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
91
|
+
"""
|
92
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
93
|
+
"""
|
94
|
+
return pulumi.get(self, "defined_tags")
|
95
|
+
|
96
|
+
@defined_tags.setter
|
97
|
+
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
98
|
+
pulumi.set(self, "defined_tags", value)
|
99
|
+
|
100
|
+
@property
|
101
|
+
@pulumi.getter(name="freeformTags")
|
102
|
+
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
103
|
+
"""
|
104
|
+
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
105
|
+
"""
|
106
|
+
return pulumi.get(self, "freeform_tags")
|
107
|
+
|
108
|
+
@freeform_tags.setter
|
109
|
+
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
110
|
+
pulumi.set(self, "freeform_tags", value)
|
111
|
+
|
112
|
+
|
113
|
+
@pulumi.input_type
|
114
|
+
class _RedisClusterCreateIdentityTokenState:
|
115
|
+
def __init__(__self__, *,
|
116
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
117
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
118
|
+
identity_token: Optional[pulumi.Input[builtins.str]] = None,
|
119
|
+
public_key: Optional[pulumi.Input[builtins.str]] = None,
|
120
|
+
redis_cluster_id: Optional[pulumi.Input[builtins.str]] = None,
|
121
|
+
redis_user: Optional[pulumi.Input[builtins.str]] = None):
|
122
|
+
"""
|
123
|
+
Input properties used for looking up and filtering RedisClusterCreateIdentityToken resources.
|
124
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
125
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
126
|
+
:param pulumi.Input[builtins.str] identity_token: Generated Identity token
|
127
|
+
:param pulumi.Input[builtins.str] public_key: User public key pair
|
128
|
+
: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.
|
129
|
+
:param pulumi.Input[builtins.str] redis_user: Redis User generating identity token.
|
130
|
+
|
131
|
+
|
132
|
+
** IMPORTANT **
|
133
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
134
|
+
"""
|
135
|
+
if defined_tags is not None:
|
136
|
+
pulumi.set(__self__, "defined_tags", defined_tags)
|
137
|
+
if freeform_tags is not None:
|
138
|
+
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
139
|
+
if identity_token is not None:
|
140
|
+
pulumi.set(__self__, "identity_token", identity_token)
|
141
|
+
if public_key is not None:
|
142
|
+
pulumi.set(__self__, "public_key", public_key)
|
143
|
+
if redis_cluster_id is not None:
|
144
|
+
pulumi.set(__self__, "redis_cluster_id", redis_cluster_id)
|
145
|
+
if redis_user is not None:
|
146
|
+
pulumi.set(__self__, "redis_user", redis_user)
|
147
|
+
|
148
|
+
@property
|
149
|
+
@pulumi.getter(name="definedTags")
|
150
|
+
def defined_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
151
|
+
"""
|
152
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
153
|
+
"""
|
154
|
+
return pulumi.get(self, "defined_tags")
|
155
|
+
|
156
|
+
@defined_tags.setter
|
157
|
+
def defined_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
158
|
+
pulumi.set(self, "defined_tags", value)
|
159
|
+
|
160
|
+
@property
|
161
|
+
@pulumi.getter(name="freeformTags")
|
162
|
+
def freeform_tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]:
|
163
|
+
"""
|
164
|
+
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
165
|
+
"""
|
166
|
+
return pulumi.get(self, "freeform_tags")
|
167
|
+
|
168
|
+
@freeform_tags.setter
|
169
|
+
def freeform_tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]]):
|
170
|
+
pulumi.set(self, "freeform_tags", value)
|
171
|
+
|
172
|
+
@property
|
173
|
+
@pulumi.getter(name="identityToken")
|
174
|
+
def identity_token(self) -> Optional[pulumi.Input[builtins.str]]:
|
175
|
+
"""
|
176
|
+
Generated Identity token
|
177
|
+
"""
|
178
|
+
return pulumi.get(self, "identity_token")
|
179
|
+
|
180
|
+
@identity_token.setter
|
181
|
+
def identity_token(self, value: Optional[pulumi.Input[builtins.str]]):
|
182
|
+
pulumi.set(self, "identity_token", value)
|
183
|
+
|
184
|
+
@property
|
185
|
+
@pulumi.getter(name="publicKey")
|
186
|
+
def public_key(self) -> Optional[pulumi.Input[builtins.str]]:
|
187
|
+
"""
|
188
|
+
User public key pair
|
189
|
+
"""
|
190
|
+
return pulumi.get(self, "public_key")
|
191
|
+
|
192
|
+
@public_key.setter
|
193
|
+
def public_key(self, value: Optional[pulumi.Input[builtins.str]]):
|
194
|
+
pulumi.set(self, "public_key", value)
|
195
|
+
|
196
|
+
@property
|
197
|
+
@pulumi.getter(name="redisClusterId")
|
198
|
+
def redis_cluster_id(self) -> Optional[pulumi.Input[builtins.str]]:
|
199
|
+
"""
|
200
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster.
|
201
|
+
"""
|
202
|
+
return pulumi.get(self, "redis_cluster_id")
|
203
|
+
|
204
|
+
@redis_cluster_id.setter
|
205
|
+
def redis_cluster_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
206
|
+
pulumi.set(self, "redis_cluster_id", value)
|
207
|
+
|
208
|
+
@property
|
209
|
+
@pulumi.getter(name="redisUser")
|
210
|
+
def redis_user(self) -> Optional[pulumi.Input[builtins.str]]:
|
211
|
+
"""
|
212
|
+
Redis User generating identity token.
|
213
|
+
|
214
|
+
|
215
|
+
** IMPORTANT **
|
216
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
217
|
+
"""
|
218
|
+
return pulumi.get(self, "redis_user")
|
219
|
+
|
220
|
+
@redis_user.setter
|
221
|
+
def redis_user(self, value: Optional[pulumi.Input[builtins.str]]):
|
222
|
+
pulumi.set(self, "redis_user", value)
|
223
|
+
|
224
|
+
|
225
|
+
@pulumi.type_token("oci:Redis/redisClusterCreateIdentityToken:RedisClusterCreateIdentityToken")
|
226
|
+
class RedisClusterCreateIdentityToken(pulumi.CustomResource):
|
227
|
+
@overload
|
228
|
+
def __init__(__self__,
|
229
|
+
resource_name: str,
|
230
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
231
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
232
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
233
|
+
public_key: Optional[pulumi.Input[builtins.str]] = None,
|
234
|
+
redis_cluster_id: Optional[pulumi.Input[builtins.str]] = None,
|
235
|
+
redis_user: Optional[pulumi.Input[builtins.str]] = None,
|
236
|
+
__props__=None):
|
237
|
+
"""
|
238
|
+
This resource provides the Redis Cluster Create Identity Token resource in Oracle Cloud Infrastructure Redis service.
|
239
|
+
|
240
|
+
Generates an identity token to sign in with the specified redis user for the redis cluster
|
241
|
+
|
242
|
+
## Example Usage
|
243
|
+
|
244
|
+
```python
|
245
|
+
import pulumi
|
246
|
+
import pulumi_oci as oci
|
247
|
+
|
248
|
+
test_redis_cluster_create_identity_token = oci.redis.RedisClusterCreateIdentityToken("test_redis_cluster_create_identity_token",
|
249
|
+
public_key=redis_cluster_create_identity_token_public_key,
|
250
|
+
redis_cluster_id=test_redis_cluster["id"],
|
251
|
+
redis_user=redis_cluster_create_identity_token_redis_user,
|
252
|
+
defined_tags=redis_cluster_create_identity_token_defined_tags,
|
253
|
+
freeform_tags=redis_cluster_create_identity_token_freeform_tags)
|
254
|
+
```
|
255
|
+
|
256
|
+
## Import
|
257
|
+
|
258
|
+
Import is not supported for this resource.
|
259
|
+
|
260
|
+
:param str resource_name: The name of the resource.
|
261
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
262
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
263
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
264
|
+
:param pulumi.Input[builtins.str] public_key: User public key pair
|
265
|
+
: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.
|
266
|
+
:param pulumi.Input[builtins.str] redis_user: Redis User generating identity token.
|
267
|
+
|
268
|
+
|
269
|
+
** IMPORTANT **
|
270
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
271
|
+
"""
|
272
|
+
...
|
273
|
+
@overload
|
274
|
+
def __init__(__self__,
|
275
|
+
resource_name: str,
|
276
|
+
args: RedisClusterCreateIdentityTokenArgs,
|
277
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
278
|
+
"""
|
279
|
+
This resource provides the Redis Cluster Create Identity Token resource in Oracle Cloud Infrastructure Redis service.
|
280
|
+
|
281
|
+
Generates an identity token to sign in with the specified redis user for the redis cluster
|
282
|
+
|
283
|
+
## Example Usage
|
284
|
+
|
285
|
+
```python
|
286
|
+
import pulumi
|
287
|
+
import pulumi_oci as oci
|
288
|
+
|
289
|
+
test_redis_cluster_create_identity_token = oci.redis.RedisClusterCreateIdentityToken("test_redis_cluster_create_identity_token",
|
290
|
+
public_key=redis_cluster_create_identity_token_public_key,
|
291
|
+
redis_cluster_id=test_redis_cluster["id"],
|
292
|
+
redis_user=redis_cluster_create_identity_token_redis_user,
|
293
|
+
defined_tags=redis_cluster_create_identity_token_defined_tags,
|
294
|
+
freeform_tags=redis_cluster_create_identity_token_freeform_tags)
|
295
|
+
```
|
296
|
+
|
297
|
+
## Import
|
298
|
+
|
299
|
+
Import is not supported for this resource.
|
300
|
+
|
301
|
+
:param str resource_name: The name of the resource.
|
302
|
+
:param RedisClusterCreateIdentityTokenArgs args: The arguments to use to populate this resource's properties.
|
303
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
304
|
+
"""
|
305
|
+
...
|
306
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
307
|
+
resource_args, opts = _utilities.get_resource_args_opts(RedisClusterCreateIdentityTokenArgs, pulumi.ResourceOptions, *args, **kwargs)
|
308
|
+
if resource_args is not None:
|
309
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
310
|
+
else:
|
311
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
312
|
+
|
313
|
+
def _internal_init(__self__,
|
314
|
+
resource_name: str,
|
315
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
316
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
317
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
318
|
+
public_key: Optional[pulumi.Input[builtins.str]] = None,
|
319
|
+
redis_cluster_id: Optional[pulumi.Input[builtins.str]] = None,
|
320
|
+
redis_user: Optional[pulumi.Input[builtins.str]] = None,
|
321
|
+
__props__=None):
|
322
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
323
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
324
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
325
|
+
if opts.id is None:
|
326
|
+
if __props__ is not None:
|
327
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
328
|
+
__props__ = RedisClusterCreateIdentityTokenArgs.__new__(RedisClusterCreateIdentityTokenArgs)
|
329
|
+
|
330
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
331
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
332
|
+
if public_key is None and not opts.urn:
|
333
|
+
raise TypeError("Missing required property 'public_key'")
|
334
|
+
__props__.__dict__["public_key"] = public_key
|
335
|
+
if redis_cluster_id is None and not opts.urn:
|
336
|
+
raise TypeError("Missing required property 'redis_cluster_id'")
|
337
|
+
__props__.__dict__["redis_cluster_id"] = redis_cluster_id
|
338
|
+
if redis_user is None and not opts.urn:
|
339
|
+
raise TypeError("Missing required property 'redis_user'")
|
340
|
+
__props__.__dict__["redis_user"] = redis_user
|
341
|
+
__props__.__dict__["identity_token"] = None
|
342
|
+
super(RedisClusterCreateIdentityToken, __self__).__init__(
|
343
|
+
'oci:Redis/redisClusterCreateIdentityToken:RedisClusterCreateIdentityToken',
|
344
|
+
resource_name,
|
345
|
+
__props__,
|
346
|
+
opts)
|
347
|
+
|
348
|
+
@staticmethod
|
349
|
+
def get(resource_name: str,
|
350
|
+
id: pulumi.Input[str],
|
351
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
352
|
+
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
353
|
+
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
354
|
+
identity_token: Optional[pulumi.Input[builtins.str]] = None,
|
355
|
+
public_key: Optional[pulumi.Input[builtins.str]] = None,
|
356
|
+
redis_cluster_id: Optional[pulumi.Input[builtins.str]] = None,
|
357
|
+
redis_user: Optional[pulumi.Input[builtins.str]] = None) -> 'RedisClusterCreateIdentityToken':
|
358
|
+
"""
|
359
|
+
Get an existing RedisClusterCreateIdentityToken resource's state with the given name, id, and optional extra
|
360
|
+
properties used to qualify the lookup.
|
361
|
+
|
362
|
+
:param str resource_name: The unique name of the resulting resource.
|
363
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
364
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
365
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] defined_tags: Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
366
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
367
|
+
:param pulumi.Input[builtins.str] identity_token: Generated Identity token
|
368
|
+
:param pulumi.Input[builtins.str] public_key: User public key pair
|
369
|
+
: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.
|
370
|
+
:param pulumi.Input[builtins.str] redis_user: Redis User generating identity token.
|
371
|
+
|
372
|
+
|
373
|
+
** IMPORTANT **
|
374
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
375
|
+
"""
|
376
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
377
|
+
|
378
|
+
__props__ = _RedisClusterCreateIdentityTokenState.__new__(_RedisClusterCreateIdentityTokenState)
|
379
|
+
|
380
|
+
__props__.__dict__["defined_tags"] = defined_tags
|
381
|
+
__props__.__dict__["freeform_tags"] = freeform_tags
|
382
|
+
__props__.__dict__["identity_token"] = identity_token
|
383
|
+
__props__.__dict__["public_key"] = public_key
|
384
|
+
__props__.__dict__["redis_cluster_id"] = redis_cluster_id
|
385
|
+
__props__.__dict__["redis_user"] = redis_user
|
386
|
+
return RedisClusterCreateIdentityToken(resource_name, opts=opts, __props__=__props__)
|
387
|
+
|
388
|
+
@property
|
389
|
+
@pulumi.getter(name="definedTags")
|
390
|
+
def defined_tags(self) -> pulumi.Output[Optional[Mapping[str, builtins.str]]]:
|
391
|
+
"""
|
392
|
+
Defined tags for this resource. Each key is predefined and scoped to a namespace. Example: `{"foo-namespace.bar-key": "value"}`
|
393
|
+
"""
|
394
|
+
return pulumi.get(self, "defined_tags")
|
395
|
+
|
396
|
+
@property
|
397
|
+
@pulumi.getter(name="freeformTags")
|
398
|
+
def freeform_tags(self) -> pulumi.Output[Optional[Mapping[str, builtins.str]]]:
|
399
|
+
"""
|
400
|
+
Simple key-value pair that is applied without any predefined name, type or scope. Exists for cross-compatibility only. Example: `{"bar-key": "value"}`
|
401
|
+
"""
|
402
|
+
return pulumi.get(self, "freeform_tags")
|
403
|
+
|
404
|
+
@property
|
405
|
+
@pulumi.getter(name="identityToken")
|
406
|
+
def identity_token(self) -> pulumi.Output[builtins.str]:
|
407
|
+
"""
|
408
|
+
Generated Identity token
|
409
|
+
"""
|
410
|
+
return pulumi.get(self, "identity_token")
|
411
|
+
|
412
|
+
@property
|
413
|
+
@pulumi.getter(name="publicKey")
|
414
|
+
def public_key(self) -> pulumi.Output[builtins.str]:
|
415
|
+
"""
|
416
|
+
User public key pair
|
417
|
+
"""
|
418
|
+
return pulumi.get(self, "public_key")
|
419
|
+
|
420
|
+
@property
|
421
|
+
@pulumi.getter(name="redisClusterId")
|
422
|
+
def redis_cluster_id(self) -> pulumi.Output[builtins.str]:
|
423
|
+
"""
|
424
|
+
The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm#Oracle) of the cluster.
|
425
|
+
"""
|
426
|
+
return pulumi.get(self, "redis_cluster_id")
|
427
|
+
|
428
|
+
@property
|
429
|
+
@pulumi.getter(name="redisUser")
|
430
|
+
def redis_user(self) -> pulumi.Output[builtins.str]:
|
431
|
+
"""
|
432
|
+
Redis User generating identity token.
|
433
|
+
|
434
|
+
|
435
|
+
** IMPORTANT **
|
436
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
437
|
+
"""
|
438
|
+
return pulumi.get(self, "redis_user")
|
439
|
+
|