pulumi-oci 3.1.0a1750143229__py3-none-any.whl → 3.1.0a1751948424__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 +299 -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/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/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/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.0a1750143229.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/METADATA +1 -1
- {pulumi_oci-3.1.0a1750143229.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/RECORD +282 -141
- {pulumi_oci-3.1.0a1750143229.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/WHEEL +0 -0
- {pulumi_oci-3.1.0a1750143229.dist-info → pulumi_oci-3.1.0a1751948424.dist-info}/top_level.txt +0 -0
@@ -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
|
|
@@ -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]:
|