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,313 @@
|
|
|
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 ._inputs import *
|
|
13
|
+
|
|
14
|
+
__all__ = ['PacketCoreDataPlaneArgs', 'PacketCoreDataPlane']
|
|
15
|
+
|
|
16
|
+
@pulumi.input_type
|
|
17
|
+
class PacketCoreDataPlaneArgs:
|
|
18
|
+
def __init__(__self__, *,
|
|
19
|
+
packet_core_control_plane_name: pulumi.Input[str],
|
|
20
|
+
resource_group_name: pulumi.Input[str],
|
|
21
|
+
user_plane_access_interface: pulumi.Input['InterfacePropertiesArgs'],
|
|
22
|
+
location: Optional[pulumi.Input[str]] = None,
|
|
23
|
+
packet_core_data_plane_name: Optional[pulumi.Input[str]] = None,
|
|
24
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
25
|
+
user_plane_access_virtual_ipv4_addresses: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None):
|
|
26
|
+
"""
|
|
27
|
+
The set of arguments for constructing a PacketCoreDataPlane resource.
|
|
28
|
+
:param pulumi.Input[str] packet_core_control_plane_name: The name of the packet core control plane.
|
|
29
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
|
|
30
|
+
:param pulumi.Input['InterfacePropertiesArgs'] user_plane_access_interface: The user plane interface on the access network. For 5G networks, this is the N3 interface. For 4G networks, this is the S1-U interface.
|
|
31
|
+
:param pulumi.Input[str] location: The geo-location where the resource lives
|
|
32
|
+
:param pulumi.Input[str] packet_core_data_plane_name: The name of the packet core data plane.
|
|
33
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Resource tags.
|
|
34
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] user_plane_access_virtual_ipv4_addresses: The virtual IP address(es) for the user plane on the access network in a High Availability (HA) system. In an HA deployment the access network router should be configured to forward traffic for this address to the control plane access interface on the active or standby node. In non-HA system this list should be omitted or empty.
|
|
35
|
+
"""
|
|
36
|
+
pulumi.set(__self__, "packet_core_control_plane_name", packet_core_control_plane_name)
|
|
37
|
+
pulumi.set(__self__, "resource_group_name", resource_group_name)
|
|
38
|
+
pulumi.set(__self__, "user_plane_access_interface", user_plane_access_interface)
|
|
39
|
+
if location is not None:
|
|
40
|
+
pulumi.set(__self__, "location", location)
|
|
41
|
+
if packet_core_data_plane_name is not None:
|
|
42
|
+
pulumi.set(__self__, "packet_core_data_plane_name", packet_core_data_plane_name)
|
|
43
|
+
if tags is not None:
|
|
44
|
+
pulumi.set(__self__, "tags", tags)
|
|
45
|
+
if user_plane_access_virtual_ipv4_addresses is not None:
|
|
46
|
+
pulumi.set(__self__, "user_plane_access_virtual_ipv4_addresses", user_plane_access_virtual_ipv4_addresses)
|
|
47
|
+
|
|
48
|
+
@property
|
|
49
|
+
@pulumi.getter(name="packetCoreControlPlaneName")
|
|
50
|
+
def packet_core_control_plane_name(self) -> pulumi.Input[str]:
|
|
51
|
+
"""
|
|
52
|
+
The name of the packet core control plane.
|
|
53
|
+
"""
|
|
54
|
+
return pulumi.get(self, "packet_core_control_plane_name")
|
|
55
|
+
|
|
56
|
+
@packet_core_control_plane_name.setter
|
|
57
|
+
def packet_core_control_plane_name(self, value: pulumi.Input[str]):
|
|
58
|
+
pulumi.set(self, "packet_core_control_plane_name", value)
|
|
59
|
+
|
|
60
|
+
@property
|
|
61
|
+
@pulumi.getter(name="resourceGroupName")
|
|
62
|
+
def resource_group_name(self) -> pulumi.Input[str]:
|
|
63
|
+
"""
|
|
64
|
+
The name of the resource group. The name is case insensitive.
|
|
65
|
+
"""
|
|
66
|
+
return pulumi.get(self, "resource_group_name")
|
|
67
|
+
|
|
68
|
+
@resource_group_name.setter
|
|
69
|
+
def resource_group_name(self, value: pulumi.Input[str]):
|
|
70
|
+
pulumi.set(self, "resource_group_name", value)
|
|
71
|
+
|
|
72
|
+
@property
|
|
73
|
+
@pulumi.getter(name="userPlaneAccessInterface")
|
|
74
|
+
def user_plane_access_interface(self) -> pulumi.Input['InterfacePropertiesArgs']:
|
|
75
|
+
"""
|
|
76
|
+
The user plane interface on the access network. For 5G networks, this is the N3 interface. For 4G networks, this is the S1-U interface.
|
|
77
|
+
"""
|
|
78
|
+
return pulumi.get(self, "user_plane_access_interface")
|
|
79
|
+
|
|
80
|
+
@user_plane_access_interface.setter
|
|
81
|
+
def user_plane_access_interface(self, value: pulumi.Input['InterfacePropertiesArgs']):
|
|
82
|
+
pulumi.set(self, "user_plane_access_interface", value)
|
|
83
|
+
|
|
84
|
+
@property
|
|
85
|
+
@pulumi.getter
|
|
86
|
+
def location(self) -> Optional[pulumi.Input[str]]:
|
|
87
|
+
"""
|
|
88
|
+
The geo-location where the resource lives
|
|
89
|
+
"""
|
|
90
|
+
return pulumi.get(self, "location")
|
|
91
|
+
|
|
92
|
+
@location.setter
|
|
93
|
+
def location(self, value: Optional[pulumi.Input[str]]):
|
|
94
|
+
pulumi.set(self, "location", value)
|
|
95
|
+
|
|
96
|
+
@property
|
|
97
|
+
@pulumi.getter(name="packetCoreDataPlaneName")
|
|
98
|
+
def packet_core_data_plane_name(self) -> Optional[pulumi.Input[str]]:
|
|
99
|
+
"""
|
|
100
|
+
The name of the packet core data plane.
|
|
101
|
+
"""
|
|
102
|
+
return pulumi.get(self, "packet_core_data_plane_name")
|
|
103
|
+
|
|
104
|
+
@packet_core_data_plane_name.setter
|
|
105
|
+
def packet_core_data_plane_name(self, value: Optional[pulumi.Input[str]]):
|
|
106
|
+
pulumi.set(self, "packet_core_data_plane_name", value)
|
|
107
|
+
|
|
108
|
+
@property
|
|
109
|
+
@pulumi.getter
|
|
110
|
+
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
111
|
+
"""
|
|
112
|
+
Resource tags.
|
|
113
|
+
"""
|
|
114
|
+
return pulumi.get(self, "tags")
|
|
115
|
+
|
|
116
|
+
@tags.setter
|
|
117
|
+
def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
|
118
|
+
pulumi.set(self, "tags", value)
|
|
119
|
+
|
|
120
|
+
@property
|
|
121
|
+
@pulumi.getter(name="userPlaneAccessVirtualIpv4Addresses")
|
|
122
|
+
def user_plane_access_virtual_ipv4_addresses(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
123
|
+
"""
|
|
124
|
+
The virtual IP address(es) for the user plane on the access network in a High Availability (HA) system. In an HA deployment the access network router should be configured to forward traffic for this address to the control plane access interface on the active or standby node. In non-HA system this list should be omitted or empty.
|
|
125
|
+
"""
|
|
126
|
+
return pulumi.get(self, "user_plane_access_virtual_ipv4_addresses")
|
|
127
|
+
|
|
128
|
+
@user_plane_access_virtual_ipv4_addresses.setter
|
|
129
|
+
def user_plane_access_virtual_ipv4_addresses(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
130
|
+
pulumi.set(self, "user_plane_access_virtual_ipv4_addresses", value)
|
|
131
|
+
|
|
132
|
+
|
|
133
|
+
class PacketCoreDataPlane(pulumi.CustomResource):
|
|
134
|
+
@overload
|
|
135
|
+
def __init__(__self__,
|
|
136
|
+
resource_name: str,
|
|
137
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
138
|
+
location: Optional[pulumi.Input[str]] = None,
|
|
139
|
+
packet_core_control_plane_name: Optional[pulumi.Input[str]] = None,
|
|
140
|
+
packet_core_data_plane_name: Optional[pulumi.Input[str]] = None,
|
|
141
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
142
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
143
|
+
user_plane_access_interface: Optional[pulumi.Input[pulumi.InputType['InterfacePropertiesArgs']]] = None,
|
|
144
|
+
user_plane_access_virtual_ipv4_addresses: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
145
|
+
__props__=None):
|
|
146
|
+
"""
|
|
147
|
+
Packet core data plane resource. Must be created in the same location as its parent packet core control plane.
|
|
148
|
+
|
|
149
|
+
:param str resource_name: The name of the resource.
|
|
150
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
151
|
+
:param pulumi.Input[str] location: The geo-location where the resource lives
|
|
152
|
+
:param pulumi.Input[str] packet_core_control_plane_name: The name of the packet core control plane.
|
|
153
|
+
:param pulumi.Input[str] packet_core_data_plane_name: The name of the packet core data plane.
|
|
154
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
|
|
155
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Resource tags.
|
|
156
|
+
:param pulumi.Input[pulumi.InputType['InterfacePropertiesArgs']] user_plane_access_interface: The user plane interface on the access network. For 5G networks, this is the N3 interface. For 4G networks, this is the S1-U interface.
|
|
157
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] user_plane_access_virtual_ipv4_addresses: The virtual IP address(es) for the user plane on the access network in a High Availability (HA) system. In an HA deployment the access network router should be configured to forward traffic for this address to the control plane access interface on the active or standby node. In non-HA system this list should be omitted or empty.
|
|
158
|
+
"""
|
|
159
|
+
...
|
|
160
|
+
@overload
|
|
161
|
+
def __init__(__self__,
|
|
162
|
+
resource_name: str,
|
|
163
|
+
args: PacketCoreDataPlaneArgs,
|
|
164
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
165
|
+
"""
|
|
166
|
+
Packet core data plane resource. Must be created in the same location as its parent packet core control plane.
|
|
167
|
+
|
|
168
|
+
:param str resource_name: The name of the resource.
|
|
169
|
+
:param PacketCoreDataPlaneArgs args: The arguments to use to populate this resource's properties.
|
|
170
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
171
|
+
"""
|
|
172
|
+
...
|
|
173
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
174
|
+
resource_args, opts = _utilities.get_resource_args_opts(PacketCoreDataPlaneArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
175
|
+
if resource_args is not None:
|
|
176
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
177
|
+
else:
|
|
178
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
179
|
+
|
|
180
|
+
def _internal_init(__self__,
|
|
181
|
+
resource_name: str,
|
|
182
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
183
|
+
location: Optional[pulumi.Input[str]] = None,
|
|
184
|
+
packet_core_control_plane_name: Optional[pulumi.Input[str]] = None,
|
|
185
|
+
packet_core_data_plane_name: Optional[pulumi.Input[str]] = None,
|
|
186
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
187
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
188
|
+
user_plane_access_interface: Optional[pulumi.Input[pulumi.InputType['InterfacePropertiesArgs']]] = None,
|
|
189
|
+
user_plane_access_virtual_ipv4_addresses: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
190
|
+
__props__=None):
|
|
191
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
192
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
193
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
194
|
+
if opts.id is None:
|
|
195
|
+
if __props__ is not None:
|
|
196
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
197
|
+
__props__ = PacketCoreDataPlaneArgs.__new__(PacketCoreDataPlaneArgs)
|
|
198
|
+
|
|
199
|
+
__props__.__dict__["location"] = location
|
|
200
|
+
if packet_core_control_plane_name is None and not opts.urn:
|
|
201
|
+
raise TypeError("Missing required property 'packet_core_control_plane_name'")
|
|
202
|
+
__props__.__dict__["packet_core_control_plane_name"] = packet_core_control_plane_name
|
|
203
|
+
__props__.__dict__["packet_core_data_plane_name"] = packet_core_data_plane_name
|
|
204
|
+
if resource_group_name is None and not opts.urn:
|
|
205
|
+
raise TypeError("Missing required property 'resource_group_name'")
|
|
206
|
+
__props__.__dict__["resource_group_name"] = resource_group_name
|
|
207
|
+
__props__.__dict__["tags"] = tags
|
|
208
|
+
if user_plane_access_interface is None and not opts.urn:
|
|
209
|
+
raise TypeError("Missing required property 'user_plane_access_interface'")
|
|
210
|
+
__props__.__dict__["user_plane_access_interface"] = user_plane_access_interface
|
|
211
|
+
__props__.__dict__["user_plane_access_virtual_ipv4_addresses"] = user_plane_access_virtual_ipv4_addresses
|
|
212
|
+
__props__.__dict__["name"] = None
|
|
213
|
+
__props__.__dict__["provisioning_state"] = None
|
|
214
|
+
__props__.__dict__["system_data"] = None
|
|
215
|
+
__props__.__dict__["type"] = None
|
|
216
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:mobilenetwork:PacketCoreDataPlane"), pulumi.Alias(type_="azure-native:mobilenetwork/v20220301preview:PacketCoreDataPlane"), pulumi.Alias(type_="azure-native:mobilenetwork/v20220401preview:PacketCoreDataPlane"), pulumi.Alias(type_="azure-native:mobilenetwork/v20221101:PacketCoreDataPlane"), pulumi.Alias(type_="azure-native:mobilenetwork/v20230601:PacketCoreDataPlane"), pulumi.Alias(type_="azure-native:mobilenetwork/v20230901:PacketCoreDataPlane"), pulumi.Alias(type_="azure-native:mobilenetwork/v20240201:PacketCoreDataPlane")])
|
|
217
|
+
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
218
|
+
super(PacketCoreDataPlane, __self__).__init__(
|
|
219
|
+
'azure-native:mobilenetwork/v20240401:PacketCoreDataPlane',
|
|
220
|
+
resource_name,
|
|
221
|
+
__props__,
|
|
222
|
+
opts)
|
|
223
|
+
|
|
224
|
+
@staticmethod
|
|
225
|
+
def get(resource_name: str,
|
|
226
|
+
id: pulumi.Input[str],
|
|
227
|
+
opts: Optional[pulumi.ResourceOptions] = None) -> 'PacketCoreDataPlane':
|
|
228
|
+
"""
|
|
229
|
+
Get an existing PacketCoreDataPlane resource's state with the given name, id, and optional extra
|
|
230
|
+
properties used to qualify the lookup.
|
|
231
|
+
|
|
232
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
233
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
234
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
235
|
+
"""
|
|
236
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
237
|
+
|
|
238
|
+
__props__ = PacketCoreDataPlaneArgs.__new__(PacketCoreDataPlaneArgs)
|
|
239
|
+
|
|
240
|
+
__props__.__dict__["location"] = None
|
|
241
|
+
__props__.__dict__["name"] = None
|
|
242
|
+
__props__.__dict__["provisioning_state"] = None
|
|
243
|
+
__props__.__dict__["system_data"] = None
|
|
244
|
+
__props__.__dict__["tags"] = None
|
|
245
|
+
__props__.__dict__["type"] = None
|
|
246
|
+
__props__.__dict__["user_plane_access_interface"] = None
|
|
247
|
+
__props__.__dict__["user_plane_access_virtual_ipv4_addresses"] = None
|
|
248
|
+
return PacketCoreDataPlane(resource_name, opts=opts, __props__=__props__)
|
|
249
|
+
|
|
250
|
+
@property
|
|
251
|
+
@pulumi.getter
|
|
252
|
+
def location(self) -> pulumi.Output[str]:
|
|
253
|
+
"""
|
|
254
|
+
The geo-location where the resource lives
|
|
255
|
+
"""
|
|
256
|
+
return pulumi.get(self, "location")
|
|
257
|
+
|
|
258
|
+
@property
|
|
259
|
+
@pulumi.getter
|
|
260
|
+
def name(self) -> pulumi.Output[str]:
|
|
261
|
+
"""
|
|
262
|
+
The name of the resource
|
|
263
|
+
"""
|
|
264
|
+
return pulumi.get(self, "name")
|
|
265
|
+
|
|
266
|
+
@property
|
|
267
|
+
@pulumi.getter(name="provisioningState")
|
|
268
|
+
def provisioning_state(self) -> pulumi.Output[str]:
|
|
269
|
+
"""
|
|
270
|
+
The provisioning state of the packet core data plane resource.
|
|
271
|
+
"""
|
|
272
|
+
return pulumi.get(self, "provisioning_state")
|
|
273
|
+
|
|
274
|
+
@property
|
|
275
|
+
@pulumi.getter(name="systemData")
|
|
276
|
+
def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
|
|
277
|
+
"""
|
|
278
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
279
|
+
"""
|
|
280
|
+
return pulumi.get(self, "system_data")
|
|
281
|
+
|
|
282
|
+
@property
|
|
283
|
+
@pulumi.getter
|
|
284
|
+
def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
|
285
|
+
"""
|
|
286
|
+
Resource tags.
|
|
287
|
+
"""
|
|
288
|
+
return pulumi.get(self, "tags")
|
|
289
|
+
|
|
290
|
+
@property
|
|
291
|
+
@pulumi.getter
|
|
292
|
+
def type(self) -> pulumi.Output[str]:
|
|
293
|
+
"""
|
|
294
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
295
|
+
"""
|
|
296
|
+
return pulumi.get(self, "type")
|
|
297
|
+
|
|
298
|
+
@property
|
|
299
|
+
@pulumi.getter(name="userPlaneAccessInterface")
|
|
300
|
+
def user_plane_access_interface(self) -> pulumi.Output['outputs.InterfacePropertiesResponse']:
|
|
301
|
+
"""
|
|
302
|
+
The user plane interface on the access network. For 5G networks, this is the N3 interface. For 4G networks, this is the S1-U interface.
|
|
303
|
+
"""
|
|
304
|
+
return pulumi.get(self, "user_plane_access_interface")
|
|
305
|
+
|
|
306
|
+
@property
|
|
307
|
+
@pulumi.getter(name="userPlaneAccessVirtualIpv4Addresses")
|
|
308
|
+
def user_plane_access_virtual_ipv4_addresses(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
|
309
|
+
"""
|
|
310
|
+
The virtual IP address(es) for the user plane on the access network in a High Availability (HA) system. In an HA deployment the access network router should be configured to forward traffic for this address to the control plane access interface on the active or standby node. In non-HA system this list should be omitted or empty.
|
|
311
|
+
"""
|
|
312
|
+
return pulumi.get(self, "user_plane_access_virtual_ipv4_addresses")
|
|
313
|
+
|
|
@@ -0,0 +1,344 @@
|
|
|
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
|
+
from ._inputs import *
|
|
14
|
+
|
|
15
|
+
__all__ = ['ServiceArgs', 'Service']
|
|
16
|
+
|
|
17
|
+
@pulumi.input_type
|
|
18
|
+
class ServiceArgs:
|
|
19
|
+
def __init__(__self__, *,
|
|
20
|
+
mobile_network_name: pulumi.Input[str],
|
|
21
|
+
pcc_rules: pulumi.Input[Sequence[pulumi.Input['PccRuleConfigurationArgs']]],
|
|
22
|
+
resource_group_name: pulumi.Input[str],
|
|
23
|
+
service_precedence: pulumi.Input[int],
|
|
24
|
+
location: Optional[pulumi.Input[str]] = None,
|
|
25
|
+
service_name: Optional[pulumi.Input[str]] = None,
|
|
26
|
+
service_qos_policy: Optional[pulumi.Input['QosPolicyArgs']] = None,
|
|
27
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
|
28
|
+
"""
|
|
29
|
+
The set of arguments for constructing a Service resource.
|
|
30
|
+
:param pulumi.Input[str] mobile_network_name: The name of the mobile network.
|
|
31
|
+
:param pulumi.Input[Sequence[pulumi.Input['PccRuleConfigurationArgs']]] pcc_rules: The set of data flow policy rules that make up this service.
|
|
32
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
|
|
33
|
+
:param pulumi.Input[int] service_precedence: A precedence value that is used to decide between services 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 services configured in the mobile network.
|
|
34
|
+
:param pulumi.Input[str] location: The geo-location where the resource lives
|
|
35
|
+
:param pulumi.Input[str] service_name: The name of the service. You must not use any of the following reserved strings - `default`, `requested` or `service`
|
|
36
|
+
:param pulumi.Input['QosPolicyArgs'] service_qos_policy: The QoS policy to use for packets matching this service. This can be overridden for particular flows using the ruleQosPolicy field in a PccRuleConfiguration. If this field is null then the UE's SIM policy will define the QoS settings.
|
|
37
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Resource tags.
|
|
38
|
+
"""
|
|
39
|
+
pulumi.set(__self__, "mobile_network_name", mobile_network_name)
|
|
40
|
+
pulumi.set(__self__, "pcc_rules", pcc_rules)
|
|
41
|
+
pulumi.set(__self__, "resource_group_name", resource_group_name)
|
|
42
|
+
pulumi.set(__self__, "service_precedence", service_precedence)
|
|
43
|
+
if location is not None:
|
|
44
|
+
pulumi.set(__self__, "location", location)
|
|
45
|
+
if service_name is not None:
|
|
46
|
+
pulumi.set(__self__, "service_name", service_name)
|
|
47
|
+
if service_qos_policy is not None:
|
|
48
|
+
pulumi.set(__self__, "service_qos_policy", service_qos_policy)
|
|
49
|
+
if tags is not None:
|
|
50
|
+
pulumi.set(__self__, "tags", tags)
|
|
51
|
+
|
|
52
|
+
@property
|
|
53
|
+
@pulumi.getter(name="mobileNetworkName")
|
|
54
|
+
def mobile_network_name(self) -> pulumi.Input[str]:
|
|
55
|
+
"""
|
|
56
|
+
The name of the mobile network.
|
|
57
|
+
"""
|
|
58
|
+
return pulumi.get(self, "mobile_network_name")
|
|
59
|
+
|
|
60
|
+
@mobile_network_name.setter
|
|
61
|
+
def mobile_network_name(self, value: pulumi.Input[str]):
|
|
62
|
+
pulumi.set(self, "mobile_network_name", value)
|
|
63
|
+
|
|
64
|
+
@property
|
|
65
|
+
@pulumi.getter(name="pccRules")
|
|
66
|
+
def pcc_rules(self) -> pulumi.Input[Sequence[pulumi.Input['PccRuleConfigurationArgs']]]:
|
|
67
|
+
"""
|
|
68
|
+
The set of data flow policy rules that make up this service.
|
|
69
|
+
"""
|
|
70
|
+
return pulumi.get(self, "pcc_rules")
|
|
71
|
+
|
|
72
|
+
@pcc_rules.setter
|
|
73
|
+
def pcc_rules(self, value: pulumi.Input[Sequence[pulumi.Input['PccRuleConfigurationArgs']]]):
|
|
74
|
+
pulumi.set(self, "pcc_rules", value)
|
|
75
|
+
|
|
76
|
+
@property
|
|
77
|
+
@pulumi.getter(name="resourceGroupName")
|
|
78
|
+
def resource_group_name(self) -> pulumi.Input[str]:
|
|
79
|
+
"""
|
|
80
|
+
The name of the resource group. The name is case insensitive.
|
|
81
|
+
"""
|
|
82
|
+
return pulumi.get(self, "resource_group_name")
|
|
83
|
+
|
|
84
|
+
@resource_group_name.setter
|
|
85
|
+
def resource_group_name(self, value: pulumi.Input[str]):
|
|
86
|
+
pulumi.set(self, "resource_group_name", value)
|
|
87
|
+
|
|
88
|
+
@property
|
|
89
|
+
@pulumi.getter(name="servicePrecedence")
|
|
90
|
+
def service_precedence(self) -> pulumi.Input[int]:
|
|
91
|
+
"""
|
|
92
|
+
A precedence value that is used to decide between services 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 services configured in the mobile network.
|
|
93
|
+
"""
|
|
94
|
+
return pulumi.get(self, "service_precedence")
|
|
95
|
+
|
|
96
|
+
@service_precedence.setter
|
|
97
|
+
def service_precedence(self, value: pulumi.Input[int]):
|
|
98
|
+
pulumi.set(self, "service_precedence", value)
|
|
99
|
+
|
|
100
|
+
@property
|
|
101
|
+
@pulumi.getter
|
|
102
|
+
def location(self) -> Optional[pulumi.Input[str]]:
|
|
103
|
+
"""
|
|
104
|
+
The geo-location where the resource lives
|
|
105
|
+
"""
|
|
106
|
+
return pulumi.get(self, "location")
|
|
107
|
+
|
|
108
|
+
@location.setter
|
|
109
|
+
def location(self, value: Optional[pulumi.Input[str]]):
|
|
110
|
+
pulumi.set(self, "location", value)
|
|
111
|
+
|
|
112
|
+
@property
|
|
113
|
+
@pulumi.getter(name="serviceName")
|
|
114
|
+
def service_name(self) -> Optional[pulumi.Input[str]]:
|
|
115
|
+
"""
|
|
116
|
+
The name of the service. You must not use any of the following reserved strings - `default`, `requested` or `service`
|
|
117
|
+
"""
|
|
118
|
+
return pulumi.get(self, "service_name")
|
|
119
|
+
|
|
120
|
+
@service_name.setter
|
|
121
|
+
def service_name(self, value: Optional[pulumi.Input[str]]):
|
|
122
|
+
pulumi.set(self, "service_name", value)
|
|
123
|
+
|
|
124
|
+
@property
|
|
125
|
+
@pulumi.getter(name="serviceQosPolicy")
|
|
126
|
+
def service_qos_policy(self) -> Optional[pulumi.Input['QosPolicyArgs']]:
|
|
127
|
+
"""
|
|
128
|
+
The QoS policy to use for packets matching this service. This can be overridden for particular flows using the ruleQosPolicy field in a PccRuleConfiguration. If this field is null then the UE's SIM policy will define the QoS settings.
|
|
129
|
+
"""
|
|
130
|
+
return pulumi.get(self, "service_qos_policy")
|
|
131
|
+
|
|
132
|
+
@service_qos_policy.setter
|
|
133
|
+
def service_qos_policy(self, value: Optional[pulumi.Input['QosPolicyArgs']]):
|
|
134
|
+
pulumi.set(self, "service_qos_policy", value)
|
|
135
|
+
|
|
136
|
+
@property
|
|
137
|
+
@pulumi.getter
|
|
138
|
+
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
139
|
+
"""
|
|
140
|
+
Resource tags.
|
|
141
|
+
"""
|
|
142
|
+
return pulumi.get(self, "tags")
|
|
143
|
+
|
|
144
|
+
@tags.setter
|
|
145
|
+
def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
|
146
|
+
pulumi.set(self, "tags", value)
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
class Service(pulumi.CustomResource):
|
|
150
|
+
@overload
|
|
151
|
+
def __init__(__self__,
|
|
152
|
+
resource_name: str,
|
|
153
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
154
|
+
location: Optional[pulumi.Input[str]] = None,
|
|
155
|
+
mobile_network_name: Optional[pulumi.Input[str]] = None,
|
|
156
|
+
pcc_rules: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PccRuleConfigurationArgs']]]]] = None,
|
|
157
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
158
|
+
service_name: Optional[pulumi.Input[str]] = None,
|
|
159
|
+
service_precedence: Optional[pulumi.Input[int]] = None,
|
|
160
|
+
service_qos_policy: Optional[pulumi.Input[pulumi.InputType['QosPolicyArgs']]] = None,
|
|
161
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
162
|
+
__props__=None):
|
|
163
|
+
"""
|
|
164
|
+
Service resource. Must be created in the same location as its parent mobile network.
|
|
165
|
+
|
|
166
|
+
:param str resource_name: The name of the resource.
|
|
167
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
168
|
+
:param pulumi.Input[str] location: The geo-location where the resource lives
|
|
169
|
+
:param pulumi.Input[str] mobile_network_name: The name of the mobile network.
|
|
170
|
+
:param pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PccRuleConfigurationArgs']]]] pcc_rules: The set of data flow policy rules that make up this service.
|
|
171
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
|
|
172
|
+
:param pulumi.Input[str] service_name: The name of the service. You must not use any of the following reserved strings - `default`, `requested` or `service`
|
|
173
|
+
:param pulumi.Input[int] service_precedence: A precedence value that is used to decide between services 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 services configured in the mobile network.
|
|
174
|
+
:param pulumi.Input[pulumi.InputType['QosPolicyArgs']] service_qos_policy: The QoS policy to use for packets matching this service. This can be overridden for particular flows using the ruleQosPolicy field in a PccRuleConfiguration. If this field is null then the UE's SIM policy will define the QoS settings.
|
|
175
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Resource tags.
|
|
176
|
+
"""
|
|
177
|
+
...
|
|
178
|
+
@overload
|
|
179
|
+
def __init__(__self__,
|
|
180
|
+
resource_name: str,
|
|
181
|
+
args: ServiceArgs,
|
|
182
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
183
|
+
"""
|
|
184
|
+
Service resource. Must be created in the same location as its parent mobile network.
|
|
185
|
+
|
|
186
|
+
:param str resource_name: The name of the resource.
|
|
187
|
+
:param ServiceArgs args: The arguments to use to populate this resource's properties.
|
|
188
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
189
|
+
"""
|
|
190
|
+
...
|
|
191
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
192
|
+
resource_args, opts = _utilities.get_resource_args_opts(ServiceArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
193
|
+
if resource_args is not None:
|
|
194
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
195
|
+
else:
|
|
196
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
197
|
+
|
|
198
|
+
def _internal_init(__self__,
|
|
199
|
+
resource_name: str,
|
|
200
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
201
|
+
location: Optional[pulumi.Input[str]] = None,
|
|
202
|
+
mobile_network_name: Optional[pulumi.Input[str]] = None,
|
|
203
|
+
pcc_rules: Optional[pulumi.Input[Sequence[pulumi.Input[pulumi.InputType['PccRuleConfigurationArgs']]]]] = None,
|
|
204
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
205
|
+
service_name: Optional[pulumi.Input[str]] = None,
|
|
206
|
+
service_precedence: Optional[pulumi.Input[int]] = None,
|
|
207
|
+
service_qos_policy: Optional[pulumi.Input[pulumi.InputType['QosPolicyArgs']]] = None,
|
|
208
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
209
|
+
__props__=None):
|
|
210
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
211
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
212
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
213
|
+
if opts.id is None:
|
|
214
|
+
if __props__ is not None:
|
|
215
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
216
|
+
__props__ = ServiceArgs.__new__(ServiceArgs)
|
|
217
|
+
|
|
218
|
+
__props__.__dict__["location"] = location
|
|
219
|
+
if mobile_network_name is None and not opts.urn:
|
|
220
|
+
raise TypeError("Missing required property 'mobile_network_name'")
|
|
221
|
+
__props__.__dict__["mobile_network_name"] = mobile_network_name
|
|
222
|
+
if pcc_rules is None and not opts.urn:
|
|
223
|
+
raise TypeError("Missing required property 'pcc_rules'")
|
|
224
|
+
__props__.__dict__["pcc_rules"] = pcc_rules
|
|
225
|
+
if resource_group_name is None and not opts.urn:
|
|
226
|
+
raise TypeError("Missing required property 'resource_group_name'")
|
|
227
|
+
__props__.__dict__["resource_group_name"] = resource_group_name
|
|
228
|
+
__props__.__dict__["service_name"] = service_name
|
|
229
|
+
if service_precedence is None and not opts.urn:
|
|
230
|
+
raise TypeError("Missing required property 'service_precedence'")
|
|
231
|
+
__props__.__dict__["service_precedence"] = service_precedence
|
|
232
|
+
__props__.__dict__["service_qos_policy"] = service_qos_policy
|
|
233
|
+
__props__.__dict__["tags"] = tags
|
|
234
|
+
__props__.__dict__["name"] = None
|
|
235
|
+
__props__.__dict__["provisioning_state"] = None
|
|
236
|
+
__props__.__dict__["system_data"] = None
|
|
237
|
+
__props__.__dict__["type"] = None
|
|
238
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:mobilenetwork:Service"), pulumi.Alias(type_="azure-native:mobilenetwork/v20220301preview:Service"), pulumi.Alias(type_="azure-native:mobilenetwork/v20220401preview:Service"), pulumi.Alias(type_="azure-native:mobilenetwork/v20221101:Service"), pulumi.Alias(type_="azure-native:mobilenetwork/v20230601:Service"), pulumi.Alias(type_="azure-native:mobilenetwork/v20230901:Service"), pulumi.Alias(type_="azure-native:mobilenetwork/v20240201:Service")])
|
|
239
|
+
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
240
|
+
super(Service, __self__).__init__(
|
|
241
|
+
'azure-native:mobilenetwork/v20240401:Service',
|
|
242
|
+
resource_name,
|
|
243
|
+
__props__,
|
|
244
|
+
opts)
|
|
245
|
+
|
|
246
|
+
@staticmethod
|
|
247
|
+
def get(resource_name: str,
|
|
248
|
+
id: pulumi.Input[str],
|
|
249
|
+
opts: Optional[pulumi.ResourceOptions] = None) -> 'Service':
|
|
250
|
+
"""
|
|
251
|
+
Get an existing Service resource's state with the given name, id, and optional extra
|
|
252
|
+
properties used to qualify the lookup.
|
|
253
|
+
|
|
254
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
255
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
256
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
257
|
+
"""
|
|
258
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
259
|
+
|
|
260
|
+
__props__ = ServiceArgs.__new__(ServiceArgs)
|
|
261
|
+
|
|
262
|
+
__props__.__dict__["location"] = None
|
|
263
|
+
__props__.__dict__["name"] = None
|
|
264
|
+
__props__.__dict__["pcc_rules"] = None
|
|
265
|
+
__props__.__dict__["provisioning_state"] = None
|
|
266
|
+
__props__.__dict__["service_precedence"] = None
|
|
267
|
+
__props__.__dict__["service_qos_policy"] = None
|
|
268
|
+
__props__.__dict__["system_data"] = None
|
|
269
|
+
__props__.__dict__["tags"] = None
|
|
270
|
+
__props__.__dict__["type"] = None
|
|
271
|
+
return Service(resource_name, opts=opts, __props__=__props__)
|
|
272
|
+
|
|
273
|
+
@property
|
|
274
|
+
@pulumi.getter
|
|
275
|
+
def location(self) -> pulumi.Output[str]:
|
|
276
|
+
"""
|
|
277
|
+
The geo-location where the resource lives
|
|
278
|
+
"""
|
|
279
|
+
return pulumi.get(self, "location")
|
|
280
|
+
|
|
281
|
+
@property
|
|
282
|
+
@pulumi.getter
|
|
283
|
+
def name(self) -> pulumi.Output[str]:
|
|
284
|
+
"""
|
|
285
|
+
The name of the resource
|
|
286
|
+
"""
|
|
287
|
+
return pulumi.get(self, "name")
|
|
288
|
+
|
|
289
|
+
@property
|
|
290
|
+
@pulumi.getter(name="pccRules")
|
|
291
|
+
def pcc_rules(self) -> pulumi.Output[Sequence['outputs.PccRuleConfigurationResponse']]:
|
|
292
|
+
"""
|
|
293
|
+
The set of data flow policy rules that make up this service.
|
|
294
|
+
"""
|
|
295
|
+
return pulumi.get(self, "pcc_rules")
|
|
296
|
+
|
|
297
|
+
@property
|
|
298
|
+
@pulumi.getter(name="provisioningState")
|
|
299
|
+
def provisioning_state(self) -> pulumi.Output[str]:
|
|
300
|
+
"""
|
|
301
|
+
The provisioning state of the service resource.
|
|
302
|
+
"""
|
|
303
|
+
return pulumi.get(self, "provisioning_state")
|
|
304
|
+
|
|
305
|
+
@property
|
|
306
|
+
@pulumi.getter(name="servicePrecedence")
|
|
307
|
+
def service_precedence(self) -> pulumi.Output[int]:
|
|
308
|
+
"""
|
|
309
|
+
A precedence value that is used to decide between services 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 services configured in the mobile network.
|
|
310
|
+
"""
|
|
311
|
+
return pulumi.get(self, "service_precedence")
|
|
312
|
+
|
|
313
|
+
@property
|
|
314
|
+
@pulumi.getter(name="serviceQosPolicy")
|
|
315
|
+
def service_qos_policy(self) -> pulumi.Output[Optional['outputs.QosPolicyResponse']]:
|
|
316
|
+
"""
|
|
317
|
+
The QoS policy to use for packets matching this service. This can be overridden for particular flows using the ruleQosPolicy field in a PccRuleConfiguration. If this field is null then the UE's SIM policy will define the QoS settings.
|
|
318
|
+
"""
|
|
319
|
+
return pulumi.get(self, "service_qos_policy")
|
|
320
|
+
|
|
321
|
+
@property
|
|
322
|
+
@pulumi.getter(name="systemData")
|
|
323
|
+
def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
|
|
324
|
+
"""
|
|
325
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
326
|
+
"""
|
|
327
|
+
return pulumi.get(self, "system_data")
|
|
328
|
+
|
|
329
|
+
@property
|
|
330
|
+
@pulumi.getter
|
|
331
|
+
def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
|
332
|
+
"""
|
|
333
|
+
Resource tags.
|
|
334
|
+
"""
|
|
335
|
+
return pulumi.get(self, "tags")
|
|
336
|
+
|
|
337
|
+
@property
|
|
338
|
+
@pulumi.getter
|
|
339
|
+
def type(self) -> pulumi.Output[str]:
|
|
340
|
+
"""
|
|
341
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
342
|
+
"""
|
|
343
|
+
return pulumi.get(self, "type")
|
|
344
|
+
|