pulumi-oci 3.1.0a1750230541__py3-none-any.whl → 3.2.0a1752121229__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pulumi_oci/__init__.py +339 -0
- pulumi_oci/bigdataservice/__init__.py +10 -0
- pulumi_oci/bigdataservice/_inputs.py +378 -0
- pulumi_oci/bigdataservice/bds_instance_node_backup.py +481 -0
- pulumi_oci/bigdataservice/bds_instance_node_backup_configuration.py +611 -0
- pulumi_oci/bigdataservice/bds_instance_node_replace_configuration.py +538 -0
- pulumi_oci/bigdataservice/bds_instance_replace_node_action.py +406 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backup.py +245 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backup_configuration.py +263 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backup_configurations.py +192 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_backups.py +211 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_replace_configuration.py +246 -0
- pulumi_oci/bigdataservice/get_bds_instance_node_replace_configurations.py +192 -0
- pulumi_oci/bigdataservice/outputs.py +798 -0
- pulumi_oci/capacitymanagement/__init__.py +18 -0
- pulumi_oci/capacitymanagement/_inputs.py +459 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal.py +268 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog.py +254 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalog_resources.py +233 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_catalogs.py +192 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_deliveries.py +197 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_delivery.py +296 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signal_items.py +233 -0
- pulumi_oci/capacitymanagement/get_internal_occm_demand_signals.py +222 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal.py +254 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_catalog_resources.py +189 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_deliveries.py +175 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_item.py +352 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signal_items.py +211 -0
- pulumi_oci/capacitymanagement/get_occm_demand_signals.py +200 -0
- pulumi_oci/capacitymanagement/internal_occm_demand_signal.py +564 -0
- pulumi_oci/capacitymanagement/internal_occm_demand_signal_delivery.py +760 -0
- pulumi_oci/capacitymanagement/occm_demand_signal.py +585 -0
- pulumi_oci/capacitymanagement/occm_demand_signal_item.py +950 -0
- pulumi_oci/capacitymanagement/outputs.py +3499 -1230
- pulumi_oci/containerengine/get_cluster.py +7 -7
- pulumi_oci/core/__init__.py +4 -0
- pulumi_oci/core/_inputs.py +477 -0
- pulumi_oci/core/compute_host.py +910 -0
- pulumi_oci/core/compute_host_group.py +648 -0
- pulumi_oci/core/dedicated_vm_host.py +56 -0
- pulumi_oci/core/get_compute_host.py +72 -1
- pulumi_oci/core/get_compute_host_group.py +269 -0
- pulumi_oci/core/get_compute_host_groups.py +148 -0
- pulumi_oci/core/get_compute_hosts.py +37 -1
- pulumi_oci/core/get_dedicated_vm_host.py +29 -1
- pulumi_oci/core/outputs.py +912 -24
- pulumi_oci/database/__init__.py +2 -0
- pulumi_oci/database/_inputs.py +739 -52
- pulumi_oci/database/autonomous_container_database.py +141 -12
- pulumi_oci/database/autonomous_container_database_add_standby.py +8 -10
- pulumi_oci/database/autonomous_container_database_dataguard_association.py +8 -16
- pulumi_oci/database/autonomous_container_database_snapshot_standby.py +4 -6
- pulumi_oci/database/autonomous_database_software_image.py +28 -0
- pulumi_oci/database/autonomous_vm_cluster.py +28 -0
- pulumi_oci/database/backup_destination.py +28 -0
- pulumi_oci/database/cloud_autonomous_vm_cluster.py +126 -0
- pulumi_oci/database/cloud_vm_cluster.py +82 -7
- pulumi_oci/database/database.py +28 -0
- pulumi_oci/database/database_software_image.py +28 -0
- pulumi_oci/database/database_upgrade.py +28 -0
- pulumi_oci/database/db_home.py +28 -0
- pulumi_oci/database/db_node.py +28 -0
- pulumi_oci/database/db_system.py +28 -0
- pulumi_oci/database/exadata_infrastructure.py +28 -0
- pulumi_oci/database/exadata_infrastructure_compute.py +39 -24
- pulumi_oci/database/external_container_database.py +28 -0
- pulumi_oci/database/external_database_connector.py +28 -0
- pulumi_oci/database/external_non_container_database.py +28 -0
- pulumi_oci/database/external_pluggable_database.py +28 -0
- pulumi_oci/database/get_autonomous_container_database.py +52 -2
- pulumi_oci/database/get_autonomous_container_database_backups.py +255 -0
- pulumi_oci/database/get_autonomous_container_database_dataguard_association.py +2 -2
- pulumi_oci/database/get_autonomous_container_database_dataguard_associations.py +2 -2
- pulumi_oci/database/get_autonomous_database_dataguard_associations.py +2 -2
- pulumi_oci/database/get_autonomous_database_resource_pool_members.py +145 -0
- pulumi_oci/database/get_autonomous_database_software_image.py +15 -1
- pulumi_oci/database/get_autonomous_vm_cluster.py +15 -1
- pulumi_oci/database/get_backup_destination.py +15 -1
- pulumi_oci/database/get_cloud_autonomous_vm_cluster.py +40 -1
- pulumi_oci/database/get_cloud_vm_cluster.py +30 -2
- pulumi_oci/database/get_database.py +15 -1
- pulumi_oci/database/get_database_software_image.py +15 -1
- pulumi_oci/database/get_db_home.py +15 -1
- pulumi_oci/database/get_db_node.py +15 -1
- pulumi_oci/database/get_db_nodes.py +2 -2
- pulumi_oci/database/get_db_server.py +15 -1
- pulumi_oci/database/get_exadata_infrastructure.py +15 -1
- pulumi_oci/database/get_external_container_database.py +15 -1
- pulumi_oci/database/get_external_database_connector.py +15 -1
- pulumi_oci/database/get_external_non_container_database.py +15 -1
- pulumi_oci/database/get_external_pluggable_database.py +15 -1
- pulumi_oci/database/get_key_store.py +15 -1
- pulumi_oci/database/get_maintenance_run.py +15 -1
- pulumi_oci/database/get_oneoff_patch.py +15 -1
- pulumi_oci/database/get_pluggable_database.py +15 -1
- pulumi_oci/database/get_vm_cluster.py +15 -1
- pulumi_oci/database/get_vm_cluster_network.py +15 -1
- pulumi_oci/database/key_store.py +28 -0
- pulumi_oci/database/maintenance_run.py +28 -0
- pulumi_oci/database/oneoff_patch.py +28 -0
- pulumi_oci/database/outputs.py +1624 -54
- pulumi_oci/database/pluggable_database.py +28 -0
- pulumi_oci/database/pluggable_databases_local_clone.py +28 -0
- pulumi_oci/database/pluggable_databases_remote_clone.py +28 -0
- pulumi_oci/database/vm_cluster.py +28 -0
- pulumi_oci/database/vm_cluster_network.py +28 -0
- pulumi_oci/databasemanagement/__init__.py +7 -0
- pulumi_oci/databasemanagement/_inputs.py +196 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database.py +15 -1
- pulumi_oci/databasemanagement/get_managed_my_sql_database_binary_log_information.py +198 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_digest_errors.py +164 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_general_replication_information.py +352 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_high_availability_members.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_inbound_replications.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_outbound_replications.py +145 -0
- pulumi_oci/databasemanagement/get_managed_my_sql_database_query_detail.py +176 -0
- pulumi_oci/databasemanagement/outputs.py +1330 -19
- pulumi_oci/databasemigration/_inputs.py +94 -0
- pulumi_oci/databasemigration/get_migration.py +15 -1
- pulumi_oci/databasemigration/get_migrations.py +15 -1
- pulumi_oci/databasemigration/job.py +28 -0
- pulumi_oci/databasemigration/migration.py +52 -3
- pulumi_oci/databasemigration/outputs.py +73 -0
- pulumi_oci/dataflow/_inputs.py +20 -0
- pulumi_oci/dataflow/outputs.py +36 -0
- pulumi_oci/fleetappsmanagement/__init__.py +48 -0
- pulumi_oci/fleetappsmanagement/_inputs.py +11016 -30
- pulumi_oci/fleetappsmanagement/catalog_item.py +1156 -0
- pulumi_oci/fleetappsmanagement/compliance_policy_rule.py +811 -0
- pulumi_oci/fleetappsmanagement/fleet.py +1003 -0
- pulumi_oci/fleetappsmanagement/fleet_credential.py +623 -0
- pulumi_oci/fleetappsmanagement/fleet_property.py +585 -0
- pulumi_oci/fleetappsmanagement/fleet_resource.py +853 -0
- pulumi_oci/fleetappsmanagement/get_announcements.py +29 -7
- pulumi_oci/fleetappsmanagement/get_catalog_item.py +434 -0
- pulumi_oci/fleetappsmanagement/get_catalog_items.py +274 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policies.py +36 -12
- pulumi_oci/fleetappsmanagement/get_compliance_policy.py +20 -6
- pulumi_oci/fleetappsmanagement/get_compliance_policy_rule.py +325 -0
- pulumi_oci/fleetappsmanagement/get_compliance_policy_rules.py +244 -0
- pulumi_oci/fleetappsmanagement/get_compliance_record_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_compliance_records.py +299 -0
- pulumi_oci/fleetappsmanagement/get_fleet.py +409 -0
- pulumi_oci/fleetappsmanagement/get_fleet_compliance_report.py +15 -1
- pulumi_oci/fleetappsmanagement/get_fleet_credential.py +274 -0
- pulumi_oci/fleetappsmanagement/get_fleet_credentials.py +283 -0
- pulumi_oci/fleetappsmanagement/get_fleet_products.py +2 -2
- pulumi_oci/fleetappsmanagement/get_fleet_properties.py +197 -0
- pulumi_oci/fleetappsmanagement/get_fleet_property.py +287 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resource.py +399 -0
- pulumi_oci/fleetappsmanagement/get_fleet_resources.py +216 -0
- pulumi_oci/fleetappsmanagement/get_fleets.py +284 -0
- pulumi_oci/fleetappsmanagement/get_inventory_records.py +205 -0
- pulumi_oci/fleetappsmanagement/get_inventory_resources.py +4 -2
- pulumi_oci/fleetappsmanagement/get_maintenance_window.py +338 -0
- pulumi_oci/fleetappsmanagement/get_maintenance_windows.py +221 -0
- pulumi_oci/fleetappsmanagement/get_managed_entity_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_onboarding_policies.py +26 -5
- pulumi_oci/fleetappsmanagement/get_onboardings.py +180 -0
- pulumi_oci/fleetappsmanagement/get_patch.py +364 -0
- pulumi_oci/fleetappsmanagement/get_patches.py +338 -0
- pulumi_oci/fleetappsmanagement/get_platform_configuration.py +297 -0
- pulumi_oci/fleetappsmanagement/get_platform_configurations.py +265 -0
- pulumi_oci/fleetappsmanagement/get_properties.py +37 -13
- pulumi_oci/fleetappsmanagement/get_property.py +1 -1
- pulumi_oci/fleetappsmanagement/get_provision.py +493 -0
- pulumi_oci/fleetappsmanagement/get_provisions.py +224 -0
- pulumi_oci/fleetappsmanagement/get_runbook.py +406 -0
- pulumi_oci/fleetappsmanagement/get_runbook_version.py +319 -0
- pulumi_oci/fleetappsmanagement/get_runbook_versions.py +230 -0
- pulumi_oci/fleetappsmanagement/get_runbooks.py +265 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition.py +395 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definition_scheduled_fleets.py +167 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_definitions.py +347 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_executions.py +334 -0
- pulumi_oci/fleetappsmanagement/get_scheduler_job_counts.py +26 -7
- pulumi_oci/fleetappsmanagement/get_scheduler_job_job_activity_steps.py +2 -2
- pulumi_oci/fleetappsmanagement/get_task_record.py +308 -0
- pulumi_oci/fleetappsmanagement/get_task_records.py +265 -0
- pulumi_oci/fleetappsmanagement/maintenance_window.py +840 -0
- pulumi_oci/fleetappsmanagement/onboarding.py +631 -0
- pulumi_oci/fleetappsmanagement/outputs.py +25528 -1223
- pulumi_oci/fleetappsmanagement/patch.py +980 -0
- pulumi_oci/fleetappsmanagement/platform_configuration.py +694 -0
- pulumi_oci/fleetappsmanagement/property.py +28 -27
- pulumi_oci/fleetappsmanagement/provision.py +1195 -0
- pulumi_oci/fleetappsmanagement/runbook.py +1277 -0
- pulumi_oci/fleetappsmanagement/runbook_version.py +996 -0
- pulumi_oci/fleetappsmanagement/scheduler_definition.py +946 -0
- pulumi_oci/fleetappsmanagement/task_record.py +786 -0
- pulumi_oci/fleetsoftwareupdate/_inputs.py +88 -15
- pulumi_oci/fleetsoftwareupdate/fsu_cycle.py +71 -42
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycle.py +21 -7
- pulumi_oci/fleetsoftwareupdate/get_fsu_cycles.py +1 -1
- pulumi_oci/fleetsoftwareupdate/outputs.py +172 -15
- pulumi_oci/generativeai/__init__.py +3 -0
- pulumi_oci/generativeai/_inputs.py +1479 -132
- pulumi_oci/generativeai/agent_agent.py +66 -11
- pulumi_oci/generativeai/agent_agent_endpoint.py +296 -25
- pulumi_oci/generativeai/agent_data_source.py +70 -21
- pulumi_oci/generativeai/agent_tool.py +619 -0
- pulumi_oci/generativeai/get_agent_agent.py +17 -2
- pulumi_oci/generativeai/get_agent_agent_endpoint.py +72 -6
- pulumi_oci/generativeai/get_agent_agent_endpoints.py +0 -4
- pulumi_oci/generativeai/get_agent_data_source.py +15 -1
- pulumi_oci/generativeai/get_agent_tool.py +283 -0
- pulumi_oci/generativeai/get_agent_tools.py +214 -0
- pulumi_oci/generativeai/outputs.py +4001 -1259
- pulumi_oci/goldengate/_inputs.py +449 -3
- pulumi_oci/goldengate/connection.py +200 -56
- pulumi_oci/goldengate/get_connection.py +59 -28
- pulumi_oci/goldengate/get_connections.py +0 -3
- pulumi_oci/goldengate/outputs.py +886 -22
- pulumi_oci/kms/vault_verification.py +62 -2
- pulumi_oci/loadbalancer/_inputs.py +24 -6
- pulumi_oci/loadbalancer/backend.py +35 -7
- pulumi_oci/loadbalancer/backend_set.py +35 -7
- pulumi_oci/loadbalancer/listener.py +7 -7
- pulumi_oci/loadbalancer/load_balancer.py +81 -0
- pulumi_oci/loadbalancer/outputs.py +29 -10
- pulumi_oci/loganalytics/__init__.py +3 -0
- pulumi_oci/loganalytics/_inputs.py +123 -0
- pulumi_oci/loganalytics/get_log_analytics_entities.py +52 -0
- pulumi_oci/loganalytics/get_log_analytics_entity_type.py +254 -0
- pulumi_oci/loganalytics/get_log_analytics_entity_types.py +230 -0
- pulumi_oci/loganalytics/log_analytics_entity_type.py +508 -0
- pulumi_oci/loganalytics/outputs.py +258 -0
- pulumi_oci/mysql/_inputs.py +274 -0
- pulumi_oci/mysql/get_mysql_backup.py +29 -1
- pulumi_oci/mysql/get_mysql_backups.py +23 -1
- pulumi_oci/mysql/get_mysql_db_system.py +15 -1
- pulumi_oci/mysql/get_replica.py +15 -1
- pulumi_oci/mysql/mysql_backup.py +98 -2
- pulumi_oci/mysql/mysql_db_system.py +57 -0
- pulumi_oci/mysql/outputs.py +594 -0
- pulumi_oci/mysql/replica.py +28 -0
- pulumi_oci/nosql/__init__.py +2 -0
- pulumi_oci/nosql/_inputs.py +129 -3
- pulumi_oci/nosql/configuration.py +383 -0
- pulumi_oci/nosql/get_configuration.py +162 -0
- pulumi_oci/nosql/index.py +7 -7
- pulumi_oci/nosql/outputs.py +164 -2
- pulumi_oci/nosql/table_replica.py +9 -9
- pulumi_oci/oci/__init__.py +56 -0
- pulumi_oci/oci/_inputs.py +1615 -0
- pulumi_oci/oci/apiaccesscontrol_privileged_api_control.py +930 -0
- pulumi_oci/oci/apiaccesscontrol_privileged_api_request.py +1303 -0
- pulumi_oci/oci/dbmulticloud_multi_cloud_resource_discovery.py +675 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_container.py +743 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_blob_mount.py +675 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_connector.py +740 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault.py +840 -0
- pulumi_oci/oci/dbmulticloud_oracle_db_azure_vault_association.py +673 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadata.py +310 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadata_by_entity_types.py +208 -0
- pulumi_oci/oci/get_apiaccesscontrol_api_metadatas.py +208 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_control.py +367 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_controls.py +222 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_request.py +535 -0
- pulumi_oci/oci/get_apiaccesscontrol_privileged_api_requests.py +244 -0
- pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discoveries.py +252 -0
- pulumi_oci/oci/get_dbmulticloud_multi_cloud_resource_discovery.py +297 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_container.py +310 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_containers.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mount.py +296 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_blob_mounts.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connector.py +311 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_connectors.py +233 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_key.py +282 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_keys.py +233 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault.py +338 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_association.py +296 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vault_associations.py +255 -0
- pulumi_oci/oci/get_dbmulticloud_oracle_db_azure_vaults.py +252 -0
- pulumi_oci/oci/get_wlms_managed_instance.py +255 -0
- pulumi_oci/oci/get_wlms_managed_instance_scan_results.py +189 -0
- pulumi_oci/oci/get_wlms_managed_instance_server.py +378 -0
- pulumi_oci/oci/get_wlms_managed_instance_server_installed_patches.py +168 -0
- pulumi_oci/oci/get_wlms_managed_instance_servers.py +170 -0
- pulumi_oci/oci/get_wlms_managed_instances.py +200 -0
- pulumi_oci/oci/get_wlms_wls_domain.py +311 -0
- pulumi_oci/oci/get_wlms_wls_domain_agreement_records.py +145 -0
- pulumi_oci/oci/get_wlms_wls_domain_applicable_patches.py +145 -0
- pulumi_oci/oci/get_wlms_wls_domain_scan_results.py +170 -0
- pulumi_oci/oci/get_wlms_wls_domain_server.py +378 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backup.py +230 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backup_content.py +189 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_backups.py +168 -0
- pulumi_oci/oci/get_wlms_wls_domain_server_installed_patches.py +168 -0
- pulumi_oci/oci/get_wlms_wls_domain_servers.py +170 -0
- pulumi_oci/oci/get_wlms_wls_domains.py +266 -0
- pulumi_oci/oci/outputs.py +5617 -0
- pulumi_oci/ospgateway/_inputs.py +20 -0
- pulumi_oci/ospgateway/get_subscription.py +15 -1
- pulumi_oci/ospgateway/outputs.py +47 -0
- pulumi_oci/ospgateway/subscription.py +28 -0
- pulumi_oci/pulumi-plugin.json +1 -1
- pulumi_oci/redis/__init__.py +8 -0
- pulumi_oci/redis/_inputs.py +179 -0
- pulumi_oci/redis/get_oci_cache_user.py +283 -0
- pulumi_oci/redis/get_oci_cache_users.py +192 -0
- pulumi_oci/redis/oci_cache_user.py +695 -0
- pulumi_oci/redis/oci_cache_user_get_redis_cluster.py +333 -0
- pulumi_oci/redis/outputs.py +330 -0
- pulumi_oci/redis/redis_cluster_attach_oci_cache_user.py +263 -0
- pulumi_oci/redis/redis_cluster_create_identity_token.py +439 -0
- pulumi_oci/redis/redis_cluster_detach_oci_cache_user.py +263 -0
- pulumi_oci/redis/redis_cluster_get_oci_cache_user.py +333 -0
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0a1752121229.dist-info}/METADATA +1 -1
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0a1752121229.dist-info}/RECORD +313 -159
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0a1752121229.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.1.0a1750230541.dist-info → pulumi_oci-3.2.0a1752121229.dist-info}/top_level.txt +0 -0
@@ -29,6 +29,7 @@ class LoadBalancerArgs:
|
|
29
29
|
defined_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
30
30
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
31
31
|
ip_mode: Optional[pulumi.Input[builtins.str]] = None,
|
32
|
+
ipv6subnet_cidr: Optional[pulumi.Input[builtins.str]] = None,
|
32
33
|
is_delete_protection_enabled: Optional[pulumi.Input[builtins.bool]] = None,
|
33
34
|
is_private: Optional[pulumi.Input[builtins.bool]] = None,
|
34
35
|
is_request_id_enabled: Optional[pulumi.Input[builtins.bool]] = None,
|
@@ -56,6 +57,11 @@ class LoadBalancerArgs:
|
|
56
57
|
If "IPV6", the service assigns an IPv6 address and the load balancer supports IPv6 traffic.
|
57
58
|
|
58
59
|
Example: "ipMode":"IPV6"
|
60
|
+
:param pulumi.Input[builtins.str] ipv6subnet_cidr: Applies to IPV6 LB creation only.
|
61
|
+
|
62
|
+
Used to disambiguate which subnet prefix should be used to create an IPv6 LB.
|
63
|
+
|
64
|
+
Example: "2002::1234:abcd:ffff:c0a8:101/64"
|
59
65
|
:param pulumi.Input[builtins.bool] is_delete_protection_enabled: (Updatable) Whether or not the load balancer has delete protection enabled.
|
60
66
|
|
61
67
|
If "true", the loadbalancer will be protected against deletion if configured to accept traffic.
|
@@ -115,6 +121,8 @@ class LoadBalancerArgs:
|
|
115
121
|
pulumi.set(__self__, "freeform_tags", freeform_tags)
|
116
122
|
if ip_mode is not None:
|
117
123
|
pulumi.set(__self__, "ip_mode", ip_mode)
|
124
|
+
if ipv6subnet_cidr is not None:
|
125
|
+
pulumi.set(__self__, "ipv6subnet_cidr", ipv6subnet_cidr)
|
118
126
|
if is_delete_protection_enabled is not None:
|
119
127
|
pulumi.set(__self__, "is_delete_protection_enabled", is_delete_protection_enabled)
|
120
128
|
if is_private is not None:
|
@@ -226,6 +234,22 @@ class LoadBalancerArgs:
|
|
226
234
|
def ip_mode(self, value: Optional[pulumi.Input[builtins.str]]):
|
227
235
|
pulumi.set(self, "ip_mode", value)
|
228
236
|
|
237
|
+
@property
|
238
|
+
@pulumi.getter(name="ipv6subnetCidr")
|
239
|
+
def ipv6subnet_cidr(self) -> Optional[pulumi.Input[builtins.str]]:
|
240
|
+
"""
|
241
|
+
Applies to IPV6 LB creation only.
|
242
|
+
|
243
|
+
Used to disambiguate which subnet prefix should be used to create an IPv6 LB.
|
244
|
+
|
245
|
+
Example: "2002::1234:abcd:ffff:c0a8:101/64"
|
246
|
+
"""
|
247
|
+
return pulumi.get(self, "ipv6subnet_cidr")
|
248
|
+
|
249
|
+
@ipv6subnet_cidr.setter
|
250
|
+
def ipv6subnet_cidr(self, value: Optional[pulumi.Input[builtins.str]]):
|
251
|
+
pulumi.set(self, "ipv6subnet_cidr", value)
|
252
|
+
|
229
253
|
@property
|
230
254
|
@pulumi.getter(name="isDeleteProtectionEnabled")
|
231
255
|
def is_delete_protection_enabled(self) -> Optional[pulumi.Input[builtins.bool]]:
|
@@ -373,6 +397,7 @@ class _LoadBalancerState:
|
|
373
397
|
ip_address_details: Optional[pulumi.Input[Sequence[pulumi.Input['LoadBalancerIpAddressDetailArgs']]]] = None,
|
374
398
|
ip_addresses: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
375
399
|
ip_mode: Optional[pulumi.Input[builtins.str]] = None,
|
400
|
+
ipv6subnet_cidr: Optional[pulumi.Input[builtins.str]] = None,
|
376
401
|
is_delete_protection_enabled: Optional[pulumi.Input[builtins.bool]] = None,
|
377
402
|
is_private: Optional[pulumi.Input[builtins.bool]] = None,
|
378
403
|
is_request_id_enabled: Optional[pulumi.Input[builtins.bool]] = None,
|
@@ -394,6 +419,7 @@ class _LoadBalancerState:
|
|
394
419
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
395
420
|
:param pulumi.Input[Sequence[pulumi.Input['LoadBalancerIpAddressDetailArgs']]] ip_address_details: An array of IP addresses.
|
396
421
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] ip_addresses: An array of IP addresses. Deprecated: use ip_address_details instead
|
422
|
+
*
|
397
423
|
:param pulumi.Input[builtins.str] ip_mode: IPv6 is currently supported only in the Government Cloud. Whether the load balancer has an IPv4 or IPv6 IP address.
|
398
424
|
|
399
425
|
If "IPV4", the service assigns an IPv4 address and the load balancer supports IPv4 traffic.
|
@@ -401,6 +427,11 @@ class _LoadBalancerState:
|
|
401
427
|
If "IPV6", the service assigns an IPv6 address and the load balancer supports IPv6 traffic.
|
402
428
|
|
403
429
|
Example: "ipMode":"IPV6"
|
430
|
+
:param pulumi.Input[builtins.str] ipv6subnet_cidr: Applies to IPV6 LB creation only.
|
431
|
+
|
432
|
+
Used to disambiguate which subnet prefix should be used to create an IPv6 LB.
|
433
|
+
|
434
|
+
Example: "2002::1234:abcd:ffff:c0a8:101/64"
|
404
435
|
:param pulumi.Input[builtins.bool] is_delete_protection_enabled: (Updatable) Whether or not the load balancer has delete protection enabled.
|
405
436
|
|
406
437
|
If "true", the loadbalancer will be protected against deletion if configured to accept traffic.
|
@@ -476,6 +507,8 @@ class _LoadBalancerState:
|
|
476
507
|
pulumi.set(__self__, "ip_addresses", ip_addresses)
|
477
508
|
if ip_mode is not None:
|
478
509
|
pulumi.set(__self__, "ip_mode", ip_mode)
|
510
|
+
if ipv6subnet_cidr is not None:
|
511
|
+
pulumi.set(__self__, "ipv6subnet_cidr", ipv6subnet_cidr)
|
479
512
|
if is_delete_protection_enabled is not None:
|
480
513
|
pulumi.set(__self__, "is_delete_protection_enabled", is_delete_protection_enabled)
|
481
514
|
if is_private is not None:
|
@@ -569,6 +602,7 @@ class _LoadBalancerState:
|
|
569
602
|
def ip_addresses(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]:
|
570
603
|
"""
|
571
604
|
An array of IP addresses. Deprecated: use ip_address_details instead
|
605
|
+
*
|
572
606
|
"""
|
573
607
|
return pulumi.get(self, "ip_addresses")
|
574
608
|
|
@@ -594,6 +628,22 @@ class _LoadBalancerState:
|
|
594
628
|
def ip_mode(self, value: Optional[pulumi.Input[builtins.str]]):
|
595
629
|
pulumi.set(self, "ip_mode", value)
|
596
630
|
|
631
|
+
@property
|
632
|
+
@pulumi.getter(name="ipv6subnetCidr")
|
633
|
+
def ipv6subnet_cidr(self) -> Optional[pulumi.Input[builtins.str]]:
|
634
|
+
"""
|
635
|
+
Applies to IPV6 LB creation only.
|
636
|
+
|
637
|
+
Used to disambiguate which subnet prefix should be used to create an IPv6 LB.
|
638
|
+
|
639
|
+
Example: "2002::1234:abcd:ffff:c0a8:101/64"
|
640
|
+
"""
|
641
|
+
return pulumi.get(self, "ipv6subnet_cidr")
|
642
|
+
|
643
|
+
@ipv6subnet_cidr.setter
|
644
|
+
def ipv6subnet_cidr(self, value: Optional[pulumi.Input[builtins.str]]):
|
645
|
+
pulumi.set(self, "ipv6subnet_cidr", value)
|
646
|
+
|
597
647
|
@property
|
598
648
|
@pulumi.getter(name="isDeleteProtectionEnabled")
|
599
649
|
def is_delete_protection_enabled(self) -> Optional[pulumi.Input[builtins.bool]]:
|
@@ -806,6 +856,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
806
856
|
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
807
857
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
808
858
|
ip_mode: Optional[pulumi.Input[builtins.str]] = None,
|
859
|
+
ipv6subnet_cidr: Optional[pulumi.Input[builtins.str]] = None,
|
809
860
|
is_delete_protection_enabled: Optional[pulumi.Input[builtins.bool]] = None,
|
810
861
|
is_private: Optional[pulumi.Input[builtins.bool]] = None,
|
811
862
|
is_request_id_enabled: Optional[pulumi.Input[builtins.bool]] = None,
|
@@ -867,6 +918,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
867
918
|
"Department": "Finance",
|
868
919
|
},
|
869
920
|
ip_mode=load_balancer_ip_mode,
|
921
|
+
ipv6subnet_cidr=load_balancer_ipv6subnet_cidr,
|
870
922
|
is_delete_protection_enabled=load_balancer_is_delete_protection_enabled,
|
871
923
|
is_private=load_balancer_is_private,
|
872
924
|
is_request_id_enabled=load_balancer_is_request_id_enabled,
|
@@ -903,6 +955,11 @@ class LoadBalancer(pulumi.CustomResource):
|
|
903
955
|
If "IPV6", the service assigns an IPv6 address and the load balancer supports IPv6 traffic.
|
904
956
|
|
905
957
|
Example: "ipMode":"IPV6"
|
958
|
+
:param pulumi.Input[builtins.str] ipv6subnet_cidr: Applies to IPV6 LB creation only.
|
959
|
+
|
960
|
+
Used to disambiguate which subnet prefix should be used to create an IPv6 LB.
|
961
|
+
|
962
|
+
Example: "2002::1234:abcd:ffff:c0a8:101/64"
|
906
963
|
:param pulumi.Input[builtins.bool] is_delete_protection_enabled: (Updatable) Whether or not the load balancer has delete protection enabled.
|
907
964
|
|
908
965
|
If "true", the loadbalancer will be protected against deletion if configured to accept traffic.
|
@@ -1014,6 +1071,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
1014
1071
|
"Department": "Finance",
|
1015
1072
|
},
|
1016
1073
|
ip_mode=load_balancer_ip_mode,
|
1074
|
+
ipv6subnet_cidr=load_balancer_ipv6subnet_cidr,
|
1017
1075
|
is_delete_protection_enabled=load_balancer_is_delete_protection_enabled,
|
1018
1076
|
is_private=load_balancer_is_private,
|
1019
1077
|
is_request_id_enabled=load_balancer_is_request_id_enabled,
|
@@ -1057,6 +1115,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
1057
1115
|
display_name: Optional[pulumi.Input[builtins.str]] = None,
|
1058
1116
|
freeform_tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]]] = None,
|
1059
1117
|
ip_mode: Optional[pulumi.Input[builtins.str]] = None,
|
1118
|
+
ipv6subnet_cidr: Optional[pulumi.Input[builtins.str]] = None,
|
1060
1119
|
is_delete_protection_enabled: Optional[pulumi.Input[builtins.bool]] = None,
|
1061
1120
|
is_private: Optional[pulumi.Input[builtins.bool]] = None,
|
1062
1121
|
is_request_id_enabled: Optional[pulumi.Input[builtins.bool]] = None,
|
@@ -1085,6 +1144,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
1085
1144
|
__props__.__dict__["display_name"] = display_name
|
1086
1145
|
__props__.__dict__["freeform_tags"] = freeform_tags
|
1087
1146
|
__props__.__dict__["ip_mode"] = ip_mode
|
1147
|
+
__props__.__dict__["ipv6subnet_cidr"] = ipv6subnet_cidr
|
1088
1148
|
__props__.__dict__["is_delete_protection_enabled"] = is_delete_protection_enabled
|
1089
1149
|
__props__.__dict__["is_private"] = is_private
|
1090
1150
|
__props__.__dict__["is_request_id_enabled"] = is_request_id_enabled
|
@@ -1121,6 +1181,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
1121
1181
|
ip_address_details: Optional[pulumi.Input[Sequence[pulumi.Input[Union['LoadBalancerIpAddressDetailArgs', 'LoadBalancerIpAddressDetailArgsDict']]]]] = None,
|
1122
1182
|
ip_addresses: Optional[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]] = None,
|
1123
1183
|
ip_mode: Optional[pulumi.Input[builtins.str]] = None,
|
1184
|
+
ipv6subnet_cidr: Optional[pulumi.Input[builtins.str]] = None,
|
1124
1185
|
is_delete_protection_enabled: Optional[pulumi.Input[builtins.bool]] = None,
|
1125
1186
|
is_private: Optional[pulumi.Input[builtins.bool]] = None,
|
1126
1187
|
is_request_id_enabled: Optional[pulumi.Input[builtins.bool]] = None,
|
@@ -1147,6 +1208,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
1147
1208
|
:param pulumi.Input[Mapping[str, pulumi.Input[builtins.str]]] freeform_tags: (Updatable) Free-form tags for this resource. Each tag is a simple key-value pair with no predefined name, type, or namespace. For more information, see [Resource Tags](https://docs.cloud.oracle.com/iaas/Content/General/Concepts/resourcetags.htm). Example: `{"Department": "Finance"}`
|
1148
1209
|
:param pulumi.Input[Sequence[pulumi.Input[Union['LoadBalancerIpAddressDetailArgs', 'LoadBalancerIpAddressDetailArgsDict']]]] ip_address_details: An array of IP addresses.
|
1149
1210
|
:param pulumi.Input[Sequence[pulumi.Input[builtins.str]]] ip_addresses: An array of IP addresses. Deprecated: use ip_address_details instead
|
1211
|
+
*
|
1150
1212
|
:param pulumi.Input[builtins.str] ip_mode: IPv6 is currently supported only in the Government Cloud. Whether the load balancer has an IPv4 or IPv6 IP address.
|
1151
1213
|
|
1152
1214
|
If "IPV4", the service assigns an IPv4 address and the load balancer supports IPv4 traffic.
|
@@ -1154,6 +1216,11 @@ class LoadBalancer(pulumi.CustomResource):
|
|
1154
1216
|
If "IPV6", the service assigns an IPv6 address and the load balancer supports IPv6 traffic.
|
1155
1217
|
|
1156
1218
|
Example: "ipMode":"IPV6"
|
1219
|
+
:param pulumi.Input[builtins.str] ipv6subnet_cidr: Applies to IPV6 LB creation only.
|
1220
|
+
|
1221
|
+
Used to disambiguate which subnet prefix should be used to create an IPv6 LB.
|
1222
|
+
|
1223
|
+
Example: "2002::1234:abcd:ffff:c0a8:101/64"
|
1157
1224
|
:param pulumi.Input[builtins.bool] is_delete_protection_enabled: (Updatable) Whether or not the load balancer has delete protection enabled.
|
1158
1225
|
|
1159
1226
|
If "true", the loadbalancer will be protected against deletion if configured to accept traffic.
|
@@ -1223,6 +1290,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
1223
1290
|
__props__.__dict__["ip_address_details"] = ip_address_details
|
1224
1291
|
__props__.__dict__["ip_addresses"] = ip_addresses
|
1225
1292
|
__props__.__dict__["ip_mode"] = ip_mode
|
1293
|
+
__props__.__dict__["ipv6subnet_cidr"] = ipv6subnet_cidr
|
1226
1294
|
__props__.__dict__["is_delete_protection_enabled"] = is_delete_protection_enabled
|
1227
1295
|
__props__.__dict__["is_private"] = is_private
|
1228
1296
|
__props__.__dict__["is_request_id_enabled"] = is_request_id_enabled
|
@@ -1284,6 +1352,7 @@ class LoadBalancer(pulumi.CustomResource):
|
|
1284
1352
|
def ip_addresses(self) -> pulumi.Output[Sequence[builtins.str]]:
|
1285
1353
|
"""
|
1286
1354
|
An array of IP addresses. Deprecated: use ip_address_details instead
|
1355
|
+
*
|
1287
1356
|
"""
|
1288
1357
|
return pulumi.get(self, "ip_addresses")
|
1289
1358
|
|
@@ -1301,6 +1370,18 @@ class LoadBalancer(pulumi.CustomResource):
|
|
1301
1370
|
"""
|
1302
1371
|
return pulumi.get(self, "ip_mode")
|
1303
1372
|
|
1373
|
+
@property
|
1374
|
+
@pulumi.getter(name="ipv6subnetCidr")
|
1375
|
+
def ipv6subnet_cidr(self) -> pulumi.Output[builtins.str]:
|
1376
|
+
"""
|
1377
|
+
Applies to IPV6 LB creation only.
|
1378
|
+
|
1379
|
+
Used to disambiguate which subnet prefix should be used to create an IPv6 LB.
|
1380
|
+
|
1381
|
+
Example: "2002::1234:abcd:ffff:c0a8:101/64"
|
1382
|
+
"""
|
1383
|
+
return pulumi.get(self, "ipv6subnet_cidr")
|
1384
|
+
|
1304
1385
|
@property
|
1305
1386
|
@pulumi.getter(name="isDeleteProtectionEnabled")
|
1306
1387
|
def is_delete_protection_enabled(self) -> pulumi.Output[builtins.bool]:
|
@@ -131,7 +131,11 @@ class BackendSetBackend(dict):
|
|
131
131
|
|
132
132
|
Example: `false`
|
133
133
|
:param builtins.bool drain: (Updatable) Whether the load balancer should drain this server. Servers marked "drain" receive no new incoming traffic. Example: `false`
|
134
|
-
:param 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.
|
134
|
+
:param 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.
|
135
|
+
|
136
|
+
If setting maxConnections to some value other than 0 then that value must be greater or equal to 256.
|
137
|
+
|
138
|
+
Example: `300`
|
135
139
|
:param builtins.str name: A friendly name for the backend set. It must be unique and it cannot be changed.
|
136
140
|
|
137
141
|
Valid backend set names include only alphanumeric characters, dashes, and underscores. Backend set names cannot contain spaces. Avoid entering confidential information.
|
@@ -195,7 +199,11 @@ class BackendSetBackend(dict):
|
|
195
199
|
@pulumi.getter(name="maxConnections")
|
196
200
|
def max_connections(self) -> Optional[builtins.int]:
|
197
201
|
"""
|
198
|
-
(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.
|
202
|
+
(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.
|
203
|
+
|
204
|
+
If setting maxConnections to some value other than 0 then that value must be greater or equal to 256.
|
205
|
+
|
206
|
+
Example: `300`
|
199
207
|
"""
|
200
208
|
return pulumi.get(self, "max_connections")
|
201
209
|
|
@@ -1193,7 +1201,9 @@ class LoadBalancerReservedIp(dict):
|
|
1193
1201
|
|
1194
1202
|
Reserved IPs will not be deleted when the Load balancer is deleted. They will be unattached from the Load balancer.
|
1195
1203
|
|
1196
|
-
Example: "ocid1.publicip.oc1.phx.unique_ID"
|
1204
|
+
Example: "ocid1.publicip.oc1.phx.unique_ID"
|
1205
|
+
|
1206
|
+
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.
|
1197
1207
|
"""
|
1198
1208
|
if id is not None:
|
1199
1209
|
pulumi.set(__self__, "id", id)
|
@@ -1210,7 +1220,9 @@ class LoadBalancerReservedIp(dict):
|
|
1210
1220
|
|
1211
1221
|
Reserved IPs will not be deleted when the Load balancer is deleted. They will be unattached from the Load balancer.
|
1212
1222
|
|
1213
|
-
Example: "ocid1.publicip.oc1.phx.unique_ID"
|
1223
|
+
Example: "ocid1.publicip.oc1.phx.unique_ID"
|
1224
|
+
|
1225
|
+
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.
|
1214
1226
|
"""
|
1215
1227
|
return pulumi.get(self, "id")
|
1216
1228
|
|
@@ -2191,7 +2203,7 @@ class GetBackendSetsBackendsetResult(dict):
|
|
2191
2203
|
ssl_configurations: Sequence['outputs.GetBackendSetsBackendsetSslConfigurationResult'],
|
2192
2204
|
state: builtins.str):
|
2193
2205
|
"""
|
2194
|
-
:param builtins.int backend_max_connections: 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. Example: `300`
|
2206
|
+
:param builtins.int backend_max_connections: 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. Example: `300`
|
2195
2207
|
:param Sequence['GetBackendSetsBackendsetHealthCheckerArgs'] health_checkers: The health check policy configuration. For more information, see [Editing Health Check Policies](https://docs.cloud.oracle.com/iaas/Content/Balance/Tasks/editinghealthcheck.htm).
|
2196
2208
|
:param Sequence['GetBackendSetsBackendsetLbCookieSessionPersistenceConfigurationArgs'] lb_cookie_session_persistence_configurations: The configuration details for implementing load balancer cookie session persistence (LB cookie stickiness).
|
2197
2209
|
:param 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 sets to retrieve.
|
@@ -2216,7 +2228,7 @@ class GetBackendSetsBackendsetResult(dict):
|
|
2216
2228
|
@pulumi.getter(name="backendMaxConnections")
|
2217
2229
|
def backend_max_connections(self) -> builtins.int:
|
2218
2230
|
"""
|
2219
|
-
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. Example: `300`
|
2231
|
+
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. Example: `300`
|
2220
2232
|
"""
|
2221
2233
|
return pulumi.get(self, "backend_max_connections")
|
2222
2234
|
|
@@ -2307,7 +2319,7 @@ class GetBackendSetsBackendsetBackendResult(dict):
|
|
2307
2319
|
:param builtins.bool backup: Whether the load balancer should treat this server as a backup unit. If `true`, the load balancer forwards no ingress traffic to this backend server unless all other backend servers not marked as "backup" fail the health check policy.
|
2308
2320
|
:param builtins.bool drain: Whether the load balancer should drain this server. Servers marked "drain" receive no new incoming traffic. Example: `false`
|
2309
2321
|
:param builtins.str ip_address: The IP address of the backend server. Example: `10.0.0.3`
|
2310
|
-
:param builtins.int max_connections: 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. Example: `300`
|
2322
|
+
:param builtins.int max_connections: 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. Example: `300`
|
2311
2323
|
:param builtins.str name: A friendly name for the backend set. It must be unique and it cannot be changed.
|
2312
2324
|
:param builtins.bool offline: Whether the load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`
|
2313
2325
|
:param builtins.int port: The backend server port against which to run the health check. If the port is not specified, the load balancer uses the port information from the `Backend` object. Example: `8080`
|
@@ -2350,7 +2362,7 @@ class GetBackendSetsBackendsetBackendResult(dict):
|
|
2350
2362
|
@pulumi.getter(name="maxConnections")
|
2351
2363
|
def max_connections(self) -> builtins.int:
|
2352
2364
|
"""
|
2353
|
-
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. Example: `300`
|
2365
|
+
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. Example: `300`
|
2354
2366
|
"""
|
2355
2367
|
return pulumi.get(self, "max_connections")
|
2356
2368
|
|
@@ -2753,7 +2765,7 @@ class GetBackendsBackendResult(dict):
|
|
2753
2765
|
:param builtins.bool drain: Whether the load balancer should drain this server. Servers marked "drain" receive no new incoming traffic. Example: `false`
|
2754
2766
|
:param builtins.str ip_address: The IP address of the backend server. Example: `10.0.0.3`
|
2755
2767
|
:param 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.
|
2756
|
-
:param builtins.int max_connections: 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. Example: `300`
|
2768
|
+
:param builtins.int max_connections: 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. Example: `300`
|
2757
2769
|
:param 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`
|
2758
2770
|
:param builtins.bool offline: Whether the load balancer should treat this server as offline. Offline servers receive no incoming traffic. Example: `false`
|
2759
2771
|
:param builtins.int port: The communication port for the backend server. Example: `8080`
|
@@ -2809,7 +2821,7 @@ class GetBackendsBackendResult(dict):
|
|
2809
2821
|
@pulumi.getter(name="maxConnections")
|
2810
2822
|
def max_connections(self) -> builtins.int:
|
2811
2823
|
"""
|
2812
|
-
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. Example: `300`
|
2824
|
+
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. Example: `300`
|
2813
2825
|
"""
|
2814
2826
|
return pulumi.get(self, "max_connections")
|
2815
2827
|
|
@@ -3733,6 +3745,7 @@ class GetLoadBalancersLoadBalancerResult(dict):
|
|
3733
3745
|
ip_address_details: Sequence['outputs.GetLoadBalancersLoadBalancerIpAddressDetailResult'],
|
3734
3746
|
ip_addresses: Sequence[builtins.str],
|
3735
3747
|
ip_mode: builtins.str,
|
3748
|
+
ipv6subnet_cidr: builtins.str,
|
3736
3749
|
is_delete_protection_enabled: builtins.bool,
|
3737
3750
|
is_private: builtins.bool,
|
3738
3751
|
is_request_id_enabled: builtins.bool,
|
@@ -3775,6 +3788,7 @@ class GetLoadBalancersLoadBalancerResult(dict):
|
|
3775
3788
|
pulumi.set(__self__, "ip_address_details", ip_address_details)
|
3776
3789
|
pulumi.set(__self__, "ip_addresses", ip_addresses)
|
3777
3790
|
pulumi.set(__self__, "ip_mode", ip_mode)
|
3791
|
+
pulumi.set(__self__, "ipv6subnet_cidr", ipv6subnet_cidr)
|
3778
3792
|
pulumi.set(__self__, "is_delete_protection_enabled", is_delete_protection_enabled)
|
3779
3793
|
pulumi.set(__self__, "is_private", is_private)
|
3780
3794
|
pulumi.set(__self__, "is_request_id_enabled", is_request_id_enabled)
|
@@ -3851,6 +3865,11 @@ class GetLoadBalancersLoadBalancerResult(dict):
|
|
3851
3865
|
def ip_mode(self) -> builtins.str:
|
3852
3866
|
return pulumi.get(self, "ip_mode")
|
3853
3867
|
|
3868
|
+
@property
|
3869
|
+
@pulumi.getter(name="ipv6subnetCidr")
|
3870
|
+
def ipv6subnet_cidr(self) -> builtins.str:
|
3871
|
+
return pulumi.get(self, "ipv6subnet_cidr")
|
3872
|
+
|
3854
3873
|
@property
|
3855
3874
|
@pulumi.getter(name="isDeleteProtectionEnabled")
|
3856
3875
|
def is_delete_protection_enabled(self) -> builtins.bool:
|
@@ -12,6 +12,8 @@ from .get_log_analytics_entities import *
|
|
12
12
|
from .get_log_analytics_entities_summary import *
|
13
13
|
from .get_log_analytics_entity import *
|
14
14
|
from .get_log_analytics_entity_topology import *
|
15
|
+
from .get_log_analytics_entity_type import *
|
16
|
+
from .get_log_analytics_entity_types import *
|
15
17
|
from .get_log_analytics_log_group import *
|
16
18
|
from .get_log_analytics_log_groups import *
|
17
19
|
from .get_log_analytics_log_groups_summary import *
|
@@ -42,6 +44,7 @@ from .get_namespace_template import *
|
|
42
44
|
from .get_namespace_templates import *
|
43
45
|
from .get_namespaces import *
|
44
46
|
from .log_analytics_entity import *
|
47
|
+
from .log_analytics_entity_type import *
|
45
48
|
from .log_analytics_import_custom_content import *
|
46
49
|
from .log_analytics_log_group import *
|
47
50
|
from .log_analytics_object_collection_rule import *
|
@@ -20,6 +20,8 @@ __all__ = [
|
|
20
20
|
'LogAnalyticsEntityMetadataArgsDict',
|
21
21
|
'LogAnalyticsEntityMetadataItemArgs',
|
22
22
|
'LogAnalyticsEntityMetadataItemArgsDict',
|
23
|
+
'LogAnalyticsEntityTypePropertyArgs',
|
24
|
+
'LogAnalyticsEntityTypePropertyArgsDict',
|
23
25
|
'LogAnalyticsImportCustomContentChangeListArgs',
|
24
26
|
'LogAnalyticsImportCustomContentChangeListArgsDict',
|
25
27
|
'LogAnalyticsObjectCollectionRuleOverrideArgs',
|
@@ -58,6 +60,8 @@ __all__ = [
|
|
58
60
|
'GetLogAnalyticsEntitiesFilterArgsDict',
|
59
61
|
'GetLogAnalyticsEntityTopologyFilterArgs',
|
60
62
|
'GetLogAnalyticsEntityTopologyFilterArgsDict',
|
63
|
+
'GetLogAnalyticsEntityTypesFilterArgs',
|
64
|
+
'GetLogAnalyticsEntityTypesFilterArgsDict',
|
61
65
|
'GetLogAnalyticsLogGroupsFilterArgs',
|
62
66
|
'GetLogAnalyticsLogGroupsFilterArgsDict',
|
63
67
|
'GetLogAnalyticsObjectCollectionRulesFilterArgs',
|
@@ -188,6 +192,69 @@ class LogAnalyticsEntityMetadataItemArgs:
|
|
188
192
|
pulumi.set(self, "value", value)
|
189
193
|
|
190
194
|
|
195
|
+
if not MYPY:
|
196
|
+
class LogAnalyticsEntityTypePropertyArgsDict(TypedDict):
|
197
|
+
name: pulumi.Input[builtins.str]
|
198
|
+
"""
|
199
|
+
Log analytics entity type property name.
|
200
|
+
|
201
|
+
|
202
|
+
** IMPORTANT **
|
203
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
204
|
+
"""
|
205
|
+
description: NotRequired[pulumi.Input[builtins.str]]
|
206
|
+
"""
|
207
|
+
Description for the log analytics entity type property.
|
208
|
+
"""
|
209
|
+
elif False:
|
210
|
+
LogAnalyticsEntityTypePropertyArgsDict: TypeAlias = Mapping[str, Any]
|
211
|
+
|
212
|
+
@pulumi.input_type
|
213
|
+
class LogAnalyticsEntityTypePropertyArgs:
|
214
|
+
def __init__(__self__, *,
|
215
|
+
name: pulumi.Input[builtins.str],
|
216
|
+
description: Optional[pulumi.Input[builtins.str]] = None):
|
217
|
+
"""
|
218
|
+
:param pulumi.Input[builtins.str] name: Log analytics entity type property name.
|
219
|
+
|
220
|
+
|
221
|
+
** IMPORTANT **
|
222
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
223
|
+
:param pulumi.Input[builtins.str] description: Description for the log analytics entity type property.
|
224
|
+
"""
|
225
|
+
pulumi.set(__self__, "name", name)
|
226
|
+
if description is not None:
|
227
|
+
pulumi.set(__self__, "description", description)
|
228
|
+
|
229
|
+
@property
|
230
|
+
@pulumi.getter
|
231
|
+
def name(self) -> pulumi.Input[builtins.str]:
|
232
|
+
"""
|
233
|
+
Log analytics entity type property name.
|
234
|
+
|
235
|
+
|
236
|
+
** IMPORTANT **
|
237
|
+
Any change to a property that does not support update will force the destruction and recreation of the resource with the new property values
|
238
|
+
"""
|
239
|
+
return pulumi.get(self, "name")
|
240
|
+
|
241
|
+
@name.setter
|
242
|
+
def name(self, value: pulumi.Input[builtins.str]):
|
243
|
+
pulumi.set(self, "name", value)
|
244
|
+
|
245
|
+
@property
|
246
|
+
@pulumi.getter
|
247
|
+
def description(self) -> Optional[pulumi.Input[builtins.str]]:
|
248
|
+
"""
|
249
|
+
Description for the log analytics entity type property.
|
250
|
+
"""
|
251
|
+
return pulumi.get(self, "description")
|
252
|
+
|
253
|
+
@description.setter
|
254
|
+
def description(self, value: Optional[pulumi.Input[builtins.str]]):
|
255
|
+
pulumi.set(self, "description", value)
|
256
|
+
|
257
|
+
|
191
258
|
if not MYPY:
|
192
259
|
class LogAnalyticsImportCustomContentChangeListArgsDict(TypedDict):
|
193
260
|
conflict_field_display_names: NotRequired[pulumi.Input[Sequence[pulumi.Input[builtins.str]]]]
|
@@ -1931,6 +1998,62 @@ class GetLogAnalyticsEntityTopologyFilterArgs:
|
|
1931
1998
|
pulumi.set(self, "regex", value)
|
1932
1999
|
|
1933
2000
|
|
2001
|
+
if not MYPY:
|
2002
|
+
class GetLogAnalyticsEntityTypesFilterArgsDict(TypedDict):
|
2003
|
+
name: builtins.str
|
2004
|
+
"""
|
2005
|
+
A filter to return only log analytics entity types whose name matches the entire name given. The match is case-insensitive.
|
2006
|
+
"""
|
2007
|
+
values: Sequence[builtins.str]
|
2008
|
+
regex: NotRequired[builtins.bool]
|
2009
|
+
elif False:
|
2010
|
+
GetLogAnalyticsEntityTypesFilterArgsDict: TypeAlias = Mapping[str, Any]
|
2011
|
+
|
2012
|
+
@pulumi.input_type
|
2013
|
+
class GetLogAnalyticsEntityTypesFilterArgs:
|
2014
|
+
def __init__(__self__, *,
|
2015
|
+
name: builtins.str,
|
2016
|
+
values: Sequence[builtins.str],
|
2017
|
+
regex: Optional[builtins.bool] = None):
|
2018
|
+
"""
|
2019
|
+
:param builtins.str name: A filter to return only log analytics entity types whose name matches the entire name given. The match is case-insensitive.
|
2020
|
+
"""
|
2021
|
+
pulumi.set(__self__, "name", name)
|
2022
|
+
pulumi.set(__self__, "values", values)
|
2023
|
+
if regex is not None:
|
2024
|
+
pulumi.set(__self__, "regex", regex)
|
2025
|
+
|
2026
|
+
@property
|
2027
|
+
@pulumi.getter
|
2028
|
+
def name(self) -> builtins.str:
|
2029
|
+
"""
|
2030
|
+
A filter to return only log analytics entity types whose name matches the entire name given. The match is case-insensitive.
|
2031
|
+
"""
|
2032
|
+
return pulumi.get(self, "name")
|
2033
|
+
|
2034
|
+
@name.setter
|
2035
|
+
def name(self, value: builtins.str):
|
2036
|
+
pulumi.set(self, "name", value)
|
2037
|
+
|
2038
|
+
@property
|
2039
|
+
@pulumi.getter
|
2040
|
+
def values(self) -> Sequence[builtins.str]:
|
2041
|
+
return pulumi.get(self, "values")
|
2042
|
+
|
2043
|
+
@values.setter
|
2044
|
+
def values(self, value: Sequence[builtins.str]):
|
2045
|
+
pulumi.set(self, "values", value)
|
2046
|
+
|
2047
|
+
@property
|
2048
|
+
@pulumi.getter
|
2049
|
+
def regex(self) -> Optional[builtins.bool]:
|
2050
|
+
return pulumi.get(self, "regex")
|
2051
|
+
|
2052
|
+
@regex.setter
|
2053
|
+
def regex(self, value: Optional[builtins.bool]):
|
2054
|
+
pulumi.set(self, "regex", value)
|
2055
|
+
|
2056
|
+
|
1934
2057
|
if not MYPY:
|
1935
2058
|
class GetLogAnalyticsLogGroupsFilterArgsDict(TypedDict):
|
1936
2059
|
name: builtins.str
|
@@ -281,6 +281,32 @@ def get_log_analytics_entities(cloud_resource_id: Optional[builtins.str] = None,
|
|
281
281
|
|
282
282
|
Return a list of log analytics entities.
|
283
283
|
|
284
|
+
## Example Usage
|
285
|
+
|
286
|
+
```python
|
287
|
+
import pulumi
|
288
|
+
import pulumi_oci as oci
|
289
|
+
|
290
|
+
test_log_analytics_entities = oci.LogAnalytics.get_log_analytics_entities(compartment_id=compartment_id,
|
291
|
+
namespace=log_analytics_entity_namespace,
|
292
|
+
cloud_resource_id=log_analytics_entity_cloud_resource_id,
|
293
|
+
defined_tag_equals=log_analytics_entity_defined_tag_equals,
|
294
|
+
defined_tag_exists=log_analytics_entity_defined_tag_exists,
|
295
|
+
entity_type_names=log_analytics_entity_entity_type_name,
|
296
|
+
freeform_tag_equals=log_analytics_entity_freeform_tag_equals,
|
297
|
+
freeform_tag_exists=log_analytics_entity_freeform_tag_exists,
|
298
|
+
hostname=log_analytics_entity_hostname,
|
299
|
+
hostname_contains=log_analytics_entity_hostname_contains,
|
300
|
+
is_management_agent_id_null=log_analytics_entity_is_management_agent_id_null,
|
301
|
+
is_show_associated_sources_count=log_analytics_entity_is_show_associated_sources_count,
|
302
|
+
lifecycle_details_contains=log_analytics_entity_lifecycle_details_contains,
|
303
|
+
metadata_equals=log_analytics_entity_metadata_equals,
|
304
|
+
name=log_analytics_entity_name,
|
305
|
+
name_contains=log_analytics_entity_name_contains,
|
306
|
+
source_id=test_source["id"],
|
307
|
+
state=log_analytics_entity_state)
|
308
|
+
```
|
309
|
+
|
284
310
|
|
285
311
|
:param builtins.str cloud_resource_id: A filter to return only log analytics entities whose cloudResourceId matches the cloudResourceId given.
|
286
312
|
:param builtins.str compartment_id: The ID of the compartment in which to list resources.
|
@@ -371,6 +397,32 @@ def get_log_analytics_entities_output(cloud_resource_id: Optional[pulumi.Input[O
|
|
371
397
|
|
372
398
|
Return a list of log analytics entities.
|
373
399
|
|
400
|
+
## Example Usage
|
401
|
+
|
402
|
+
```python
|
403
|
+
import pulumi
|
404
|
+
import pulumi_oci as oci
|
405
|
+
|
406
|
+
test_log_analytics_entities = oci.LogAnalytics.get_log_analytics_entities(compartment_id=compartment_id,
|
407
|
+
namespace=log_analytics_entity_namespace,
|
408
|
+
cloud_resource_id=log_analytics_entity_cloud_resource_id,
|
409
|
+
defined_tag_equals=log_analytics_entity_defined_tag_equals,
|
410
|
+
defined_tag_exists=log_analytics_entity_defined_tag_exists,
|
411
|
+
entity_type_names=log_analytics_entity_entity_type_name,
|
412
|
+
freeform_tag_equals=log_analytics_entity_freeform_tag_equals,
|
413
|
+
freeform_tag_exists=log_analytics_entity_freeform_tag_exists,
|
414
|
+
hostname=log_analytics_entity_hostname,
|
415
|
+
hostname_contains=log_analytics_entity_hostname_contains,
|
416
|
+
is_management_agent_id_null=log_analytics_entity_is_management_agent_id_null,
|
417
|
+
is_show_associated_sources_count=log_analytics_entity_is_show_associated_sources_count,
|
418
|
+
lifecycle_details_contains=log_analytics_entity_lifecycle_details_contains,
|
419
|
+
metadata_equals=log_analytics_entity_metadata_equals,
|
420
|
+
name=log_analytics_entity_name,
|
421
|
+
name_contains=log_analytics_entity_name_contains,
|
422
|
+
source_id=test_source["id"],
|
423
|
+
state=log_analytics_entity_state)
|
424
|
+
```
|
425
|
+
|
374
426
|
|
375
427
|
:param builtins.str cloud_resource_id: A filter to return only log analytics entities whose cloudResourceId matches the cloudResourceId given.
|
376
428
|
:param builtins.str compartment_id: The ID of the compartment in which to list resources.
|