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
@@ -74,21 +74,48 @@ class VaultVerificationArgs:
|
|
74
74
|
@pulumi.input_type
|
75
75
|
class _VaultVerificationState:
|
76
76
|
def __init__(__self__, *,
|
77
|
+
crypto_endpoint: Optional[pulumi.Input[builtins.str]] = None,
|
78
|
+
management_endpoint: Optional[pulumi.Input[builtins.str]] = None,
|
77
79
|
replica_region: Optional[pulumi.Input[builtins.str]] = None,
|
78
80
|
replica_vault_metadata: Optional[pulumi.Input['VaultVerificationReplicaVaultMetadataArgs']] = None,
|
79
|
-
vault_id: Optional[pulumi.Input[builtins.str]] = None
|
81
|
+
vault_id: Optional[pulumi.Input[builtins.str]] = None,
|
82
|
+
vault_replica_status: Optional[pulumi.Input[builtins.str]] = None):
|
80
83
|
"""
|
81
84
|
Input properties used for looking up and filtering VaultVerification resources.
|
82
85
|
:param pulumi.Input[builtins.str] replica_region: (Updatable) The region to be created replica to. When updated,
|
83
86
|
replica will be deleted from old region, and created to updated region.
|
84
87
|
:param pulumi.Input[builtins.str] vault_id: The OCID of the primary vault to create replica from.
|
85
88
|
"""
|
89
|
+
if crypto_endpoint is not None:
|
90
|
+
pulumi.set(__self__, "crypto_endpoint", crypto_endpoint)
|
91
|
+
if management_endpoint is not None:
|
92
|
+
pulumi.set(__self__, "management_endpoint", management_endpoint)
|
86
93
|
if replica_region is not None:
|
87
94
|
pulumi.set(__self__, "replica_region", replica_region)
|
88
95
|
if replica_vault_metadata is not None:
|
89
96
|
pulumi.set(__self__, "replica_vault_metadata", replica_vault_metadata)
|
90
97
|
if vault_id is not None:
|
91
98
|
pulumi.set(__self__, "vault_id", vault_id)
|
99
|
+
if vault_replica_status is not None:
|
100
|
+
pulumi.set(__self__, "vault_replica_status", vault_replica_status)
|
101
|
+
|
102
|
+
@property
|
103
|
+
@pulumi.getter(name="cryptoEndpoint")
|
104
|
+
def crypto_endpoint(self) -> Optional[pulumi.Input[builtins.str]]:
|
105
|
+
return pulumi.get(self, "crypto_endpoint")
|
106
|
+
|
107
|
+
@crypto_endpoint.setter
|
108
|
+
def crypto_endpoint(self, value: Optional[pulumi.Input[builtins.str]]):
|
109
|
+
pulumi.set(self, "crypto_endpoint", value)
|
110
|
+
|
111
|
+
@property
|
112
|
+
@pulumi.getter(name="managementEndpoint")
|
113
|
+
def management_endpoint(self) -> Optional[pulumi.Input[builtins.str]]:
|
114
|
+
return pulumi.get(self, "management_endpoint")
|
115
|
+
|
116
|
+
@management_endpoint.setter
|
117
|
+
def management_endpoint(self, value: Optional[pulumi.Input[builtins.str]]):
|
118
|
+
pulumi.set(self, "management_endpoint", value)
|
92
119
|
|
93
120
|
@property
|
94
121
|
@pulumi.getter(name="replicaRegion")
|
@@ -124,6 +151,15 @@ class _VaultVerificationState:
|
|
124
151
|
def vault_id(self, value: Optional[pulumi.Input[builtins.str]]):
|
125
152
|
pulumi.set(self, "vault_id", value)
|
126
153
|
|
154
|
+
@property
|
155
|
+
@pulumi.getter(name="vaultReplicaStatus")
|
156
|
+
def vault_replica_status(self) -> Optional[pulumi.Input[builtins.str]]:
|
157
|
+
return pulumi.get(self, "vault_replica_status")
|
158
|
+
|
159
|
+
@vault_replica_status.setter
|
160
|
+
def vault_replica_status(self, value: Optional[pulumi.Input[builtins.str]]):
|
161
|
+
pulumi.set(self, "vault_replica_status", value)
|
162
|
+
|
127
163
|
|
128
164
|
@pulumi.type_token("oci:Kms/vaultVerification:VaultVerification")
|
129
165
|
class VaultVerification(pulumi.CustomResource):
|
@@ -221,6 +257,9 @@ class VaultVerification(pulumi.CustomResource):
|
|
221
257
|
if vault_id is None and not opts.urn:
|
222
258
|
raise TypeError("Missing required property 'vault_id'")
|
223
259
|
__props__.__dict__["vault_id"] = vault_id
|
260
|
+
__props__.__dict__["crypto_endpoint"] = None
|
261
|
+
__props__.__dict__["management_endpoint"] = None
|
262
|
+
__props__.__dict__["vault_replica_status"] = None
|
224
263
|
super(VaultVerification, __self__).__init__(
|
225
264
|
'oci:Kms/vaultVerification:VaultVerification',
|
226
265
|
resource_name,
|
@@ -231,9 +270,12 @@ class VaultVerification(pulumi.CustomResource):
|
|
231
270
|
def get(resource_name: str,
|
232
271
|
id: pulumi.Input[str],
|
233
272
|
opts: Optional[pulumi.ResourceOptions] = None,
|
273
|
+
crypto_endpoint: Optional[pulumi.Input[builtins.str]] = None,
|
274
|
+
management_endpoint: Optional[pulumi.Input[builtins.str]] = None,
|
234
275
|
replica_region: Optional[pulumi.Input[builtins.str]] = None,
|
235
276
|
replica_vault_metadata: Optional[pulumi.Input[Union['VaultVerificationReplicaVaultMetadataArgs', 'VaultVerificationReplicaVaultMetadataArgsDict']]] = None,
|
236
|
-
vault_id: Optional[pulumi.Input[builtins.str]] = None
|
277
|
+
vault_id: Optional[pulumi.Input[builtins.str]] = None,
|
278
|
+
vault_replica_status: Optional[pulumi.Input[builtins.str]] = None) -> 'VaultVerification':
|
237
279
|
"""
|
238
280
|
Get an existing VaultVerification resource's state with the given name, id, and optional extra
|
239
281
|
properties used to qualify the lookup.
|
@@ -249,11 +291,24 @@ class VaultVerification(pulumi.CustomResource):
|
|
249
291
|
|
250
292
|
__props__ = _VaultVerificationState.__new__(_VaultVerificationState)
|
251
293
|
|
294
|
+
__props__.__dict__["crypto_endpoint"] = crypto_endpoint
|
295
|
+
__props__.__dict__["management_endpoint"] = management_endpoint
|
252
296
|
__props__.__dict__["replica_region"] = replica_region
|
253
297
|
__props__.__dict__["replica_vault_metadata"] = replica_vault_metadata
|
254
298
|
__props__.__dict__["vault_id"] = vault_id
|
299
|
+
__props__.__dict__["vault_replica_status"] = vault_replica_status
|
255
300
|
return VaultVerification(resource_name, opts=opts, __props__=__props__)
|
256
301
|
|
302
|
+
@property
|
303
|
+
@pulumi.getter(name="cryptoEndpoint")
|
304
|
+
def crypto_endpoint(self) -> pulumi.Output[builtins.str]:
|
305
|
+
return pulumi.get(self, "crypto_endpoint")
|
306
|
+
|
307
|
+
@property
|
308
|
+
@pulumi.getter(name="managementEndpoint")
|
309
|
+
def management_endpoint(self) -> pulumi.Output[builtins.str]:
|
310
|
+
return pulumi.get(self, "management_endpoint")
|
311
|
+
|
257
312
|
@property
|
258
313
|
@pulumi.getter(name="replicaRegion")
|
259
314
|
def replica_region(self) -> pulumi.Output[builtins.str]:
|
@@ -276,3 +331,8 @@ class VaultVerification(pulumi.CustomResource):
|
|
276
331
|
"""
|
277
332
|
return pulumi.get(self, "vault_id")
|
278
333
|
|
334
|
+
@property
|
335
|
+
@pulumi.getter(name="vaultReplicaStatus")
|
336
|
+
def vault_replica_status(self) -> pulumi.Output[builtins.str]:
|
337
|
+
return pulumi.get(self, "vault_replica_status")
|
338
|
+
|
@@ -108,7 +108,11 @@ if not MYPY:
|
|
108
108
|
"""
|
109
109
|
max_connections: NotRequired[pulumi.Input[builtins.int]]
|
110
110
|
"""
|
111
|
-
(Updatable) The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set then the maximum number of simultaneous connections the load balancer can make to the backend is unlimited.
|
111
|
+
(Updatable) The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set or set to 0 then the maximum number of simultaneous connections the load balancer can make to the backend is unlimited.
|
112
|
+
|
113
|
+
If setting maxConnections to some value other than 0 then that value must be greater or equal to 256.
|
114
|
+
|
115
|
+
Example: `300`
|
112
116
|
"""
|
113
117
|
name: NotRequired[pulumi.Input[builtins.str]]
|
114
118
|
"""
|
@@ -149,7 +153,11 @@ class BackendSetBackendArgs:
|
|
149
153
|
|
150
154
|
Example: `false`
|
151
155
|
:param pulumi.Input[builtins.bool] drain: (Updatable) Whether the load balancer should drain this server. Servers marked "drain" receive no new incoming traffic. Example: `false`
|
152
|
-
:param pulumi.Input[builtins.int] max_connections: (Updatable) The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set then the maximum number of simultaneous connections the load balancer can make to the backend is unlimited.
|
156
|
+
:param pulumi.Input[builtins.int] max_connections: (Updatable) The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set or set to 0 then the maximum number of simultaneous connections the load balancer can make to the backend is unlimited.
|
157
|
+
|
158
|
+
If setting maxConnections to some value other than 0 then that value must be greater or equal to 256.
|
159
|
+
|
160
|
+
Example: `300`
|
153
161
|
:param pulumi.Input[builtins.str] name: A friendly name for the backend set. It must be unique and it cannot be changed.
|
154
162
|
|
155
163
|
Valid backend set names include only alphanumeric characters, dashes, and underscores. Backend set names cannot contain spaces. Avoid entering confidential information.
|
@@ -229,7 +237,11 @@ class BackendSetBackendArgs:
|
|
229
237
|
@pulumi.getter(name="maxConnections")
|
230
238
|
def max_connections(self) -> Optional[pulumi.Input[builtins.int]]:
|
231
239
|
"""
|
232
|
-
(Updatable) The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set then the maximum number of simultaneous connections the load balancer can make to the backend is unlimited.
|
240
|
+
(Updatable) The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set or set to 0 then the maximum number of simultaneous connections the load balancer can make to the backend is unlimited.
|
241
|
+
|
242
|
+
If setting maxConnections to some value other than 0 then that value must be greater or equal to 256.
|
243
|
+
|
244
|
+
Example: `300`
|
233
245
|
"""
|
234
246
|
return pulumi.get(self, "max_connections")
|
235
247
|
|
@@ -1555,7 +1567,9 @@ if not MYPY:
|
|
1555
1567
|
|
1556
1568
|
Reserved IPs will not be deleted when the Load balancer is deleted. They will be unattached from the Load balancer.
|
1557
1569
|
|
1558
|
-
Example: "ocid1.publicip.oc1.phx.unique_ID"
|
1570
|
+
Example: "ocid1.publicip.oc1.phx.unique_ID"
|
1571
|
+
|
1572
|
+
IPV6 example: "ocid1.ipv6.oc1.phx.unique_ID" Ocid of the pre-created public IP that should be attached to this load balancer. The public IP will be attached to a private IP. **Note** If public IP resource is present in the config, the pulumi preview will throw `After applying this step and refreshing, the plan was not empty` error, and `private_ip_id` needs to be added as an input argument to the public IP resource block or ignore from its lifecycle as shown in examples to resolve this error.
|
1559
1573
|
"""
|
1560
1574
|
elif False:
|
1561
1575
|
LoadBalancerReservedIpArgsDict: TypeAlias = Mapping[str, Any]
|
@@ -1573,7 +1587,9 @@ class LoadBalancerReservedIpArgs:
|
|
1573
1587
|
|
1574
1588
|
Reserved IPs will not be deleted when the Load balancer is deleted. They will be unattached from the Load balancer.
|
1575
1589
|
|
1576
|
-
Example: "ocid1.publicip.oc1.phx.unique_ID"
|
1590
|
+
Example: "ocid1.publicip.oc1.phx.unique_ID"
|
1591
|
+
|
1592
|
+
IPV6 example: "ocid1.ipv6.oc1.phx.unique_ID" Ocid of the pre-created public IP that should be attached to this load balancer. The public IP will be attached to a private IP. **Note** If public IP resource is present in the config, the pulumi preview will throw `After applying this step and refreshing, the plan was not empty` error, and `private_ip_id` needs to be added as an input argument to the public IP resource block or ignore from its lifecycle as shown in examples to resolve this error.
|
1577
1593
|
"""
|
1578
1594
|
if id is not None:
|
1579
1595
|
pulumi.set(__self__, "id", id)
|
@@ -1590,7 +1606,9 @@ class LoadBalancerReservedIpArgs:
|
|
1590
1606
|
|
1591
1607
|
Reserved IPs will not be deleted when the Load balancer is deleted. They will be unattached from the Load balancer.
|
1592
1608
|
|
1593
|
-
Example: "ocid1.publicip.oc1.phx.unique_ID"
|
1609
|
+
Example: "ocid1.publicip.oc1.phx.unique_ID"
|
1610
|
+
|
1611
|
+
IPV6 example: "ocid1.ipv6.oc1.phx.unique_ID" Ocid of the pre-created public IP that should be attached to this load balancer. The public IP will be attached to a private IP. **Note** If public IP resource is present in the config, the pulumi preview will throw `After applying this step and refreshing, the plan was not empty` error, and `private_ip_id` needs to be added as an input argument to the public IP resource block or ignore from its lifecycle as shown in examples to resolve this error.
|
1594
1612
|
"""
|
1595
1613
|
return pulumi.get(self, "id")
|
1596
1614
|
|
@@ -41,7 +41,11 @@ class BackendArgs:
|
|
41
41
|
|
42
42
|
Example: `false`
|
43
43
|
:param pulumi.Input[builtins.bool] drain: (Updatable) Whether the load balancer should drain this server. Servers marked "drain" receive no new incoming traffic. Example: `false`
|
44
|
-
:param pulumi.Input[builtins.int] max_connections: (Updatable) The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set then number of simultaneous connections the load balancer can make to the backend is unlimited.
|
44
|
+
:param pulumi.Input[builtins.int] max_connections: (Updatable) The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set or set to 0 then the maximum number of simultaneous connections the load balancer can make to the backend is unlimited.
|
45
|
+
|
46
|
+
If setting maxConnections to some value other than 0 then that value must be greater or equal to 256.
|
47
|
+
|
48
|
+
Example: `300`
|
45
49
|
:param pulumi.Input[builtins.bool] offline: (Updatable) Whether the load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`
|
46
50
|
:param pulumi.Input[builtins.int] weight: (Updatable) The load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives 3 times the number of new connections as a server weighted '1'. For more information on load balancing policies, see [How Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/Balance/Reference/lbpolicies.htm). Example: `3`
|
47
51
|
|
@@ -144,7 +148,11 @@ class BackendArgs:
|
|
144
148
|
@pulumi.getter(name="maxConnections")
|
145
149
|
def max_connections(self) -> Optional[pulumi.Input[builtins.int]]:
|
146
150
|
"""
|
147
|
-
(Updatable) The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set then number of simultaneous connections the load balancer can make to the backend is unlimited.
|
151
|
+
(Updatable) The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set or set to 0 then the maximum number of simultaneous connections the load balancer can make to the backend is unlimited.
|
152
|
+
|
153
|
+
If setting maxConnections to some value other than 0 then that value must be greater or equal to 256.
|
154
|
+
|
155
|
+
Example: `300`
|
148
156
|
"""
|
149
157
|
return pulumi.get(self, "max_connections")
|
150
158
|
|
@@ -206,7 +214,11 @@ class _BackendState:
|
|
206
214
|
:param pulumi.Input[builtins.bool] drain: (Updatable) Whether the load balancer should drain this server. Servers marked "drain" receive no new incoming traffic. Example: `false`
|
207
215
|
:param pulumi.Input[builtins.str] ip_address: The IP address of the backend server. Example: `10.0.0.3`
|
208
216
|
:param pulumi.Input[builtins.str] load_balancer_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the load balancer associated with the backend set and servers.
|
209
|
-
:param pulumi.Input[builtins.int] max_connections: (Updatable) The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set then number of simultaneous connections the load balancer can make to the backend is unlimited.
|
217
|
+
:param pulumi.Input[builtins.int] max_connections: (Updatable) The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set or set to 0 then the maximum number of simultaneous connections the load balancer can make to the backend is unlimited.
|
218
|
+
|
219
|
+
If setting maxConnections to some value other than 0 then that value must be greater or equal to 256.
|
220
|
+
|
221
|
+
Example: `300`
|
210
222
|
:param pulumi.Input[builtins.str] name: A read-only field showing the IP address and port that uniquely identify this backend server in the backend set. Example: `10.0.0.3:8080`
|
211
223
|
:param pulumi.Input[builtins.bool] offline: (Updatable) Whether the load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`
|
212
224
|
:param pulumi.Input[builtins.int] port: The communication port for the backend server. Example: `8080`
|
@@ -307,7 +319,11 @@ class _BackendState:
|
|
307
319
|
@pulumi.getter(name="maxConnections")
|
308
320
|
def max_connections(self) -> Optional[pulumi.Input[builtins.int]]:
|
309
321
|
"""
|
310
|
-
(Updatable) The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set then number of simultaneous connections the load balancer can make to the backend is unlimited.
|
322
|
+
(Updatable) The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set or set to 0 then the maximum number of simultaneous connections the load balancer can make to the backend is unlimited.
|
323
|
+
|
324
|
+
If setting maxConnections to some value other than 0 then that value must be greater or equal to 256.
|
325
|
+
|
326
|
+
Example: `300`
|
311
327
|
"""
|
312
328
|
return pulumi.get(self, "max_connections")
|
313
329
|
|
@@ -435,7 +451,11 @@ class Backend(pulumi.CustomResource):
|
|
435
451
|
:param pulumi.Input[builtins.bool] drain: (Updatable) Whether the load balancer should drain this server. Servers marked "drain" receive no new incoming traffic. Example: `false`
|
436
452
|
:param pulumi.Input[builtins.str] ip_address: The IP address of the backend server. Example: `10.0.0.3`
|
437
453
|
:param pulumi.Input[builtins.str] load_balancer_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the load balancer associated with the backend set and servers.
|
438
|
-
:param pulumi.Input[builtins.int] max_connections: (Updatable) The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set then number of simultaneous connections the load balancer can make to the backend is unlimited.
|
454
|
+
:param pulumi.Input[builtins.int] max_connections: (Updatable) The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set or set to 0 then the maximum number of simultaneous connections the load balancer can make to the backend is unlimited.
|
455
|
+
|
456
|
+
If setting maxConnections to some value other than 0 then that value must be greater or equal to 256.
|
457
|
+
|
458
|
+
Example: `300`
|
439
459
|
:param pulumi.Input[builtins.bool] offline: (Updatable) Whether the load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`
|
440
460
|
:param pulumi.Input[builtins.int] port: The communication port for the backend server. Example: `8080`
|
441
461
|
:param pulumi.Input[builtins.int] weight: (Updatable) The load balancing policy weight assigned to the server. Backend servers with a higher weight receive a larger proportion of incoming traffic. For example, a server weighted '3' receives 3 times the number of new connections as a server weighted '1'. For more information on load balancing policies, see [How Load Balancing Policies Work](https://docs.cloud.oracle.com/iaas/Content/Balance/Reference/lbpolicies.htm). Example: `3`
|
@@ -570,7 +590,11 @@ class Backend(pulumi.CustomResource):
|
|
570
590
|
:param pulumi.Input[builtins.bool] drain: (Updatable) Whether the load balancer should drain this server. Servers marked "drain" receive no new incoming traffic. Example: `false`
|
571
591
|
:param pulumi.Input[builtins.str] ip_address: The IP address of the backend server. Example: `10.0.0.3`
|
572
592
|
:param pulumi.Input[builtins.str] load_balancer_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the load balancer associated with the backend set and servers.
|
573
|
-
:param pulumi.Input[builtins.int] max_connections: (Updatable) The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set then number of simultaneous connections the load balancer can make to the backend is unlimited.
|
593
|
+
:param pulumi.Input[builtins.int] max_connections: (Updatable) The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set or set to 0 then the maximum number of simultaneous connections the load balancer can make to the backend is unlimited.
|
594
|
+
|
595
|
+
If setting maxConnections to some value other than 0 then that value must be greater or equal to 256.
|
596
|
+
|
597
|
+
Example: `300`
|
574
598
|
:param pulumi.Input[builtins.str] name: A read-only field showing the IP address and port that uniquely identify this backend server in the backend set. Example: `10.0.0.3:8080`
|
575
599
|
:param pulumi.Input[builtins.bool] offline: (Updatable) Whether the load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`
|
576
600
|
:param pulumi.Input[builtins.int] port: The communication port for the backend server. Example: `8080`
|
@@ -645,7 +669,11 @@ class Backend(pulumi.CustomResource):
|
|
645
669
|
@pulumi.getter(name="maxConnections")
|
646
670
|
def max_connections(self) -> pulumi.Output[builtins.int]:
|
647
671
|
"""
|
648
|
-
(Updatable) The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set then number of simultaneous connections the load balancer can make to the backend is unlimited.
|
672
|
+
(Updatable) The maximum number of simultaneous connections the load balancer can make to the backend. If this is not set or set to 0 then the maximum number of simultaneous connections the load balancer can make to the backend is unlimited.
|
673
|
+
|
674
|
+
If setting maxConnections to some value other than 0 then that value must be greater or equal to 256.
|
675
|
+
|
676
|
+
Example: `300`
|
649
677
|
"""
|
650
678
|
return pulumi.get(self, "max_connections")
|
651
679
|
|
@@ -35,7 +35,11 @@ class BackendSetArgs:
|
|
35
35
|
:param pulumi.Input['BackendSetHealthCheckerArgs'] health_checker: (Updatable) The health check policy's configuration details.
|
36
36
|
:param pulumi.Input[builtins.str] load_balancer_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the load balancer on which to add a backend set.
|
37
37
|
:param pulumi.Input[builtins.str] policy: (Updatable) The load balancer policy for the backend set. To get a list of available policies, use the [ListPolicies](https://docs.cloud.oracle.com/iaas/api/#/en/loadbalancer/20170115/LoadBalancerPolicy/ListPolicies) operation. Example: `LEAST_CONNECTIONS`
|
38
|
-
:param pulumi.Input[builtins.int] backend_max_connections: (Updatable) The maximum number of simultaneous connections the load balancer can make to any backend in the backend set unless the backend has its own maxConnections setting. If this is not set then the number of simultaneous connections the load balancer can make to any backend in the backend set unless the backend has its own maxConnections setting is unlimited.
|
38
|
+
:param pulumi.Input[builtins.int] backend_max_connections: (Updatable) The maximum number of simultaneous connections the load balancer can make to any backend in the backend set unless the backend has its own maxConnections setting. If this is not set or set to 0 then the number of simultaneous connections the load balancer can make to any backend in the backend set unless the backend has its own maxConnections setting is unlimited.
|
39
|
+
|
40
|
+
If setting backendMaxConnections to some value other than 0 then that value must be greater or equal to 256.
|
41
|
+
|
42
|
+
Example: `300`
|
39
43
|
:param pulumi.Input['BackendSetLbCookieSessionPersistenceConfigurationArgs'] lb_cookie_session_persistence_configuration: (Updatable) The configuration details for implementing load balancer cookie session persistence (LB cookie stickiness).
|
40
44
|
|
41
45
|
Session persistence enables the Load Balancing service to direct all requests that originate from a single logical client to a single backend web server. For more information, see [Session Persistence](https://docs.cloud.oracle.com/iaas/Content/Balance/Reference/sessionpersistence.htm).
|
@@ -127,7 +131,11 @@ class BackendSetArgs:
|
|
127
131
|
@pulumi.getter(name="backendMaxConnections")
|
128
132
|
def backend_max_connections(self) -> Optional[pulumi.Input[builtins.int]]:
|
129
133
|
"""
|
130
|
-
(Updatable) The maximum number of simultaneous connections the load balancer can make to any backend in the backend set unless the backend has its own maxConnections setting. If this is not set then the number of simultaneous connections the load balancer can make to any backend in the backend set unless the backend has its own maxConnections setting is unlimited.
|
134
|
+
(Updatable) The maximum number of simultaneous connections the load balancer can make to any backend in the backend set unless the backend has its own maxConnections setting. If this is not set or set to 0 then the number of simultaneous connections the load balancer can make to any backend in the backend set unless the backend has its own maxConnections setting is unlimited.
|
135
|
+
|
136
|
+
If setting backendMaxConnections to some value other than 0 then that value must be greater or equal to 256.
|
137
|
+
|
138
|
+
Example: `300`
|
131
139
|
"""
|
132
140
|
return pulumi.get(self, "backend_max_connections")
|
133
141
|
|
@@ -231,7 +239,11 @@ class _BackendSetState:
|
|
231
239
|
state: Optional[pulumi.Input[builtins.str]] = None):
|
232
240
|
"""
|
233
241
|
Input properties used for looking up and filtering BackendSet resources.
|
234
|
-
:param pulumi.Input[builtins.int] backend_max_connections: (Updatable) The maximum number of simultaneous connections the load balancer can make to any backend in the backend set unless the backend has its own maxConnections setting. If this is not set then the number of simultaneous connections the load balancer can make to any backend in the backend set unless the backend has its own maxConnections setting is unlimited.
|
242
|
+
:param pulumi.Input[builtins.int] backend_max_connections: (Updatable) The maximum number of simultaneous connections the load balancer can make to any backend in the backend set unless the backend has its own maxConnections setting. If this is not set or set to 0 then the number of simultaneous connections the load balancer can make to any backend in the backend set unless the backend has its own maxConnections setting is unlimited.
|
243
|
+
|
244
|
+
If setting backendMaxConnections to some value other than 0 then that value must be greater or equal to 256.
|
245
|
+
|
246
|
+
Example: `300`
|
235
247
|
:param pulumi.Input[Sequence[pulumi.Input['BackendSetBackendArgs']]] backends: (Updatable)
|
236
248
|
:param pulumi.Input['BackendSetHealthCheckerArgs'] health_checker: (Updatable) The health check policy's configuration details.
|
237
249
|
:param pulumi.Input['BackendSetLbCookieSessionPersistenceConfigurationArgs'] lb_cookie_session_persistence_configuration: (Updatable) The configuration details for implementing load balancer cookie session persistence (LB cookie stickiness).
|
@@ -298,7 +310,11 @@ class _BackendSetState:
|
|
298
310
|
@pulumi.getter(name="backendMaxConnections")
|
299
311
|
def backend_max_connections(self) -> Optional[pulumi.Input[builtins.int]]:
|
300
312
|
"""
|
301
|
-
(Updatable) The maximum number of simultaneous connections the load balancer can make to any backend in the backend set unless the backend has its own maxConnections setting. If this is not set then the number of simultaneous connections the load balancer can make to any backend in the backend set unless the backend has its own maxConnections setting is unlimited.
|
313
|
+
(Updatable) The maximum number of simultaneous connections the load balancer can make to any backend in the backend set unless the backend has its own maxConnections setting. If this is not set or set to 0 then the number of simultaneous connections the load balancer can make to any backend in the backend set unless the backend has its own maxConnections setting is unlimited.
|
314
|
+
|
315
|
+
If setting backendMaxConnections to some value other than 0 then that value must be greater or equal to 256.
|
316
|
+
|
317
|
+
Example: `300`
|
302
318
|
"""
|
303
319
|
return pulumi.get(self, "backend_max_connections")
|
304
320
|
|
@@ -528,7 +544,11 @@ class BackendSet(pulumi.CustomResource):
|
|
528
544
|
|
529
545
|
:param str resource_name: The name of the resource.
|
530
546
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
531
|
-
:param pulumi.Input[builtins.int] backend_max_connections: (Updatable) The maximum number of simultaneous connections the load balancer can make to any backend in the backend set unless the backend has its own maxConnections setting. If this is not set then the number of simultaneous connections the load balancer can make to any backend in the backend set unless the backend has its own maxConnections setting is unlimited.
|
547
|
+
:param pulumi.Input[builtins.int] backend_max_connections: (Updatable) The maximum number of simultaneous connections the load balancer can make to any backend in the backend set unless the backend has its own maxConnections setting. If this is not set or set to 0 then the number of simultaneous connections the load balancer can make to any backend in the backend set unless the backend has its own maxConnections setting is unlimited.
|
548
|
+
|
549
|
+
If setting backendMaxConnections to some value other than 0 then that value must be greater or equal to 256.
|
550
|
+
|
551
|
+
Example: `300`
|
532
552
|
:param pulumi.Input[Union['BackendSetHealthCheckerArgs', 'BackendSetHealthCheckerArgsDict']] health_checker: (Updatable) The health check policy's configuration details.
|
533
553
|
:param pulumi.Input[Union['BackendSetLbCookieSessionPersistenceConfigurationArgs', 'BackendSetLbCookieSessionPersistenceConfigurationArgsDict']] lb_cookie_session_persistence_configuration: (Updatable) The configuration details for implementing load balancer cookie session persistence (LB cookie stickiness).
|
534
554
|
|
@@ -717,7 +737,11 @@ class BackendSet(pulumi.CustomResource):
|
|
717
737
|
:param str resource_name: The unique name of the resulting resource.
|
718
738
|
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
719
739
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
720
|
-
:param pulumi.Input[builtins.int] backend_max_connections: (Updatable) The maximum number of simultaneous connections the load balancer can make to any backend in the backend set unless the backend has its own maxConnections setting. If this is not set then the number of simultaneous connections the load balancer can make to any backend in the backend set unless the backend has its own maxConnections setting is unlimited.
|
740
|
+
:param pulumi.Input[builtins.int] backend_max_connections: (Updatable) The maximum number of simultaneous connections the load balancer can make to any backend in the backend set unless the backend has its own maxConnections setting. If this is not set or set to 0 then the number of simultaneous connections the load balancer can make to any backend in the backend set unless the backend has its own maxConnections setting is unlimited.
|
741
|
+
|
742
|
+
If setting backendMaxConnections to some value other than 0 then that value must be greater or equal to 256.
|
743
|
+
|
744
|
+
Example: `300`
|
721
745
|
:param pulumi.Input[Sequence[pulumi.Input[Union['BackendSetBackendArgs', 'BackendSetBackendArgsDict']]]] backends: (Updatable)
|
722
746
|
:param pulumi.Input[Union['BackendSetHealthCheckerArgs', 'BackendSetHealthCheckerArgsDict']] health_checker: (Updatable) The health check policy's configuration details.
|
723
747
|
:param pulumi.Input[Union['BackendSetLbCookieSessionPersistenceConfigurationArgs', 'BackendSetLbCookieSessionPersistenceConfigurationArgsDict']] lb_cookie_session_persistence_configuration: (Updatable) The configuration details for implementing load balancer cookie session persistence (LB cookie stickiness).
|
@@ -779,7 +803,11 @@ class BackendSet(pulumi.CustomResource):
|
|
779
803
|
@pulumi.getter(name="backendMaxConnections")
|
780
804
|
def backend_max_connections(self) -> pulumi.Output[builtins.int]:
|
781
805
|
"""
|
782
|
-
(Updatable) The maximum number of simultaneous connections the load balancer can make to any backend in the backend set unless the backend has its own maxConnections setting. If this is not set then the number of simultaneous connections the load balancer can make to any backend in the backend set unless the backend has its own maxConnections setting is unlimited.
|
806
|
+
(Updatable) The maximum number of simultaneous connections the load balancer can make to any backend in the backend set unless the backend has its own maxConnections setting. If this is not set or set to 0 then the number of simultaneous connections the load balancer can make to any backend in the backend set unless the backend has its own maxConnections setting is unlimited.
|
807
|
+
|
808
|
+
If setting backendMaxConnections to some value other than 0 then that value must be greater or equal to 256.
|
809
|
+
|
810
|
+
Example: `300`
|
783
811
|
"""
|
784
812
|
return pulumi.get(self, "backend_max_connections")
|
785
813
|
|
@@ -38,7 +38,7 @@ class ListenerArgs:
|
|
38
38
|
:param pulumi.Input[builtins.str] default_backend_set_name: (Updatable) The name of the associated backend set. Example: `example_backend_set`
|
39
39
|
:param pulumi.Input[builtins.str] load_balancer_id: The [OCID](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/identifiers.htm) of the load balancer on which to add a listener.
|
40
40
|
:param pulumi.Input[builtins.int] port: (Updatable) The communication port for the listener. Example: `80`
|
41
|
-
:param pulumi.Input[builtins.str] protocol: (Updatable) The protocol on which the listener accepts connection requests.
|
41
|
+
:param pulumi.Input[builtins.str] protocol: (Updatable) The protocol on which the listener accepts connection requests. To get a list of valid protocols, use the [ListProtocols](https://docs.cloud.oracle.com/iaas/api/#/en/loadbalancer/20170115/LoadBalancerProtocol/ListProtocols) operation. Example: `HTTP`
|
42
42
|
:param pulumi.Input['ListenerConnectionConfigurationArgs'] connection_configuration: (Updatable) Configuration details for the connection between the client and backend servers.
|
43
43
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] hostname_names: (Updatable) An array of hostname resource names.
|
44
44
|
:param pulumi.Input[builtins.str] name: A friendly name for the listener. It must be unique and it cannot be changed. Avoid entering confidential information. Example: `example_listener`
|
@@ -112,7 +112,7 @@ class ListenerArgs:
|
|
112
112
|
@pulumi.getter
|
113
113
|
def protocol(self) -> pulumi.Input[builtins.str]:
|
114
114
|
"""
|
115
|
-
(Updatable) The protocol on which the listener accepts connection requests.
|
115
|
+
(Updatable) The protocol on which the listener accepts connection requests. To get a list of valid protocols, use the [ListProtocols](https://docs.cloud.oracle.com/iaas/api/#/en/loadbalancer/20170115/LoadBalancerProtocol/ListProtocols) operation. Example: `HTTP`
|
116
116
|
"""
|
117
117
|
return pulumi.get(self, "protocol")
|
118
118
|
|
@@ -239,7 +239,7 @@ class _ListenerState:
|
|
239
239
|
|
240
240
|
Example: `example_path_route_set`
|
241
241
|
:param pulumi.Input[builtins.int] port: (Updatable) The communication port for the listener. Example: `80`
|
242
|
-
:param pulumi.Input[builtins.str] protocol: (Updatable) The protocol on which the listener accepts connection requests.
|
242
|
+
:param pulumi.Input[builtins.str] protocol: (Updatable) The protocol on which the listener accepts connection requests. To get a list of valid protocols, use the [ListProtocols](https://docs.cloud.oracle.com/iaas/api/#/en/loadbalancer/20170115/LoadBalancerProtocol/ListProtocols) operation. Example: `HTTP`
|
243
243
|
:param pulumi.Input[builtins.str] routing_policy_name: (Updatable) The name of the routing policy applied to this listener's traffic. Example: `example_routing_policy`
|
244
244
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] rule_set_names: (Updatable) The names of the [rule sets](https://docs.cloud.oracle.com/iaas/api/#/en/loadbalancer/20170115/RuleSet/) to apply to the listener. Example: ["example_rule_set"]
|
245
245
|
:param pulumi.Input['ListenerSslConfigurationArgs'] ssl_configuration: (Updatable) The load balancer's SSL handling configuration details.
|
@@ -363,7 +363,7 @@ class _ListenerState:
|
|
363
363
|
@pulumi.getter
|
364
364
|
def protocol(self) -> Optional[pulumi.Input[builtins.str]]:
|
365
365
|
"""
|
366
|
-
(Updatable) The protocol on which the listener accepts connection requests.
|
366
|
+
(Updatable) The protocol on which the listener accepts connection requests. To get a list of valid protocols, use the [ListProtocols](https://docs.cloud.oracle.com/iaas/api/#/en/loadbalancer/20170115/LoadBalancerProtocol/ListProtocols) operation. Example: `HTTP`
|
367
367
|
"""
|
368
368
|
return pulumi.get(self, "protocol")
|
369
369
|
|
@@ -497,7 +497,7 @@ class Listener(pulumi.CustomResource):
|
|
497
497
|
|
498
498
|
Example: `example_path_route_set`
|
499
499
|
:param pulumi.Input[builtins.int] port: (Updatable) The communication port for the listener. Example: `80`
|
500
|
-
:param pulumi.Input[builtins.str] protocol: (Updatable) The protocol on which the listener accepts connection requests.
|
500
|
+
:param pulumi.Input[builtins.str] protocol: (Updatable) The protocol on which the listener accepts connection requests. To get a list of valid protocols, use the [ListProtocols](https://docs.cloud.oracle.com/iaas/api/#/en/loadbalancer/20170115/LoadBalancerProtocol/ListProtocols) operation. Example: `HTTP`
|
501
501
|
:param pulumi.Input[builtins.str] routing_policy_name: (Updatable) The name of the routing policy applied to this listener's traffic. Example: `example_routing_policy`
|
502
502
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] rule_set_names: (Updatable) The names of the [rule sets](https://docs.cloud.oracle.com/iaas/api/#/en/loadbalancer/20170115/RuleSet/) to apply to the listener. Example: ["example_rule_set"]
|
503
503
|
:param pulumi.Input[Union['ListenerSslConfigurationArgs', 'ListenerSslConfigurationArgsDict']] ssl_configuration: (Updatable) The load balancer's SSL handling configuration details.
|
@@ -652,7 +652,7 @@ class Listener(pulumi.CustomResource):
|
|
652
652
|
|
653
653
|
Example: `example_path_route_set`
|
654
654
|
:param pulumi.Input[builtins.int] port: (Updatable) The communication port for the listener. Example: `80`
|
655
|
-
:param pulumi.Input[builtins.str] protocol: (Updatable) The protocol on which the listener accepts connection requests.
|
655
|
+
:param pulumi.Input[builtins.str] protocol: (Updatable) The protocol on which the listener accepts connection requests. To get a list of valid protocols, use the [ListProtocols](https://docs.cloud.oracle.com/iaas/api/#/en/loadbalancer/20170115/LoadBalancerProtocol/ListProtocols) operation. Example: `HTTP`
|
656
656
|
:param pulumi.Input[builtins.str] routing_policy_name: (Updatable) The name of the routing policy applied to this listener's traffic. Example: `example_routing_policy`
|
657
657
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] rule_set_names: (Updatable) The names of the [rule sets](https://docs.cloud.oracle.com/iaas/api/#/en/loadbalancer/20170115/RuleSet/) to apply to the listener. Example: ["example_rule_set"]
|
658
658
|
:param pulumi.Input[Union['ListenerSslConfigurationArgs', 'ListenerSslConfigurationArgsDict']] ssl_configuration: (Updatable) The load balancer's SSL handling configuration details.
|
@@ -741,7 +741,7 @@ class Listener(pulumi.CustomResource):
|
|
741
741
|
@pulumi.getter
|
742
742
|
def protocol(self) -> pulumi.Output[builtins.str]:
|
743
743
|
"""
|
744
|
-
(Updatable) The protocol on which the listener accepts connection requests.
|
744
|
+
(Updatable) The protocol on which the listener accepts connection requests. To get a list of valid protocols, use the [ListProtocols](https://docs.cloud.oracle.com/iaas/api/#/en/loadbalancer/20170115/LoadBalancerProtocol/ListProtocols) operation. Example: `HTTP`
|
745
745
|
"""
|
746
746
|
return pulumi.get(self, "protocol")
|
747
747
|
|