pulumi-azure-native 2.41.0a1715077566__py3-none-any.whl → 2.41.0a1715605557__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.
Potentially problematic release.
This version of pulumi-azure-native might be problematic. Click here for more details.
- pulumi_azure_native/__init__.py +96 -0
- pulumi_azure_native/databricks/__init__.py +3 -0
- pulumi_azure_native/databricks/access_connector.py +3 -3
- pulumi_azure_native/databricks/get_access_connector.py +2 -2
- pulumi_azure_native/databricks/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/databricks/get_workspace.py +2 -2
- pulumi_azure_native/databricks/private_endpoint_connection.py +3 -3
- pulumi_azure_native/databricks/v20220401preview/access_connector.py +1 -1
- pulumi_azure_native/databricks/v20230201/private_endpoint_connection.py +1 -1
- pulumi_azure_native/databricks/v20230201/v_net_peering.py +1 -1
- pulumi_azure_native/databricks/v20230201/workspace.py +1 -1
- pulumi_azure_native/databricks/v20230501/access_connector.py +1 -1
- pulumi_azure_native/databricks/v20230915preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/databricks/v20230915preview/v_net_peering.py +1 -1
- pulumi_azure_native/databricks/v20230915preview/workspace.py +1 -1
- pulumi_azure_native/databricks/v20240501/__init__.py +18 -0
- pulumi_azure_native/databricks/v20240501/_enums.py +121 -0
- pulumi_azure_native/databricks/v20240501/_inputs.py +1228 -0
- pulumi_azure_native/databricks/v20240501/access_connector.py +263 -0
- pulumi_azure_native/databricks/v20240501/get_access_connector.py +170 -0
- pulumi_azure_native/databricks/v20240501/get_private_endpoint_connection.py +123 -0
- pulumi_azure_native/databricks/v20240501/get_v_net_peering.py +240 -0
- pulumi_azure_native/databricks/v20240501/get_workspace.py +443 -0
- pulumi_azure_native/databricks/v20240501/outputs.py +1949 -0
- pulumi_azure_native/databricks/v20240501/private_endpoint_connection.py +207 -0
- pulumi_azure_native/databricks/v20240501/v_net_peering.py +429 -0
- pulumi_azure_native/databricks/v20240501/workspace.py +683 -0
- pulumi_azure_native/databricks/v_net_peering.py +1 -1
- pulumi_azure_native/databricks/workspace.py +3 -3
- pulumi_azure_native/hybridcompute/__init__.py +5 -0
- pulumi_azure_native/hybridcompute/_enums.py +8 -0
- pulumi_azure_native/hybridcompute/gateway.py +313 -0
- pulumi_azure_native/hybridcompute/get_gateway.py +211 -0
- pulumi_azure_native/hybridcompute/get_license.py +2 -2
- pulumi_azure_native/hybridcompute/get_license_profile.py +2 -2
- pulumi_azure_native/hybridcompute/get_machine.py +2 -2
- pulumi_azure_native/hybridcompute/get_machine_extension.py +2 -2
- pulumi_azure_native/hybridcompute/get_machine_run_command.py +4 -0
- pulumi_azure_native/hybridcompute/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/hybridcompute/get_private_link_scope.py +2 -2
- pulumi_azure_native/hybridcompute/license.py +3 -3
- pulumi_azure_native/hybridcompute/license_profile.py +3 -3
- pulumi_azure_native/hybridcompute/machine.py +3 -3
- pulumi_azure_native/hybridcompute/machine_extension.py +3 -3
- pulumi_azure_native/hybridcompute/machine_run_command.py +5 -1
- pulumi_azure_native/hybridcompute/private_endpoint_connection.py +3 -3
- pulumi_azure_native/hybridcompute/private_link_scope.py +3 -3
- pulumi_azure_native/hybridcompute/v20200802/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20200815preview/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20200815preview/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20200815preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hybridcompute/v20200815preview/private_link_scope.py +1 -1
- pulumi_azure_native/hybridcompute/v20220510preview/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20220510preview/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20221227/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20221227/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20221227/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hybridcompute/v20221227/private_link_scope.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/license.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/license_profile.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/private_link_scope.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/license.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/license_profile.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/machine_run_command.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/private_link_scope.py +1 -1
- pulumi_azure_native/hybridcompute/v20240331preview/__init__.py +26 -0
- pulumi_azure_native/hybridcompute/v20240331preview/_enums.py +170 -0
- pulumi_azure_native/hybridcompute/v20240331preview/_inputs.py +1376 -0
- pulumi_azure_native/hybridcompute/v20240331preview/gateway.py +311 -0
- pulumi_azure_native/hybridcompute/v20240331preview/get_gateway.py +209 -0
- pulumi_azure_native/hybridcompute/v20240331preview/get_license.py +196 -0
- pulumi_azure_native/hybridcompute/v20240331preview/get_license_profile.py +331 -0
- pulumi_azure_native/hybridcompute/v20240331preview/get_machine.py +591 -0
- pulumi_azure_native/hybridcompute/v20240331preview/get_machine_extension.py +162 -0
- pulumi_azure_native/hybridcompute/v20240331preview/get_machine_run_command.py +318 -0
- pulumi_azure_native/hybridcompute/v20240331preview/get_private_endpoint_connection.py +136 -0
- pulumi_azure_native/hybridcompute/v20240331preview/get_private_link_scope.py +157 -0
- pulumi_azure_native/hybridcompute/v20240331preview/license.py +321 -0
- pulumi_azure_native/hybridcompute/v20240331preview/license_profile.py +480 -0
- pulumi_azure_native/hybridcompute/v20240331preview/machine.py +850 -0
- pulumi_azure_native/hybridcompute/v20240331preview/machine_extension.py +274 -0
- pulumi_azure_native/hybridcompute/v20240331preview/machine_run_command.py +587 -0
- pulumi_azure_native/hybridcompute/v20240331preview/outputs.py +3054 -0
- pulumi_azure_native/hybridcompute/v20240331preview/private_endpoint_connection.py +215 -0
- pulumi_azure_native/hybridcompute/v20240331preview/private_link_scope.py +253 -0
- pulumi_azure_native/mobilenetwork/__init__.py +4 -0
- pulumi_azure_native/mobilenetwork/attached_data_network.py +3 -3
- pulumi_azure_native/mobilenetwork/data_network.py +3 -3
- pulumi_azure_native/mobilenetwork/diagnostics_package.py +3 -3
- pulumi_azure_native/mobilenetwork/get_attached_data_network.py +2 -2
- pulumi_azure_native/mobilenetwork/get_data_network.py +2 -2
- pulumi_azure_native/mobilenetwork/get_diagnostics_package.py +2 -2
- pulumi_azure_native/mobilenetwork/get_mobile_network.py +2 -2
- pulumi_azure_native/mobilenetwork/get_packet_capture.py +2 -2
- pulumi_azure_native/mobilenetwork/get_packet_core_control_plane.py +2 -2
- pulumi_azure_native/mobilenetwork/get_packet_core_data_plane.py +2 -2
- pulumi_azure_native/mobilenetwork/get_service.py +2 -2
- pulumi_azure_native/mobilenetwork/get_sim.py +2 -2
- pulumi_azure_native/mobilenetwork/get_sim_group.py +2 -2
- pulumi_azure_native/mobilenetwork/get_sim_policy.py +2 -2
- pulumi_azure_native/mobilenetwork/get_site.py +2 -2
- pulumi_azure_native/mobilenetwork/get_slice.py +2 -2
- pulumi_azure_native/mobilenetwork/list_mobile_network_sim_groups.py +94 -0
- pulumi_azure_native/mobilenetwork/mobile_network.py +3 -3
- pulumi_azure_native/mobilenetwork/outputs.py +126 -0
- pulumi_azure_native/mobilenetwork/packet_capture.py +3 -3
- pulumi_azure_native/mobilenetwork/packet_core_control_plane.py +3 -3
- pulumi_azure_native/mobilenetwork/packet_core_data_plane.py +3 -3
- pulumi_azure_native/mobilenetwork/service.py +3 -3
- pulumi_azure_native/mobilenetwork/sim.py +3 -3
- pulumi_azure_native/mobilenetwork/sim_group.py +3 -3
- pulumi_azure_native/mobilenetwork/sim_policy.py +3 -3
- pulumi_azure_native/mobilenetwork/site.py +3 -3
- pulumi_azure_native/mobilenetwork/slice.py +3 -3
- pulumi_azure_native/mobilenetwork/v20220301preview/packet_core_control_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/attached_data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/mobile_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/packet_core_control_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/packet_core_data_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/service.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/sim.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/sim_group.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/sim_policy.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/site.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/slice.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/attached_data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/mobile_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/packet_core_control_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/packet_core_data_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/service.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/sim.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/sim_group.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/sim_policy.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/site.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/slice.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/attached_data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/diagnostics_package.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/mobile_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/packet_capture.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/packet_core_control_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/packet_core_data_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/service.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/sim.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/sim_group.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/sim_policy.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/site.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/slice.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/attached_data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/diagnostics_package.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/mobile_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/packet_capture.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/packet_core_control_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/packet_core_data_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/service.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/sim.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/sim_group.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/sim_policy.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/site.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/slice.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/attached_data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/diagnostics_package.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/mobile_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/packet_capture.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/packet_core_control_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/packet_core_data_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/service.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/sim.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/sim_group.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/sim_policy.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/site.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/slice.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240401/__init__.py +37 -0
- pulumi_azure_native/mobilenetwork/v20240401/_enums.py +215 -0
- pulumi_azure_native/mobilenetwork/v20240401/_inputs.py +1998 -0
- pulumi_azure_native/mobilenetwork/v20240401/attached_data_network.py +443 -0
- pulumi_azure_native/mobilenetwork/v20240401/data_network.py +282 -0
- pulumi_azure_native/mobilenetwork/v20240401/diagnostics_package.py +215 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_attached_data_network.py +237 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_data_network.py +175 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_diagnostics_package.py +162 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_mobile_network.py +209 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_packet_capture.py +240 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_packet_core_control_plane.py +404 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_packet_core_data_plane.py +188 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_service.py +201 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_sim.py +253 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_sim_group.py +196 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_sim_policy.py +240 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_site.py +175 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_slice.py +188 -0
- pulumi_azure_native/mobilenetwork/v20240401/list_mobile_network_sim_groups.py +92 -0
- pulumi_azure_native/mobilenetwork/v20240401/mobile_network.py +332 -0
- pulumi_azure_native/mobilenetwork/v20240401/outputs.py +2668 -0
- pulumi_azure_native/mobilenetwork/v20240401/packet_capture.py +363 -0
- pulumi_azure_native/mobilenetwork/v20240401/packet_core_control_plane.py +737 -0
- pulumi_azure_native/mobilenetwork/v20240401/packet_core_data_plane.py +313 -0
- pulumi_azure_native/mobilenetwork/v20240401/service.py +344 -0
- pulumi_azure_native/mobilenetwork/v20240401/sim.py +422 -0
- pulumi_azure_native/mobilenetwork/v20240401/sim_group.py +321 -0
- pulumi_azure_native/mobilenetwork/v20240401/sim_policy.py +417 -0
- pulumi_azure_native/mobilenetwork/v20240401/site.py +263 -0
- pulumi_azure_native/mobilenetwork/v20240401/slice.py +313 -0
- pulumi_azure_native/network/v20231101/flow_log.py +0 -29
- pulumi_azure_native/network/v20231101/get_flow_log.py +1 -14
- pulumi_azure_native/network/v20231101/outputs.py +0 -12
- pulumi_azure_native/recoveryservices/__init__.py +3 -0
- pulumi_azure_native/recoveryservices/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/recoveryservices/get_protected_item.py +2 -2
- pulumi_azure_native/recoveryservices/get_protection_container.py +2 -2
- pulumi_azure_native/recoveryservices/get_protection_intent.py +2 -2
- pulumi_azure_native/recoveryservices/get_protection_policy.py +2 -2
- pulumi_azure_native/recoveryservices/get_resource_guard_proxy.py +2 -2
- pulumi_azure_native/recoveryservices/get_vault.py +2 -2
- pulumi_azure_native/recoveryservices/private_endpoint_connection.py +3 -3
- pulumi_azure_native/recoveryservices/protected_item.py +3 -3
- pulumi_azure_native/recoveryservices/protection_container.py +3 -3
- pulumi_azure_native/recoveryservices/protection_intent.py +3 -3
- pulumi_azure_native/recoveryservices/protection_policy.py +3 -3
- pulumi_azure_native/recoveryservices/resource_guard_proxy.py +3 -3
- pulumi_azure_native/recoveryservices/v20200202/vault.py +1 -1
- pulumi_azure_native/recoveryservices/v20230401/private_endpoint_connection.py +1 -1
- pulumi_azure_native/recoveryservices/v20230401/protected_item.py +1 -1
- pulumi_azure_native/recoveryservices/v20230401/protection_container.py +1 -1
- pulumi_azure_native/recoveryservices/v20230401/protection_intent.py +1 -1
- pulumi_azure_native/recoveryservices/v20230401/protection_policy.py +1 -1
- pulumi_azure_native/recoveryservices/v20230401/resource_guard_proxy.py +1 -1
- pulumi_azure_native/recoveryservices/v20230401/vault.py +1 -1
- pulumi_azure_native/recoveryservices/v20230601/private_endpoint_connection.py +1 -1
- pulumi_azure_native/recoveryservices/v20230601/protected_item.py +1 -1
- pulumi_azure_native/recoveryservices/v20230601/protection_container.py +1 -1
- pulumi_azure_native/recoveryservices/v20230601/protection_intent.py +1 -1
- pulumi_azure_native/recoveryservices/v20230601/protection_policy.py +1 -1
- pulumi_azure_native/recoveryservices/v20230601/resource_guard_proxy.py +1 -1
- pulumi_azure_native/recoveryservices/v20230601/vault.py +1 -1
- pulumi_azure_native/recoveryservices/v20230801/private_endpoint_connection.py +1 -1
- pulumi_azure_native/recoveryservices/v20230801/protected_item.py +1 -1
- pulumi_azure_native/recoveryservices/v20230801/protection_container.py +1 -1
- pulumi_azure_native/recoveryservices/v20230801/protection_intent.py +1 -1
- pulumi_azure_native/recoveryservices/v20230801/protection_policy.py +1 -1
- pulumi_azure_native/recoveryservices/v20230801/resource_guard_proxy.py +1 -1
- pulumi_azure_native/recoveryservices/v20230801/vault.py +1 -1
- pulumi_azure_native/recoveryservices/v20240101/private_endpoint_connection.py +1 -1
- pulumi_azure_native/recoveryservices/v20240101/protected_item.py +1 -1
- pulumi_azure_native/recoveryservices/v20240101/protection_container.py +1 -1
- pulumi_azure_native/recoveryservices/v20240101/protection_intent.py +1 -1
- pulumi_azure_native/recoveryservices/v20240101/protection_policy.py +1 -1
- pulumi_azure_native/recoveryservices/v20240101/resource_guard_proxy.py +1 -1
- pulumi_azure_native/recoveryservices/v20240101/vault.py +1 -1
- pulumi_azure_native/recoveryservices/v20240201/private_endpoint_connection.py +1 -1
- pulumi_azure_native/recoveryservices/v20240201/protected_item.py +1 -1
- pulumi_azure_native/recoveryservices/v20240201/protection_container.py +1 -1
- pulumi_azure_native/recoveryservices/v20240201/protection_intent.py +1 -1
- pulumi_azure_native/recoveryservices/v20240201/protection_policy.py +1 -1
- pulumi_azure_native/recoveryservices/v20240201/resource_guard_proxy.py +1 -1
- pulumi_azure_native/recoveryservices/v20240201/vault.py +1 -1
- pulumi_azure_native/recoveryservices/v20240401/private_endpoint_connection.py +1 -1
- pulumi_azure_native/recoveryservices/v20240401/protected_item.py +1 -1
- pulumi_azure_native/recoveryservices/v20240401/protection_container.py +1 -1
- pulumi_azure_native/recoveryservices/v20240401/protection_intent.py +1 -1
- pulumi_azure_native/recoveryservices/v20240401/protection_policy.py +1 -1
- pulumi_azure_native/recoveryservices/v20240401/resource_guard_proxy.py +1 -1
- pulumi_azure_native/recoveryservices/v20240401/vault.py +1 -1
- pulumi_azure_native/recoveryservices/v20240430preview/__init__.py +24 -0
- pulumi_azure_native/recoveryservices/v20240430preview/_enums.py +470 -0
- pulumi_azure_native/recoveryservices/v20240430preview/_inputs.py +12162 -0
- pulumi_azure_native/recoveryservices/v20240430preview/get_private_endpoint_connection.py +162 -0
- pulumi_azure_native/recoveryservices/v20240430preview/get_protected_item.py +179 -0
- pulumi_azure_native/recoveryservices/v20240430preview/get_protection_container.py +167 -0
- pulumi_azure_native/recoveryservices/v20240430preview/get_protection_intent.py +169 -0
- pulumi_azure_native/recoveryservices/v20240430preview/get_protection_policy.py +164 -0
- pulumi_azure_native/recoveryservices/v20240430preview/get_resource_guard_proxy.py +157 -0
- pulumi_azure_native/recoveryservices/v20240430preview/get_vault.py +196 -0
- pulumi_azure_native/recoveryservices/v20240430preview/outputs.py +14409 -0
- pulumi_azure_native/recoveryservices/v20240430preview/private_endpoint_connection.py +293 -0
- pulumi_azure_native/recoveryservices/v20240430preview/protected_item.py +335 -0
- pulumi_azure_native/recoveryservices/v20240430preview/protection_container.py +314 -0
- pulumi_azure_native/recoveryservices/v20240430preview/protection_intent.py +314 -0
- pulumi_azure_native/recoveryservices/v20240430preview/protection_policy.py +293 -0
- pulumi_azure_native/recoveryservices/v20240430preview/resource_guard_proxy.py +285 -0
- pulumi_azure_native/recoveryservices/v20240430preview/vault.py +321 -0
- pulumi_azure_native/recoveryservices/vault.py +3 -3
- pulumi_azure_native/security/v20231201preview/_inputs.py +1 -1
- pulumi_azure_native/security/v20231201preview/outputs.py +2 -2
- pulumi_azure_native/storage/__init__.py +5 -0
- pulumi_azure_native/storage/_enums.py +17 -0
- pulumi_azure_native/storage/_inputs.py +315 -0
- pulumi_azure_native/storage/blob_container.py +3 -3
- pulumi_azure_native/storage/blob_container_immutability_policy.py +3 -3
- pulumi_azure_native/storage/blob_inventory_policy.py +3 -3
- pulumi_azure_native/storage/blob_service_properties.py +3 -3
- pulumi_azure_native/storage/encryption_scope.py +3 -3
- pulumi_azure_native/storage/file_service_properties.py +3 -3
- pulumi_azure_native/storage/file_share.py +3 -3
- pulumi_azure_native/storage/get_blob_container.py +2 -2
- pulumi_azure_native/storage/get_blob_container_immutability_policy.py +2 -2
- pulumi_azure_native/storage/get_blob_inventory_policy.py +2 -2
- pulumi_azure_native/storage/get_blob_service_properties.py +2 -2
- pulumi_azure_native/storage/get_encryption_scope.py +2 -2
- pulumi_azure_native/storage/get_file_service_properties.py +2 -2
- pulumi_azure_native/storage/get_file_share.py +2 -2
- pulumi_azure_native/storage/get_local_user.py +2 -2
- pulumi_azure_native/storage/get_management_policy.py +2 -2
- pulumi_azure_native/storage/get_object_replication_policy.py +2 -2
- pulumi_azure_native/storage/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/storage/get_queue.py +2 -2
- pulumi_azure_native/storage/get_queue_service_properties.py +2 -2
- pulumi_azure_native/storage/get_storage_account.py +2 -2
- pulumi_azure_native/storage/get_storage_task_assignment.py +138 -0
- pulumi_azure_native/storage/get_table.py +2 -2
- pulumi_azure_native/storage/get_table_service_properties.py +2 -2
- pulumi_azure_native/storage/list_local_user_keys.py +2 -2
- pulumi_azure_native/storage/list_storage_account_keys.py +2 -2
- pulumi_azure_native/storage/list_storage_account_sas.py +2 -2
- pulumi_azure_native/storage/list_storage_account_service_sas.py +2 -2
- pulumi_azure_native/storage/local_user.py +3 -3
- pulumi_azure_native/storage/management_policy.py +3 -3
- pulumi_azure_native/storage/object_replication_policy.py +3 -3
- pulumi_azure_native/storage/outputs.py +560 -0
- pulumi_azure_native/storage/private_endpoint_connection.py +3 -3
- pulumi_azure_native/storage/queue.py +3 -3
- pulumi_azure_native/storage/queue_service_properties.py +3 -3
- pulumi_azure_native/storage/storage_account.py +3 -3
- pulumi_azure_native/storage/storage_task_assignment.py +218 -0
- pulumi_azure_native/storage/table.py +3 -3
- pulumi_azure_native/storage/table_service_properties.py +3 -3
- pulumi_azure_native/storage/v20220901/blob_container.py +1 -1
- pulumi_azure_native/storage/v20220901/blob_container_immutability_policy.py +1 -1
- pulumi_azure_native/storage/v20220901/blob_inventory_policy.py +1 -1
- pulumi_azure_native/storage/v20220901/blob_service_properties.py +1 -1
- pulumi_azure_native/storage/v20220901/encryption_scope.py +1 -1
- pulumi_azure_native/storage/v20220901/file_service_properties.py +1 -1
- pulumi_azure_native/storage/v20220901/file_share.py +1 -1
- pulumi_azure_native/storage/v20220901/local_user.py +1 -1
- pulumi_azure_native/storage/v20220901/management_policy.py +1 -1
- pulumi_azure_native/storage/v20220901/object_replication_policy.py +1 -1
- pulumi_azure_native/storage/v20220901/private_endpoint_connection.py +1 -1
- pulumi_azure_native/storage/v20220901/queue.py +1 -1
- pulumi_azure_native/storage/v20220901/queue_service_properties.py +1 -1
- pulumi_azure_native/storage/v20220901/storage_account.py +1 -1
- pulumi_azure_native/storage/v20220901/table.py +1 -1
- pulumi_azure_native/storage/v20220901/table_service_properties.py +1 -1
- pulumi_azure_native/storage/v20230101/blob_container.py +1 -1
- pulumi_azure_native/storage/v20230101/blob_container_immutability_policy.py +1 -1
- pulumi_azure_native/storage/v20230101/blob_inventory_policy.py +1 -1
- pulumi_azure_native/storage/v20230101/blob_service_properties.py +1 -1
- pulumi_azure_native/storage/v20230101/encryption_scope.py +1 -1
- pulumi_azure_native/storage/v20230101/file_service_properties.py +1 -1
- pulumi_azure_native/storage/v20230101/file_share.py +1 -1
- pulumi_azure_native/storage/v20230101/local_user.py +1 -1
- pulumi_azure_native/storage/v20230101/management_policy.py +1 -1
- pulumi_azure_native/storage/v20230101/object_replication_policy.py +1 -1
- pulumi_azure_native/storage/v20230101/private_endpoint_connection.py +1 -1
- pulumi_azure_native/storage/v20230101/queue.py +1 -1
- pulumi_azure_native/storage/v20230101/queue_service_properties.py +1 -1
- pulumi_azure_native/storage/v20230101/storage_account.py +1 -1
- pulumi_azure_native/storage/v20230101/table.py +1 -1
- pulumi_azure_native/storage/v20230101/table_service_properties.py +1 -1
- pulumi_azure_native/storage/v20230401/blob_container.py +1 -1
- pulumi_azure_native/storage/v20230401/blob_container_immutability_policy.py +1 -1
- pulumi_azure_native/storage/v20230401/blob_inventory_policy.py +1 -1
- pulumi_azure_native/storage/v20230401/blob_service_properties.py +1 -1
- pulumi_azure_native/storage/v20230401/encryption_scope.py +1 -1
- pulumi_azure_native/storage/v20230401/file_service_properties.py +1 -1
- pulumi_azure_native/storage/v20230401/file_share.py +1 -1
- pulumi_azure_native/storage/v20230401/local_user.py +1 -1
- pulumi_azure_native/storage/v20230401/management_policy.py +1 -1
- pulumi_azure_native/storage/v20230401/object_replication_policy.py +1 -1
- pulumi_azure_native/storage/v20230401/private_endpoint_connection.py +1 -1
- pulumi_azure_native/storage/v20230401/queue.py +1 -1
- pulumi_azure_native/storage/v20230401/queue_service_properties.py +1 -1
- pulumi_azure_native/storage/v20230401/storage_account.py +1 -1
- pulumi_azure_native/storage/v20230401/table.py +1 -1
- pulumi_azure_native/storage/v20230401/table_service_properties.py +1 -1
- pulumi_azure_native/storage/v20230501/__init__.py +48 -0
- pulumi_azure_native/storage/v20230501/_enums.py +434 -0
- pulumi_azure_native/storage/v20230501/_inputs.py +3435 -0
- pulumi_azure_native/storage/v20230501/blob_container.py +510 -0
- pulumi_azure_native/storage/v20230501/blob_container_immutability_policy.py +302 -0
- pulumi_azure_native/storage/v20230501/blob_inventory_policy.py +227 -0
- pulumi_azure_native/storage/v20230501/blob_service_properties.py +448 -0
- pulumi_azure_native/storage/v20230501/encryption_scope.py +313 -0
- pulumi_azure_native/storage/v20230501/file_service_properties.py +274 -0
- pulumi_azure_native/storage/v20230501/file_share.py +501 -0
- pulumi_azure_native/storage/v20230501/get_blob_container.py +370 -0
- pulumi_azure_native/storage/v20230501/get_blob_container_immutability_policy.py +179 -0
- pulumi_azure_native/storage/v20230501/get_blob_inventory_policy.py +149 -0
- pulumi_azure_native/storage/v20230501/get_blob_service_properties.py +240 -0
- pulumi_azure_native/storage/v20230501/get_encryption_scope.py +188 -0
- pulumi_azure_native/storage/v20230501/get_file_service_properties.py +162 -0
- pulumi_azure_native/storage/v20230501/get_file_share.py +362 -0
- pulumi_azure_native/storage/v20230501/get_local_user.py +279 -0
- pulumi_azure_native/storage/v20230501/get_management_policy.py +136 -0
- pulumi_azure_native/storage/v20230501/get_object_replication_policy.py +175 -0
- pulumi_azure_native/storage/v20230501/get_private_endpoint_connection.py +149 -0
- pulumi_azure_native/storage/v20230501/get_queue.py +132 -0
- pulumi_azure_native/storage/v20230501/get_queue_service_properties.py +123 -0
- pulumi_azure_native/storage/v20230501/get_storage_account.py +708 -0
- pulumi_azure_native/storage/v20230501/get_storage_task_assignment.py +136 -0
- pulumi_azure_native/storage/v20230501/get_table.py +136 -0
- pulumi_azure_native/storage/v20230501/get_table_service_properties.py +123 -0
- pulumi_azure_native/storage/v20230501/list_local_user_keys.py +97 -0
- pulumi_azure_native/storage/v20230501/list_storage_account_keys.py +84 -0
- pulumi_azure_native/storage/v20230501/list_storage_account_sas.py +119 -0
- pulumi_azure_native/storage/v20230501/list_storage_account_service_sas.py +169 -0
- pulumi_azure_native/storage/v20230501/local_user.py +496 -0
- pulumi_azure_native/storage/v20230501/management_policy.py +217 -0
- pulumi_azure_native/storage/v20230501/object_replication_policy.py +285 -0
- pulumi_azure_native/storage/v20230501/outputs.py +5640 -0
- pulumi_azure_native/storage/v20230501/private_endpoint_connection.py +227 -0
- pulumi_azure_native/storage/v20230501/queue.py +211 -0
- pulumi_azure_native/storage/v20230501/queue_service_properties.py +206 -0
- pulumi_azure_native/storage/v20230501/storage_account.py +1169 -0
- pulumi_azure_native/storage/v20230501/storage_task_assignment.py +216 -0
- pulumi_azure_native/storage/v20230501/table.py +214 -0
- pulumi_azure_native/storage/v20230501/table_service_properties.py +206 -0
- pulumi_azure_native/storageactions/_inputs.py +2 -2
- pulumi_azure_native/storageactions/get_storage_task.py +1 -1
- pulumi_azure_native/storageactions/outputs.py +2 -2
- pulumi_azure_native/storageactions/storage_task.py +18 -17
- pulumi_azure_native/storageactions/v20230101/_inputs.py +2 -2
- pulumi_azure_native/storageactions/v20230101/get_storage_task.py +1 -1
- pulumi_azure_native/storageactions/v20230101/outputs.py +2 -2
- pulumi_azure_native/storageactions/v20230101/storage_task.py +18 -17
- pulumi_azure_native/workloads/__init__.py +3 -0
- pulumi_azure_native/workloads/_enums.py +15 -0
- pulumi_azure_native/workloads/get_monitor.py +4 -0
- pulumi_azure_native/workloads/get_provider_instance.py +2 -2
- pulumi_azure_native/workloads/get_sap_landscape_monitor.py +2 -2
- pulumi_azure_native/workloads/monitor.py +5 -1
- pulumi_azure_native/workloads/provider_instance.py +3 -3
- pulumi_azure_native/workloads/sap_landscape_monitor.py +3 -3
- pulumi_azure_native/workloads/v20230401/monitor.py +1 -1
- pulumi_azure_native/workloads/v20230401/provider_instance.py +1 -1
- pulumi_azure_native/workloads/v20230401/sap_landscape_monitor.py +1 -1
- pulumi_azure_native/workloads/v20231001preview/monitor.py +1 -1
- pulumi_azure_native/workloads/v20231001preview/provider_instance.py +1 -1
- pulumi_azure_native/workloads/v20231001preview/sap_landscape_monitor.py +1 -1
- pulumi_azure_native/workloads/v20231201preview/__init__.py +16 -0
- pulumi_azure_native/workloads/v20231201preview/_enums.py +68 -0
- pulumi_azure_native/workloads/v20231201preview/_inputs.py +1216 -0
- pulumi_azure_native/workloads/v20231201preview/get_monitor.py +300 -0
- pulumi_azure_native/workloads/v20231201preview/get_provider_instance.py +175 -0
- pulumi_azure_native/workloads/v20231201preview/get_sap_landscape_monitor.py +157 -0
- pulumi_azure_native/workloads/v20231201preview/monitor.py +496 -0
- pulumi_azure_native/workloads/v20231201preview/outputs.py +1583 -0
- pulumi_azure_native/workloads/v20231201preview/provider_instance.py +246 -0
- pulumi_azure_native/workloads/v20231201preview/sap_landscape_monitor.py +234 -0
- {pulumi_azure_native-2.41.0a1715077566.dist-info → pulumi_azure_native-2.41.0a1715605557.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.41.0a1715077566.dist-info → pulumi_azure_native-2.41.0a1715605557.dist-info}/RECORD +462 -324
- {pulumi_azure_native-2.41.0a1715077566.dist-info → pulumi_azure_native-2.41.0a1715605557.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-2.41.0a1715077566.dist-info → pulumi_azure_native-2.41.0a1715605557.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,2668 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import pulumi
|
|
8
|
+
import pulumi.runtime
|
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
10
|
+
from ... import _utilities
|
|
11
|
+
from . import outputs
|
|
12
|
+
from ._enums import *
|
|
13
|
+
|
|
14
|
+
__all__ = [
|
|
15
|
+
'AmbrResponse',
|
|
16
|
+
'AsyncOperationIdResponse',
|
|
17
|
+
'AttachedDataNetworkResourceIdResponse',
|
|
18
|
+
'AzureStackEdgeDeviceResourceIdResponse',
|
|
19
|
+
'AzureStackHCIClusterResourceIdResponse',
|
|
20
|
+
'CertificateProvisioningResponse',
|
|
21
|
+
'ConnectedClusterResourceIdResponse',
|
|
22
|
+
'CustomLocationResourceIdResponse',
|
|
23
|
+
'DataNetworkConfigurationResponse',
|
|
24
|
+
'DataNetworkResourceIdResponse',
|
|
25
|
+
'DiagnosticsUploadConfigurationResponse',
|
|
26
|
+
'EventHubConfigurationResponse',
|
|
27
|
+
'HomeNetworkPrivateKeysProvisioningResponse',
|
|
28
|
+
'HomeNetworkPublicKeyResponse',
|
|
29
|
+
'HttpsServerCertificateResponse',
|
|
30
|
+
'InstallationResponse',
|
|
31
|
+
'InterfacePropertiesResponse',
|
|
32
|
+
'KeyVaultKeyResponse',
|
|
33
|
+
'LocalDiagnosticsAccessConfigurationResponse',
|
|
34
|
+
'ManagedServiceIdentityResponse',
|
|
35
|
+
'MobileNetworkResourceIdResponse',
|
|
36
|
+
'NASRerouteConfigurationResponse',
|
|
37
|
+
'NaptConfigurationResponse',
|
|
38
|
+
'PccRuleConfigurationResponse',
|
|
39
|
+
'PccRuleQosPolicyResponse',
|
|
40
|
+
'PinholeTimeoutsResponse',
|
|
41
|
+
'PlatformConfigurationResponse',
|
|
42
|
+
'PlmnIdResponse',
|
|
43
|
+
'PortRangeResponse',
|
|
44
|
+
'PortReuseHoldTimesResponse',
|
|
45
|
+
'PublicLandMobileNetworkResponse',
|
|
46
|
+
'PublicLandMobileNetworkResponseHomeNetworkPublicKeys',
|
|
47
|
+
'QosPolicyResponse',
|
|
48
|
+
'ServiceDataFlowTemplateResponse',
|
|
49
|
+
'ServiceResourceIdResponse',
|
|
50
|
+
'SignalingConfigurationResponse',
|
|
51
|
+
'SimGroupResponse',
|
|
52
|
+
'SimPolicyResourceIdResponse',
|
|
53
|
+
'SimStaticIpPropertiesResponse',
|
|
54
|
+
'SimStaticIpPropertiesResponseStaticIp',
|
|
55
|
+
'SiteResourceIdResponse',
|
|
56
|
+
'SliceConfigurationResponse',
|
|
57
|
+
'SliceResourceIdResponse',
|
|
58
|
+
'SnssaiResponse',
|
|
59
|
+
'SubResourceResponse',
|
|
60
|
+
'SystemDataResponse',
|
|
61
|
+
'UserAssignedIdentityResponse',
|
|
62
|
+
'UserConsentConfigurationResponse',
|
|
63
|
+
]
|
|
64
|
+
|
|
65
|
+
@pulumi.output_type
|
|
66
|
+
class AmbrResponse(dict):
|
|
67
|
+
"""
|
|
68
|
+
Aggregate maximum bit rate.
|
|
69
|
+
"""
|
|
70
|
+
def __init__(__self__, *,
|
|
71
|
+
downlink: str,
|
|
72
|
+
uplink: str):
|
|
73
|
+
"""
|
|
74
|
+
Aggregate maximum bit rate.
|
|
75
|
+
:param str downlink: Downlink bit rate.
|
|
76
|
+
:param str uplink: Uplink bit rate.
|
|
77
|
+
"""
|
|
78
|
+
pulumi.set(__self__, "downlink", downlink)
|
|
79
|
+
pulumi.set(__self__, "uplink", uplink)
|
|
80
|
+
|
|
81
|
+
@property
|
|
82
|
+
@pulumi.getter
|
|
83
|
+
def downlink(self) -> str:
|
|
84
|
+
"""
|
|
85
|
+
Downlink bit rate.
|
|
86
|
+
"""
|
|
87
|
+
return pulumi.get(self, "downlink")
|
|
88
|
+
|
|
89
|
+
@property
|
|
90
|
+
@pulumi.getter
|
|
91
|
+
def uplink(self) -> str:
|
|
92
|
+
"""
|
|
93
|
+
Uplink bit rate.
|
|
94
|
+
"""
|
|
95
|
+
return pulumi.get(self, "uplink")
|
|
96
|
+
|
|
97
|
+
|
|
98
|
+
@pulumi.output_type
|
|
99
|
+
class AsyncOperationIdResponse(dict):
|
|
100
|
+
"""
|
|
101
|
+
Reference to an Azure Async Operation ID.
|
|
102
|
+
"""
|
|
103
|
+
def __init__(__self__, *,
|
|
104
|
+
id: str):
|
|
105
|
+
"""
|
|
106
|
+
Reference to an Azure Async Operation ID.
|
|
107
|
+
:param str id: Azure Async Operation ID.
|
|
108
|
+
"""
|
|
109
|
+
pulumi.set(__self__, "id", id)
|
|
110
|
+
|
|
111
|
+
@property
|
|
112
|
+
@pulumi.getter
|
|
113
|
+
def id(self) -> str:
|
|
114
|
+
"""
|
|
115
|
+
Azure Async Operation ID.
|
|
116
|
+
"""
|
|
117
|
+
return pulumi.get(self, "id")
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
@pulumi.output_type
|
|
121
|
+
class AttachedDataNetworkResourceIdResponse(dict):
|
|
122
|
+
"""
|
|
123
|
+
Reference to an attached data network resource.
|
|
124
|
+
"""
|
|
125
|
+
def __init__(__self__, *,
|
|
126
|
+
id: str):
|
|
127
|
+
"""
|
|
128
|
+
Reference to an attached data network resource.
|
|
129
|
+
:param str id: Attached data network resource ID.
|
|
130
|
+
"""
|
|
131
|
+
pulumi.set(__self__, "id", id)
|
|
132
|
+
|
|
133
|
+
@property
|
|
134
|
+
@pulumi.getter
|
|
135
|
+
def id(self) -> str:
|
|
136
|
+
"""
|
|
137
|
+
Attached data network resource ID.
|
|
138
|
+
"""
|
|
139
|
+
return pulumi.get(self, "id")
|
|
140
|
+
|
|
141
|
+
|
|
142
|
+
@pulumi.output_type
|
|
143
|
+
class AzureStackEdgeDeviceResourceIdResponse(dict):
|
|
144
|
+
"""
|
|
145
|
+
Reference to an Azure Stack Edge device resource.
|
|
146
|
+
"""
|
|
147
|
+
def __init__(__self__, *,
|
|
148
|
+
id: str):
|
|
149
|
+
"""
|
|
150
|
+
Reference to an Azure Stack Edge device resource.
|
|
151
|
+
:param str id: Azure Stack Edge device resource ID.
|
|
152
|
+
"""
|
|
153
|
+
pulumi.set(__self__, "id", id)
|
|
154
|
+
|
|
155
|
+
@property
|
|
156
|
+
@pulumi.getter
|
|
157
|
+
def id(self) -> str:
|
|
158
|
+
"""
|
|
159
|
+
Azure Stack Edge device resource ID.
|
|
160
|
+
"""
|
|
161
|
+
return pulumi.get(self, "id")
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
@pulumi.output_type
|
|
165
|
+
class AzureStackHCIClusterResourceIdResponse(dict):
|
|
166
|
+
"""
|
|
167
|
+
Reference to an Azure Stack HCI cluster resource.
|
|
168
|
+
"""
|
|
169
|
+
def __init__(__self__, *,
|
|
170
|
+
id: str):
|
|
171
|
+
"""
|
|
172
|
+
Reference to an Azure Stack HCI cluster resource.
|
|
173
|
+
:param str id: Azure Stack HCI cluster resource ID.
|
|
174
|
+
"""
|
|
175
|
+
pulumi.set(__self__, "id", id)
|
|
176
|
+
|
|
177
|
+
@property
|
|
178
|
+
@pulumi.getter
|
|
179
|
+
def id(self) -> str:
|
|
180
|
+
"""
|
|
181
|
+
Azure Stack HCI cluster resource ID.
|
|
182
|
+
"""
|
|
183
|
+
return pulumi.get(self, "id")
|
|
184
|
+
|
|
185
|
+
|
|
186
|
+
@pulumi.output_type
|
|
187
|
+
class CertificateProvisioningResponse(dict):
|
|
188
|
+
"""
|
|
189
|
+
Certificate provisioning state
|
|
190
|
+
"""
|
|
191
|
+
def __init__(__self__, *,
|
|
192
|
+
reason: str,
|
|
193
|
+
state: str):
|
|
194
|
+
"""
|
|
195
|
+
Certificate provisioning state
|
|
196
|
+
:param str reason: Reason for certificate provisioning failure.
|
|
197
|
+
:param str state: The certificate's provisioning state
|
|
198
|
+
"""
|
|
199
|
+
pulumi.set(__self__, "reason", reason)
|
|
200
|
+
pulumi.set(__self__, "state", state)
|
|
201
|
+
|
|
202
|
+
@property
|
|
203
|
+
@pulumi.getter
|
|
204
|
+
def reason(self) -> str:
|
|
205
|
+
"""
|
|
206
|
+
Reason for certificate provisioning failure.
|
|
207
|
+
"""
|
|
208
|
+
return pulumi.get(self, "reason")
|
|
209
|
+
|
|
210
|
+
@property
|
|
211
|
+
@pulumi.getter
|
|
212
|
+
def state(self) -> str:
|
|
213
|
+
"""
|
|
214
|
+
The certificate's provisioning state
|
|
215
|
+
"""
|
|
216
|
+
return pulumi.get(self, "state")
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
@pulumi.output_type
|
|
220
|
+
class ConnectedClusterResourceIdResponse(dict):
|
|
221
|
+
"""
|
|
222
|
+
Reference to an Azure Arc custom location resource.
|
|
223
|
+
"""
|
|
224
|
+
def __init__(__self__, *,
|
|
225
|
+
id: str):
|
|
226
|
+
"""
|
|
227
|
+
Reference to an Azure Arc custom location resource.
|
|
228
|
+
:param str id: Azure Arc connected cluster resource ID.
|
|
229
|
+
"""
|
|
230
|
+
pulumi.set(__self__, "id", id)
|
|
231
|
+
|
|
232
|
+
@property
|
|
233
|
+
@pulumi.getter
|
|
234
|
+
def id(self) -> str:
|
|
235
|
+
"""
|
|
236
|
+
Azure Arc connected cluster resource ID.
|
|
237
|
+
"""
|
|
238
|
+
return pulumi.get(self, "id")
|
|
239
|
+
|
|
240
|
+
|
|
241
|
+
@pulumi.output_type
|
|
242
|
+
class CustomLocationResourceIdResponse(dict):
|
|
243
|
+
"""
|
|
244
|
+
Reference to an Azure Arc custom location resource.
|
|
245
|
+
"""
|
|
246
|
+
def __init__(__self__, *,
|
|
247
|
+
id: str):
|
|
248
|
+
"""
|
|
249
|
+
Reference to an Azure Arc custom location resource.
|
|
250
|
+
:param str id: Azure Arc custom location resource ID.
|
|
251
|
+
"""
|
|
252
|
+
pulumi.set(__self__, "id", id)
|
|
253
|
+
|
|
254
|
+
@property
|
|
255
|
+
@pulumi.getter
|
|
256
|
+
def id(self) -> str:
|
|
257
|
+
"""
|
|
258
|
+
Azure Arc custom location resource ID.
|
|
259
|
+
"""
|
|
260
|
+
return pulumi.get(self, "id")
|
|
261
|
+
|
|
262
|
+
|
|
263
|
+
@pulumi.output_type
|
|
264
|
+
class DataNetworkConfigurationResponse(dict):
|
|
265
|
+
"""
|
|
266
|
+
Settings controlling data network use
|
|
267
|
+
"""
|
|
268
|
+
@staticmethod
|
|
269
|
+
def __key_warning(key: str):
|
|
270
|
+
suggest = None
|
|
271
|
+
if key == "allowedServices":
|
|
272
|
+
suggest = "allowed_services"
|
|
273
|
+
elif key == "dataNetwork":
|
|
274
|
+
suggest = "data_network"
|
|
275
|
+
elif key == "sessionAmbr":
|
|
276
|
+
suggest = "session_ambr"
|
|
277
|
+
elif key == "additionalAllowedSessionTypes":
|
|
278
|
+
suggest = "additional_allowed_session_types"
|
|
279
|
+
elif key == "allocationAndRetentionPriorityLevel":
|
|
280
|
+
suggest = "allocation_and_retention_priority_level"
|
|
281
|
+
elif key == "defaultSessionType":
|
|
282
|
+
suggest = "default_session_type"
|
|
283
|
+
elif key == "fiveQi":
|
|
284
|
+
suggest = "five_qi"
|
|
285
|
+
elif key == "maximumNumberOfBufferedPackets":
|
|
286
|
+
suggest = "maximum_number_of_buffered_packets"
|
|
287
|
+
elif key == "preemptionCapability":
|
|
288
|
+
suggest = "preemption_capability"
|
|
289
|
+
elif key == "preemptionVulnerability":
|
|
290
|
+
suggest = "preemption_vulnerability"
|
|
291
|
+
|
|
292
|
+
if suggest:
|
|
293
|
+
pulumi.log.warn(f"Key '{key}' not found in DataNetworkConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
|
|
294
|
+
|
|
295
|
+
def __getitem__(self, key: str) -> Any:
|
|
296
|
+
DataNetworkConfigurationResponse.__key_warning(key)
|
|
297
|
+
return super().__getitem__(key)
|
|
298
|
+
|
|
299
|
+
def get(self, key: str, default = None) -> Any:
|
|
300
|
+
DataNetworkConfigurationResponse.__key_warning(key)
|
|
301
|
+
return super().get(key, default)
|
|
302
|
+
|
|
303
|
+
def __init__(__self__, *,
|
|
304
|
+
allowed_services: Sequence['outputs.ServiceResourceIdResponse'],
|
|
305
|
+
data_network: 'outputs.DataNetworkResourceIdResponse',
|
|
306
|
+
session_ambr: 'outputs.AmbrResponse',
|
|
307
|
+
additional_allowed_session_types: Optional[Sequence[str]] = None,
|
|
308
|
+
allocation_and_retention_priority_level: Optional[int] = None,
|
|
309
|
+
default_session_type: Optional[str] = None,
|
|
310
|
+
five_qi: Optional[int] = None,
|
|
311
|
+
maximum_number_of_buffered_packets: Optional[int] = None,
|
|
312
|
+
preemption_capability: Optional[str] = None,
|
|
313
|
+
preemption_vulnerability: Optional[str] = None):
|
|
314
|
+
"""
|
|
315
|
+
Settings controlling data network use
|
|
316
|
+
:param Sequence['ServiceResourceIdResponse'] allowed_services: List of services that can be used as part of this SIM policy. The list must not contain duplicate items and must contain at least one item. The services must be in the same location as the SIM policy.
|
|
317
|
+
:param 'DataNetworkResourceIdResponse' data_network: A reference to the data network that these settings apply to. The data network must be in the same location as the SIM policy.
|
|
318
|
+
:param 'AmbrResponse' session_ambr: Aggregate maximum bit rate across all non-GBR QoS flows of a given PDU session. See 3GPP TS23.501 section 5.7.2.6 for a full description of the Session-AMBR.
|
|
319
|
+
:param Sequence[str] additional_allowed_session_types: Allowed session types in addition to the default session type. Must not duplicate the default session type.
|
|
320
|
+
:param int allocation_and_retention_priority_level: Default QoS Flow allocation and retention priority (ARP) level. Flows with higher priority preempt flows with lower priority, if the settings of `preemptionCapability` and `preemptionVulnerability` allow it. 1 is the highest level of priority. If this field is not specified then `5qi` is used to derive the ARP value. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
|
|
321
|
+
:param str default_session_type: The default PDU session type, which is used if the UE does not request a specific session type.
|
|
322
|
+
:param int five_qi: Default 5G QoS Flow Indicator value. The 5QI identifies a specific QoS forwarding treatment to be provided to a flow. See 3GPP TS23.501 section 5.7.2.1 for a full description of the 5QI parameter, and table 5.7.4-1 for the definition the 5QI values.
|
|
323
|
+
:param int maximum_number_of_buffered_packets: The maximum number of downlink packets to buffer at the user plane for High Latency Communication - Extended Buffering. See 3GPP TS29.272 v15.10.0 section 7.3.188 for a full description. This maximum is not guaranteed because there is a internal limit on buffered packets across all PDU sessions.
|
|
324
|
+
:param str preemption_capability: Default QoS Flow preemption capability. The preemption capability of a QoS Flow controls whether it can preempt another QoS Flow with a lower priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
|
|
325
|
+
:param str preemption_vulnerability: Default QoS Flow preemption vulnerability. The preemption vulnerability of a QoS Flow controls whether it can be preempted by a QoS Flow with a higher priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
|
|
326
|
+
"""
|
|
327
|
+
pulumi.set(__self__, "allowed_services", allowed_services)
|
|
328
|
+
pulumi.set(__self__, "data_network", data_network)
|
|
329
|
+
pulumi.set(__self__, "session_ambr", session_ambr)
|
|
330
|
+
if additional_allowed_session_types is not None:
|
|
331
|
+
pulumi.set(__self__, "additional_allowed_session_types", additional_allowed_session_types)
|
|
332
|
+
if allocation_and_retention_priority_level is None:
|
|
333
|
+
allocation_and_retention_priority_level = 9
|
|
334
|
+
if allocation_and_retention_priority_level is not None:
|
|
335
|
+
pulumi.set(__self__, "allocation_and_retention_priority_level", allocation_and_retention_priority_level)
|
|
336
|
+
if default_session_type is None:
|
|
337
|
+
default_session_type = 'IPv4'
|
|
338
|
+
if default_session_type is not None:
|
|
339
|
+
pulumi.set(__self__, "default_session_type", default_session_type)
|
|
340
|
+
if five_qi is None:
|
|
341
|
+
five_qi = 9
|
|
342
|
+
if five_qi is not None:
|
|
343
|
+
pulumi.set(__self__, "five_qi", five_qi)
|
|
344
|
+
if maximum_number_of_buffered_packets is None:
|
|
345
|
+
maximum_number_of_buffered_packets = 10
|
|
346
|
+
if maximum_number_of_buffered_packets is not None:
|
|
347
|
+
pulumi.set(__self__, "maximum_number_of_buffered_packets", maximum_number_of_buffered_packets)
|
|
348
|
+
if preemption_capability is None:
|
|
349
|
+
preemption_capability = 'NotPreempt'
|
|
350
|
+
if preemption_capability is not None:
|
|
351
|
+
pulumi.set(__self__, "preemption_capability", preemption_capability)
|
|
352
|
+
if preemption_vulnerability is None:
|
|
353
|
+
preemption_vulnerability = 'Preemptable'
|
|
354
|
+
if preemption_vulnerability is not None:
|
|
355
|
+
pulumi.set(__self__, "preemption_vulnerability", preemption_vulnerability)
|
|
356
|
+
|
|
357
|
+
@property
|
|
358
|
+
@pulumi.getter(name="allowedServices")
|
|
359
|
+
def allowed_services(self) -> Sequence['outputs.ServiceResourceIdResponse']:
|
|
360
|
+
"""
|
|
361
|
+
List of services that can be used as part of this SIM policy. The list must not contain duplicate items and must contain at least one item. The services must be in the same location as the SIM policy.
|
|
362
|
+
"""
|
|
363
|
+
return pulumi.get(self, "allowed_services")
|
|
364
|
+
|
|
365
|
+
@property
|
|
366
|
+
@pulumi.getter(name="dataNetwork")
|
|
367
|
+
def data_network(self) -> 'outputs.DataNetworkResourceIdResponse':
|
|
368
|
+
"""
|
|
369
|
+
A reference to the data network that these settings apply to. The data network must be in the same location as the SIM policy.
|
|
370
|
+
"""
|
|
371
|
+
return pulumi.get(self, "data_network")
|
|
372
|
+
|
|
373
|
+
@property
|
|
374
|
+
@pulumi.getter(name="sessionAmbr")
|
|
375
|
+
def session_ambr(self) -> 'outputs.AmbrResponse':
|
|
376
|
+
"""
|
|
377
|
+
Aggregate maximum bit rate across all non-GBR QoS flows of a given PDU session. See 3GPP TS23.501 section 5.7.2.6 for a full description of the Session-AMBR.
|
|
378
|
+
"""
|
|
379
|
+
return pulumi.get(self, "session_ambr")
|
|
380
|
+
|
|
381
|
+
@property
|
|
382
|
+
@pulumi.getter(name="additionalAllowedSessionTypes")
|
|
383
|
+
def additional_allowed_session_types(self) -> Optional[Sequence[str]]:
|
|
384
|
+
"""
|
|
385
|
+
Allowed session types in addition to the default session type. Must not duplicate the default session type.
|
|
386
|
+
"""
|
|
387
|
+
return pulumi.get(self, "additional_allowed_session_types")
|
|
388
|
+
|
|
389
|
+
@property
|
|
390
|
+
@pulumi.getter(name="allocationAndRetentionPriorityLevel")
|
|
391
|
+
def allocation_and_retention_priority_level(self) -> Optional[int]:
|
|
392
|
+
"""
|
|
393
|
+
Default QoS Flow allocation and retention priority (ARP) level. Flows with higher priority preempt flows with lower priority, if the settings of `preemptionCapability` and `preemptionVulnerability` allow it. 1 is the highest level of priority. If this field is not specified then `5qi` is used to derive the ARP value. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
|
|
394
|
+
"""
|
|
395
|
+
return pulumi.get(self, "allocation_and_retention_priority_level")
|
|
396
|
+
|
|
397
|
+
@property
|
|
398
|
+
@pulumi.getter(name="defaultSessionType")
|
|
399
|
+
def default_session_type(self) -> Optional[str]:
|
|
400
|
+
"""
|
|
401
|
+
The default PDU session type, which is used if the UE does not request a specific session type.
|
|
402
|
+
"""
|
|
403
|
+
return pulumi.get(self, "default_session_type")
|
|
404
|
+
|
|
405
|
+
@property
|
|
406
|
+
@pulumi.getter(name="fiveQi")
|
|
407
|
+
def five_qi(self) -> Optional[int]:
|
|
408
|
+
"""
|
|
409
|
+
Default 5G QoS Flow Indicator value. The 5QI identifies a specific QoS forwarding treatment to be provided to a flow. See 3GPP TS23.501 section 5.7.2.1 for a full description of the 5QI parameter, and table 5.7.4-1 for the definition the 5QI values.
|
|
410
|
+
"""
|
|
411
|
+
return pulumi.get(self, "five_qi")
|
|
412
|
+
|
|
413
|
+
@property
|
|
414
|
+
@pulumi.getter(name="maximumNumberOfBufferedPackets")
|
|
415
|
+
def maximum_number_of_buffered_packets(self) -> Optional[int]:
|
|
416
|
+
"""
|
|
417
|
+
The maximum number of downlink packets to buffer at the user plane for High Latency Communication - Extended Buffering. See 3GPP TS29.272 v15.10.0 section 7.3.188 for a full description. This maximum is not guaranteed because there is a internal limit on buffered packets across all PDU sessions.
|
|
418
|
+
"""
|
|
419
|
+
return pulumi.get(self, "maximum_number_of_buffered_packets")
|
|
420
|
+
|
|
421
|
+
@property
|
|
422
|
+
@pulumi.getter(name="preemptionCapability")
|
|
423
|
+
def preemption_capability(self) -> Optional[str]:
|
|
424
|
+
"""
|
|
425
|
+
Default QoS Flow preemption capability. The preemption capability of a QoS Flow controls whether it can preempt another QoS Flow with a lower priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
|
|
426
|
+
"""
|
|
427
|
+
return pulumi.get(self, "preemption_capability")
|
|
428
|
+
|
|
429
|
+
@property
|
|
430
|
+
@pulumi.getter(name="preemptionVulnerability")
|
|
431
|
+
def preemption_vulnerability(self) -> Optional[str]:
|
|
432
|
+
"""
|
|
433
|
+
Default QoS Flow preemption vulnerability. The preemption vulnerability of a QoS Flow controls whether it can be preempted by a QoS Flow with a higher priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
|
|
434
|
+
"""
|
|
435
|
+
return pulumi.get(self, "preemption_vulnerability")
|
|
436
|
+
|
|
437
|
+
|
|
438
|
+
@pulumi.output_type
|
|
439
|
+
class DataNetworkResourceIdResponse(dict):
|
|
440
|
+
"""
|
|
441
|
+
Reference to a data network resource.
|
|
442
|
+
"""
|
|
443
|
+
def __init__(__self__, *,
|
|
444
|
+
id: str):
|
|
445
|
+
"""
|
|
446
|
+
Reference to a data network resource.
|
|
447
|
+
:param str id: Data network resource ID.
|
|
448
|
+
"""
|
|
449
|
+
pulumi.set(__self__, "id", id)
|
|
450
|
+
|
|
451
|
+
@property
|
|
452
|
+
@pulumi.getter
|
|
453
|
+
def id(self) -> str:
|
|
454
|
+
"""
|
|
455
|
+
Data network resource ID.
|
|
456
|
+
"""
|
|
457
|
+
return pulumi.get(self, "id")
|
|
458
|
+
|
|
459
|
+
|
|
460
|
+
@pulumi.output_type
|
|
461
|
+
class DiagnosticsUploadConfigurationResponse(dict):
|
|
462
|
+
"""
|
|
463
|
+
Configuration for uploading packet core diagnostics.
|
|
464
|
+
"""
|
|
465
|
+
@staticmethod
|
|
466
|
+
def __key_warning(key: str):
|
|
467
|
+
suggest = None
|
|
468
|
+
if key == "storageAccountContainerUrl":
|
|
469
|
+
suggest = "storage_account_container_url"
|
|
470
|
+
|
|
471
|
+
if suggest:
|
|
472
|
+
pulumi.log.warn(f"Key '{key}' not found in DiagnosticsUploadConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
|
|
473
|
+
|
|
474
|
+
def __getitem__(self, key: str) -> Any:
|
|
475
|
+
DiagnosticsUploadConfigurationResponse.__key_warning(key)
|
|
476
|
+
return super().__getitem__(key)
|
|
477
|
+
|
|
478
|
+
def get(self, key: str, default = None) -> Any:
|
|
479
|
+
DiagnosticsUploadConfigurationResponse.__key_warning(key)
|
|
480
|
+
return super().get(key, default)
|
|
481
|
+
|
|
482
|
+
def __init__(__self__, *,
|
|
483
|
+
storage_account_container_url: str):
|
|
484
|
+
"""
|
|
485
|
+
Configuration for uploading packet core diagnostics.
|
|
486
|
+
:param str storage_account_container_url: The Storage Account Container URL to upload diagnostics to.
|
|
487
|
+
"""
|
|
488
|
+
pulumi.set(__self__, "storage_account_container_url", storage_account_container_url)
|
|
489
|
+
|
|
490
|
+
@property
|
|
491
|
+
@pulumi.getter(name="storageAccountContainerUrl")
|
|
492
|
+
def storage_account_container_url(self) -> str:
|
|
493
|
+
"""
|
|
494
|
+
The Storage Account Container URL to upload diagnostics to.
|
|
495
|
+
"""
|
|
496
|
+
return pulumi.get(self, "storage_account_container_url")
|
|
497
|
+
|
|
498
|
+
|
|
499
|
+
@pulumi.output_type
|
|
500
|
+
class EventHubConfigurationResponse(dict):
|
|
501
|
+
"""
|
|
502
|
+
Configuration for sending packet core events to Azure Event Hub.
|
|
503
|
+
"""
|
|
504
|
+
@staticmethod
|
|
505
|
+
def __key_warning(key: str):
|
|
506
|
+
suggest = None
|
|
507
|
+
if key == "reportingInterval":
|
|
508
|
+
suggest = "reporting_interval"
|
|
509
|
+
|
|
510
|
+
if suggest:
|
|
511
|
+
pulumi.log.warn(f"Key '{key}' not found in EventHubConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
|
|
512
|
+
|
|
513
|
+
def __getitem__(self, key: str) -> Any:
|
|
514
|
+
EventHubConfigurationResponse.__key_warning(key)
|
|
515
|
+
return super().__getitem__(key)
|
|
516
|
+
|
|
517
|
+
def get(self, key: str, default = None) -> Any:
|
|
518
|
+
EventHubConfigurationResponse.__key_warning(key)
|
|
519
|
+
return super().get(key, default)
|
|
520
|
+
|
|
521
|
+
def __init__(__self__, *,
|
|
522
|
+
id: str,
|
|
523
|
+
reporting_interval: Optional[int] = None):
|
|
524
|
+
"""
|
|
525
|
+
Configuration for sending packet core events to Azure Event Hub.
|
|
526
|
+
:param str id: Resource ID of Azure Event Hub to send packet core events to.
|
|
527
|
+
:param int reporting_interval: The duration (in seconds) between UE usage reports.
|
|
528
|
+
"""
|
|
529
|
+
pulumi.set(__self__, "id", id)
|
|
530
|
+
if reporting_interval is None:
|
|
531
|
+
reporting_interval = 1800
|
|
532
|
+
if reporting_interval is not None:
|
|
533
|
+
pulumi.set(__self__, "reporting_interval", reporting_interval)
|
|
534
|
+
|
|
535
|
+
@property
|
|
536
|
+
@pulumi.getter
|
|
537
|
+
def id(self) -> str:
|
|
538
|
+
"""
|
|
539
|
+
Resource ID of Azure Event Hub to send packet core events to.
|
|
540
|
+
"""
|
|
541
|
+
return pulumi.get(self, "id")
|
|
542
|
+
|
|
543
|
+
@property
|
|
544
|
+
@pulumi.getter(name="reportingInterval")
|
|
545
|
+
def reporting_interval(self) -> Optional[int]:
|
|
546
|
+
"""
|
|
547
|
+
The duration (in seconds) between UE usage reports.
|
|
548
|
+
"""
|
|
549
|
+
return pulumi.get(self, "reporting_interval")
|
|
550
|
+
|
|
551
|
+
|
|
552
|
+
@pulumi.output_type
|
|
553
|
+
class HomeNetworkPrivateKeysProvisioningResponse(dict):
|
|
554
|
+
def __init__(__self__, *,
|
|
555
|
+
state: str):
|
|
556
|
+
"""
|
|
557
|
+
:param str state: The provisioning state of the private keys for SUPI concealment.
|
|
558
|
+
"""
|
|
559
|
+
pulumi.set(__self__, "state", state)
|
|
560
|
+
|
|
561
|
+
@property
|
|
562
|
+
@pulumi.getter
|
|
563
|
+
def state(self) -> str:
|
|
564
|
+
"""
|
|
565
|
+
The provisioning state of the private keys for SUPI concealment.
|
|
566
|
+
"""
|
|
567
|
+
return pulumi.get(self, "state")
|
|
568
|
+
|
|
569
|
+
|
|
570
|
+
@pulumi.output_type
|
|
571
|
+
class HomeNetworkPublicKeyResponse(dict):
|
|
572
|
+
"""
|
|
573
|
+
A key used for SUPI concealment.
|
|
574
|
+
"""
|
|
575
|
+
def __init__(__self__, *,
|
|
576
|
+
id: int,
|
|
577
|
+
url: Optional[str] = None):
|
|
578
|
+
"""
|
|
579
|
+
A key used for SUPI concealment.
|
|
580
|
+
:param int id: The Home Network Public Key Identifier determines which public key was used to generate the SUCI sent to the AMF. See TS 23.003 Section 2.2B Section 5.
|
|
581
|
+
:param str url: The URL of Azure Key Vault secret containing the private key, versioned or unversioned. For example: https://contosovault.vault.azure.net/secrets/mySuciPrivateKey/562a4bb76b524a1493a6afe8e536ee78.
|
|
582
|
+
"""
|
|
583
|
+
pulumi.set(__self__, "id", id)
|
|
584
|
+
if url is not None:
|
|
585
|
+
pulumi.set(__self__, "url", url)
|
|
586
|
+
|
|
587
|
+
@property
|
|
588
|
+
@pulumi.getter
|
|
589
|
+
def id(self) -> int:
|
|
590
|
+
"""
|
|
591
|
+
The Home Network Public Key Identifier determines which public key was used to generate the SUCI sent to the AMF. See TS 23.003 Section 2.2B Section 5.
|
|
592
|
+
"""
|
|
593
|
+
return pulumi.get(self, "id")
|
|
594
|
+
|
|
595
|
+
@property
|
|
596
|
+
@pulumi.getter
|
|
597
|
+
def url(self) -> Optional[str]:
|
|
598
|
+
"""
|
|
599
|
+
The URL of Azure Key Vault secret containing the private key, versioned or unversioned. For example: https://contosovault.vault.azure.net/secrets/mySuciPrivateKey/562a4bb76b524a1493a6afe8e536ee78.
|
|
600
|
+
"""
|
|
601
|
+
return pulumi.get(self, "url")
|
|
602
|
+
|
|
603
|
+
|
|
604
|
+
@pulumi.output_type
|
|
605
|
+
class HttpsServerCertificateResponse(dict):
|
|
606
|
+
"""
|
|
607
|
+
HTTPS server certificate configuration.
|
|
608
|
+
"""
|
|
609
|
+
@staticmethod
|
|
610
|
+
def __key_warning(key: str):
|
|
611
|
+
suggest = None
|
|
612
|
+
if key == "certificateUrl":
|
|
613
|
+
suggest = "certificate_url"
|
|
614
|
+
|
|
615
|
+
if suggest:
|
|
616
|
+
pulumi.log.warn(f"Key '{key}' not found in HttpsServerCertificateResponse. Access the value via the '{suggest}' property getter instead.")
|
|
617
|
+
|
|
618
|
+
def __getitem__(self, key: str) -> Any:
|
|
619
|
+
HttpsServerCertificateResponse.__key_warning(key)
|
|
620
|
+
return super().__getitem__(key)
|
|
621
|
+
|
|
622
|
+
def get(self, key: str, default = None) -> Any:
|
|
623
|
+
HttpsServerCertificateResponse.__key_warning(key)
|
|
624
|
+
return super().get(key, default)
|
|
625
|
+
|
|
626
|
+
def __init__(__self__, *,
|
|
627
|
+
certificate_url: str,
|
|
628
|
+
provisioning: 'outputs.CertificateProvisioningResponse'):
|
|
629
|
+
"""
|
|
630
|
+
HTTPS server certificate configuration.
|
|
631
|
+
:param str certificate_url: The certificate URL, unversioned. For example: https://contosovault.vault.azure.net/certificates/ingress.
|
|
632
|
+
:param 'CertificateProvisioningResponse' provisioning: The provisioning state of the certificate.
|
|
633
|
+
"""
|
|
634
|
+
pulumi.set(__self__, "certificate_url", certificate_url)
|
|
635
|
+
pulumi.set(__self__, "provisioning", provisioning)
|
|
636
|
+
|
|
637
|
+
@property
|
|
638
|
+
@pulumi.getter(name="certificateUrl")
|
|
639
|
+
def certificate_url(self) -> str:
|
|
640
|
+
"""
|
|
641
|
+
The certificate URL, unversioned. For example: https://contosovault.vault.azure.net/certificates/ingress.
|
|
642
|
+
"""
|
|
643
|
+
return pulumi.get(self, "certificate_url")
|
|
644
|
+
|
|
645
|
+
@property
|
|
646
|
+
@pulumi.getter
|
|
647
|
+
def provisioning(self) -> 'outputs.CertificateProvisioningResponse':
|
|
648
|
+
"""
|
|
649
|
+
The provisioning state of the certificate.
|
|
650
|
+
"""
|
|
651
|
+
return pulumi.get(self, "provisioning")
|
|
652
|
+
|
|
653
|
+
|
|
654
|
+
@pulumi.output_type
|
|
655
|
+
class InstallationResponse(dict):
|
|
656
|
+
"""
|
|
657
|
+
The installation state of the packet core.
|
|
658
|
+
"""
|
|
659
|
+
@staticmethod
|
|
660
|
+
def __key_warning(key: str):
|
|
661
|
+
suggest = None
|
|
662
|
+
if key == "reinstallRequired":
|
|
663
|
+
suggest = "reinstall_required"
|
|
664
|
+
elif key == "desiredState":
|
|
665
|
+
suggest = "desired_state"
|
|
666
|
+
|
|
667
|
+
if suggest:
|
|
668
|
+
pulumi.log.warn(f"Key '{key}' not found in InstallationResponse. Access the value via the '{suggest}' property getter instead.")
|
|
669
|
+
|
|
670
|
+
def __getitem__(self, key: str) -> Any:
|
|
671
|
+
InstallationResponse.__key_warning(key)
|
|
672
|
+
return super().__getitem__(key)
|
|
673
|
+
|
|
674
|
+
def get(self, key: str, default = None) -> Any:
|
|
675
|
+
InstallationResponse.__key_warning(key)
|
|
676
|
+
return super().get(key, default)
|
|
677
|
+
|
|
678
|
+
def __init__(__self__, *,
|
|
679
|
+
operation: 'outputs.AsyncOperationIdResponse',
|
|
680
|
+
reasons: Sequence[str],
|
|
681
|
+
reinstall_required: str,
|
|
682
|
+
state: str,
|
|
683
|
+
desired_state: Optional[str] = None):
|
|
684
|
+
"""
|
|
685
|
+
The installation state of the packet core.
|
|
686
|
+
:param 'AsyncOperationIdResponse' operation: A reference to an in-progress installation operation
|
|
687
|
+
:param Sequence[str] reasons: Reason(s) for the current installation state of the packet core.
|
|
688
|
+
:param str reinstall_required: Whether a reinstall of the packet core is required to pick up the latest configuration changes.
|
|
689
|
+
:param str state: Installation state
|
|
690
|
+
:param str desired_state: The desired installation state
|
|
691
|
+
"""
|
|
692
|
+
pulumi.set(__self__, "operation", operation)
|
|
693
|
+
pulumi.set(__self__, "reasons", reasons)
|
|
694
|
+
pulumi.set(__self__, "reinstall_required", reinstall_required)
|
|
695
|
+
pulumi.set(__self__, "state", state)
|
|
696
|
+
if desired_state is None:
|
|
697
|
+
desired_state = 'Installed'
|
|
698
|
+
if desired_state is not None:
|
|
699
|
+
pulumi.set(__self__, "desired_state", desired_state)
|
|
700
|
+
|
|
701
|
+
@property
|
|
702
|
+
@pulumi.getter
|
|
703
|
+
def operation(self) -> 'outputs.AsyncOperationIdResponse':
|
|
704
|
+
"""
|
|
705
|
+
A reference to an in-progress installation operation
|
|
706
|
+
"""
|
|
707
|
+
return pulumi.get(self, "operation")
|
|
708
|
+
|
|
709
|
+
@property
|
|
710
|
+
@pulumi.getter
|
|
711
|
+
def reasons(self) -> Sequence[str]:
|
|
712
|
+
"""
|
|
713
|
+
Reason(s) for the current installation state of the packet core.
|
|
714
|
+
"""
|
|
715
|
+
return pulumi.get(self, "reasons")
|
|
716
|
+
|
|
717
|
+
@property
|
|
718
|
+
@pulumi.getter(name="reinstallRequired")
|
|
719
|
+
def reinstall_required(self) -> str:
|
|
720
|
+
"""
|
|
721
|
+
Whether a reinstall of the packet core is required to pick up the latest configuration changes.
|
|
722
|
+
"""
|
|
723
|
+
return pulumi.get(self, "reinstall_required")
|
|
724
|
+
|
|
725
|
+
@property
|
|
726
|
+
@pulumi.getter
|
|
727
|
+
def state(self) -> str:
|
|
728
|
+
"""
|
|
729
|
+
Installation state
|
|
730
|
+
"""
|
|
731
|
+
return pulumi.get(self, "state")
|
|
732
|
+
|
|
733
|
+
@property
|
|
734
|
+
@pulumi.getter(name="desiredState")
|
|
735
|
+
def desired_state(self) -> Optional[str]:
|
|
736
|
+
"""
|
|
737
|
+
The desired installation state
|
|
738
|
+
"""
|
|
739
|
+
return pulumi.get(self, "desired_state")
|
|
740
|
+
|
|
741
|
+
|
|
742
|
+
@pulumi.output_type
|
|
743
|
+
class InterfacePropertiesResponse(dict):
|
|
744
|
+
"""
|
|
745
|
+
Interface properties
|
|
746
|
+
"""
|
|
747
|
+
@staticmethod
|
|
748
|
+
def __key_warning(key: str):
|
|
749
|
+
suggest = None
|
|
750
|
+
if key == "bfdIpv4Endpoints":
|
|
751
|
+
suggest = "bfd_ipv4_endpoints"
|
|
752
|
+
elif key == "ipv4Address":
|
|
753
|
+
suggest = "ipv4_address"
|
|
754
|
+
elif key == "ipv4AddressList":
|
|
755
|
+
suggest = "ipv4_address_list"
|
|
756
|
+
elif key == "ipv4Gateway":
|
|
757
|
+
suggest = "ipv4_gateway"
|
|
758
|
+
elif key == "ipv4Subnet":
|
|
759
|
+
suggest = "ipv4_subnet"
|
|
760
|
+
elif key == "vlanId":
|
|
761
|
+
suggest = "vlan_id"
|
|
762
|
+
|
|
763
|
+
if suggest:
|
|
764
|
+
pulumi.log.warn(f"Key '{key}' not found in InterfacePropertiesResponse. Access the value via the '{suggest}' property getter instead.")
|
|
765
|
+
|
|
766
|
+
def __getitem__(self, key: str) -> Any:
|
|
767
|
+
InterfacePropertiesResponse.__key_warning(key)
|
|
768
|
+
return super().__getitem__(key)
|
|
769
|
+
|
|
770
|
+
def get(self, key: str, default = None) -> Any:
|
|
771
|
+
InterfacePropertiesResponse.__key_warning(key)
|
|
772
|
+
return super().get(key, default)
|
|
773
|
+
|
|
774
|
+
def __init__(__self__, *,
|
|
775
|
+
bfd_ipv4_endpoints: Optional[Sequence[str]] = None,
|
|
776
|
+
ipv4_address: Optional[str] = None,
|
|
777
|
+
ipv4_address_list: Optional[Sequence[str]] = None,
|
|
778
|
+
ipv4_gateway: Optional[str] = None,
|
|
779
|
+
ipv4_subnet: Optional[str] = None,
|
|
780
|
+
name: Optional[str] = None,
|
|
781
|
+
vlan_id: Optional[int] = None):
|
|
782
|
+
"""
|
|
783
|
+
Interface properties
|
|
784
|
+
:param Sequence[str] bfd_ipv4_endpoints: The IPv4 addresses of the endpoints to send BFD probes to.
|
|
785
|
+
:param str ipv4_address: The IPv4 address.
|
|
786
|
+
:param Sequence[str] ipv4_address_list: The list of IPv4 addresses, for a multi-node system.
|
|
787
|
+
:param str ipv4_gateway: The default IPv4 gateway (router).
|
|
788
|
+
:param str ipv4_subnet: The IPv4 subnet.
|
|
789
|
+
:param str name: The logical name for this interface. This should match one of the interfaces configured on your Azure Stack Edge device.
|
|
790
|
+
:param int vlan_id: VLAN identifier of the network interface. Example: 501.
|
|
791
|
+
"""
|
|
792
|
+
if bfd_ipv4_endpoints is not None:
|
|
793
|
+
pulumi.set(__self__, "bfd_ipv4_endpoints", bfd_ipv4_endpoints)
|
|
794
|
+
if ipv4_address is not None:
|
|
795
|
+
pulumi.set(__self__, "ipv4_address", ipv4_address)
|
|
796
|
+
if ipv4_address_list is not None:
|
|
797
|
+
pulumi.set(__self__, "ipv4_address_list", ipv4_address_list)
|
|
798
|
+
if ipv4_gateway is not None:
|
|
799
|
+
pulumi.set(__self__, "ipv4_gateway", ipv4_gateway)
|
|
800
|
+
if ipv4_subnet is not None:
|
|
801
|
+
pulumi.set(__self__, "ipv4_subnet", ipv4_subnet)
|
|
802
|
+
if name is not None:
|
|
803
|
+
pulumi.set(__self__, "name", name)
|
|
804
|
+
if vlan_id is not None:
|
|
805
|
+
pulumi.set(__self__, "vlan_id", vlan_id)
|
|
806
|
+
|
|
807
|
+
@property
|
|
808
|
+
@pulumi.getter(name="bfdIpv4Endpoints")
|
|
809
|
+
def bfd_ipv4_endpoints(self) -> Optional[Sequence[str]]:
|
|
810
|
+
"""
|
|
811
|
+
The IPv4 addresses of the endpoints to send BFD probes to.
|
|
812
|
+
"""
|
|
813
|
+
return pulumi.get(self, "bfd_ipv4_endpoints")
|
|
814
|
+
|
|
815
|
+
@property
|
|
816
|
+
@pulumi.getter(name="ipv4Address")
|
|
817
|
+
def ipv4_address(self) -> Optional[str]:
|
|
818
|
+
"""
|
|
819
|
+
The IPv4 address.
|
|
820
|
+
"""
|
|
821
|
+
return pulumi.get(self, "ipv4_address")
|
|
822
|
+
|
|
823
|
+
@property
|
|
824
|
+
@pulumi.getter(name="ipv4AddressList")
|
|
825
|
+
def ipv4_address_list(self) -> Optional[Sequence[str]]:
|
|
826
|
+
"""
|
|
827
|
+
The list of IPv4 addresses, for a multi-node system.
|
|
828
|
+
"""
|
|
829
|
+
return pulumi.get(self, "ipv4_address_list")
|
|
830
|
+
|
|
831
|
+
@property
|
|
832
|
+
@pulumi.getter(name="ipv4Gateway")
|
|
833
|
+
def ipv4_gateway(self) -> Optional[str]:
|
|
834
|
+
"""
|
|
835
|
+
The default IPv4 gateway (router).
|
|
836
|
+
"""
|
|
837
|
+
return pulumi.get(self, "ipv4_gateway")
|
|
838
|
+
|
|
839
|
+
@property
|
|
840
|
+
@pulumi.getter(name="ipv4Subnet")
|
|
841
|
+
def ipv4_subnet(self) -> Optional[str]:
|
|
842
|
+
"""
|
|
843
|
+
The IPv4 subnet.
|
|
844
|
+
"""
|
|
845
|
+
return pulumi.get(self, "ipv4_subnet")
|
|
846
|
+
|
|
847
|
+
@property
|
|
848
|
+
@pulumi.getter
|
|
849
|
+
def name(self) -> Optional[str]:
|
|
850
|
+
"""
|
|
851
|
+
The logical name for this interface. This should match one of the interfaces configured on your Azure Stack Edge device.
|
|
852
|
+
"""
|
|
853
|
+
return pulumi.get(self, "name")
|
|
854
|
+
|
|
855
|
+
@property
|
|
856
|
+
@pulumi.getter(name="vlanId")
|
|
857
|
+
def vlan_id(self) -> Optional[int]:
|
|
858
|
+
"""
|
|
859
|
+
VLAN identifier of the network interface. Example: 501.
|
|
860
|
+
"""
|
|
861
|
+
return pulumi.get(self, "vlan_id")
|
|
862
|
+
|
|
863
|
+
|
|
864
|
+
@pulumi.output_type
|
|
865
|
+
class KeyVaultKeyResponse(dict):
|
|
866
|
+
"""
|
|
867
|
+
An Azure key vault key.
|
|
868
|
+
"""
|
|
869
|
+
@staticmethod
|
|
870
|
+
def __key_warning(key: str):
|
|
871
|
+
suggest = None
|
|
872
|
+
if key == "keyUrl":
|
|
873
|
+
suggest = "key_url"
|
|
874
|
+
|
|
875
|
+
if suggest:
|
|
876
|
+
pulumi.log.warn(f"Key '{key}' not found in KeyVaultKeyResponse. Access the value via the '{suggest}' property getter instead.")
|
|
877
|
+
|
|
878
|
+
def __getitem__(self, key: str) -> Any:
|
|
879
|
+
KeyVaultKeyResponse.__key_warning(key)
|
|
880
|
+
return super().__getitem__(key)
|
|
881
|
+
|
|
882
|
+
def get(self, key: str, default = None) -> Any:
|
|
883
|
+
KeyVaultKeyResponse.__key_warning(key)
|
|
884
|
+
return super().get(key, default)
|
|
885
|
+
|
|
886
|
+
def __init__(__self__, *,
|
|
887
|
+
key_url: Optional[str] = None):
|
|
888
|
+
"""
|
|
889
|
+
An Azure key vault key.
|
|
890
|
+
:param str key_url: The key URL, unversioned. For example: https://contosovault.vault.azure.net/keys/azureKey.
|
|
891
|
+
"""
|
|
892
|
+
if key_url is not None:
|
|
893
|
+
pulumi.set(__self__, "key_url", key_url)
|
|
894
|
+
|
|
895
|
+
@property
|
|
896
|
+
@pulumi.getter(name="keyUrl")
|
|
897
|
+
def key_url(self) -> Optional[str]:
|
|
898
|
+
"""
|
|
899
|
+
The key URL, unversioned. For example: https://contosovault.vault.azure.net/keys/azureKey.
|
|
900
|
+
"""
|
|
901
|
+
return pulumi.get(self, "key_url")
|
|
902
|
+
|
|
903
|
+
|
|
904
|
+
@pulumi.output_type
|
|
905
|
+
class LocalDiagnosticsAccessConfigurationResponse(dict):
|
|
906
|
+
"""
|
|
907
|
+
The kubernetes ingress configuration to control access to packet core diagnostics over local APIs.
|
|
908
|
+
"""
|
|
909
|
+
@staticmethod
|
|
910
|
+
def __key_warning(key: str):
|
|
911
|
+
suggest = None
|
|
912
|
+
if key == "authenticationType":
|
|
913
|
+
suggest = "authentication_type"
|
|
914
|
+
elif key == "httpsServerCertificate":
|
|
915
|
+
suggest = "https_server_certificate"
|
|
916
|
+
|
|
917
|
+
if suggest:
|
|
918
|
+
pulumi.log.warn(f"Key '{key}' not found in LocalDiagnosticsAccessConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
|
|
919
|
+
|
|
920
|
+
def __getitem__(self, key: str) -> Any:
|
|
921
|
+
LocalDiagnosticsAccessConfigurationResponse.__key_warning(key)
|
|
922
|
+
return super().__getitem__(key)
|
|
923
|
+
|
|
924
|
+
def get(self, key: str, default = None) -> Any:
|
|
925
|
+
LocalDiagnosticsAccessConfigurationResponse.__key_warning(key)
|
|
926
|
+
return super().get(key, default)
|
|
927
|
+
|
|
928
|
+
def __init__(__self__, *,
|
|
929
|
+
authentication_type: str,
|
|
930
|
+
https_server_certificate: Optional['outputs.HttpsServerCertificateResponse'] = None):
|
|
931
|
+
"""
|
|
932
|
+
The kubernetes ingress configuration to control access to packet core diagnostics over local APIs.
|
|
933
|
+
:param str authentication_type: How to authenticate users who access local diagnostics APIs.
|
|
934
|
+
:param 'HttpsServerCertificateResponse' https_server_certificate: The HTTPS server TLS certificate used to secure local access to diagnostics.
|
|
935
|
+
"""
|
|
936
|
+
pulumi.set(__self__, "authentication_type", authentication_type)
|
|
937
|
+
if https_server_certificate is not None:
|
|
938
|
+
pulumi.set(__self__, "https_server_certificate", https_server_certificate)
|
|
939
|
+
|
|
940
|
+
@property
|
|
941
|
+
@pulumi.getter(name="authenticationType")
|
|
942
|
+
def authentication_type(self) -> str:
|
|
943
|
+
"""
|
|
944
|
+
How to authenticate users who access local diagnostics APIs.
|
|
945
|
+
"""
|
|
946
|
+
return pulumi.get(self, "authentication_type")
|
|
947
|
+
|
|
948
|
+
@property
|
|
949
|
+
@pulumi.getter(name="httpsServerCertificate")
|
|
950
|
+
def https_server_certificate(self) -> Optional['outputs.HttpsServerCertificateResponse']:
|
|
951
|
+
"""
|
|
952
|
+
The HTTPS server TLS certificate used to secure local access to diagnostics.
|
|
953
|
+
"""
|
|
954
|
+
return pulumi.get(self, "https_server_certificate")
|
|
955
|
+
|
|
956
|
+
|
|
957
|
+
@pulumi.output_type
|
|
958
|
+
class ManagedServiceIdentityResponse(dict):
|
|
959
|
+
"""
|
|
960
|
+
Managed service identity (User assigned identity)
|
|
961
|
+
"""
|
|
962
|
+
@staticmethod
|
|
963
|
+
def __key_warning(key: str):
|
|
964
|
+
suggest = None
|
|
965
|
+
if key == "userAssignedIdentities":
|
|
966
|
+
suggest = "user_assigned_identities"
|
|
967
|
+
|
|
968
|
+
if suggest:
|
|
969
|
+
pulumi.log.warn(f"Key '{key}' not found in ManagedServiceIdentityResponse. Access the value via the '{suggest}' property getter instead.")
|
|
970
|
+
|
|
971
|
+
def __getitem__(self, key: str) -> Any:
|
|
972
|
+
ManagedServiceIdentityResponse.__key_warning(key)
|
|
973
|
+
return super().__getitem__(key)
|
|
974
|
+
|
|
975
|
+
def get(self, key: str, default = None) -> Any:
|
|
976
|
+
ManagedServiceIdentityResponse.__key_warning(key)
|
|
977
|
+
return super().get(key, default)
|
|
978
|
+
|
|
979
|
+
def __init__(__self__, *,
|
|
980
|
+
type: str,
|
|
981
|
+
user_assigned_identities: Optional[Mapping[str, 'outputs.UserAssignedIdentityResponse']] = None):
|
|
982
|
+
"""
|
|
983
|
+
Managed service identity (User assigned identity)
|
|
984
|
+
:param str type: Type of managed service identity (currently only UserAssigned allowed).
|
|
985
|
+
:param Mapping[str, 'UserAssignedIdentityResponse'] user_assigned_identities: The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
|
|
986
|
+
"""
|
|
987
|
+
pulumi.set(__self__, "type", type)
|
|
988
|
+
if user_assigned_identities is not None:
|
|
989
|
+
pulumi.set(__self__, "user_assigned_identities", user_assigned_identities)
|
|
990
|
+
|
|
991
|
+
@property
|
|
992
|
+
@pulumi.getter
|
|
993
|
+
def type(self) -> str:
|
|
994
|
+
"""
|
|
995
|
+
Type of managed service identity (currently only UserAssigned allowed).
|
|
996
|
+
"""
|
|
997
|
+
return pulumi.get(self, "type")
|
|
998
|
+
|
|
999
|
+
@property
|
|
1000
|
+
@pulumi.getter(name="userAssignedIdentities")
|
|
1001
|
+
def user_assigned_identities(self) -> Optional[Mapping[str, 'outputs.UserAssignedIdentityResponse']]:
|
|
1002
|
+
"""
|
|
1003
|
+
The set of user assigned identities associated with the resource. The userAssignedIdentities dictionary keys will be ARM resource ids in the form: '/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/Microsoft.ManagedIdentity/userAssignedIdentities/{identityName}. The dictionary values can be empty objects ({}) in requests.
|
|
1004
|
+
"""
|
|
1005
|
+
return pulumi.get(self, "user_assigned_identities")
|
|
1006
|
+
|
|
1007
|
+
|
|
1008
|
+
@pulumi.output_type
|
|
1009
|
+
class MobileNetworkResourceIdResponse(dict):
|
|
1010
|
+
"""
|
|
1011
|
+
Reference to a mobile network resource.
|
|
1012
|
+
"""
|
|
1013
|
+
def __init__(__self__, *,
|
|
1014
|
+
id: str):
|
|
1015
|
+
"""
|
|
1016
|
+
Reference to a mobile network resource.
|
|
1017
|
+
:param str id: Mobile network resource ID.
|
|
1018
|
+
"""
|
|
1019
|
+
pulumi.set(__self__, "id", id)
|
|
1020
|
+
|
|
1021
|
+
@property
|
|
1022
|
+
@pulumi.getter
|
|
1023
|
+
def id(self) -> str:
|
|
1024
|
+
"""
|
|
1025
|
+
Mobile network resource ID.
|
|
1026
|
+
"""
|
|
1027
|
+
return pulumi.get(self, "id")
|
|
1028
|
+
|
|
1029
|
+
|
|
1030
|
+
@pulumi.output_type
|
|
1031
|
+
class NASRerouteConfigurationResponse(dict):
|
|
1032
|
+
"""
|
|
1033
|
+
Configuration enabling NAS reroute.
|
|
1034
|
+
"""
|
|
1035
|
+
@staticmethod
|
|
1036
|
+
def __key_warning(key: str):
|
|
1037
|
+
suggest = None
|
|
1038
|
+
if key == "macroMmeGroupId":
|
|
1039
|
+
suggest = "macro_mme_group_id"
|
|
1040
|
+
|
|
1041
|
+
if suggest:
|
|
1042
|
+
pulumi.log.warn(f"Key '{key}' not found in NASRerouteConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1043
|
+
|
|
1044
|
+
def __getitem__(self, key: str) -> Any:
|
|
1045
|
+
NASRerouteConfigurationResponse.__key_warning(key)
|
|
1046
|
+
return super().__getitem__(key)
|
|
1047
|
+
|
|
1048
|
+
def get(self, key: str, default = None) -> Any:
|
|
1049
|
+
NASRerouteConfigurationResponse.__key_warning(key)
|
|
1050
|
+
return super().get(key, default)
|
|
1051
|
+
|
|
1052
|
+
def __init__(__self__, *,
|
|
1053
|
+
macro_mme_group_id: int):
|
|
1054
|
+
"""
|
|
1055
|
+
Configuration enabling NAS reroute.
|
|
1056
|
+
:param int macro_mme_group_id: The macro network's MME group ID. This is where unknown UEs are sent to via NAS reroute.
|
|
1057
|
+
"""
|
|
1058
|
+
pulumi.set(__self__, "macro_mme_group_id", macro_mme_group_id)
|
|
1059
|
+
|
|
1060
|
+
@property
|
|
1061
|
+
@pulumi.getter(name="macroMmeGroupId")
|
|
1062
|
+
def macro_mme_group_id(self) -> int:
|
|
1063
|
+
"""
|
|
1064
|
+
The macro network's MME group ID. This is where unknown UEs are sent to via NAS reroute.
|
|
1065
|
+
"""
|
|
1066
|
+
return pulumi.get(self, "macro_mme_group_id")
|
|
1067
|
+
|
|
1068
|
+
|
|
1069
|
+
@pulumi.output_type
|
|
1070
|
+
class NaptConfigurationResponse(dict):
|
|
1071
|
+
"""
|
|
1072
|
+
The network address and port translation settings to use for the attached data network.
|
|
1073
|
+
"""
|
|
1074
|
+
@staticmethod
|
|
1075
|
+
def __key_warning(key: str):
|
|
1076
|
+
suggest = None
|
|
1077
|
+
if key == "pinholeLimits":
|
|
1078
|
+
suggest = "pinhole_limits"
|
|
1079
|
+
elif key == "pinholeTimeouts":
|
|
1080
|
+
suggest = "pinhole_timeouts"
|
|
1081
|
+
elif key == "portRange":
|
|
1082
|
+
suggest = "port_range"
|
|
1083
|
+
elif key == "portReuseHoldTime":
|
|
1084
|
+
suggest = "port_reuse_hold_time"
|
|
1085
|
+
|
|
1086
|
+
if suggest:
|
|
1087
|
+
pulumi.log.warn(f"Key '{key}' not found in NaptConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1088
|
+
|
|
1089
|
+
def __getitem__(self, key: str) -> Any:
|
|
1090
|
+
NaptConfigurationResponse.__key_warning(key)
|
|
1091
|
+
return super().__getitem__(key)
|
|
1092
|
+
|
|
1093
|
+
def get(self, key: str, default = None) -> Any:
|
|
1094
|
+
NaptConfigurationResponse.__key_warning(key)
|
|
1095
|
+
return super().get(key, default)
|
|
1096
|
+
|
|
1097
|
+
def __init__(__self__, *,
|
|
1098
|
+
enabled: Optional[str] = None,
|
|
1099
|
+
pinhole_limits: Optional[int] = None,
|
|
1100
|
+
pinhole_timeouts: Optional['outputs.PinholeTimeoutsResponse'] = None,
|
|
1101
|
+
port_range: Optional['outputs.PortRangeResponse'] = None,
|
|
1102
|
+
port_reuse_hold_time: Optional['outputs.PortReuseHoldTimesResponse'] = None):
|
|
1103
|
+
"""
|
|
1104
|
+
The network address and port translation settings to use for the attached data network.
|
|
1105
|
+
:param str enabled: Whether NAPT is enabled for connections to this attached data network.
|
|
1106
|
+
:param int pinhole_limits: Maximum number of UDP and TCP pinholes that can be open simultaneously on the core interface. For 5G networks, this is the N6 interface. For 4G networks, this is the SGi interface.
|
|
1107
|
+
:param 'PinholeTimeoutsResponse' pinhole_timeouts: Expiry times of inactive NAPT pinholes, in seconds. All timers must be at least 1 second.
|
|
1108
|
+
:param 'PortRangeResponse' port_range: Range of port numbers to use as translated ports on each translated address.
|
|
1109
|
+
If not specified and NAPT is enabled, this range defaults to 1,024 - 49,999.
|
|
1110
|
+
(Ports under 1,024 should not be used because these are special purpose ports reserved by IANA. Ports 50,000 and above are reserved for non-NAPT use.)
|
|
1111
|
+
:param 'PortReuseHoldTimesResponse' port_reuse_hold_time: The minimum time (in seconds) that will pass before a port that was used by a closed pinhole can be recycled for use by another pinhole. All hold times must be at least 1 second.
|
|
1112
|
+
"""
|
|
1113
|
+
if enabled is not None:
|
|
1114
|
+
pulumi.set(__self__, "enabled", enabled)
|
|
1115
|
+
if pinhole_limits is None:
|
|
1116
|
+
pinhole_limits = 65536
|
|
1117
|
+
if pinhole_limits is not None:
|
|
1118
|
+
pulumi.set(__self__, "pinhole_limits", pinhole_limits)
|
|
1119
|
+
if pinhole_timeouts is not None:
|
|
1120
|
+
pulumi.set(__self__, "pinhole_timeouts", pinhole_timeouts)
|
|
1121
|
+
if port_range is not None:
|
|
1122
|
+
pulumi.set(__self__, "port_range", port_range)
|
|
1123
|
+
if port_reuse_hold_time is not None:
|
|
1124
|
+
pulumi.set(__self__, "port_reuse_hold_time", port_reuse_hold_time)
|
|
1125
|
+
|
|
1126
|
+
@property
|
|
1127
|
+
@pulumi.getter
|
|
1128
|
+
def enabled(self) -> Optional[str]:
|
|
1129
|
+
"""
|
|
1130
|
+
Whether NAPT is enabled for connections to this attached data network.
|
|
1131
|
+
"""
|
|
1132
|
+
return pulumi.get(self, "enabled")
|
|
1133
|
+
|
|
1134
|
+
@property
|
|
1135
|
+
@pulumi.getter(name="pinholeLimits")
|
|
1136
|
+
def pinhole_limits(self) -> Optional[int]:
|
|
1137
|
+
"""
|
|
1138
|
+
Maximum number of UDP and TCP pinholes that can be open simultaneously on the core interface. For 5G networks, this is the N6 interface. For 4G networks, this is the SGi interface.
|
|
1139
|
+
"""
|
|
1140
|
+
return pulumi.get(self, "pinhole_limits")
|
|
1141
|
+
|
|
1142
|
+
@property
|
|
1143
|
+
@pulumi.getter(name="pinholeTimeouts")
|
|
1144
|
+
def pinhole_timeouts(self) -> Optional['outputs.PinholeTimeoutsResponse']:
|
|
1145
|
+
"""
|
|
1146
|
+
Expiry times of inactive NAPT pinholes, in seconds. All timers must be at least 1 second.
|
|
1147
|
+
"""
|
|
1148
|
+
return pulumi.get(self, "pinhole_timeouts")
|
|
1149
|
+
|
|
1150
|
+
@property
|
|
1151
|
+
@pulumi.getter(name="portRange")
|
|
1152
|
+
def port_range(self) -> Optional['outputs.PortRangeResponse']:
|
|
1153
|
+
"""
|
|
1154
|
+
Range of port numbers to use as translated ports on each translated address.
|
|
1155
|
+
If not specified and NAPT is enabled, this range defaults to 1,024 - 49,999.
|
|
1156
|
+
(Ports under 1,024 should not be used because these are special purpose ports reserved by IANA. Ports 50,000 and above are reserved for non-NAPT use.)
|
|
1157
|
+
"""
|
|
1158
|
+
return pulumi.get(self, "port_range")
|
|
1159
|
+
|
|
1160
|
+
@property
|
|
1161
|
+
@pulumi.getter(name="portReuseHoldTime")
|
|
1162
|
+
def port_reuse_hold_time(self) -> Optional['outputs.PortReuseHoldTimesResponse']:
|
|
1163
|
+
"""
|
|
1164
|
+
The minimum time (in seconds) that will pass before a port that was used by a closed pinhole can be recycled for use by another pinhole. All hold times must be at least 1 second.
|
|
1165
|
+
"""
|
|
1166
|
+
return pulumi.get(self, "port_reuse_hold_time")
|
|
1167
|
+
|
|
1168
|
+
|
|
1169
|
+
@pulumi.output_type
|
|
1170
|
+
class PccRuleConfigurationResponse(dict):
|
|
1171
|
+
"""
|
|
1172
|
+
Data flow policy rule configuration
|
|
1173
|
+
"""
|
|
1174
|
+
@staticmethod
|
|
1175
|
+
def __key_warning(key: str):
|
|
1176
|
+
suggest = None
|
|
1177
|
+
if key == "ruleName":
|
|
1178
|
+
suggest = "rule_name"
|
|
1179
|
+
elif key == "rulePrecedence":
|
|
1180
|
+
suggest = "rule_precedence"
|
|
1181
|
+
elif key == "serviceDataFlowTemplates":
|
|
1182
|
+
suggest = "service_data_flow_templates"
|
|
1183
|
+
elif key == "ruleQosPolicy":
|
|
1184
|
+
suggest = "rule_qos_policy"
|
|
1185
|
+
elif key == "trafficControl":
|
|
1186
|
+
suggest = "traffic_control"
|
|
1187
|
+
|
|
1188
|
+
if suggest:
|
|
1189
|
+
pulumi.log.warn(f"Key '{key}' not found in PccRuleConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1190
|
+
|
|
1191
|
+
def __getitem__(self, key: str) -> Any:
|
|
1192
|
+
PccRuleConfigurationResponse.__key_warning(key)
|
|
1193
|
+
return super().__getitem__(key)
|
|
1194
|
+
|
|
1195
|
+
def get(self, key: str, default = None) -> Any:
|
|
1196
|
+
PccRuleConfigurationResponse.__key_warning(key)
|
|
1197
|
+
return super().get(key, default)
|
|
1198
|
+
|
|
1199
|
+
def __init__(__self__, *,
|
|
1200
|
+
rule_name: str,
|
|
1201
|
+
rule_precedence: int,
|
|
1202
|
+
service_data_flow_templates: Sequence['outputs.ServiceDataFlowTemplateResponse'],
|
|
1203
|
+
rule_qos_policy: Optional['outputs.PccRuleQosPolicyResponse'] = None,
|
|
1204
|
+
traffic_control: Optional[str] = None):
|
|
1205
|
+
"""
|
|
1206
|
+
Data flow policy rule configuration
|
|
1207
|
+
:param str rule_name: The name of the rule. This must be unique within the parent service. You must not use any of the following reserved strings - `default`, `requested` or `service`.
|
|
1208
|
+
:param int rule_precedence: A precedence value that is used to decide between data flow policy rules when identifying the QoS values to use for a particular SIM. A lower value means a higher priority. This value should be unique among all data flow policy rules configured in the mobile network.
|
|
1209
|
+
:param Sequence['ServiceDataFlowTemplateResponse'] service_data_flow_templates: The set of data flow templates to use for this data flow policy rule.
|
|
1210
|
+
:param 'PccRuleQosPolicyResponse' rule_qos_policy: The QoS policy to use for packets matching this rule. If this field is null then the parent service will define the QoS settings.
|
|
1211
|
+
:param str traffic_control: Determines whether flows that match this data flow policy rule are permitted.
|
|
1212
|
+
"""
|
|
1213
|
+
pulumi.set(__self__, "rule_name", rule_name)
|
|
1214
|
+
pulumi.set(__self__, "rule_precedence", rule_precedence)
|
|
1215
|
+
pulumi.set(__self__, "service_data_flow_templates", service_data_flow_templates)
|
|
1216
|
+
if rule_qos_policy is not None:
|
|
1217
|
+
pulumi.set(__self__, "rule_qos_policy", rule_qos_policy)
|
|
1218
|
+
if traffic_control is None:
|
|
1219
|
+
traffic_control = 'Enabled'
|
|
1220
|
+
if traffic_control is not None:
|
|
1221
|
+
pulumi.set(__self__, "traffic_control", traffic_control)
|
|
1222
|
+
|
|
1223
|
+
@property
|
|
1224
|
+
@pulumi.getter(name="ruleName")
|
|
1225
|
+
def rule_name(self) -> str:
|
|
1226
|
+
"""
|
|
1227
|
+
The name of the rule. This must be unique within the parent service. You must not use any of the following reserved strings - `default`, `requested` or `service`.
|
|
1228
|
+
"""
|
|
1229
|
+
return pulumi.get(self, "rule_name")
|
|
1230
|
+
|
|
1231
|
+
@property
|
|
1232
|
+
@pulumi.getter(name="rulePrecedence")
|
|
1233
|
+
def rule_precedence(self) -> int:
|
|
1234
|
+
"""
|
|
1235
|
+
A precedence value that is used to decide between data flow policy rules when identifying the QoS values to use for a particular SIM. A lower value means a higher priority. This value should be unique among all data flow policy rules configured in the mobile network.
|
|
1236
|
+
"""
|
|
1237
|
+
return pulumi.get(self, "rule_precedence")
|
|
1238
|
+
|
|
1239
|
+
@property
|
|
1240
|
+
@pulumi.getter(name="serviceDataFlowTemplates")
|
|
1241
|
+
def service_data_flow_templates(self) -> Sequence['outputs.ServiceDataFlowTemplateResponse']:
|
|
1242
|
+
"""
|
|
1243
|
+
The set of data flow templates to use for this data flow policy rule.
|
|
1244
|
+
"""
|
|
1245
|
+
return pulumi.get(self, "service_data_flow_templates")
|
|
1246
|
+
|
|
1247
|
+
@property
|
|
1248
|
+
@pulumi.getter(name="ruleQosPolicy")
|
|
1249
|
+
def rule_qos_policy(self) -> Optional['outputs.PccRuleQosPolicyResponse']:
|
|
1250
|
+
"""
|
|
1251
|
+
The QoS policy to use for packets matching this rule. If this field is null then the parent service will define the QoS settings.
|
|
1252
|
+
"""
|
|
1253
|
+
return pulumi.get(self, "rule_qos_policy")
|
|
1254
|
+
|
|
1255
|
+
@property
|
|
1256
|
+
@pulumi.getter(name="trafficControl")
|
|
1257
|
+
def traffic_control(self) -> Optional[str]:
|
|
1258
|
+
"""
|
|
1259
|
+
Determines whether flows that match this data flow policy rule are permitted.
|
|
1260
|
+
"""
|
|
1261
|
+
return pulumi.get(self, "traffic_control")
|
|
1262
|
+
|
|
1263
|
+
|
|
1264
|
+
@pulumi.output_type
|
|
1265
|
+
class PccRuleQosPolicyResponse(dict):
|
|
1266
|
+
"""
|
|
1267
|
+
Data flow policy rule QoS policy
|
|
1268
|
+
"""
|
|
1269
|
+
@staticmethod
|
|
1270
|
+
def __key_warning(key: str):
|
|
1271
|
+
suggest = None
|
|
1272
|
+
if key == "maximumBitRate":
|
|
1273
|
+
suggest = "maximum_bit_rate"
|
|
1274
|
+
elif key == "allocationAndRetentionPriorityLevel":
|
|
1275
|
+
suggest = "allocation_and_retention_priority_level"
|
|
1276
|
+
elif key == "fiveQi":
|
|
1277
|
+
suggest = "five_qi"
|
|
1278
|
+
elif key == "guaranteedBitRate":
|
|
1279
|
+
suggest = "guaranteed_bit_rate"
|
|
1280
|
+
elif key == "preemptionCapability":
|
|
1281
|
+
suggest = "preemption_capability"
|
|
1282
|
+
elif key == "preemptionVulnerability":
|
|
1283
|
+
suggest = "preemption_vulnerability"
|
|
1284
|
+
|
|
1285
|
+
if suggest:
|
|
1286
|
+
pulumi.log.warn(f"Key '{key}' not found in PccRuleQosPolicyResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1287
|
+
|
|
1288
|
+
def __getitem__(self, key: str) -> Any:
|
|
1289
|
+
PccRuleQosPolicyResponse.__key_warning(key)
|
|
1290
|
+
return super().__getitem__(key)
|
|
1291
|
+
|
|
1292
|
+
def get(self, key: str, default = None) -> Any:
|
|
1293
|
+
PccRuleQosPolicyResponse.__key_warning(key)
|
|
1294
|
+
return super().get(key, default)
|
|
1295
|
+
|
|
1296
|
+
def __init__(__self__, *,
|
|
1297
|
+
maximum_bit_rate: 'outputs.AmbrResponse',
|
|
1298
|
+
allocation_and_retention_priority_level: Optional[int] = None,
|
|
1299
|
+
five_qi: Optional[int] = None,
|
|
1300
|
+
guaranteed_bit_rate: Optional['outputs.AmbrResponse'] = None,
|
|
1301
|
+
preemption_capability: Optional[str] = None,
|
|
1302
|
+
preemption_vulnerability: Optional[str] = None):
|
|
1303
|
+
"""
|
|
1304
|
+
Data flow policy rule QoS policy
|
|
1305
|
+
:param 'AmbrResponse' maximum_bit_rate: The maximum bit rate (MBR) for all service data flows that use this data flow policy rule or service.
|
|
1306
|
+
:param int allocation_and_retention_priority_level: QoS Flow allocation and retention priority (ARP) level. Flows with higher priority preempt flows with lower priority, if the settings of `preemptionCapability` and `preemptionVulnerability` allow it. 1 is the highest level of priority. If this field is not specified then `5qi` is used to derive the ARP value. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
|
|
1307
|
+
:param int five_qi: 5G QoS Flow Indicator value. The 5QI identifies a specific QoS forwarding treatment to be provided to a flow. See 3GPP TS23.501 section 5.7.2.1 for a full description of the 5QI parameter, and table 5.7.4-1 for the definition the 5QI values.
|
|
1308
|
+
:param 'AmbrResponse' guaranteed_bit_rate: The guaranteed bit rate (GBR) for all service data flows that use this data flow policy rule. This is an optional setting. If you do not provide a value, there will be no GBR set for the data flow policy rule that uses this QoS definition.
|
|
1309
|
+
:param str preemption_capability: QoS Flow preemption capability. The preemption capability of a QoS Flow controls whether it can preempt another QoS Flow with a lower priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
|
|
1310
|
+
:param str preemption_vulnerability: QoS Flow preemption vulnerability. The preemption vulnerability of a QoS Flow controls whether it can be preempted by a QoS Flow with a higher priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
|
|
1311
|
+
"""
|
|
1312
|
+
pulumi.set(__self__, "maximum_bit_rate", maximum_bit_rate)
|
|
1313
|
+
if allocation_and_retention_priority_level is None:
|
|
1314
|
+
allocation_and_retention_priority_level = 9
|
|
1315
|
+
if allocation_and_retention_priority_level is not None:
|
|
1316
|
+
pulumi.set(__self__, "allocation_and_retention_priority_level", allocation_and_retention_priority_level)
|
|
1317
|
+
if five_qi is None:
|
|
1318
|
+
five_qi = 9
|
|
1319
|
+
if five_qi is not None:
|
|
1320
|
+
pulumi.set(__self__, "five_qi", five_qi)
|
|
1321
|
+
if guaranteed_bit_rate is not None:
|
|
1322
|
+
pulumi.set(__self__, "guaranteed_bit_rate", guaranteed_bit_rate)
|
|
1323
|
+
if preemption_capability is None:
|
|
1324
|
+
preemption_capability = 'NotPreempt'
|
|
1325
|
+
if preemption_capability is not None:
|
|
1326
|
+
pulumi.set(__self__, "preemption_capability", preemption_capability)
|
|
1327
|
+
if preemption_vulnerability is None:
|
|
1328
|
+
preemption_vulnerability = 'Preemptable'
|
|
1329
|
+
if preemption_vulnerability is not None:
|
|
1330
|
+
pulumi.set(__self__, "preemption_vulnerability", preemption_vulnerability)
|
|
1331
|
+
|
|
1332
|
+
@property
|
|
1333
|
+
@pulumi.getter(name="maximumBitRate")
|
|
1334
|
+
def maximum_bit_rate(self) -> 'outputs.AmbrResponse':
|
|
1335
|
+
"""
|
|
1336
|
+
The maximum bit rate (MBR) for all service data flows that use this data flow policy rule or service.
|
|
1337
|
+
"""
|
|
1338
|
+
return pulumi.get(self, "maximum_bit_rate")
|
|
1339
|
+
|
|
1340
|
+
@property
|
|
1341
|
+
@pulumi.getter(name="allocationAndRetentionPriorityLevel")
|
|
1342
|
+
def allocation_and_retention_priority_level(self) -> Optional[int]:
|
|
1343
|
+
"""
|
|
1344
|
+
QoS Flow allocation and retention priority (ARP) level. Flows with higher priority preempt flows with lower priority, if the settings of `preemptionCapability` and `preemptionVulnerability` allow it. 1 is the highest level of priority. If this field is not specified then `5qi` is used to derive the ARP value. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
|
|
1345
|
+
"""
|
|
1346
|
+
return pulumi.get(self, "allocation_and_retention_priority_level")
|
|
1347
|
+
|
|
1348
|
+
@property
|
|
1349
|
+
@pulumi.getter(name="fiveQi")
|
|
1350
|
+
def five_qi(self) -> Optional[int]:
|
|
1351
|
+
"""
|
|
1352
|
+
5G QoS Flow Indicator value. The 5QI identifies a specific QoS forwarding treatment to be provided to a flow. See 3GPP TS23.501 section 5.7.2.1 for a full description of the 5QI parameter, and table 5.7.4-1 for the definition the 5QI values.
|
|
1353
|
+
"""
|
|
1354
|
+
return pulumi.get(self, "five_qi")
|
|
1355
|
+
|
|
1356
|
+
@property
|
|
1357
|
+
@pulumi.getter(name="guaranteedBitRate")
|
|
1358
|
+
def guaranteed_bit_rate(self) -> Optional['outputs.AmbrResponse']:
|
|
1359
|
+
"""
|
|
1360
|
+
The guaranteed bit rate (GBR) for all service data flows that use this data flow policy rule. This is an optional setting. If you do not provide a value, there will be no GBR set for the data flow policy rule that uses this QoS definition.
|
|
1361
|
+
"""
|
|
1362
|
+
return pulumi.get(self, "guaranteed_bit_rate")
|
|
1363
|
+
|
|
1364
|
+
@property
|
|
1365
|
+
@pulumi.getter(name="preemptionCapability")
|
|
1366
|
+
def preemption_capability(self) -> Optional[str]:
|
|
1367
|
+
"""
|
|
1368
|
+
QoS Flow preemption capability. The preemption capability of a QoS Flow controls whether it can preempt another QoS Flow with a lower priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
|
|
1369
|
+
"""
|
|
1370
|
+
return pulumi.get(self, "preemption_capability")
|
|
1371
|
+
|
|
1372
|
+
@property
|
|
1373
|
+
@pulumi.getter(name="preemptionVulnerability")
|
|
1374
|
+
def preemption_vulnerability(self) -> Optional[str]:
|
|
1375
|
+
"""
|
|
1376
|
+
QoS Flow preemption vulnerability. The preemption vulnerability of a QoS Flow controls whether it can be preempted by a QoS Flow with a higher priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
|
|
1377
|
+
"""
|
|
1378
|
+
return pulumi.get(self, "preemption_vulnerability")
|
|
1379
|
+
|
|
1380
|
+
|
|
1381
|
+
@pulumi.output_type
|
|
1382
|
+
class PinholeTimeoutsResponse(dict):
|
|
1383
|
+
"""
|
|
1384
|
+
Expiry times of inactive NAPT pinholes, in seconds. All timers must be at least 1 second.
|
|
1385
|
+
"""
|
|
1386
|
+
def __init__(__self__, *,
|
|
1387
|
+
icmp: Optional[int] = None,
|
|
1388
|
+
tcp: Optional[int] = None,
|
|
1389
|
+
udp: Optional[int] = None):
|
|
1390
|
+
"""
|
|
1391
|
+
Expiry times of inactive NAPT pinholes, in seconds. All timers must be at least 1 second.
|
|
1392
|
+
:param int icmp: Pinhole timeout for ICMP pinholes in seconds. Default for ICMP Echo is 30 seconds.
|
|
1393
|
+
:param int tcp: Pinhole timeout for TCP pinholes in seconds. Default for TCP is 3 minutes.
|
|
1394
|
+
:param int udp: Pinhole timeout for UDP pinholes in seconds. Default for UDP is 30 seconds.
|
|
1395
|
+
"""
|
|
1396
|
+
if icmp is None:
|
|
1397
|
+
icmp = 30
|
|
1398
|
+
if icmp is not None:
|
|
1399
|
+
pulumi.set(__self__, "icmp", icmp)
|
|
1400
|
+
if tcp is None:
|
|
1401
|
+
tcp = 180
|
|
1402
|
+
if tcp is not None:
|
|
1403
|
+
pulumi.set(__self__, "tcp", tcp)
|
|
1404
|
+
if udp is None:
|
|
1405
|
+
udp = 30
|
|
1406
|
+
if udp is not None:
|
|
1407
|
+
pulumi.set(__self__, "udp", udp)
|
|
1408
|
+
|
|
1409
|
+
@property
|
|
1410
|
+
@pulumi.getter
|
|
1411
|
+
def icmp(self) -> Optional[int]:
|
|
1412
|
+
"""
|
|
1413
|
+
Pinhole timeout for ICMP pinholes in seconds. Default for ICMP Echo is 30 seconds.
|
|
1414
|
+
"""
|
|
1415
|
+
return pulumi.get(self, "icmp")
|
|
1416
|
+
|
|
1417
|
+
@property
|
|
1418
|
+
@pulumi.getter
|
|
1419
|
+
def tcp(self) -> Optional[int]:
|
|
1420
|
+
"""
|
|
1421
|
+
Pinhole timeout for TCP pinholes in seconds. Default for TCP is 3 minutes.
|
|
1422
|
+
"""
|
|
1423
|
+
return pulumi.get(self, "tcp")
|
|
1424
|
+
|
|
1425
|
+
@property
|
|
1426
|
+
@pulumi.getter
|
|
1427
|
+
def udp(self) -> Optional[int]:
|
|
1428
|
+
"""
|
|
1429
|
+
Pinhole timeout for UDP pinholes in seconds. Default for UDP is 30 seconds.
|
|
1430
|
+
"""
|
|
1431
|
+
return pulumi.get(self, "udp")
|
|
1432
|
+
|
|
1433
|
+
|
|
1434
|
+
@pulumi.output_type
|
|
1435
|
+
class PlatformConfigurationResponse(dict):
|
|
1436
|
+
"""
|
|
1437
|
+
The platform where the packet core is deployed.
|
|
1438
|
+
"""
|
|
1439
|
+
@staticmethod
|
|
1440
|
+
def __key_warning(key: str):
|
|
1441
|
+
suggest = None
|
|
1442
|
+
if key == "azureStackEdgeDevices":
|
|
1443
|
+
suggest = "azure_stack_edge_devices"
|
|
1444
|
+
elif key == "azureStackEdgeDevice":
|
|
1445
|
+
suggest = "azure_stack_edge_device"
|
|
1446
|
+
elif key == "azureStackHciCluster":
|
|
1447
|
+
suggest = "azure_stack_hci_cluster"
|
|
1448
|
+
elif key == "connectedCluster":
|
|
1449
|
+
suggest = "connected_cluster"
|
|
1450
|
+
elif key == "customLocation":
|
|
1451
|
+
suggest = "custom_location"
|
|
1452
|
+
|
|
1453
|
+
if suggest:
|
|
1454
|
+
pulumi.log.warn(f"Key '{key}' not found in PlatformConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1455
|
+
|
|
1456
|
+
def __getitem__(self, key: str) -> Any:
|
|
1457
|
+
PlatformConfigurationResponse.__key_warning(key)
|
|
1458
|
+
return super().__getitem__(key)
|
|
1459
|
+
|
|
1460
|
+
def get(self, key: str, default = None) -> Any:
|
|
1461
|
+
PlatformConfigurationResponse.__key_warning(key)
|
|
1462
|
+
return super().get(key, default)
|
|
1463
|
+
|
|
1464
|
+
def __init__(__self__, *,
|
|
1465
|
+
azure_stack_edge_devices: Sequence['outputs.AzureStackEdgeDeviceResourceIdResponse'],
|
|
1466
|
+
type: str,
|
|
1467
|
+
azure_stack_edge_device: Optional['outputs.AzureStackEdgeDeviceResourceIdResponse'] = None,
|
|
1468
|
+
azure_stack_hci_cluster: Optional['outputs.AzureStackHCIClusterResourceIdResponse'] = None,
|
|
1469
|
+
connected_cluster: Optional['outputs.ConnectedClusterResourceIdResponse'] = None,
|
|
1470
|
+
custom_location: Optional['outputs.CustomLocationResourceIdResponse'] = None):
|
|
1471
|
+
"""
|
|
1472
|
+
The platform where the packet core is deployed.
|
|
1473
|
+
:param Sequence['AzureStackEdgeDeviceResourceIdResponse'] azure_stack_edge_devices: The Azure Stack Edge devices where the packet core is deployed. If the packet core is deployed across multiple devices, all devices will appear in this list.
|
|
1474
|
+
:param str type: The platform type where packet core is deployed.
|
|
1475
|
+
:param 'AzureStackEdgeDeviceResourceIdResponse' azure_stack_edge_device: The Azure Stack Edge device where the packet core is deployed. If the device is part of a fault tolerant pair, either device in the pair can be specified.
|
|
1476
|
+
:param 'AzureStackHCIClusterResourceIdResponse' azure_stack_hci_cluster: The Azure Stack HCI cluster where the packet core is deployed.
|
|
1477
|
+
:param 'ConnectedClusterResourceIdResponse' connected_cluster: Azure Arc connected cluster where the packet core is deployed.
|
|
1478
|
+
:param 'CustomLocationResourceIdResponse' custom_location: Azure Arc custom location where the packet core is deployed.
|
|
1479
|
+
"""
|
|
1480
|
+
pulumi.set(__self__, "azure_stack_edge_devices", azure_stack_edge_devices)
|
|
1481
|
+
pulumi.set(__self__, "type", type)
|
|
1482
|
+
if azure_stack_edge_device is not None:
|
|
1483
|
+
pulumi.set(__self__, "azure_stack_edge_device", azure_stack_edge_device)
|
|
1484
|
+
if azure_stack_hci_cluster is not None:
|
|
1485
|
+
pulumi.set(__self__, "azure_stack_hci_cluster", azure_stack_hci_cluster)
|
|
1486
|
+
if connected_cluster is not None:
|
|
1487
|
+
pulumi.set(__self__, "connected_cluster", connected_cluster)
|
|
1488
|
+
if custom_location is not None:
|
|
1489
|
+
pulumi.set(__self__, "custom_location", custom_location)
|
|
1490
|
+
|
|
1491
|
+
@property
|
|
1492
|
+
@pulumi.getter(name="azureStackEdgeDevices")
|
|
1493
|
+
def azure_stack_edge_devices(self) -> Sequence['outputs.AzureStackEdgeDeviceResourceIdResponse']:
|
|
1494
|
+
"""
|
|
1495
|
+
The Azure Stack Edge devices where the packet core is deployed. If the packet core is deployed across multiple devices, all devices will appear in this list.
|
|
1496
|
+
"""
|
|
1497
|
+
return pulumi.get(self, "azure_stack_edge_devices")
|
|
1498
|
+
|
|
1499
|
+
@property
|
|
1500
|
+
@pulumi.getter
|
|
1501
|
+
def type(self) -> str:
|
|
1502
|
+
"""
|
|
1503
|
+
The platform type where packet core is deployed.
|
|
1504
|
+
"""
|
|
1505
|
+
return pulumi.get(self, "type")
|
|
1506
|
+
|
|
1507
|
+
@property
|
|
1508
|
+
@pulumi.getter(name="azureStackEdgeDevice")
|
|
1509
|
+
def azure_stack_edge_device(self) -> Optional['outputs.AzureStackEdgeDeviceResourceIdResponse']:
|
|
1510
|
+
"""
|
|
1511
|
+
The Azure Stack Edge device where the packet core is deployed. If the device is part of a fault tolerant pair, either device in the pair can be specified.
|
|
1512
|
+
"""
|
|
1513
|
+
return pulumi.get(self, "azure_stack_edge_device")
|
|
1514
|
+
|
|
1515
|
+
@property
|
|
1516
|
+
@pulumi.getter(name="azureStackHciCluster")
|
|
1517
|
+
def azure_stack_hci_cluster(self) -> Optional['outputs.AzureStackHCIClusterResourceIdResponse']:
|
|
1518
|
+
"""
|
|
1519
|
+
The Azure Stack HCI cluster where the packet core is deployed.
|
|
1520
|
+
"""
|
|
1521
|
+
return pulumi.get(self, "azure_stack_hci_cluster")
|
|
1522
|
+
|
|
1523
|
+
@property
|
|
1524
|
+
@pulumi.getter(name="connectedCluster")
|
|
1525
|
+
def connected_cluster(self) -> Optional['outputs.ConnectedClusterResourceIdResponse']:
|
|
1526
|
+
"""
|
|
1527
|
+
Azure Arc connected cluster where the packet core is deployed.
|
|
1528
|
+
"""
|
|
1529
|
+
return pulumi.get(self, "connected_cluster")
|
|
1530
|
+
|
|
1531
|
+
@property
|
|
1532
|
+
@pulumi.getter(name="customLocation")
|
|
1533
|
+
def custom_location(self) -> Optional['outputs.CustomLocationResourceIdResponse']:
|
|
1534
|
+
"""
|
|
1535
|
+
Azure Arc custom location where the packet core is deployed.
|
|
1536
|
+
"""
|
|
1537
|
+
return pulumi.get(self, "custom_location")
|
|
1538
|
+
|
|
1539
|
+
|
|
1540
|
+
@pulumi.output_type
|
|
1541
|
+
class PlmnIdResponse(dict):
|
|
1542
|
+
"""
|
|
1543
|
+
Public land mobile network (PLMN) ID. This is made up of the mobile country code and mobile network code, as defined in https://www.itu.int/rec/T-REC-E.212. The values 001-01 and 001-001 can be used for testing and the values 999-99 and 999-999 can be used on internal private networks.
|
|
1544
|
+
"""
|
|
1545
|
+
def __init__(__self__, *,
|
|
1546
|
+
mcc: str,
|
|
1547
|
+
mnc: str):
|
|
1548
|
+
"""
|
|
1549
|
+
Public land mobile network (PLMN) ID. This is made up of the mobile country code and mobile network code, as defined in https://www.itu.int/rec/T-REC-E.212. The values 001-01 and 001-001 can be used for testing and the values 999-99 and 999-999 can be used on internal private networks.
|
|
1550
|
+
:param str mcc: Mobile country code (MCC).
|
|
1551
|
+
:param str mnc: Mobile network code (MNC).
|
|
1552
|
+
"""
|
|
1553
|
+
pulumi.set(__self__, "mcc", mcc)
|
|
1554
|
+
pulumi.set(__self__, "mnc", mnc)
|
|
1555
|
+
|
|
1556
|
+
@property
|
|
1557
|
+
@pulumi.getter
|
|
1558
|
+
def mcc(self) -> str:
|
|
1559
|
+
"""
|
|
1560
|
+
Mobile country code (MCC).
|
|
1561
|
+
"""
|
|
1562
|
+
return pulumi.get(self, "mcc")
|
|
1563
|
+
|
|
1564
|
+
@property
|
|
1565
|
+
@pulumi.getter
|
|
1566
|
+
def mnc(self) -> str:
|
|
1567
|
+
"""
|
|
1568
|
+
Mobile network code (MNC).
|
|
1569
|
+
"""
|
|
1570
|
+
return pulumi.get(self, "mnc")
|
|
1571
|
+
|
|
1572
|
+
|
|
1573
|
+
@pulumi.output_type
|
|
1574
|
+
class PortRangeResponse(dict):
|
|
1575
|
+
"""
|
|
1576
|
+
Range of port numbers to use as translated ports on each translated address.
|
|
1577
|
+
If not specified and NAPT is enabled, this range defaults to 1,024 - 49,999.
|
|
1578
|
+
(Ports under 1,024 should not be used because these are special purpose ports reserved by IANA. Ports 50,000 and above are reserved for non-NAPT use.)
|
|
1579
|
+
"""
|
|
1580
|
+
@staticmethod
|
|
1581
|
+
def __key_warning(key: str):
|
|
1582
|
+
suggest = None
|
|
1583
|
+
if key == "maxPort":
|
|
1584
|
+
suggest = "max_port"
|
|
1585
|
+
elif key == "minPort":
|
|
1586
|
+
suggest = "min_port"
|
|
1587
|
+
|
|
1588
|
+
if suggest:
|
|
1589
|
+
pulumi.log.warn(f"Key '{key}' not found in PortRangeResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1590
|
+
|
|
1591
|
+
def __getitem__(self, key: str) -> Any:
|
|
1592
|
+
PortRangeResponse.__key_warning(key)
|
|
1593
|
+
return super().__getitem__(key)
|
|
1594
|
+
|
|
1595
|
+
def get(self, key: str, default = None) -> Any:
|
|
1596
|
+
PortRangeResponse.__key_warning(key)
|
|
1597
|
+
return super().get(key, default)
|
|
1598
|
+
|
|
1599
|
+
def __init__(__self__, *,
|
|
1600
|
+
max_port: Optional[int] = None,
|
|
1601
|
+
min_port: Optional[int] = None):
|
|
1602
|
+
"""
|
|
1603
|
+
Range of port numbers to use as translated ports on each translated address.
|
|
1604
|
+
If not specified and NAPT is enabled, this range defaults to 1,024 - 49,999.
|
|
1605
|
+
(Ports under 1,024 should not be used because these are special purpose ports reserved by IANA. Ports 50,000 and above are reserved for non-NAPT use.)
|
|
1606
|
+
:param int max_port: The maximum port number
|
|
1607
|
+
:param int min_port: The minimum port number
|
|
1608
|
+
"""
|
|
1609
|
+
if max_port is None:
|
|
1610
|
+
max_port = 49999
|
|
1611
|
+
if max_port is not None:
|
|
1612
|
+
pulumi.set(__self__, "max_port", max_port)
|
|
1613
|
+
if min_port is None:
|
|
1614
|
+
min_port = 1024
|
|
1615
|
+
if min_port is not None:
|
|
1616
|
+
pulumi.set(__self__, "min_port", min_port)
|
|
1617
|
+
|
|
1618
|
+
@property
|
|
1619
|
+
@pulumi.getter(name="maxPort")
|
|
1620
|
+
def max_port(self) -> Optional[int]:
|
|
1621
|
+
"""
|
|
1622
|
+
The maximum port number
|
|
1623
|
+
"""
|
|
1624
|
+
return pulumi.get(self, "max_port")
|
|
1625
|
+
|
|
1626
|
+
@property
|
|
1627
|
+
@pulumi.getter(name="minPort")
|
|
1628
|
+
def min_port(self) -> Optional[int]:
|
|
1629
|
+
"""
|
|
1630
|
+
The minimum port number
|
|
1631
|
+
"""
|
|
1632
|
+
return pulumi.get(self, "min_port")
|
|
1633
|
+
|
|
1634
|
+
|
|
1635
|
+
@pulumi.output_type
|
|
1636
|
+
class PortReuseHoldTimesResponse(dict):
|
|
1637
|
+
"""
|
|
1638
|
+
The minimum time (in seconds) that will pass before a port that was used by a closed pinhole can be recycled for use by another pinhole. All hold times must be minimum 1 second.
|
|
1639
|
+
"""
|
|
1640
|
+
def __init__(__self__, *,
|
|
1641
|
+
tcp: Optional[int] = None,
|
|
1642
|
+
udp: Optional[int] = None):
|
|
1643
|
+
"""
|
|
1644
|
+
The minimum time (in seconds) that will pass before a port that was used by a closed pinhole can be recycled for use by another pinhole. All hold times must be minimum 1 second.
|
|
1645
|
+
:param int tcp: Minimum time in seconds that will pass before a TCP port that was used by a closed pinhole can be reused. Default for TCP is 2 minutes.
|
|
1646
|
+
:param int udp: Minimum time in seconds that will pass before a UDP port that was used by a closed pinhole can be reused. Default for UDP is 1 minute.
|
|
1647
|
+
"""
|
|
1648
|
+
if tcp is None:
|
|
1649
|
+
tcp = 120
|
|
1650
|
+
if tcp is not None:
|
|
1651
|
+
pulumi.set(__self__, "tcp", tcp)
|
|
1652
|
+
if udp is None:
|
|
1653
|
+
udp = 60
|
|
1654
|
+
if udp is not None:
|
|
1655
|
+
pulumi.set(__self__, "udp", udp)
|
|
1656
|
+
|
|
1657
|
+
@property
|
|
1658
|
+
@pulumi.getter
|
|
1659
|
+
def tcp(self) -> Optional[int]:
|
|
1660
|
+
"""
|
|
1661
|
+
Minimum time in seconds that will pass before a TCP port that was used by a closed pinhole can be reused. Default for TCP is 2 minutes.
|
|
1662
|
+
"""
|
|
1663
|
+
return pulumi.get(self, "tcp")
|
|
1664
|
+
|
|
1665
|
+
@property
|
|
1666
|
+
@pulumi.getter
|
|
1667
|
+
def udp(self) -> Optional[int]:
|
|
1668
|
+
"""
|
|
1669
|
+
Minimum time in seconds that will pass before a UDP port that was used by a closed pinhole can be reused. Default for UDP is 1 minute.
|
|
1670
|
+
"""
|
|
1671
|
+
return pulumi.get(self, "udp")
|
|
1672
|
+
|
|
1673
|
+
|
|
1674
|
+
@pulumi.output_type
|
|
1675
|
+
class PublicLandMobileNetworkResponse(dict):
|
|
1676
|
+
"""
|
|
1677
|
+
Configuration relating to a particular PLMN
|
|
1678
|
+
"""
|
|
1679
|
+
@staticmethod
|
|
1680
|
+
def __key_warning(key: str):
|
|
1681
|
+
suggest = None
|
|
1682
|
+
if key == "homeNetworkPublicKeys":
|
|
1683
|
+
suggest = "home_network_public_keys"
|
|
1684
|
+
|
|
1685
|
+
if suggest:
|
|
1686
|
+
pulumi.log.warn(f"Key '{key}' not found in PublicLandMobileNetworkResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1687
|
+
|
|
1688
|
+
def __getitem__(self, key: str) -> Any:
|
|
1689
|
+
PublicLandMobileNetworkResponse.__key_warning(key)
|
|
1690
|
+
return super().__getitem__(key)
|
|
1691
|
+
|
|
1692
|
+
def get(self, key: str, default = None) -> Any:
|
|
1693
|
+
PublicLandMobileNetworkResponse.__key_warning(key)
|
|
1694
|
+
return super().get(key, default)
|
|
1695
|
+
|
|
1696
|
+
def __init__(__self__, *,
|
|
1697
|
+
mcc: str,
|
|
1698
|
+
mnc: str,
|
|
1699
|
+
home_network_public_keys: Optional['outputs.PublicLandMobileNetworkResponseHomeNetworkPublicKeys'] = None):
|
|
1700
|
+
"""
|
|
1701
|
+
Configuration relating to a particular PLMN
|
|
1702
|
+
:param str mcc: Mobile country code (MCC).
|
|
1703
|
+
:param str mnc: Mobile network code (MNC).
|
|
1704
|
+
:param 'PublicLandMobileNetworkResponseHomeNetworkPublicKeys' home_network_public_keys: Configuration relating to SUPI concealment.
|
|
1705
|
+
"""
|
|
1706
|
+
pulumi.set(__self__, "mcc", mcc)
|
|
1707
|
+
pulumi.set(__self__, "mnc", mnc)
|
|
1708
|
+
if home_network_public_keys is not None:
|
|
1709
|
+
pulumi.set(__self__, "home_network_public_keys", home_network_public_keys)
|
|
1710
|
+
|
|
1711
|
+
@property
|
|
1712
|
+
@pulumi.getter
|
|
1713
|
+
def mcc(self) -> str:
|
|
1714
|
+
"""
|
|
1715
|
+
Mobile country code (MCC).
|
|
1716
|
+
"""
|
|
1717
|
+
return pulumi.get(self, "mcc")
|
|
1718
|
+
|
|
1719
|
+
@property
|
|
1720
|
+
@pulumi.getter
|
|
1721
|
+
def mnc(self) -> str:
|
|
1722
|
+
"""
|
|
1723
|
+
Mobile network code (MNC).
|
|
1724
|
+
"""
|
|
1725
|
+
return pulumi.get(self, "mnc")
|
|
1726
|
+
|
|
1727
|
+
@property
|
|
1728
|
+
@pulumi.getter(name="homeNetworkPublicKeys")
|
|
1729
|
+
def home_network_public_keys(self) -> Optional['outputs.PublicLandMobileNetworkResponseHomeNetworkPublicKeys']:
|
|
1730
|
+
"""
|
|
1731
|
+
Configuration relating to SUPI concealment.
|
|
1732
|
+
"""
|
|
1733
|
+
return pulumi.get(self, "home_network_public_keys")
|
|
1734
|
+
|
|
1735
|
+
|
|
1736
|
+
@pulumi.output_type
|
|
1737
|
+
class PublicLandMobileNetworkResponseHomeNetworkPublicKeys(dict):
|
|
1738
|
+
"""
|
|
1739
|
+
Configuration relating to SUPI concealment.
|
|
1740
|
+
"""
|
|
1741
|
+
@staticmethod
|
|
1742
|
+
def __key_warning(key: str):
|
|
1743
|
+
suggest = None
|
|
1744
|
+
if key == "profileA":
|
|
1745
|
+
suggest = "profile_a"
|
|
1746
|
+
elif key == "profileB":
|
|
1747
|
+
suggest = "profile_b"
|
|
1748
|
+
|
|
1749
|
+
if suggest:
|
|
1750
|
+
pulumi.log.warn(f"Key '{key}' not found in PublicLandMobileNetworkResponseHomeNetworkPublicKeys. Access the value via the '{suggest}' property getter instead.")
|
|
1751
|
+
|
|
1752
|
+
def __getitem__(self, key: str) -> Any:
|
|
1753
|
+
PublicLandMobileNetworkResponseHomeNetworkPublicKeys.__key_warning(key)
|
|
1754
|
+
return super().__getitem__(key)
|
|
1755
|
+
|
|
1756
|
+
def get(self, key: str, default = None) -> Any:
|
|
1757
|
+
PublicLandMobileNetworkResponseHomeNetworkPublicKeys.__key_warning(key)
|
|
1758
|
+
return super().get(key, default)
|
|
1759
|
+
|
|
1760
|
+
def __init__(__self__, *,
|
|
1761
|
+
profile_a: Optional[Sequence['outputs.HomeNetworkPublicKeyResponse']] = None,
|
|
1762
|
+
profile_b: Optional[Sequence['outputs.HomeNetworkPublicKeyResponse']] = None):
|
|
1763
|
+
"""
|
|
1764
|
+
Configuration relating to SUPI concealment.
|
|
1765
|
+
:param Sequence['HomeNetworkPublicKeyResponse'] profile_a: This provides a mapping to identify which public key has been used for SUPI concealment using the Profile A Protection Scheme.
|
|
1766
|
+
:param Sequence['HomeNetworkPublicKeyResponse'] profile_b: This provides a mapping to identify which public key has been used for SUPI concealment using the Profile B Protection Scheme.
|
|
1767
|
+
"""
|
|
1768
|
+
if profile_a is not None:
|
|
1769
|
+
pulumi.set(__self__, "profile_a", profile_a)
|
|
1770
|
+
if profile_b is not None:
|
|
1771
|
+
pulumi.set(__self__, "profile_b", profile_b)
|
|
1772
|
+
|
|
1773
|
+
@property
|
|
1774
|
+
@pulumi.getter(name="profileA")
|
|
1775
|
+
def profile_a(self) -> Optional[Sequence['outputs.HomeNetworkPublicKeyResponse']]:
|
|
1776
|
+
"""
|
|
1777
|
+
This provides a mapping to identify which public key has been used for SUPI concealment using the Profile A Protection Scheme.
|
|
1778
|
+
"""
|
|
1779
|
+
return pulumi.get(self, "profile_a")
|
|
1780
|
+
|
|
1781
|
+
@property
|
|
1782
|
+
@pulumi.getter(name="profileB")
|
|
1783
|
+
def profile_b(self) -> Optional[Sequence['outputs.HomeNetworkPublicKeyResponse']]:
|
|
1784
|
+
"""
|
|
1785
|
+
This provides a mapping to identify which public key has been used for SUPI concealment using the Profile B Protection Scheme.
|
|
1786
|
+
"""
|
|
1787
|
+
return pulumi.get(self, "profile_b")
|
|
1788
|
+
|
|
1789
|
+
|
|
1790
|
+
@pulumi.output_type
|
|
1791
|
+
class QosPolicyResponse(dict):
|
|
1792
|
+
"""
|
|
1793
|
+
QoS policy
|
|
1794
|
+
"""
|
|
1795
|
+
@staticmethod
|
|
1796
|
+
def __key_warning(key: str):
|
|
1797
|
+
suggest = None
|
|
1798
|
+
if key == "maximumBitRate":
|
|
1799
|
+
suggest = "maximum_bit_rate"
|
|
1800
|
+
elif key == "allocationAndRetentionPriorityLevel":
|
|
1801
|
+
suggest = "allocation_and_retention_priority_level"
|
|
1802
|
+
elif key == "fiveQi":
|
|
1803
|
+
suggest = "five_qi"
|
|
1804
|
+
elif key == "preemptionCapability":
|
|
1805
|
+
suggest = "preemption_capability"
|
|
1806
|
+
elif key == "preemptionVulnerability":
|
|
1807
|
+
suggest = "preemption_vulnerability"
|
|
1808
|
+
|
|
1809
|
+
if suggest:
|
|
1810
|
+
pulumi.log.warn(f"Key '{key}' not found in QosPolicyResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1811
|
+
|
|
1812
|
+
def __getitem__(self, key: str) -> Any:
|
|
1813
|
+
QosPolicyResponse.__key_warning(key)
|
|
1814
|
+
return super().__getitem__(key)
|
|
1815
|
+
|
|
1816
|
+
def get(self, key: str, default = None) -> Any:
|
|
1817
|
+
QosPolicyResponse.__key_warning(key)
|
|
1818
|
+
return super().get(key, default)
|
|
1819
|
+
|
|
1820
|
+
def __init__(__self__, *,
|
|
1821
|
+
maximum_bit_rate: 'outputs.AmbrResponse',
|
|
1822
|
+
allocation_and_retention_priority_level: Optional[int] = None,
|
|
1823
|
+
five_qi: Optional[int] = None,
|
|
1824
|
+
preemption_capability: Optional[str] = None,
|
|
1825
|
+
preemption_vulnerability: Optional[str] = None):
|
|
1826
|
+
"""
|
|
1827
|
+
QoS policy
|
|
1828
|
+
:param 'AmbrResponse' maximum_bit_rate: The maximum bit rate (MBR) for all service data flows that use this data flow policy rule or service.
|
|
1829
|
+
:param int allocation_and_retention_priority_level: QoS Flow allocation and retention priority (ARP) level. Flows with higher priority preempt flows with lower priority, if the settings of `preemptionCapability` and `preemptionVulnerability` allow it. 1 is the highest level of priority. If this field is not specified then `5qi` is used to derive the ARP value. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
|
|
1830
|
+
:param int five_qi: 5G QoS Flow Indicator value. The 5QI identifies a specific QoS forwarding treatment to be provided to a flow. See 3GPP TS23.501 section 5.7.2.1 for a full description of the 5QI parameter, and table 5.7.4-1 for the definition the 5QI values.
|
|
1831
|
+
:param str preemption_capability: QoS Flow preemption capability. The preemption capability of a QoS Flow controls whether it can preempt another QoS Flow with a lower priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
|
|
1832
|
+
:param str preemption_vulnerability: QoS Flow preemption vulnerability. The preemption vulnerability of a QoS Flow controls whether it can be preempted by a QoS Flow with a higher priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
|
|
1833
|
+
"""
|
|
1834
|
+
pulumi.set(__self__, "maximum_bit_rate", maximum_bit_rate)
|
|
1835
|
+
if allocation_and_retention_priority_level is None:
|
|
1836
|
+
allocation_and_retention_priority_level = 9
|
|
1837
|
+
if allocation_and_retention_priority_level is not None:
|
|
1838
|
+
pulumi.set(__self__, "allocation_and_retention_priority_level", allocation_and_retention_priority_level)
|
|
1839
|
+
if five_qi is None:
|
|
1840
|
+
five_qi = 9
|
|
1841
|
+
if five_qi is not None:
|
|
1842
|
+
pulumi.set(__self__, "five_qi", five_qi)
|
|
1843
|
+
if preemption_capability is None:
|
|
1844
|
+
preemption_capability = 'NotPreempt'
|
|
1845
|
+
if preemption_capability is not None:
|
|
1846
|
+
pulumi.set(__self__, "preemption_capability", preemption_capability)
|
|
1847
|
+
if preemption_vulnerability is None:
|
|
1848
|
+
preemption_vulnerability = 'Preemptable'
|
|
1849
|
+
if preemption_vulnerability is not None:
|
|
1850
|
+
pulumi.set(__self__, "preemption_vulnerability", preemption_vulnerability)
|
|
1851
|
+
|
|
1852
|
+
@property
|
|
1853
|
+
@pulumi.getter(name="maximumBitRate")
|
|
1854
|
+
def maximum_bit_rate(self) -> 'outputs.AmbrResponse':
|
|
1855
|
+
"""
|
|
1856
|
+
The maximum bit rate (MBR) for all service data flows that use this data flow policy rule or service.
|
|
1857
|
+
"""
|
|
1858
|
+
return pulumi.get(self, "maximum_bit_rate")
|
|
1859
|
+
|
|
1860
|
+
@property
|
|
1861
|
+
@pulumi.getter(name="allocationAndRetentionPriorityLevel")
|
|
1862
|
+
def allocation_and_retention_priority_level(self) -> Optional[int]:
|
|
1863
|
+
"""
|
|
1864
|
+
QoS Flow allocation and retention priority (ARP) level. Flows with higher priority preempt flows with lower priority, if the settings of `preemptionCapability` and `preemptionVulnerability` allow it. 1 is the highest level of priority. If this field is not specified then `5qi` is used to derive the ARP value. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
|
|
1865
|
+
"""
|
|
1866
|
+
return pulumi.get(self, "allocation_and_retention_priority_level")
|
|
1867
|
+
|
|
1868
|
+
@property
|
|
1869
|
+
@pulumi.getter(name="fiveQi")
|
|
1870
|
+
def five_qi(self) -> Optional[int]:
|
|
1871
|
+
"""
|
|
1872
|
+
5G QoS Flow Indicator value. The 5QI identifies a specific QoS forwarding treatment to be provided to a flow. See 3GPP TS23.501 section 5.7.2.1 for a full description of the 5QI parameter, and table 5.7.4-1 for the definition the 5QI values.
|
|
1873
|
+
"""
|
|
1874
|
+
return pulumi.get(self, "five_qi")
|
|
1875
|
+
|
|
1876
|
+
@property
|
|
1877
|
+
@pulumi.getter(name="preemptionCapability")
|
|
1878
|
+
def preemption_capability(self) -> Optional[str]:
|
|
1879
|
+
"""
|
|
1880
|
+
QoS Flow preemption capability. The preemption capability of a QoS Flow controls whether it can preempt another QoS Flow with a lower priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
|
|
1881
|
+
"""
|
|
1882
|
+
return pulumi.get(self, "preemption_capability")
|
|
1883
|
+
|
|
1884
|
+
@property
|
|
1885
|
+
@pulumi.getter(name="preemptionVulnerability")
|
|
1886
|
+
def preemption_vulnerability(self) -> Optional[str]:
|
|
1887
|
+
"""
|
|
1888
|
+
QoS Flow preemption vulnerability. The preemption vulnerability of a QoS Flow controls whether it can be preempted by a QoS Flow with a higher priority level. See 3GPP TS23.501 section 5.7.2.2 for a full description of the ARP parameters.
|
|
1889
|
+
"""
|
|
1890
|
+
return pulumi.get(self, "preemption_vulnerability")
|
|
1891
|
+
|
|
1892
|
+
|
|
1893
|
+
@pulumi.output_type
|
|
1894
|
+
class ServiceDataFlowTemplateResponse(dict):
|
|
1895
|
+
"""
|
|
1896
|
+
Data flow template
|
|
1897
|
+
"""
|
|
1898
|
+
@staticmethod
|
|
1899
|
+
def __key_warning(key: str):
|
|
1900
|
+
suggest = None
|
|
1901
|
+
if key == "remoteIpList":
|
|
1902
|
+
suggest = "remote_ip_list"
|
|
1903
|
+
elif key == "templateName":
|
|
1904
|
+
suggest = "template_name"
|
|
1905
|
+
|
|
1906
|
+
if suggest:
|
|
1907
|
+
pulumi.log.warn(f"Key '{key}' not found in ServiceDataFlowTemplateResponse. Access the value via the '{suggest}' property getter instead.")
|
|
1908
|
+
|
|
1909
|
+
def __getitem__(self, key: str) -> Any:
|
|
1910
|
+
ServiceDataFlowTemplateResponse.__key_warning(key)
|
|
1911
|
+
return super().__getitem__(key)
|
|
1912
|
+
|
|
1913
|
+
def get(self, key: str, default = None) -> Any:
|
|
1914
|
+
ServiceDataFlowTemplateResponse.__key_warning(key)
|
|
1915
|
+
return super().get(key, default)
|
|
1916
|
+
|
|
1917
|
+
def __init__(__self__, *,
|
|
1918
|
+
direction: str,
|
|
1919
|
+
protocol: Sequence[str],
|
|
1920
|
+
remote_ip_list: Sequence[str],
|
|
1921
|
+
template_name: str,
|
|
1922
|
+
ports: Optional[Sequence[str]] = None):
|
|
1923
|
+
"""
|
|
1924
|
+
Data flow template
|
|
1925
|
+
:param str direction: The direction of this flow.
|
|
1926
|
+
:param Sequence[str] protocol: A list of the allowed protocol(s) for this flow. If you want this flow to be able to use any protocol within the internet protocol suite, use the value `ip`. If you only want to allow a selection of protocols, you must use the corresponding IANA Assigned Internet Protocol Number for each protocol, as described in https://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml. For example, for UDP, you must use 17. If you use the value `ip` then you must leave the field `port` unspecified.
|
|
1927
|
+
:param Sequence[str] remote_ip_list: The remote IP address(es) to which UEs will connect for this flow. If you want to allow connections on any IP address, use the value `any`. Otherwise, you must provide each of the remote IP addresses to which the packet core instance will connect for this flow. You must provide each IP address in CIDR notation, including the netmask (for example, 192.0.2.54/24).
|
|
1928
|
+
:param str template_name: The name of the data flow template. This must be unique within the parent data flow policy rule. You must not use any of the following reserved strings - `default`, `requested` or `service`.
|
|
1929
|
+
:param Sequence[str] ports: The port(s) to which UEs will connect for this flow. You can specify zero or more ports or port ranges. If you specify one or more ports or port ranges then you must specify a value other than `ip` in the `protocol` field. This is an optional setting. If you do not specify it then connections will be allowed on all ports. Port ranges must be specified as <FirstPort>-<LastPort>. For example: [`8080`, `8082-8085`].
|
|
1930
|
+
"""
|
|
1931
|
+
pulumi.set(__self__, "direction", direction)
|
|
1932
|
+
pulumi.set(__self__, "protocol", protocol)
|
|
1933
|
+
pulumi.set(__self__, "remote_ip_list", remote_ip_list)
|
|
1934
|
+
pulumi.set(__self__, "template_name", template_name)
|
|
1935
|
+
if ports is not None:
|
|
1936
|
+
pulumi.set(__self__, "ports", ports)
|
|
1937
|
+
|
|
1938
|
+
@property
|
|
1939
|
+
@pulumi.getter
|
|
1940
|
+
def direction(self) -> str:
|
|
1941
|
+
"""
|
|
1942
|
+
The direction of this flow.
|
|
1943
|
+
"""
|
|
1944
|
+
return pulumi.get(self, "direction")
|
|
1945
|
+
|
|
1946
|
+
@property
|
|
1947
|
+
@pulumi.getter
|
|
1948
|
+
def protocol(self) -> Sequence[str]:
|
|
1949
|
+
"""
|
|
1950
|
+
A list of the allowed protocol(s) for this flow. If you want this flow to be able to use any protocol within the internet protocol suite, use the value `ip`. If you only want to allow a selection of protocols, you must use the corresponding IANA Assigned Internet Protocol Number for each protocol, as described in https://www.iana.org/assignments/protocol-numbers/protocol-numbers.xhtml. For example, for UDP, you must use 17. If you use the value `ip` then you must leave the field `port` unspecified.
|
|
1951
|
+
"""
|
|
1952
|
+
return pulumi.get(self, "protocol")
|
|
1953
|
+
|
|
1954
|
+
@property
|
|
1955
|
+
@pulumi.getter(name="remoteIpList")
|
|
1956
|
+
def remote_ip_list(self) -> Sequence[str]:
|
|
1957
|
+
"""
|
|
1958
|
+
The remote IP address(es) to which UEs will connect for this flow. If you want to allow connections on any IP address, use the value `any`. Otherwise, you must provide each of the remote IP addresses to which the packet core instance will connect for this flow. You must provide each IP address in CIDR notation, including the netmask (for example, 192.0.2.54/24).
|
|
1959
|
+
"""
|
|
1960
|
+
return pulumi.get(self, "remote_ip_list")
|
|
1961
|
+
|
|
1962
|
+
@property
|
|
1963
|
+
@pulumi.getter(name="templateName")
|
|
1964
|
+
def template_name(self) -> str:
|
|
1965
|
+
"""
|
|
1966
|
+
The name of the data flow template. This must be unique within the parent data flow policy rule. You must not use any of the following reserved strings - `default`, `requested` or `service`.
|
|
1967
|
+
"""
|
|
1968
|
+
return pulumi.get(self, "template_name")
|
|
1969
|
+
|
|
1970
|
+
@property
|
|
1971
|
+
@pulumi.getter
|
|
1972
|
+
def ports(self) -> Optional[Sequence[str]]:
|
|
1973
|
+
"""
|
|
1974
|
+
The port(s) to which UEs will connect for this flow. You can specify zero or more ports or port ranges. If you specify one or more ports or port ranges then you must specify a value other than `ip` in the `protocol` field. This is an optional setting. If you do not specify it then connections will be allowed on all ports. Port ranges must be specified as <FirstPort>-<LastPort>. For example: [`8080`, `8082-8085`].
|
|
1975
|
+
"""
|
|
1976
|
+
return pulumi.get(self, "ports")
|
|
1977
|
+
|
|
1978
|
+
|
|
1979
|
+
@pulumi.output_type
|
|
1980
|
+
class ServiceResourceIdResponse(dict):
|
|
1981
|
+
"""
|
|
1982
|
+
Reference to a service resource.
|
|
1983
|
+
"""
|
|
1984
|
+
def __init__(__self__, *,
|
|
1985
|
+
id: str):
|
|
1986
|
+
"""
|
|
1987
|
+
Reference to a service resource.
|
|
1988
|
+
:param str id: Service resource ID.
|
|
1989
|
+
"""
|
|
1990
|
+
pulumi.set(__self__, "id", id)
|
|
1991
|
+
|
|
1992
|
+
@property
|
|
1993
|
+
@pulumi.getter
|
|
1994
|
+
def id(self) -> str:
|
|
1995
|
+
"""
|
|
1996
|
+
Service resource ID.
|
|
1997
|
+
"""
|
|
1998
|
+
return pulumi.get(self, "id")
|
|
1999
|
+
|
|
2000
|
+
|
|
2001
|
+
@pulumi.output_type
|
|
2002
|
+
class SignalingConfigurationResponse(dict):
|
|
2003
|
+
"""
|
|
2004
|
+
Signaling configuration for the packet core.
|
|
2005
|
+
"""
|
|
2006
|
+
@staticmethod
|
|
2007
|
+
def __key_warning(key: str):
|
|
2008
|
+
suggest = None
|
|
2009
|
+
if key == "nasEncryption":
|
|
2010
|
+
suggest = "nas_encryption"
|
|
2011
|
+
elif key == "nasReroute":
|
|
2012
|
+
suggest = "nas_reroute"
|
|
2013
|
+
|
|
2014
|
+
if suggest:
|
|
2015
|
+
pulumi.log.warn(f"Key '{key}' not found in SignalingConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2016
|
+
|
|
2017
|
+
def __getitem__(self, key: str) -> Any:
|
|
2018
|
+
SignalingConfigurationResponse.__key_warning(key)
|
|
2019
|
+
return super().__getitem__(key)
|
|
2020
|
+
|
|
2021
|
+
def get(self, key: str, default = None) -> Any:
|
|
2022
|
+
SignalingConfigurationResponse.__key_warning(key)
|
|
2023
|
+
return super().get(key, default)
|
|
2024
|
+
|
|
2025
|
+
def __init__(__self__, *,
|
|
2026
|
+
nas_encryption: Optional[Sequence[str]] = None,
|
|
2027
|
+
nas_reroute: Optional['outputs.NASRerouteConfigurationResponse'] = None):
|
|
2028
|
+
"""
|
|
2029
|
+
Signaling configuration for the packet core.
|
|
2030
|
+
:param Sequence[str] nas_encryption: An ordered list of NAS encryption algorithms, used to encrypt control plane traffic between the UE and packet core, in order from most to least preferred. If not specified, the packet core will use a built-in default ordering.
|
|
2031
|
+
:param 'NASRerouteConfigurationResponse' nas_reroute: Configuration enabling 4G NAS reroute.
|
|
2032
|
+
"""
|
|
2033
|
+
if nas_encryption is not None:
|
|
2034
|
+
pulumi.set(__self__, "nas_encryption", nas_encryption)
|
|
2035
|
+
if nas_reroute is not None:
|
|
2036
|
+
pulumi.set(__self__, "nas_reroute", nas_reroute)
|
|
2037
|
+
|
|
2038
|
+
@property
|
|
2039
|
+
@pulumi.getter(name="nasEncryption")
|
|
2040
|
+
def nas_encryption(self) -> Optional[Sequence[str]]:
|
|
2041
|
+
"""
|
|
2042
|
+
An ordered list of NAS encryption algorithms, used to encrypt control plane traffic between the UE and packet core, in order from most to least preferred. If not specified, the packet core will use a built-in default ordering.
|
|
2043
|
+
"""
|
|
2044
|
+
return pulumi.get(self, "nas_encryption")
|
|
2045
|
+
|
|
2046
|
+
@property
|
|
2047
|
+
@pulumi.getter(name="nasReroute")
|
|
2048
|
+
def nas_reroute(self) -> Optional['outputs.NASRerouteConfigurationResponse']:
|
|
2049
|
+
"""
|
|
2050
|
+
Configuration enabling 4G NAS reroute.
|
|
2051
|
+
"""
|
|
2052
|
+
return pulumi.get(self, "nas_reroute")
|
|
2053
|
+
|
|
2054
|
+
|
|
2055
|
+
@pulumi.output_type
|
|
2056
|
+
class SimGroupResponse(dict):
|
|
2057
|
+
"""
|
|
2058
|
+
SIM group resource.
|
|
2059
|
+
"""
|
|
2060
|
+
def __init__(__self__, *,
|
|
2061
|
+
id: str,
|
|
2062
|
+
location: str,
|
|
2063
|
+
name: str,
|
|
2064
|
+
provisioning_state: str,
|
|
2065
|
+
system_data: 'outputs.SystemDataResponse',
|
|
2066
|
+
type: str,
|
|
2067
|
+
encryption_key: Optional['outputs.KeyVaultKeyResponse'] = None,
|
|
2068
|
+
identity: Optional['outputs.ManagedServiceIdentityResponse'] = None,
|
|
2069
|
+
mobile_network: Optional['outputs.MobileNetworkResourceIdResponse'] = None,
|
|
2070
|
+
tags: Optional[Mapping[str, str]] = None):
|
|
2071
|
+
"""
|
|
2072
|
+
SIM group resource.
|
|
2073
|
+
:param str id: Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
|
|
2074
|
+
:param str location: The geo-location where the resource lives
|
|
2075
|
+
:param str name: The name of the resource
|
|
2076
|
+
:param str provisioning_state: The provisioning state of the SIM group resource.
|
|
2077
|
+
:param 'SystemDataResponse' system_data: Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
2078
|
+
:param str type: The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
2079
|
+
:param 'KeyVaultKeyResponse' encryption_key: A key to encrypt the SIM data that belongs to this SIM group.
|
|
2080
|
+
:param 'ManagedServiceIdentityResponse' identity: The identity used to retrieve the encryption key from Azure key vault.
|
|
2081
|
+
:param 'MobileNetworkResourceIdResponse' mobile_network: Mobile network that this SIM group belongs to. The mobile network must be in the same location as the SIM group.
|
|
2082
|
+
:param Mapping[str, str] tags: Resource tags.
|
|
2083
|
+
"""
|
|
2084
|
+
pulumi.set(__self__, "id", id)
|
|
2085
|
+
pulumi.set(__self__, "location", location)
|
|
2086
|
+
pulumi.set(__self__, "name", name)
|
|
2087
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
2088
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
2089
|
+
pulumi.set(__self__, "type", type)
|
|
2090
|
+
if encryption_key is not None:
|
|
2091
|
+
pulumi.set(__self__, "encryption_key", encryption_key)
|
|
2092
|
+
if identity is not None:
|
|
2093
|
+
pulumi.set(__self__, "identity", identity)
|
|
2094
|
+
if mobile_network is not None:
|
|
2095
|
+
pulumi.set(__self__, "mobile_network", mobile_network)
|
|
2096
|
+
if tags is not None:
|
|
2097
|
+
pulumi.set(__self__, "tags", tags)
|
|
2098
|
+
|
|
2099
|
+
@property
|
|
2100
|
+
@pulumi.getter
|
|
2101
|
+
def id(self) -> str:
|
|
2102
|
+
"""
|
|
2103
|
+
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
|
|
2104
|
+
"""
|
|
2105
|
+
return pulumi.get(self, "id")
|
|
2106
|
+
|
|
2107
|
+
@property
|
|
2108
|
+
@pulumi.getter
|
|
2109
|
+
def location(self) -> str:
|
|
2110
|
+
"""
|
|
2111
|
+
The geo-location where the resource lives
|
|
2112
|
+
"""
|
|
2113
|
+
return pulumi.get(self, "location")
|
|
2114
|
+
|
|
2115
|
+
@property
|
|
2116
|
+
@pulumi.getter
|
|
2117
|
+
def name(self) -> str:
|
|
2118
|
+
"""
|
|
2119
|
+
The name of the resource
|
|
2120
|
+
"""
|
|
2121
|
+
return pulumi.get(self, "name")
|
|
2122
|
+
|
|
2123
|
+
@property
|
|
2124
|
+
@pulumi.getter(name="provisioningState")
|
|
2125
|
+
def provisioning_state(self) -> str:
|
|
2126
|
+
"""
|
|
2127
|
+
The provisioning state of the SIM group resource.
|
|
2128
|
+
"""
|
|
2129
|
+
return pulumi.get(self, "provisioning_state")
|
|
2130
|
+
|
|
2131
|
+
@property
|
|
2132
|
+
@pulumi.getter(name="systemData")
|
|
2133
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
2134
|
+
"""
|
|
2135
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
2136
|
+
"""
|
|
2137
|
+
return pulumi.get(self, "system_data")
|
|
2138
|
+
|
|
2139
|
+
@property
|
|
2140
|
+
@pulumi.getter
|
|
2141
|
+
def type(self) -> str:
|
|
2142
|
+
"""
|
|
2143
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
2144
|
+
"""
|
|
2145
|
+
return pulumi.get(self, "type")
|
|
2146
|
+
|
|
2147
|
+
@property
|
|
2148
|
+
@pulumi.getter(name="encryptionKey")
|
|
2149
|
+
def encryption_key(self) -> Optional['outputs.KeyVaultKeyResponse']:
|
|
2150
|
+
"""
|
|
2151
|
+
A key to encrypt the SIM data that belongs to this SIM group.
|
|
2152
|
+
"""
|
|
2153
|
+
return pulumi.get(self, "encryption_key")
|
|
2154
|
+
|
|
2155
|
+
@property
|
|
2156
|
+
@pulumi.getter
|
|
2157
|
+
def identity(self) -> Optional['outputs.ManagedServiceIdentityResponse']:
|
|
2158
|
+
"""
|
|
2159
|
+
The identity used to retrieve the encryption key from Azure key vault.
|
|
2160
|
+
"""
|
|
2161
|
+
return pulumi.get(self, "identity")
|
|
2162
|
+
|
|
2163
|
+
@property
|
|
2164
|
+
@pulumi.getter(name="mobileNetwork")
|
|
2165
|
+
def mobile_network(self) -> Optional['outputs.MobileNetworkResourceIdResponse']:
|
|
2166
|
+
"""
|
|
2167
|
+
Mobile network that this SIM group belongs to. The mobile network must be in the same location as the SIM group.
|
|
2168
|
+
"""
|
|
2169
|
+
return pulumi.get(self, "mobile_network")
|
|
2170
|
+
|
|
2171
|
+
@property
|
|
2172
|
+
@pulumi.getter
|
|
2173
|
+
def tags(self) -> Optional[Mapping[str, str]]:
|
|
2174
|
+
"""
|
|
2175
|
+
Resource tags.
|
|
2176
|
+
"""
|
|
2177
|
+
return pulumi.get(self, "tags")
|
|
2178
|
+
|
|
2179
|
+
|
|
2180
|
+
@pulumi.output_type
|
|
2181
|
+
class SimPolicyResourceIdResponse(dict):
|
|
2182
|
+
"""
|
|
2183
|
+
Reference to a SIM policy resource.
|
|
2184
|
+
"""
|
|
2185
|
+
def __init__(__self__, *,
|
|
2186
|
+
id: str):
|
|
2187
|
+
"""
|
|
2188
|
+
Reference to a SIM policy resource.
|
|
2189
|
+
:param str id: SIM policy resource ID.
|
|
2190
|
+
"""
|
|
2191
|
+
pulumi.set(__self__, "id", id)
|
|
2192
|
+
|
|
2193
|
+
@property
|
|
2194
|
+
@pulumi.getter
|
|
2195
|
+
def id(self) -> str:
|
|
2196
|
+
"""
|
|
2197
|
+
SIM policy resource ID.
|
|
2198
|
+
"""
|
|
2199
|
+
return pulumi.get(self, "id")
|
|
2200
|
+
|
|
2201
|
+
|
|
2202
|
+
@pulumi.output_type
|
|
2203
|
+
class SimStaticIpPropertiesResponse(dict):
|
|
2204
|
+
"""
|
|
2205
|
+
Static IP configuration for a SIM, scoped to a particular attached data network and slice.
|
|
2206
|
+
"""
|
|
2207
|
+
@staticmethod
|
|
2208
|
+
def __key_warning(key: str):
|
|
2209
|
+
suggest = None
|
|
2210
|
+
if key == "attachedDataNetwork":
|
|
2211
|
+
suggest = "attached_data_network"
|
|
2212
|
+
elif key == "staticIp":
|
|
2213
|
+
suggest = "static_ip"
|
|
2214
|
+
|
|
2215
|
+
if suggest:
|
|
2216
|
+
pulumi.log.warn(f"Key '{key}' not found in SimStaticIpPropertiesResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2217
|
+
|
|
2218
|
+
def __getitem__(self, key: str) -> Any:
|
|
2219
|
+
SimStaticIpPropertiesResponse.__key_warning(key)
|
|
2220
|
+
return super().__getitem__(key)
|
|
2221
|
+
|
|
2222
|
+
def get(self, key: str, default = None) -> Any:
|
|
2223
|
+
SimStaticIpPropertiesResponse.__key_warning(key)
|
|
2224
|
+
return super().get(key, default)
|
|
2225
|
+
|
|
2226
|
+
def __init__(__self__, *,
|
|
2227
|
+
attached_data_network: Optional['outputs.AttachedDataNetworkResourceIdResponse'] = None,
|
|
2228
|
+
slice: Optional['outputs.SliceResourceIdResponse'] = None,
|
|
2229
|
+
static_ip: Optional['outputs.SimStaticIpPropertiesResponseStaticIp'] = None):
|
|
2230
|
+
"""
|
|
2231
|
+
Static IP configuration for a SIM, scoped to a particular attached data network and slice.
|
|
2232
|
+
:param 'AttachedDataNetworkResourceIdResponse' attached_data_network: The attached data network on which the static IP address will be used. The combination of attached data network and slice defines the network scope of the IP address. The attached data network must be in the same location as the SIM.
|
|
2233
|
+
:param 'SliceResourceIdResponse' slice: The network slice on which the static IP address will be used. The combination of attached data network and slice defines the network scope of the IP address. The slice must be in the same location as the SIM.
|
|
2234
|
+
:param 'SimStaticIpPropertiesResponseStaticIp' static_ip: The static IP configuration for the SIM to use at the defined network scope.
|
|
2235
|
+
"""
|
|
2236
|
+
if attached_data_network is not None:
|
|
2237
|
+
pulumi.set(__self__, "attached_data_network", attached_data_network)
|
|
2238
|
+
if slice is not None:
|
|
2239
|
+
pulumi.set(__self__, "slice", slice)
|
|
2240
|
+
if static_ip is not None:
|
|
2241
|
+
pulumi.set(__self__, "static_ip", static_ip)
|
|
2242
|
+
|
|
2243
|
+
@property
|
|
2244
|
+
@pulumi.getter(name="attachedDataNetwork")
|
|
2245
|
+
def attached_data_network(self) -> Optional['outputs.AttachedDataNetworkResourceIdResponse']:
|
|
2246
|
+
"""
|
|
2247
|
+
The attached data network on which the static IP address will be used. The combination of attached data network and slice defines the network scope of the IP address. The attached data network must be in the same location as the SIM.
|
|
2248
|
+
"""
|
|
2249
|
+
return pulumi.get(self, "attached_data_network")
|
|
2250
|
+
|
|
2251
|
+
@property
|
|
2252
|
+
@pulumi.getter
|
|
2253
|
+
def slice(self) -> Optional['outputs.SliceResourceIdResponse']:
|
|
2254
|
+
"""
|
|
2255
|
+
The network slice on which the static IP address will be used. The combination of attached data network and slice defines the network scope of the IP address. The slice must be in the same location as the SIM.
|
|
2256
|
+
"""
|
|
2257
|
+
return pulumi.get(self, "slice")
|
|
2258
|
+
|
|
2259
|
+
@property
|
|
2260
|
+
@pulumi.getter(name="staticIp")
|
|
2261
|
+
def static_ip(self) -> Optional['outputs.SimStaticIpPropertiesResponseStaticIp']:
|
|
2262
|
+
"""
|
|
2263
|
+
The static IP configuration for the SIM to use at the defined network scope.
|
|
2264
|
+
"""
|
|
2265
|
+
return pulumi.get(self, "static_ip")
|
|
2266
|
+
|
|
2267
|
+
|
|
2268
|
+
@pulumi.output_type
|
|
2269
|
+
class SimStaticIpPropertiesResponseStaticIp(dict):
|
|
2270
|
+
"""
|
|
2271
|
+
The static IP configuration for the SIM to use at the defined network scope.
|
|
2272
|
+
"""
|
|
2273
|
+
@staticmethod
|
|
2274
|
+
def __key_warning(key: str):
|
|
2275
|
+
suggest = None
|
|
2276
|
+
if key == "ipv4Address":
|
|
2277
|
+
suggest = "ipv4_address"
|
|
2278
|
+
|
|
2279
|
+
if suggest:
|
|
2280
|
+
pulumi.log.warn(f"Key '{key}' not found in SimStaticIpPropertiesResponseStaticIp. Access the value via the '{suggest}' property getter instead.")
|
|
2281
|
+
|
|
2282
|
+
def __getitem__(self, key: str) -> Any:
|
|
2283
|
+
SimStaticIpPropertiesResponseStaticIp.__key_warning(key)
|
|
2284
|
+
return super().__getitem__(key)
|
|
2285
|
+
|
|
2286
|
+
def get(self, key: str, default = None) -> Any:
|
|
2287
|
+
SimStaticIpPropertiesResponseStaticIp.__key_warning(key)
|
|
2288
|
+
return super().get(key, default)
|
|
2289
|
+
|
|
2290
|
+
def __init__(__self__, *,
|
|
2291
|
+
ipv4_address: Optional[str] = None):
|
|
2292
|
+
"""
|
|
2293
|
+
The static IP configuration for the SIM to use at the defined network scope.
|
|
2294
|
+
:param str ipv4_address: The IPv4 address assigned to the SIM at this network scope. This address must be in the userEquipmentStaticAddressPoolPrefix defined in the attached data network.
|
|
2295
|
+
"""
|
|
2296
|
+
if ipv4_address is not None:
|
|
2297
|
+
pulumi.set(__self__, "ipv4_address", ipv4_address)
|
|
2298
|
+
|
|
2299
|
+
@property
|
|
2300
|
+
@pulumi.getter(name="ipv4Address")
|
|
2301
|
+
def ipv4_address(self) -> Optional[str]:
|
|
2302
|
+
"""
|
|
2303
|
+
The IPv4 address assigned to the SIM at this network scope. This address must be in the userEquipmentStaticAddressPoolPrefix defined in the attached data network.
|
|
2304
|
+
"""
|
|
2305
|
+
return pulumi.get(self, "ipv4_address")
|
|
2306
|
+
|
|
2307
|
+
|
|
2308
|
+
@pulumi.output_type
|
|
2309
|
+
class SiteResourceIdResponse(dict):
|
|
2310
|
+
"""
|
|
2311
|
+
Reference to a site resource.
|
|
2312
|
+
"""
|
|
2313
|
+
def __init__(__self__, *,
|
|
2314
|
+
id: str):
|
|
2315
|
+
"""
|
|
2316
|
+
Reference to a site resource.
|
|
2317
|
+
:param str id: Site resource ID.
|
|
2318
|
+
"""
|
|
2319
|
+
pulumi.set(__self__, "id", id)
|
|
2320
|
+
|
|
2321
|
+
@property
|
|
2322
|
+
@pulumi.getter
|
|
2323
|
+
def id(self) -> str:
|
|
2324
|
+
"""
|
|
2325
|
+
Site resource ID.
|
|
2326
|
+
"""
|
|
2327
|
+
return pulumi.get(self, "id")
|
|
2328
|
+
|
|
2329
|
+
|
|
2330
|
+
@pulumi.output_type
|
|
2331
|
+
class SliceConfigurationResponse(dict):
|
|
2332
|
+
"""
|
|
2333
|
+
Per-slice settings
|
|
2334
|
+
"""
|
|
2335
|
+
@staticmethod
|
|
2336
|
+
def __key_warning(key: str):
|
|
2337
|
+
suggest = None
|
|
2338
|
+
if key == "dataNetworkConfigurations":
|
|
2339
|
+
suggest = "data_network_configurations"
|
|
2340
|
+
elif key == "defaultDataNetwork":
|
|
2341
|
+
suggest = "default_data_network"
|
|
2342
|
+
|
|
2343
|
+
if suggest:
|
|
2344
|
+
pulumi.log.warn(f"Key '{key}' not found in SliceConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2345
|
+
|
|
2346
|
+
def __getitem__(self, key: str) -> Any:
|
|
2347
|
+
SliceConfigurationResponse.__key_warning(key)
|
|
2348
|
+
return super().__getitem__(key)
|
|
2349
|
+
|
|
2350
|
+
def get(self, key: str, default = None) -> Any:
|
|
2351
|
+
SliceConfigurationResponse.__key_warning(key)
|
|
2352
|
+
return super().get(key, default)
|
|
2353
|
+
|
|
2354
|
+
def __init__(__self__, *,
|
|
2355
|
+
data_network_configurations: Sequence['outputs.DataNetworkConfigurationResponse'],
|
|
2356
|
+
default_data_network: 'outputs.DataNetworkResourceIdResponse',
|
|
2357
|
+
slice: 'outputs.SliceResourceIdResponse'):
|
|
2358
|
+
"""
|
|
2359
|
+
Per-slice settings
|
|
2360
|
+
:param Sequence['DataNetworkConfigurationResponse'] data_network_configurations: The allowed data networks and the settings to use for them. The list must not contain duplicate items and must contain at least one item.
|
|
2361
|
+
:param 'DataNetworkResourceIdResponse' default_data_network: The default data network to use if the UE does not explicitly specify it. Configuration for this object must exist in the `dataNetworkConfigurations` map. The data network must be in the same location as the SIM policy.
|
|
2362
|
+
:param 'SliceResourceIdResponse' slice: A reference to the slice that these settings apply to. The slice must be in the same location as the SIM policy.
|
|
2363
|
+
"""
|
|
2364
|
+
pulumi.set(__self__, "data_network_configurations", data_network_configurations)
|
|
2365
|
+
pulumi.set(__self__, "default_data_network", default_data_network)
|
|
2366
|
+
pulumi.set(__self__, "slice", slice)
|
|
2367
|
+
|
|
2368
|
+
@property
|
|
2369
|
+
@pulumi.getter(name="dataNetworkConfigurations")
|
|
2370
|
+
def data_network_configurations(self) -> Sequence['outputs.DataNetworkConfigurationResponse']:
|
|
2371
|
+
"""
|
|
2372
|
+
The allowed data networks and the settings to use for them. The list must not contain duplicate items and must contain at least one item.
|
|
2373
|
+
"""
|
|
2374
|
+
return pulumi.get(self, "data_network_configurations")
|
|
2375
|
+
|
|
2376
|
+
@property
|
|
2377
|
+
@pulumi.getter(name="defaultDataNetwork")
|
|
2378
|
+
def default_data_network(self) -> 'outputs.DataNetworkResourceIdResponse':
|
|
2379
|
+
"""
|
|
2380
|
+
The default data network to use if the UE does not explicitly specify it. Configuration for this object must exist in the `dataNetworkConfigurations` map. The data network must be in the same location as the SIM policy.
|
|
2381
|
+
"""
|
|
2382
|
+
return pulumi.get(self, "default_data_network")
|
|
2383
|
+
|
|
2384
|
+
@property
|
|
2385
|
+
@pulumi.getter
|
|
2386
|
+
def slice(self) -> 'outputs.SliceResourceIdResponse':
|
|
2387
|
+
"""
|
|
2388
|
+
A reference to the slice that these settings apply to. The slice must be in the same location as the SIM policy.
|
|
2389
|
+
"""
|
|
2390
|
+
return pulumi.get(self, "slice")
|
|
2391
|
+
|
|
2392
|
+
|
|
2393
|
+
@pulumi.output_type
|
|
2394
|
+
class SliceResourceIdResponse(dict):
|
|
2395
|
+
"""
|
|
2396
|
+
Reference to a slice resource.
|
|
2397
|
+
"""
|
|
2398
|
+
def __init__(__self__, *,
|
|
2399
|
+
id: str):
|
|
2400
|
+
"""
|
|
2401
|
+
Reference to a slice resource.
|
|
2402
|
+
:param str id: Slice resource ID.
|
|
2403
|
+
"""
|
|
2404
|
+
pulumi.set(__self__, "id", id)
|
|
2405
|
+
|
|
2406
|
+
@property
|
|
2407
|
+
@pulumi.getter
|
|
2408
|
+
def id(self) -> str:
|
|
2409
|
+
"""
|
|
2410
|
+
Slice resource ID.
|
|
2411
|
+
"""
|
|
2412
|
+
return pulumi.get(self, "id")
|
|
2413
|
+
|
|
2414
|
+
|
|
2415
|
+
@pulumi.output_type
|
|
2416
|
+
class SnssaiResponse(dict):
|
|
2417
|
+
"""
|
|
2418
|
+
Single-network slice selection assistance information (S-NSSAI).
|
|
2419
|
+
"""
|
|
2420
|
+
def __init__(__self__, *,
|
|
2421
|
+
sst: int,
|
|
2422
|
+
sd: Optional[str] = None):
|
|
2423
|
+
"""
|
|
2424
|
+
Single-network slice selection assistance information (S-NSSAI).
|
|
2425
|
+
:param int sst: Slice/service type (SST).
|
|
2426
|
+
:param str sd: Slice differentiator (SD).
|
|
2427
|
+
"""
|
|
2428
|
+
pulumi.set(__self__, "sst", sst)
|
|
2429
|
+
if sd is not None:
|
|
2430
|
+
pulumi.set(__self__, "sd", sd)
|
|
2431
|
+
|
|
2432
|
+
@property
|
|
2433
|
+
@pulumi.getter
|
|
2434
|
+
def sst(self) -> int:
|
|
2435
|
+
"""
|
|
2436
|
+
Slice/service type (SST).
|
|
2437
|
+
"""
|
|
2438
|
+
return pulumi.get(self, "sst")
|
|
2439
|
+
|
|
2440
|
+
@property
|
|
2441
|
+
@pulumi.getter
|
|
2442
|
+
def sd(self) -> Optional[str]:
|
|
2443
|
+
"""
|
|
2444
|
+
Slice differentiator (SD).
|
|
2445
|
+
"""
|
|
2446
|
+
return pulumi.get(self, "sd")
|
|
2447
|
+
|
|
2448
|
+
|
|
2449
|
+
@pulumi.output_type
|
|
2450
|
+
class SubResourceResponse(dict):
|
|
2451
|
+
"""
|
|
2452
|
+
Reference to another sub resource.
|
|
2453
|
+
"""
|
|
2454
|
+
def __init__(__self__, *,
|
|
2455
|
+
id: str):
|
|
2456
|
+
"""
|
|
2457
|
+
Reference to another sub resource.
|
|
2458
|
+
:param str id: Resource ID.
|
|
2459
|
+
"""
|
|
2460
|
+
pulumi.set(__self__, "id", id)
|
|
2461
|
+
|
|
2462
|
+
@property
|
|
2463
|
+
@pulumi.getter
|
|
2464
|
+
def id(self) -> str:
|
|
2465
|
+
"""
|
|
2466
|
+
Resource ID.
|
|
2467
|
+
"""
|
|
2468
|
+
return pulumi.get(self, "id")
|
|
2469
|
+
|
|
2470
|
+
|
|
2471
|
+
@pulumi.output_type
|
|
2472
|
+
class SystemDataResponse(dict):
|
|
2473
|
+
"""
|
|
2474
|
+
Metadata pertaining to creation and last modification of the resource.
|
|
2475
|
+
"""
|
|
2476
|
+
@staticmethod
|
|
2477
|
+
def __key_warning(key: str):
|
|
2478
|
+
suggest = None
|
|
2479
|
+
if key == "createdAt":
|
|
2480
|
+
suggest = "created_at"
|
|
2481
|
+
elif key == "createdBy":
|
|
2482
|
+
suggest = "created_by"
|
|
2483
|
+
elif key == "createdByType":
|
|
2484
|
+
suggest = "created_by_type"
|
|
2485
|
+
elif key == "lastModifiedAt":
|
|
2486
|
+
suggest = "last_modified_at"
|
|
2487
|
+
elif key == "lastModifiedBy":
|
|
2488
|
+
suggest = "last_modified_by"
|
|
2489
|
+
elif key == "lastModifiedByType":
|
|
2490
|
+
suggest = "last_modified_by_type"
|
|
2491
|
+
|
|
2492
|
+
if suggest:
|
|
2493
|
+
pulumi.log.warn(f"Key '{key}' not found in SystemDataResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2494
|
+
|
|
2495
|
+
def __getitem__(self, key: str) -> Any:
|
|
2496
|
+
SystemDataResponse.__key_warning(key)
|
|
2497
|
+
return super().__getitem__(key)
|
|
2498
|
+
|
|
2499
|
+
def get(self, key: str, default = None) -> Any:
|
|
2500
|
+
SystemDataResponse.__key_warning(key)
|
|
2501
|
+
return super().get(key, default)
|
|
2502
|
+
|
|
2503
|
+
def __init__(__self__, *,
|
|
2504
|
+
created_at: Optional[str] = None,
|
|
2505
|
+
created_by: Optional[str] = None,
|
|
2506
|
+
created_by_type: Optional[str] = None,
|
|
2507
|
+
last_modified_at: Optional[str] = None,
|
|
2508
|
+
last_modified_by: Optional[str] = None,
|
|
2509
|
+
last_modified_by_type: Optional[str] = None):
|
|
2510
|
+
"""
|
|
2511
|
+
Metadata pertaining to creation and last modification of the resource.
|
|
2512
|
+
:param str created_at: The timestamp of resource creation (UTC).
|
|
2513
|
+
:param str created_by: The identity that created the resource.
|
|
2514
|
+
:param str created_by_type: The type of identity that created the resource.
|
|
2515
|
+
:param str last_modified_at: The timestamp of resource last modification (UTC)
|
|
2516
|
+
:param str last_modified_by: The identity that last modified the resource.
|
|
2517
|
+
:param str last_modified_by_type: The type of identity that last modified the resource.
|
|
2518
|
+
"""
|
|
2519
|
+
if created_at is not None:
|
|
2520
|
+
pulumi.set(__self__, "created_at", created_at)
|
|
2521
|
+
if created_by is not None:
|
|
2522
|
+
pulumi.set(__self__, "created_by", created_by)
|
|
2523
|
+
if created_by_type is not None:
|
|
2524
|
+
pulumi.set(__self__, "created_by_type", created_by_type)
|
|
2525
|
+
if last_modified_at is not None:
|
|
2526
|
+
pulumi.set(__self__, "last_modified_at", last_modified_at)
|
|
2527
|
+
if last_modified_by is not None:
|
|
2528
|
+
pulumi.set(__self__, "last_modified_by", last_modified_by)
|
|
2529
|
+
if last_modified_by_type is not None:
|
|
2530
|
+
pulumi.set(__self__, "last_modified_by_type", last_modified_by_type)
|
|
2531
|
+
|
|
2532
|
+
@property
|
|
2533
|
+
@pulumi.getter(name="createdAt")
|
|
2534
|
+
def created_at(self) -> Optional[str]:
|
|
2535
|
+
"""
|
|
2536
|
+
The timestamp of resource creation (UTC).
|
|
2537
|
+
"""
|
|
2538
|
+
return pulumi.get(self, "created_at")
|
|
2539
|
+
|
|
2540
|
+
@property
|
|
2541
|
+
@pulumi.getter(name="createdBy")
|
|
2542
|
+
def created_by(self) -> Optional[str]:
|
|
2543
|
+
"""
|
|
2544
|
+
The identity that created the resource.
|
|
2545
|
+
"""
|
|
2546
|
+
return pulumi.get(self, "created_by")
|
|
2547
|
+
|
|
2548
|
+
@property
|
|
2549
|
+
@pulumi.getter(name="createdByType")
|
|
2550
|
+
def created_by_type(self) -> Optional[str]:
|
|
2551
|
+
"""
|
|
2552
|
+
The type of identity that created the resource.
|
|
2553
|
+
"""
|
|
2554
|
+
return pulumi.get(self, "created_by_type")
|
|
2555
|
+
|
|
2556
|
+
@property
|
|
2557
|
+
@pulumi.getter(name="lastModifiedAt")
|
|
2558
|
+
def last_modified_at(self) -> Optional[str]:
|
|
2559
|
+
"""
|
|
2560
|
+
The timestamp of resource last modification (UTC)
|
|
2561
|
+
"""
|
|
2562
|
+
return pulumi.get(self, "last_modified_at")
|
|
2563
|
+
|
|
2564
|
+
@property
|
|
2565
|
+
@pulumi.getter(name="lastModifiedBy")
|
|
2566
|
+
def last_modified_by(self) -> Optional[str]:
|
|
2567
|
+
"""
|
|
2568
|
+
The identity that last modified the resource.
|
|
2569
|
+
"""
|
|
2570
|
+
return pulumi.get(self, "last_modified_by")
|
|
2571
|
+
|
|
2572
|
+
@property
|
|
2573
|
+
@pulumi.getter(name="lastModifiedByType")
|
|
2574
|
+
def last_modified_by_type(self) -> Optional[str]:
|
|
2575
|
+
"""
|
|
2576
|
+
The type of identity that last modified the resource.
|
|
2577
|
+
"""
|
|
2578
|
+
return pulumi.get(self, "last_modified_by_type")
|
|
2579
|
+
|
|
2580
|
+
|
|
2581
|
+
@pulumi.output_type
|
|
2582
|
+
class UserAssignedIdentityResponse(dict):
|
|
2583
|
+
"""
|
|
2584
|
+
User assigned identity properties
|
|
2585
|
+
"""
|
|
2586
|
+
@staticmethod
|
|
2587
|
+
def __key_warning(key: str):
|
|
2588
|
+
suggest = None
|
|
2589
|
+
if key == "clientId":
|
|
2590
|
+
suggest = "client_id"
|
|
2591
|
+
elif key == "principalId":
|
|
2592
|
+
suggest = "principal_id"
|
|
2593
|
+
|
|
2594
|
+
if suggest:
|
|
2595
|
+
pulumi.log.warn(f"Key '{key}' not found in UserAssignedIdentityResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2596
|
+
|
|
2597
|
+
def __getitem__(self, key: str) -> Any:
|
|
2598
|
+
UserAssignedIdentityResponse.__key_warning(key)
|
|
2599
|
+
return super().__getitem__(key)
|
|
2600
|
+
|
|
2601
|
+
def get(self, key: str, default = None) -> Any:
|
|
2602
|
+
UserAssignedIdentityResponse.__key_warning(key)
|
|
2603
|
+
return super().get(key, default)
|
|
2604
|
+
|
|
2605
|
+
def __init__(__self__, *,
|
|
2606
|
+
client_id: str,
|
|
2607
|
+
principal_id: str):
|
|
2608
|
+
"""
|
|
2609
|
+
User assigned identity properties
|
|
2610
|
+
:param str client_id: The client ID of the assigned identity.
|
|
2611
|
+
:param str principal_id: The principal ID of the assigned identity.
|
|
2612
|
+
"""
|
|
2613
|
+
pulumi.set(__self__, "client_id", client_id)
|
|
2614
|
+
pulumi.set(__self__, "principal_id", principal_id)
|
|
2615
|
+
|
|
2616
|
+
@property
|
|
2617
|
+
@pulumi.getter(name="clientId")
|
|
2618
|
+
def client_id(self) -> str:
|
|
2619
|
+
"""
|
|
2620
|
+
The client ID of the assigned identity.
|
|
2621
|
+
"""
|
|
2622
|
+
return pulumi.get(self, "client_id")
|
|
2623
|
+
|
|
2624
|
+
@property
|
|
2625
|
+
@pulumi.getter(name="principalId")
|
|
2626
|
+
def principal_id(self) -> str:
|
|
2627
|
+
"""
|
|
2628
|
+
The principal ID of the assigned identity.
|
|
2629
|
+
"""
|
|
2630
|
+
return pulumi.get(self, "principal_id")
|
|
2631
|
+
|
|
2632
|
+
|
|
2633
|
+
@pulumi.output_type
|
|
2634
|
+
class UserConsentConfigurationResponse(dict):
|
|
2635
|
+
@staticmethod
|
|
2636
|
+
def __key_warning(key: str):
|
|
2637
|
+
suggest = None
|
|
2638
|
+
if key == "allowSupportTelemetryAccess":
|
|
2639
|
+
suggest = "allow_support_telemetry_access"
|
|
2640
|
+
|
|
2641
|
+
if suggest:
|
|
2642
|
+
pulumi.log.warn(f"Key '{key}' not found in UserConsentConfigurationResponse. Access the value via the '{suggest}' property getter instead.")
|
|
2643
|
+
|
|
2644
|
+
def __getitem__(self, key: str) -> Any:
|
|
2645
|
+
UserConsentConfigurationResponse.__key_warning(key)
|
|
2646
|
+
return super().__getitem__(key)
|
|
2647
|
+
|
|
2648
|
+
def get(self, key: str, default = None) -> Any:
|
|
2649
|
+
UserConsentConfigurationResponse.__key_warning(key)
|
|
2650
|
+
return super().get(key, default)
|
|
2651
|
+
|
|
2652
|
+
def __init__(__self__, *,
|
|
2653
|
+
allow_support_telemetry_access: Optional[bool] = None):
|
|
2654
|
+
"""
|
|
2655
|
+
:param bool allow_support_telemetry_access: Allow Microsoft to access non-PII telemetry information from the packet core.
|
|
2656
|
+
"""
|
|
2657
|
+
if allow_support_telemetry_access is not None:
|
|
2658
|
+
pulumi.set(__self__, "allow_support_telemetry_access", allow_support_telemetry_access)
|
|
2659
|
+
|
|
2660
|
+
@property
|
|
2661
|
+
@pulumi.getter(name="allowSupportTelemetryAccess")
|
|
2662
|
+
def allow_support_telemetry_access(self) -> Optional[bool]:
|
|
2663
|
+
"""
|
|
2664
|
+
Allow Microsoft to access non-PII telemetry information from the packet core.
|
|
2665
|
+
"""
|
|
2666
|
+
return pulumi.get(self, "allow_support_telemetry_access")
|
|
2667
|
+
|
|
2668
|
+
|