pulumi-azure-native 2.41.0a1715077566__py3-none-any.whl → 2.41.0a1715601087__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.0a1715601087.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.41.0a1715077566.dist-info → pulumi_azure_native-2.41.0a1715601087.dist-info}/RECORD +462 -324
- {pulumi_azure_native-2.41.0a1715077566.dist-info → pulumi_azure_native-2.41.0a1715601087.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-2.41.0a1715077566.dist-info → pulumi_azure_native-2.41.0a1715601087.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,209 @@
|
|
|
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
|
+
|
|
13
|
+
__all__ = [
|
|
14
|
+
'GetMobileNetworkResult',
|
|
15
|
+
'AwaitableGetMobileNetworkResult',
|
|
16
|
+
'get_mobile_network',
|
|
17
|
+
'get_mobile_network_output',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
@pulumi.output_type
|
|
21
|
+
class GetMobileNetworkResult:
|
|
22
|
+
"""
|
|
23
|
+
Mobile network resource.
|
|
24
|
+
"""
|
|
25
|
+
def __init__(__self__, id=None, identity=None, location=None, name=None, provisioning_state=None, public_land_mobile_network_identifier=None, public_land_mobile_networks=None, service_key=None, system_data=None, tags=None, type=None):
|
|
26
|
+
if id and not isinstance(id, str):
|
|
27
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
28
|
+
pulumi.set(__self__, "id", id)
|
|
29
|
+
if identity and not isinstance(identity, dict):
|
|
30
|
+
raise TypeError("Expected argument 'identity' to be a dict")
|
|
31
|
+
pulumi.set(__self__, "identity", identity)
|
|
32
|
+
if location and not isinstance(location, str):
|
|
33
|
+
raise TypeError("Expected argument 'location' to be a str")
|
|
34
|
+
pulumi.set(__self__, "location", location)
|
|
35
|
+
if name and not isinstance(name, str):
|
|
36
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
37
|
+
pulumi.set(__self__, "name", name)
|
|
38
|
+
if provisioning_state and not isinstance(provisioning_state, str):
|
|
39
|
+
raise TypeError("Expected argument 'provisioning_state' to be a str")
|
|
40
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
41
|
+
if public_land_mobile_network_identifier and not isinstance(public_land_mobile_network_identifier, dict):
|
|
42
|
+
raise TypeError("Expected argument 'public_land_mobile_network_identifier' to be a dict")
|
|
43
|
+
pulumi.set(__self__, "public_land_mobile_network_identifier", public_land_mobile_network_identifier)
|
|
44
|
+
if public_land_mobile_networks and not isinstance(public_land_mobile_networks, list):
|
|
45
|
+
raise TypeError("Expected argument 'public_land_mobile_networks' to be a list")
|
|
46
|
+
pulumi.set(__self__, "public_land_mobile_networks", public_land_mobile_networks)
|
|
47
|
+
if service_key and not isinstance(service_key, str):
|
|
48
|
+
raise TypeError("Expected argument 'service_key' to be a str")
|
|
49
|
+
pulumi.set(__self__, "service_key", service_key)
|
|
50
|
+
if system_data and not isinstance(system_data, dict):
|
|
51
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
52
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
53
|
+
if tags and not isinstance(tags, dict):
|
|
54
|
+
raise TypeError("Expected argument 'tags' to be a dict")
|
|
55
|
+
pulumi.set(__self__, "tags", tags)
|
|
56
|
+
if type and not isinstance(type, str):
|
|
57
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
58
|
+
pulumi.set(__self__, "type", type)
|
|
59
|
+
|
|
60
|
+
@property
|
|
61
|
+
@pulumi.getter
|
|
62
|
+
def id(self) -> str:
|
|
63
|
+
"""
|
|
64
|
+
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
|
|
65
|
+
"""
|
|
66
|
+
return pulumi.get(self, "id")
|
|
67
|
+
|
|
68
|
+
@property
|
|
69
|
+
@pulumi.getter
|
|
70
|
+
def identity(self) -> Optional['outputs.ManagedServiceIdentityResponse']:
|
|
71
|
+
"""
|
|
72
|
+
The identity used to retrieve any private keys used for SUPI concealment from Azure key vault.
|
|
73
|
+
"""
|
|
74
|
+
return pulumi.get(self, "identity")
|
|
75
|
+
|
|
76
|
+
@property
|
|
77
|
+
@pulumi.getter
|
|
78
|
+
def location(self) -> str:
|
|
79
|
+
"""
|
|
80
|
+
The geo-location where the resource lives
|
|
81
|
+
"""
|
|
82
|
+
return pulumi.get(self, "location")
|
|
83
|
+
|
|
84
|
+
@property
|
|
85
|
+
@pulumi.getter
|
|
86
|
+
def name(self) -> str:
|
|
87
|
+
"""
|
|
88
|
+
The name of the resource
|
|
89
|
+
"""
|
|
90
|
+
return pulumi.get(self, "name")
|
|
91
|
+
|
|
92
|
+
@property
|
|
93
|
+
@pulumi.getter(name="provisioningState")
|
|
94
|
+
def provisioning_state(self) -> str:
|
|
95
|
+
"""
|
|
96
|
+
The provisioning state of the mobile network resource.
|
|
97
|
+
"""
|
|
98
|
+
return pulumi.get(self, "provisioning_state")
|
|
99
|
+
|
|
100
|
+
@property
|
|
101
|
+
@pulumi.getter(name="publicLandMobileNetworkIdentifier")
|
|
102
|
+
def public_land_mobile_network_identifier(self) -> 'outputs.PlmnIdResponse':
|
|
103
|
+
"""
|
|
104
|
+
The unique public land mobile network identifier for the network. If both 'publicLandMobileNetworks' and 'publicLandMobileNetworkIdentifier' are specified, then the 'publicLandMobileNetworks' will take precedence.
|
|
105
|
+
"""
|
|
106
|
+
return pulumi.get(self, "public_land_mobile_network_identifier")
|
|
107
|
+
|
|
108
|
+
@property
|
|
109
|
+
@pulumi.getter(name="publicLandMobileNetworks")
|
|
110
|
+
def public_land_mobile_networks(self) -> Optional[Sequence['outputs.PublicLandMobileNetworkResponse']]:
|
|
111
|
+
"""
|
|
112
|
+
A list of public land mobile networks including their identifiers. If both 'publicLandMobileNetworks' and 'publicLandMobileNetworkIdentifier' are specified, then the 'publicLandMobileNetworks' will take precedence.
|
|
113
|
+
"""
|
|
114
|
+
return pulumi.get(self, "public_land_mobile_networks")
|
|
115
|
+
|
|
116
|
+
@property
|
|
117
|
+
@pulumi.getter(name="serviceKey")
|
|
118
|
+
def service_key(self) -> str:
|
|
119
|
+
"""
|
|
120
|
+
The mobile network resource identifier
|
|
121
|
+
"""
|
|
122
|
+
return pulumi.get(self, "service_key")
|
|
123
|
+
|
|
124
|
+
@property
|
|
125
|
+
@pulumi.getter(name="systemData")
|
|
126
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
127
|
+
"""
|
|
128
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
129
|
+
"""
|
|
130
|
+
return pulumi.get(self, "system_data")
|
|
131
|
+
|
|
132
|
+
@property
|
|
133
|
+
@pulumi.getter
|
|
134
|
+
def tags(self) -> Optional[Mapping[str, str]]:
|
|
135
|
+
"""
|
|
136
|
+
Resource tags.
|
|
137
|
+
"""
|
|
138
|
+
return pulumi.get(self, "tags")
|
|
139
|
+
|
|
140
|
+
@property
|
|
141
|
+
@pulumi.getter
|
|
142
|
+
def type(self) -> str:
|
|
143
|
+
"""
|
|
144
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
145
|
+
"""
|
|
146
|
+
return pulumi.get(self, "type")
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
class AwaitableGetMobileNetworkResult(GetMobileNetworkResult):
|
|
150
|
+
# pylint: disable=using-constant-test
|
|
151
|
+
def __await__(self):
|
|
152
|
+
if False:
|
|
153
|
+
yield self
|
|
154
|
+
return GetMobileNetworkResult(
|
|
155
|
+
id=self.id,
|
|
156
|
+
identity=self.identity,
|
|
157
|
+
location=self.location,
|
|
158
|
+
name=self.name,
|
|
159
|
+
provisioning_state=self.provisioning_state,
|
|
160
|
+
public_land_mobile_network_identifier=self.public_land_mobile_network_identifier,
|
|
161
|
+
public_land_mobile_networks=self.public_land_mobile_networks,
|
|
162
|
+
service_key=self.service_key,
|
|
163
|
+
system_data=self.system_data,
|
|
164
|
+
tags=self.tags,
|
|
165
|
+
type=self.type)
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
def get_mobile_network(mobile_network_name: Optional[str] = None,
|
|
169
|
+
resource_group_name: Optional[str] = None,
|
|
170
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetMobileNetworkResult:
|
|
171
|
+
"""
|
|
172
|
+
Gets information about the specified mobile network.
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
:param str mobile_network_name: The name of the mobile network.
|
|
176
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
177
|
+
"""
|
|
178
|
+
__args__ = dict()
|
|
179
|
+
__args__['mobileNetworkName'] = mobile_network_name
|
|
180
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
181
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
182
|
+
__ret__ = pulumi.runtime.invoke('azure-native:mobilenetwork/v20240401:getMobileNetwork', __args__, opts=opts, typ=GetMobileNetworkResult).value
|
|
183
|
+
|
|
184
|
+
return AwaitableGetMobileNetworkResult(
|
|
185
|
+
id=pulumi.get(__ret__, 'id'),
|
|
186
|
+
identity=pulumi.get(__ret__, 'identity'),
|
|
187
|
+
location=pulumi.get(__ret__, 'location'),
|
|
188
|
+
name=pulumi.get(__ret__, 'name'),
|
|
189
|
+
provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
|
|
190
|
+
public_land_mobile_network_identifier=pulumi.get(__ret__, 'public_land_mobile_network_identifier'),
|
|
191
|
+
public_land_mobile_networks=pulumi.get(__ret__, 'public_land_mobile_networks'),
|
|
192
|
+
service_key=pulumi.get(__ret__, 'service_key'),
|
|
193
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
194
|
+
tags=pulumi.get(__ret__, 'tags'),
|
|
195
|
+
type=pulumi.get(__ret__, 'type'))
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
@_utilities.lift_output_func(get_mobile_network)
|
|
199
|
+
def get_mobile_network_output(mobile_network_name: Optional[pulumi.Input[str]] = None,
|
|
200
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
201
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetMobileNetworkResult]:
|
|
202
|
+
"""
|
|
203
|
+
Gets information about the specified mobile network.
|
|
204
|
+
|
|
205
|
+
|
|
206
|
+
:param str mobile_network_name: The name of the mobile network.
|
|
207
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
208
|
+
"""
|
|
209
|
+
...
|
|
@@ -0,0 +1,240 @@
|
|
|
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
|
+
|
|
13
|
+
__all__ = [
|
|
14
|
+
'GetPacketCaptureResult',
|
|
15
|
+
'AwaitableGetPacketCaptureResult',
|
|
16
|
+
'get_packet_capture',
|
|
17
|
+
'get_packet_capture_output',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
@pulumi.output_type
|
|
21
|
+
class GetPacketCaptureResult:
|
|
22
|
+
"""
|
|
23
|
+
Packet capture session resource.
|
|
24
|
+
"""
|
|
25
|
+
def __init__(__self__, bytes_to_capture_per_packet=None, capture_start_time=None, id=None, name=None, network_interfaces=None, output_files=None, provisioning_state=None, reason=None, status=None, system_data=None, time_limit_in_seconds=None, total_bytes_per_session=None, type=None):
|
|
26
|
+
if bytes_to_capture_per_packet and not isinstance(bytes_to_capture_per_packet, float):
|
|
27
|
+
raise TypeError("Expected argument 'bytes_to_capture_per_packet' to be a float")
|
|
28
|
+
pulumi.set(__self__, "bytes_to_capture_per_packet", bytes_to_capture_per_packet)
|
|
29
|
+
if capture_start_time and not isinstance(capture_start_time, str):
|
|
30
|
+
raise TypeError("Expected argument 'capture_start_time' to be a str")
|
|
31
|
+
pulumi.set(__self__, "capture_start_time", capture_start_time)
|
|
32
|
+
if id and not isinstance(id, str):
|
|
33
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
34
|
+
pulumi.set(__self__, "id", id)
|
|
35
|
+
if name and not isinstance(name, str):
|
|
36
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
37
|
+
pulumi.set(__self__, "name", name)
|
|
38
|
+
if network_interfaces and not isinstance(network_interfaces, list):
|
|
39
|
+
raise TypeError("Expected argument 'network_interfaces' to be a list")
|
|
40
|
+
pulumi.set(__self__, "network_interfaces", network_interfaces)
|
|
41
|
+
if output_files and not isinstance(output_files, list):
|
|
42
|
+
raise TypeError("Expected argument 'output_files' to be a list")
|
|
43
|
+
pulumi.set(__self__, "output_files", output_files)
|
|
44
|
+
if provisioning_state and not isinstance(provisioning_state, str):
|
|
45
|
+
raise TypeError("Expected argument 'provisioning_state' to be a str")
|
|
46
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
47
|
+
if reason and not isinstance(reason, str):
|
|
48
|
+
raise TypeError("Expected argument 'reason' to be a str")
|
|
49
|
+
pulumi.set(__self__, "reason", reason)
|
|
50
|
+
if status and not isinstance(status, str):
|
|
51
|
+
raise TypeError("Expected argument 'status' to be a str")
|
|
52
|
+
pulumi.set(__self__, "status", status)
|
|
53
|
+
if system_data and not isinstance(system_data, dict):
|
|
54
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
55
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
56
|
+
if time_limit_in_seconds and not isinstance(time_limit_in_seconds, int):
|
|
57
|
+
raise TypeError("Expected argument 'time_limit_in_seconds' to be a int")
|
|
58
|
+
pulumi.set(__self__, "time_limit_in_seconds", time_limit_in_seconds)
|
|
59
|
+
if total_bytes_per_session and not isinstance(total_bytes_per_session, float):
|
|
60
|
+
raise TypeError("Expected argument 'total_bytes_per_session' to be a float")
|
|
61
|
+
pulumi.set(__self__, "total_bytes_per_session", total_bytes_per_session)
|
|
62
|
+
if type and not isinstance(type, str):
|
|
63
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
64
|
+
pulumi.set(__self__, "type", type)
|
|
65
|
+
|
|
66
|
+
@property
|
|
67
|
+
@pulumi.getter(name="bytesToCapturePerPacket")
|
|
68
|
+
def bytes_to_capture_per_packet(self) -> Optional[float]:
|
|
69
|
+
"""
|
|
70
|
+
Number of bytes captured per packet, the remaining bytes are truncated. The default "0" means the entire packet is captured.
|
|
71
|
+
"""
|
|
72
|
+
return pulumi.get(self, "bytes_to_capture_per_packet")
|
|
73
|
+
|
|
74
|
+
@property
|
|
75
|
+
@pulumi.getter(name="captureStartTime")
|
|
76
|
+
def capture_start_time(self) -> str:
|
|
77
|
+
"""
|
|
78
|
+
The start time of the packet capture session.
|
|
79
|
+
"""
|
|
80
|
+
return pulumi.get(self, "capture_start_time")
|
|
81
|
+
|
|
82
|
+
@property
|
|
83
|
+
@pulumi.getter
|
|
84
|
+
def id(self) -> str:
|
|
85
|
+
"""
|
|
86
|
+
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
|
|
87
|
+
"""
|
|
88
|
+
return pulumi.get(self, "id")
|
|
89
|
+
|
|
90
|
+
@property
|
|
91
|
+
@pulumi.getter
|
|
92
|
+
def name(self) -> str:
|
|
93
|
+
"""
|
|
94
|
+
The name of the resource
|
|
95
|
+
"""
|
|
96
|
+
return pulumi.get(self, "name")
|
|
97
|
+
|
|
98
|
+
@property
|
|
99
|
+
@pulumi.getter(name="networkInterfaces")
|
|
100
|
+
def network_interfaces(self) -> Optional[Sequence[str]]:
|
|
101
|
+
"""
|
|
102
|
+
List of network interfaces to capture on.
|
|
103
|
+
"""
|
|
104
|
+
return pulumi.get(self, "network_interfaces")
|
|
105
|
+
|
|
106
|
+
@property
|
|
107
|
+
@pulumi.getter(name="outputFiles")
|
|
108
|
+
def output_files(self) -> Sequence[str]:
|
|
109
|
+
"""
|
|
110
|
+
The list of output files of a packet capture session.
|
|
111
|
+
"""
|
|
112
|
+
return pulumi.get(self, "output_files")
|
|
113
|
+
|
|
114
|
+
@property
|
|
115
|
+
@pulumi.getter(name="provisioningState")
|
|
116
|
+
def provisioning_state(self) -> str:
|
|
117
|
+
"""
|
|
118
|
+
The provisioning state of the packet capture session resource.
|
|
119
|
+
"""
|
|
120
|
+
return pulumi.get(self, "provisioning_state")
|
|
121
|
+
|
|
122
|
+
@property
|
|
123
|
+
@pulumi.getter
|
|
124
|
+
def reason(self) -> str:
|
|
125
|
+
"""
|
|
126
|
+
The reason the current packet capture session state.
|
|
127
|
+
"""
|
|
128
|
+
return pulumi.get(self, "reason")
|
|
129
|
+
|
|
130
|
+
@property
|
|
131
|
+
@pulumi.getter
|
|
132
|
+
def status(self) -> str:
|
|
133
|
+
"""
|
|
134
|
+
The status of the packet capture session.
|
|
135
|
+
"""
|
|
136
|
+
return pulumi.get(self, "status")
|
|
137
|
+
|
|
138
|
+
@property
|
|
139
|
+
@pulumi.getter(name="systemData")
|
|
140
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
141
|
+
"""
|
|
142
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
143
|
+
"""
|
|
144
|
+
return pulumi.get(self, "system_data")
|
|
145
|
+
|
|
146
|
+
@property
|
|
147
|
+
@pulumi.getter(name="timeLimitInSeconds")
|
|
148
|
+
def time_limit_in_seconds(self) -> Optional[int]:
|
|
149
|
+
"""
|
|
150
|
+
Maximum duration of the capture session in seconds.
|
|
151
|
+
"""
|
|
152
|
+
return pulumi.get(self, "time_limit_in_seconds")
|
|
153
|
+
|
|
154
|
+
@property
|
|
155
|
+
@pulumi.getter(name="totalBytesPerSession")
|
|
156
|
+
def total_bytes_per_session(self) -> Optional[float]:
|
|
157
|
+
"""
|
|
158
|
+
Maximum size of the capture output.
|
|
159
|
+
"""
|
|
160
|
+
return pulumi.get(self, "total_bytes_per_session")
|
|
161
|
+
|
|
162
|
+
@property
|
|
163
|
+
@pulumi.getter
|
|
164
|
+
def type(self) -> str:
|
|
165
|
+
"""
|
|
166
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
167
|
+
"""
|
|
168
|
+
return pulumi.get(self, "type")
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
class AwaitableGetPacketCaptureResult(GetPacketCaptureResult):
|
|
172
|
+
# pylint: disable=using-constant-test
|
|
173
|
+
def __await__(self):
|
|
174
|
+
if False:
|
|
175
|
+
yield self
|
|
176
|
+
return GetPacketCaptureResult(
|
|
177
|
+
bytes_to_capture_per_packet=self.bytes_to_capture_per_packet,
|
|
178
|
+
capture_start_time=self.capture_start_time,
|
|
179
|
+
id=self.id,
|
|
180
|
+
name=self.name,
|
|
181
|
+
network_interfaces=self.network_interfaces,
|
|
182
|
+
output_files=self.output_files,
|
|
183
|
+
provisioning_state=self.provisioning_state,
|
|
184
|
+
reason=self.reason,
|
|
185
|
+
status=self.status,
|
|
186
|
+
system_data=self.system_data,
|
|
187
|
+
time_limit_in_seconds=self.time_limit_in_seconds,
|
|
188
|
+
total_bytes_per_session=self.total_bytes_per_session,
|
|
189
|
+
type=self.type)
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
def get_packet_capture(packet_capture_name: Optional[str] = None,
|
|
193
|
+
packet_core_control_plane_name: Optional[str] = None,
|
|
194
|
+
resource_group_name: Optional[str] = None,
|
|
195
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetPacketCaptureResult:
|
|
196
|
+
"""
|
|
197
|
+
Gets information about the specified packet capture session.
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
:param str packet_capture_name: The name of the packet capture session.
|
|
201
|
+
:param str packet_core_control_plane_name: The name of the packet core control plane.
|
|
202
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
203
|
+
"""
|
|
204
|
+
__args__ = dict()
|
|
205
|
+
__args__['packetCaptureName'] = packet_capture_name
|
|
206
|
+
__args__['packetCoreControlPlaneName'] = packet_core_control_plane_name
|
|
207
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
208
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
209
|
+
__ret__ = pulumi.runtime.invoke('azure-native:mobilenetwork/v20240401:getPacketCapture', __args__, opts=opts, typ=GetPacketCaptureResult).value
|
|
210
|
+
|
|
211
|
+
return AwaitableGetPacketCaptureResult(
|
|
212
|
+
bytes_to_capture_per_packet=pulumi.get(__ret__, 'bytes_to_capture_per_packet'),
|
|
213
|
+
capture_start_time=pulumi.get(__ret__, 'capture_start_time'),
|
|
214
|
+
id=pulumi.get(__ret__, 'id'),
|
|
215
|
+
name=pulumi.get(__ret__, 'name'),
|
|
216
|
+
network_interfaces=pulumi.get(__ret__, 'network_interfaces'),
|
|
217
|
+
output_files=pulumi.get(__ret__, 'output_files'),
|
|
218
|
+
provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
|
|
219
|
+
reason=pulumi.get(__ret__, 'reason'),
|
|
220
|
+
status=pulumi.get(__ret__, 'status'),
|
|
221
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
222
|
+
time_limit_in_seconds=pulumi.get(__ret__, 'time_limit_in_seconds'),
|
|
223
|
+
total_bytes_per_session=pulumi.get(__ret__, 'total_bytes_per_session'),
|
|
224
|
+
type=pulumi.get(__ret__, 'type'))
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
@_utilities.lift_output_func(get_packet_capture)
|
|
228
|
+
def get_packet_capture_output(packet_capture_name: Optional[pulumi.Input[str]] = None,
|
|
229
|
+
packet_core_control_plane_name: Optional[pulumi.Input[str]] = None,
|
|
230
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
231
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetPacketCaptureResult]:
|
|
232
|
+
"""
|
|
233
|
+
Gets information about the specified packet capture session.
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
:param str packet_capture_name: The name of the packet capture session.
|
|
237
|
+
:param str packet_core_control_plane_name: The name of the packet core control plane.
|
|
238
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
239
|
+
"""
|
|
240
|
+
...
|