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
@@ -102,6 +102,12 @@ __all__ = [
|
|
102
102
|
'BdsInstanceNodeArgsDict',
|
103
103
|
'BdsInstanceNodeAttachedBlockVolumeArgs',
|
104
104
|
'BdsInstanceNodeAttachedBlockVolumeArgsDict',
|
105
|
+
'BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgs',
|
106
|
+
'BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgsDict',
|
107
|
+
'BdsInstanceNodeBackupLevelTypeDetailsArgs',
|
108
|
+
'BdsInstanceNodeBackupLevelTypeDetailsArgsDict',
|
109
|
+
'BdsInstanceNodeReplaceConfigurationLevelTypeDetailsArgs',
|
110
|
+
'BdsInstanceNodeReplaceConfigurationLevelTypeDetailsArgsDict',
|
105
111
|
'BdsInstanceOperationCertificateManagementsManagementHostCertDetailArgs',
|
106
112
|
'BdsInstanceOperationCertificateManagementsManagementHostCertDetailArgsDict',
|
107
113
|
'BdsInstanceOsPatchActionPatchingConfigsArgs',
|
@@ -134,6 +140,12 @@ __all__ = [
|
|
134
140
|
'GetBdsInstanceListOsPatchesFilterArgsDict',
|
135
141
|
'GetBdsInstanceMetastoreConfigsFilterArgs',
|
136
142
|
'GetBdsInstanceMetastoreConfigsFilterArgsDict',
|
143
|
+
'GetBdsInstanceNodeBackupConfigurationsFilterArgs',
|
144
|
+
'GetBdsInstanceNodeBackupConfigurationsFilterArgsDict',
|
145
|
+
'GetBdsInstanceNodeBackupsFilterArgs',
|
146
|
+
'GetBdsInstanceNodeBackupsFilterArgsDict',
|
147
|
+
'GetBdsInstanceNodeReplaceConfigurationsFilterArgs',
|
148
|
+
'GetBdsInstanceNodeReplaceConfigurationsFilterArgsDict',
|
137
149
|
'GetBdsInstancePatchHistoriesFilterArgs',
|
138
150
|
'GetBdsInstancePatchHistoriesFilterArgsDict',
|
139
151
|
'GetBdsInstancePatchesFilterArgs',
|
@@ -4162,6 +4174,231 @@ class BdsInstanceNodeAttachedBlockVolumeArgs:
|
|
4162
4174
|
pulumi.set(self, "volume_size_in_gbs", value)
|
4163
4175
|
|
4164
4176
|
|
4177
|
+
if not MYPY:
|
4178
|
+
class BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgsDict(TypedDict):
|
4179
|
+
level_type: pulumi.Input[builtins.str]
|
4180
|
+
"""
|
4181
|
+
(Updatable) Type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
|
4182
|
+
"""
|
4183
|
+
node_host_name: NotRequired[pulumi.Input[builtins.str]]
|
4184
|
+
"""
|
4185
|
+
(Updatable) Host name of the node to create backup configuration.
|
4186
|
+
"""
|
4187
|
+
node_type: NotRequired[pulumi.Input[builtins.str]]
|
4188
|
+
"""
|
4189
|
+
(Updatable) Type of the node or nodes of the node backup configuration or node replacement configuration which are going to be created. Accepted values are MASTER and UTILITY.
|
4190
|
+
"""
|
4191
|
+
elif False:
|
4192
|
+
BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgsDict: TypeAlias = Mapping[str, Any]
|
4193
|
+
|
4194
|
+
@pulumi.input_type
|
4195
|
+
class BdsInstanceNodeBackupConfigurationLevelTypeDetailsArgs:
|
4196
|
+
def __init__(__self__, *,
|
4197
|
+
level_type: pulumi.Input[builtins.str],
|
4198
|
+
node_host_name: Optional[pulumi.Input[builtins.str]] = None,
|
4199
|
+
node_type: Optional[pulumi.Input[builtins.str]] = None):
|
4200
|
+
"""
|
4201
|
+
:param pulumi.Input[builtins.str] level_type: (Updatable) Type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
|
4202
|
+
:param pulumi.Input[builtins.str] node_host_name: (Updatable) Host name of the node to create backup configuration.
|
4203
|
+
:param pulumi.Input[builtins.str] node_type: (Updatable) Type of the node or nodes of the node backup configuration or node replacement configuration which are going to be created. Accepted values are MASTER and UTILITY.
|
4204
|
+
"""
|
4205
|
+
pulumi.set(__self__, "level_type", level_type)
|
4206
|
+
if node_host_name is not None:
|
4207
|
+
pulumi.set(__self__, "node_host_name", node_host_name)
|
4208
|
+
if node_type is not None:
|
4209
|
+
pulumi.set(__self__, "node_type", node_type)
|
4210
|
+
|
4211
|
+
@property
|
4212
|
+
@pulumi.getter(name="levelType")
|
4213
|
+
def level_type(self) -> pulumi.Input[builtins.str]:
|
4214
|
+
"""
|
4215
|
+
(Updatable) Type of level used to trigger the creation of a new node backup configuration or node replacement configuration.
|
4216
|
+
"""
|
4217
|
+
return pulumi.get(self, "level_type")
|
4218
|
+
|
4219
|
+
@level_type.setter
|
4220
|
+
def level_type(self, value: pulumi.Input[builtins.str]):
|
4221
|
+
pulumi.set(self, "level_type", value)
|
4222
|
+
|
4223
|
+
@property
|
4224
|
+
@pulumi.getter(name="nodeHostName")
|
4225
|
+
def node_host_name(self) -> Optional[pulumi.Input[builtins.str]]:
|
4226
|
+
"""
|
4227
|
+
(Updatable) Host name of the node to create backup configuration.
|
4228
|
+
"""
|
4229
|
+
return pulumi.get(self, "node_host_name")
|
4230
|
+
|
4231
|
+
@node_host_name.setter
|
4232
|
+
def node_host_name(self, value: Optional[pulumi.Input[builtins.str]]):
|
4233
|
+
pulumi.set(self, "node_host_name", value)
|
4234
|
+
|
4235
|
+
@property
|
4236
|
+
@pulumi.getter(name="nodeType")
|
4237
|
+
def node_type(self) -> Optional[pulumi.Input[builtins.str]]:
|
4238
|
+
"""
|
4239
|
+
(Updatable) Type of the node or nodes of the node backup configuration or node replacement configuration which are going to be created. Accepted values are MASTER and UTILITY.
|
4240
|
+
"""
|
4241
|
+
return pulumi.get(self, "node_type")
|
4242
|
+
|
4243
|
+
@node_type.setter
|
4244
|
+
def node_type(self, value: Optional[pulumi.Input[builtins.str]]):
|
4245
|
+
pulumi.set(self, "node_type", value)
|
4246
|
+
|
4247
|
+
|
4248
|
+
if not MYPY:
|
4249
|
+
class BdsInstanceNodeBackupLevelTypeDetailsArgsDict(TypedDict):
|
4250
|
+
level_type: pulumi.Input[builtins.str]
|
4251
|
+
"""
|
4252
|
+
Type of level used to trigger the creation of a new node backup.
|
4253
|
+
"""
|
4254
|
+
node_host_name: NotRequired[pulumi.Input[builtins.str]]
|
4255
|
+
"""
|
4256
|
+
(Updatable) Host name of the node to create backup.
|
4257
|
+
"""
|
4258
|
+
node_type: NotRequired[pulumi.Input[builtins.str]]
|
4259
|
+
"""
|
4260
|
+
(Updatable) Type of the node or nodes of the node backup which are going to be created.
|
4261
|
+
|
4262
|
+
|
4263
|
+
** IMPORTANT **
|
4264
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
4265
|
+
"""
|
4266
|
+
elif False:
|
4267
|
+
BdsInstanceNodeBackupLevelTypeDetailsArgsDict: TypeAlias = Mapping[str, Any]
|
4268
|
+
|
4269
|
+
@pulumi.input_type
|
4270
|
+
class BdsInstanceNodeBackupLevelTypeDetailsArgs:
|
4271
|
+
def __init__(__self__, *,
|
4272
|
+
level_type: pulumi.Input[builtins.str],
|
4273
|
+
node_host_name: Optional[pulumi.Input[builtins.str]] = None,
|
4274
|
+
node_type: Optional[pulumi.Input[builtins.str]] = None):
|
4275
|
+
"""
|
4276
|
+
:param pulumi.Input[builtins.str] level_type: Type of level used to trigger the creation of a new node backup.
|
4277
|
+
:param pulumi.Input[builtins.str] node_host_name: (Updatable) Host name of the node to create backup.
|
4278
|
+
:param pulumi.Input[builtins.str] node_type: (Updatable) Type of the node or nodes of the node backup which are going to be created.
|
4279
|
+
|
4280
|
+
|
4281
|
+
** IMPORTANT **
|
4282
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
4283
|
+
"""
|
4284
|
+
pulumi.set(__self__, "level_type", level_type)
|
4285
|
+
if node_host_name is not None:
|
4286
|
+
pulumi.set(__self__, "node_host_name", node_host_name)
|
4287
|
+
if node_type is not None:
|
4288
|
+
pulumi.set(__self__, "node_type", node_type)
|
4289
|
+
|
4290
|
+
@property
|
4291
|
+
@pulumi.getter(name="levelType")
|
4292
|
+
def level_type(self) -> pulumi.Input[builtins.str]:
|
4293
|
+
"""
|
4294
|
+
Type of level used to trigger the creation of a new node backup.
|
4295
|
+
"""
|
4296
|
+
return pulumi.get(self, "level_type")
|
4297
|
+
|
4298
|
+
@level_type.setter
|
4299
|
+
def level_type(self, value: pulumi.Input[builtins.str]):
|
4300
|
+
pulumi.set(self, "level_type", value)
|
4301
|
+
|
4302
|
+
@property
|
4303
|
+
@pulumi.getter(name="nodeHostName")
|
4304
|
+
def node_host_name(self) -> Optional[pulumi.Input[builtins.str]]:
|
4305
|
+
"""
|
4306
|
+
(Updatable) Host name of the node to create backup.
|
4307
|
+
"""
|
4308
|
+
return pulumi.get(self, "node_host_name")
|
4309
|
+
|
4310
|
+
@node_host_name.setter
|
4311
|
+
def node_host_name(self, value: Optional[pulumi.Input[builtins.str]]):
|
4312
|
+
pulumi.set(self, "node_host_name", value)
|
4313
|
+
|
4314
|
+
@property
|
4315
|
+
@pulumi.getter(name="nodeType")
|
4316
|
+
def node_type(self) -> Optional[pulumi.Input[builtins.str]]:
|
4317
|
+
"""
|
4318
|
+
(Updatable) Type of the node or nodes of the node backup which are going to be created.
|
4319
|
+
|
4320
|
+
|
4321
|
+
** IMPORTANT **
|
4322
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
4323
|
+
"""
|
4324
|
+
return pulumi.get(self, "node_type")
|
4325
|
+
|
4326
|
+
@node_type.setter
|
4327
|
+
def node_type(self, value: Optional[pulumi.Input[builtins.str]]):
|
4328
|
+
pulumi.set(self, "node_type", value)
|
4329
|
+
|
4330
|
+
|
4331
|
+
if not MYPY:
|
4332
|
+
class BdsInstanceNodeReplaceConfigurationLevelTypeDetailsArgsDict(TypedDict):
|
4333
|
+
level_type: pulumi.Input[builtins.str]
|
4334
|
+
"""
|
4335
|
+
(Updatable) Type of level used to trigger the creation of a new node backup configuration or node replacement configuration. Accepted values are NODE_LEVEL and NODE_TYPE_LEVEL.
|
4336
|
+
"""
|
4337
|
+
node_host_name: NotRequired[pulumi.Input[builtins.str]]
|
4338
|
+
"""
|
4339
|
+
(Updatable) Host name of the node to create backup configuration.
|
4340
|
+
"""
|
4341
|
+
node_type: NotRequired[pulumi.Input[builtins.str]]
|
4342
|
+
"""
|
4343
|
+
(Updatable) Type of the node or nodes of the node backup configuration or node replacement configuration which are going to be created.
|
4344
|
+
"""
|
4345
|
+
elif False:
|
4346
|
+
BdsInstanceNodeReplaceConfigurationLevelTypeDetailsArgsDict: TypeAlias = Mapping[str, Any]
|
4347
|
+
|
4348
|
+
@pulumi.input_type
|
4349
|
+
class BdsInstanceNodeReplaceConfigurationLevelTypeDetailsArgs:
|
4350
|
+
def __init__(__self__, *,
|
4351
|
+
level_type: pulumi.Input[builtins.str],
|
4352
|
+
node_host_name: Optional[pulumi.Input[builtins.str]] = None,
|
4353
|
+
node_type: Optional[pulumi.Input[builtins.str]] = None):
|
4354
|
+
"""
|
4355
|
+
:param pulumi.Input[builtins.str] level_type: (Updatable) Type of level used to trigger the creation of a new node backup configuration or node replacement configuration. Accepted values are NODE_LEVEL and NODE_TYPE_LEVEL.
|
4356
|
+
:param pulumi.Input[builtins.str] node_host_name: (Updatable) Host name of the node to create backup configuration.
|
4357
|
+
:param pulumi.Input[builtins.str] node_type: (Updatable) Type of the node or nodes of the node backup configuration or node replacement configuration which are going to be created.
|
4358
|
+
"""
|
4359
|
+
pulumi.set(__self__, "level_type", level_type)
|
4360
|
+
if node_host_name is not None:
|
4361
|
+
pulumi.set(__self__, "node_host_name", node_host_name)
|
4362
|
+
if node_type is not None:
|
4363
|
+
pulumi.set(__self__, "node_type", node_type)
|
4364
|
+
|
4365
|
+
@property
|
4366
|
+
@pulumi.getter(name="levelType")
|
4367
|
+
def level_type(self) -> pulumi.Input[builtins.str]:
|
4368
|
+
"""
|
4369
|
+
(Updatable) Type of level used to trigger the creation of a new node backup configuration or node replacement configuration. Accepted values are NODE_LEVEL and NODE_TYPE_LEVEL.
|
4370
|
+
"""
|
4371
|
+
return pulumi.get(self, "level_type")
|
4372
|
+
|
4373
|
+
@level_type.setter
|
4374
|
+
def level_type(self, value: pulumi.Input[builtins.str]):
|
4375
|
+
pulumi.set(self, "level_type", value)
|
4376
|
+
|
4377
|
+
@property
|
4378
|
+
@pulumi.getter(name="nodeHostName")
|
4379
|
+
def node_host_name(self) -> Optional[pulumi.Input[builtins.str]]:
|
4380
|
+
"""
|
4381
|
+
(Updatable) Host name of the node to create backup configuration.
|
4382
|
+
"""
|
4383
|
+
return pulumi.get(self, "node_host_name")
|
4384
|
+
|
4385
|
+
@node_host_name.setter
|
4386
|
+
def node_host_name(self, value: Optional[pulumi.Input[builtins.str]]):
|
4387
|
+
pulumi.set(self, "node_host_name", value)
|
4388
|
+
|
4389
|
+
@property
|
4390
|
+
@pulumi.getter(name="nodeType")
|
4391
|
+
def node_type(self) -> Optional[pulumi.Input[builtins.str]]:
|
4392
|
+
"""
|
4393
|
+
(Updatable) Type of the node or nodes of the node backup configuration or node replacement configuration which are going to be created.
|
4394
|
+
"""
|
4395
|
+
return pulumi.get(self, "node_type")
|
4396
|
+
|
4397
|
+
@node_type.setter
|
4398
|
+
def node_type(self, value: Optional[pulumi.Input[builtins.str]]):
|
4399
|
+
pulumi.set(self, "node_type", value)
|
4400
|
+
|
4401
|
+
|
4165
4402
|
if not MYPY:
|
4166
4403
|
class BdsInstanceOperationCertificateManagementsManagementHostCertDetailArgsDict(TypedDict):
|
4167
4404
|
certificate: NotRequired[pulumi.Input[builtins.str]]
|
@@ -5255,6 +5492,147 @@ class GetBdsInstanceMetastoreConfigsFilterArgs:
|
|
5255
5492
|
pulumi.set(self, "regex", value)
|
5256
5493
|
|
5257
5494
|
|
5495
|
+
if not MYPY:
|
5496
|
+
class GetBdsInstanceNodeBackupConfigurationsFilterArgsDict(TypedDict):
|
5497
|
+
name: builtins.str
|
5498
|
+
values: Sequence[builtins.str]
|
5499
|
+
regex: NotRequired[builtins.bool]
|
5500
|
+
elif False:
|
5501
|
+
GetBdsInstanceNodeBackupConfigurationsFilterArgsDict: TypeAlias = Mapping[str, Any]
|
5502
|
+
|
5503
|
+
@pulumi.input_type
|
5504
|
+
class GetBdsInstanceNodeBackupConfigurationsFilterArgs:
|
5505
|
+
def __init__(__self__, *,
|
5506
|
+
name: builtins.str,
|
5507
|
+
values: Sequence[builtins.str],
|
5508
|
+
regex: Optional[builtins.bool] = None):
|
5509
|
+
pulumi.set(__self__, "name", name)
|
5510
|
+
pulumi.set(__self__, "values", values)
|
5511
|
+
if regex is not None:
|
5512
|
+
pulumi.set(__self__, "regex", regex)
|
5513
|
+
|
5514
|
+
@property
|
5515
|
+
@pulumi.getter
|
5516
|
+
def name(self) -> builtins.str:
|
5517
|
+
return pulumi.get(self, "name")
|
5518
|
+
|
5519
|
+
@name.setter
|
5520
|
+
def name(self, value: builtins.str):
|
5521
|
+
pulumi.set(self, "name", value)
|
5522
|
+
|
5523
|
+
@property
|
5524
|
+
@pulumi.getter
|
5525
|
+
def values(self) -> Sequence[builtins.str]:
|
5526
|
+
return pulumi.get(self, "values")
|
5527
|
+
|
5528
|
+
@values.setter
|
5529
|
+
def values(self, value: Sequence[builtins.str]):
|
5530
|
+
pulumi.set(self, "values", value)
|
5531
|
+
|
5532
|
+
@property
|
5533
|
+
@pulumi.getter
|
5534
|
+
def regex(self) -> Optional[builtins.bool]:
|
5535
|
+
return pulumi.get(self, "regex")
|
5536
|
+
|
5537
|
+
@regex.setter
|
5538
|
+
def regex(self, value: Optional[builtins.bool]):
|
5539
|
+
pulumi.set(self, "regex", value)
|
5540
|
+
|
5541
|
+
|
5542
|
+
if not MYPY:
|
5543
|
+
class GetBdsInstanceNodeBackupsFilterArgsDict(TypedDict):
|
5544
|
+
name: builtins.str
|
5545
|
+
values: Sequence[builtins.str]
|
5546
|
+
regex: NotRequired[builtins.bool]
|
5547
|
+
elif False:
|
5548
|
+
GetBdsInstanceNodeBackupsFilterArgsDict: TypeAlias = Mapping[str, Any]
|
5549
|
+
|
5550
|
+
@pulumi.input_type
|
5551
|
+
class GetBdsInstanceNodeBackupsFilterArgs:
|
5552
|
+
def __init__(__self__, *,
|
5553
|
+
name: builtins.str,
|
5554
|
+
values: Sequence[builtins.str],
|
5555
|
+
regex: Optional[builtins.bool] = None):
|
5556
|
+
pulumi.set(__self__, "name", name)
|
5557
|
+
pulumi.set(__self__, "values", values)
|
5558
|
+
if regex is not None:
|
5559
|
+
pulumi.set(__self__, "regex", regex)
|
5560
|
+
|
5561
|
+
@property
|
5562
|
+
@pulumi.getter
|
5563
|
+
def name(self) -> builtins.str:
|
5564
|
+
return pulumi.get(self, "name")
|
5565
|
+
|
5566
|
+
@name.setter
|
5567
|
+
def name(self, value: builtins.str):
|
5568
|
+
pulumi.set(self, "name", value)
|
5569
|
+
|
5570
|
+
@property
|
5571
|
+
@pulumi.getter
|
5572
|
+
def values(self) -> Sequence[builtins.str]:
|
5573
|
+
return pulumi.get(self, "values")
|
5574
|
+
|
5575
|
+
@values.setter
|
5576
|
+
def values(self, value: Sequence[builtins.str]):
|
5577
|
+
pulumi.set(self, "values", value)
|
5578
|
+
|
5579
|
+
@property
|
5580
|
+
@pulumi.getter
|
5581
|
+
def regex(self) -> Optional[builtins.bool]:
|
5582
|
+
return pulumi.get(self, "regex")
|
5583
|
+
|
5584
|
+
@regex.setter
|
5585
|
+
def regex(self, value: Optional[builtins.bool]):
|
5586
|
+
pulumi.set(self, "regex", value)
|
5587
|
+
|
5588
|
+
|
5589
|
+
if not MYPY:
|
5590
|
+
class GetBdsInstanceNodeReplaceConfigurationsFilterArgsDict(TypedDict):
|
5591
|
+
name: builtins.str
|
5592
|
+
values: Sequence[builtins.str]
|
5593
|
+
regex: NotRequired[builtins.bool]
|
5594
|
+
elif False:
|
5595
|
+
GetBdsInstanceNodeReplaceConfigurationsFilterArgsDict: TypeAlias = Mapping[str, Any]
|
5596
|
+
|
5597
|
+
@pulumi.input_type
|
5598
|
+
class GetBdsInstanceNodeReplaceConfigurationsFilterArgs:
|
5599
|
+
def __init__(__self__, *,
|
5600
|
+
name: builtins.str,
|
5601
|
+
values: Sequence[builtins.str],
|
5602
|
+
regex: Optional[builtins.bool] = None):
|
5603
|
+
pulumi.set(__self__, "name", name)
|
5604
|
+
pulumi.set(__self__, "values", values)
|
5605
|
+
if regex is not None:
|
5606
|
+
pulumi.set(__self__, "regex", regex)
|
5607
|
+
|
5608
|
+
@property
|
5609
|
+
@pulumi.getter
|
5610
|
+
def name(self) -> builtins.str:
|
5611
|
+
return pulumi.get(self, "name")
|
5612
|
+
|
5613
|
+
@name.setter
|
5614
|
+
def name(self, value: builtins.str):
|
5615
|
+
pulumi.set(self, "name", value)
|
5616
|
+
|
5617
|
+
@property
|
5618
|
+
@pulumi.getter
|
5619
|
+
def values(self) -> Sequence[builtins.str]:
|
5620
|
+
return pulumi.get(self, "values")
|
5621
|
+
|
5622
|
+
@values.setter
|
5623
|
+
def values(self, value: Sequence[builtins.str]):
|
5624
|
+
pulumi.set(self, "values", value)
|
5625
|
+
|
5626
|
+
@property
|
5627
|
+
@pulumi.getter
|
5628
|
+
def regex(self) -> Optional[builtins.bool]:
|
5629
|
+
return pulumi.get(self, "regex")
|
5630
|
+
|
5631
|
+
@regex.setter
|
5632
|
+
def regex(self, value: Optional[builtins.bool]):
|
5633
|
+
pulumi.set(self, "regex", value)
|
5634
|
+
|
5635
|
+
|
5258
5636
|
if not MYPY:
|
5259
5637
|
class GetBdsInstancePatchHistoriesFilterArgsDict(TypedDict):
|
5260
5638
|
name: builtins.str
|