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,363 @@
|
|
|
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__ = ['PacketCaptureArgs', 'PacketCapture']
|
|
14
|
+
|
|
15
|
+
@pulumi.input_type
|
|
16
|
+
class PacketCaptureArgs:
|
|
17
|
+
def __init__(__self__, *,
|
|
18
|
+
packet_core_control_plane_name: pulumi.Input[str],
|
|
19
|
+
resource_group_name: pulumi.Input[str],
|
|
20
|
+
bytes_to_capture_per_packet: Optional[pulumi.Input[float]] = None,
|
|
21
|
+
network_interfaces: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
22
|
+
packet_capture_name: Optional[pulumi.Input[str]] = None,
|
|
23
|
+
time_limit_in_seconds: Optional[pulumi.Input[int]] = None,
|
|
24
|
+
total_bytes_per_session: Optional[pulumi.Input[float]] = None):
|
|
25
|
+
"""
|
|
26
|
+
The set of arguments for constructing a PacketCapture resource.
|
|
27
|
+
:param pulumi.Input[str] packet_core_control_plane_name: The name of the packet core control plane.
|
|
28
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
|
|
29
|
+
:param pulumi.Input[float] bytes_to_capture_per_packet: Number of bytes captured per packet, the remaining bytes are truncated. The default "0" means the entire packet is captured.
|
|
30
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] network_interfaces: List of network interfaces to capture on.
|
|
31
|
+
:param pulumi.Input[str] packet_capture_name: The name of the packet capture session.
|
|
32
|
+
:param pulumi.Input[int] time_limit_in_seconds: Maximum duration of the capture session in seconds.
|
|
33
|
+
:param pulumi.Input[float] total_bytes_per_session: Maximum size of the capture output.
|
|
34
|
+
"""
|
|
35
|
+
pulumi.set(__self__, "packet_core_control_plane_name", packet_core_control_plane_name)
|
|
36
|
+
pulumi.set(__self__, "resource_group_name", resource_group_name)
|
|
37
|
+
if bytes_to_capture_per_packet is None:
|
|
38
|
+
bytes_to_capture_per_packet = 0
|
|
39
|
+
if bytes_to_capture_per_packet is not None:
|
|
40
|
+
pulumi.set(__self__, "bytes_to_capture_per_packet", bytes_to_capture_per_packet)
|
|
41
|
+
if network_interfaces is not None:
|
|
42
|
+
pulumi.set(__self__, "network_interfaces", network_interfaces)
|
|
43
|
+
if packet_capture_name is not None:
|
|
44
|
+
pulumi.set(__self__, "packet_capture_name", packet_capture_name)
|
|
45
|
+
if time_limit_in_seconds is None:
|
|
46
|
+
time_limit_in_seconds = 18000
|
|
47
|
+
if time_limit_in_seconds is not None:
|
|
48
|
+
pulumi.set(__self__, "time_limit_in_seconds", time_limit_in_seconds)
|
|
49
|
+
if total_bytes_per_session is None:
|
|
50
|
+
total_bytes_per_session = 67108864
|
|
51
|
+
if total_bytes_per_session is not None:
|
|
52
|
+
pulumi.set(__self__, "total_bytes_per_session", total_bytes_per_session)
|
|
53
|
+
|
|
54
|
+
@property
|
|
55
|
+
@pulumi.getter(name="packetCoreControlPlaneName")
|
|
56
|
+
def packet_core_control_plane_name(self) -> pulumi.Input[str]:
|
|
57
|
+
"""
|
|
58
|
+
The name of the packet core control plane.
|
|
59
|
+
"""
|
|
60
|
+
return pulumi.get(self, "packet_core_control_plane_name")
|
|
61
|
+
|
|
62
|
+
@packet_core_control_plane_name.setter
|
|
63
|
+
def packet_core_control_plane_name(self, value: pulumi.Input[str]):
|
|
64
|
+
pulumi.set(self, "packet_core_control_plane_name", value)
|
|
65
|
+
|
|
66
|
+
@property
|
|
67
|
+
@pulumi.getter(name="resourceGroupName")
|
|
68
|
+
def resource_group_name(self) -> pulumi.Input[str]:
|
|
69
|
+
"""
|
|
70
|
+
The name of the resource group. The name is case insensitive.
|
|
71
|
+
"""
|
|
72
|
+
return pulumi.get(self, "resource_group_name")
|
|
73
|
+
|
|
74
|
+
@resource_group_name.setter
|
|
75
|
+
def resource_group_name(self, value: pulumi.Input[str]):
|
|
76
|
+
pulumi.set(self, "resource_group_name", value)
|
|
77
|
+
|
|
78
|
+
@property
|
|
79
|
+
@pulumi.getter(name="bytesToCapturePerPacket")
|
|
80
|
+
def bytes_to_capture_per_packet(self) -> Optional[pulumi.Input[float]]:
|
|
81
|
+
"""
|
|
82
|
+
Number of bytes captured per packet, the remaining bytes are truncated. The default "0" means the entire packet is captured.
|
|
83
|
+
"""
|
|
84
|
+
return pulumi.get(self, "bytes_to_capture_per_packet")
|
|
85
|
+
|
|
86
|
+
@bytes_to_capture_per_packet.setter
|
|
87
|
+
def bytes_to_capture_per_packet(self, value: Optional[pulumi.Input[float]]):
|
|
88
|
+
pulumi.set(self, "bytes_to_capture_per_packet", value)
|
|
89
|
+
|
|
90
|
+
@property
|
|
91
|
+
@pulumi.getter(name="networkInterfaces")
|
|
92
|
+
def network_interfaces(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
93
|
+
"""
|
|
94
|
+
List of network interfaces to capture on.
|
|
95
|
+
"""
|
|
96
|
+
return pulumi.get(self, "network_interfaces")
|
|
97
|
+
|
|
98
|
+
@network_interfaces.setter
|
|
99
|
+
def network_interfaces(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
100
|
+
pulumi.set(self, "network_interfaces", value)
|
|
101
|
+
|
|
102
|
+
@property
|
|
103
|
+
@pulumi.getter(name="packetCaptureName")
|
|
104
|
+
def packet_capture_name(self) -> Optional[pulumi.Input[str]]:
|
|
105
|
+
"""
|
|
106
|
+
The name of the packet capture session.
|
|
107
|
+
"""
|
|
108
|
+
return pulumi.get(self, "packet_capture_name")
|
|
109
|
+
|
|
110
|
+
@packet_capture_name.setter
|
|
111
|
+
def packet_capture_name(self, value: Optional[pulumi.Input[str]]):
|
|
112
|
+
pulumi.set(self, "packet_capture_name", value)
|
|
113
|
+
|
|
114
|
+
@property
|
|
115
|
+
@pulumi.getter(name="timeLimitInSeconds")
|
|
116
|
+
def time_limit_in_seconds(self) -> Optional[pulumi.Input[int]]:
|
|
117
|
+
"""
|
|
118
|
+
Maximum duration of the capture session in seconds.
|
|
119
|
+
"""
|
|
120
|
+
return pulumi.get(self, "time_limit_in_seconds")
|
|
121
|
+
|
|
122
|
+
@time_limit_in_seconds.setter
|
|
123
|
+
def time_limit_in_seconds(self, value: Optional[pulumi.Input[int]]):
|
|
124
|
+
pulumi.set(self, "time_limit_in_seconds", value)
|
|
125
|
+
|
|
126
|
+
@property
|
|
127
|
+
@pulumi.getter(name="totalBytesPerSession")
|
|
128
|
+
def total_bytes_per_session(self) -> Optional[pulumi.Input[float]]:
|
|
129
|
+
"""
|
|
130
|
+
Maximum size of the capture output.
|
|
131
|
+
"""
|
|
132
|
+
return pulumi.get(self, "total_bytes_per_session")
|
|
133
|
+
|
|
134
|
+
@total_bytes_per_session.setter
|
|
135
|
+
def total_bytes_per_session(self, value: Optional[pulumi.Input[float]]):
|
|
136
|
+
pulumi.set(self, "total_bytes_per_session", value)
|
|
137
|
+
|
|
138
|
+
|
|
139
|
+
class PacketCapture(pulumi.CustomResource):
|
|
140
|
+
@overload
|
|
141
|
+
def __init__(__self__,
|
|
142
|
+
resource_name: str,
|
|
143
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
144
|
+
bytes_to_capture_per_packet: Optional[pulumi.Input[float]] = None,
|
|
145
|
+
network_interfaces: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
146
|
+
packet_capture_name: Optional[pulumi.Input[str]] = None,
|
|
147
|
+
packet_core_control_plane_name: Optional[pulumi.Input[str]] = None,
|
|
148
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
149
|
+
time_limit_in_seconds: Optional[pulumi.Input[int]] = None,
|
|
150
|
+
total_bytes_per_session: Optional[pulumi.Input[float]] = None,
|
|
151
|
+
__props__=None):
|
|
152
|
+
"""
|
|
153
|
+
Packet capture session resource.
|
|
154
|
+
|
|
155
|
+
:param str resource_name: The name of the resource.
|
|
156
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
157
|
+
:param pulumi.Input[float] bytes_to_capture_per_packet: Number of bytes captured per packet, the remaining bytes are truncated. The default "0" means the entire packet is captured.
|
|
158
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] network_interfaces: List of network interfaces to capture on.
|
|
159
|
+
:param pulumi.Input[str] packet_capture_name: The name of the packet capture session.
|
|
160
|
+
:param pulumi.Input[str] packet_core_control_plane_name: The name of the packet core control plane.
|
|
161
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
|
|
162
|
+
:param pulumi.Input[int] time_limit_in_seconds: Maximum duration of the capture session in seconds.
|
|
163
|
+
:param pulumi.Input[float] total_bytes_per_session: Maximum size of the capture output.
|
|
164
|
+
"""
|
|
165
|
+
...
|
|
166
|
+
@overload
|
|
167
|
+
def __init__(__self__,
|
|
168
|
+
resource_name: str,
|
|
169
|
+
args: PacketCaptureArgs,
|
|
170
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
171
|
+
"""
|
|
172
|
+
Packet capture session resource.
|
|
173
|
+
|
|
174
|
+
:param str resource_name: The name of the resource.
|
|
175
|
+
:param PacketCaptureArgs args: The arguments to use to populate this resource's properties.
|
|
176
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
177
|
+
"""
|
|
178
|
+
...
|
|
179
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
180
|
+
resource_args, opts = _utilities.get_resource_args_opts(PacketCaptureArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
181
|
+
if resource_args is not None:
|
|
182
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
183
|
+
else:
|
|
184
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
185
|
+
|
|
186
|
+
def _internal_init(__self__,
|
|
187
|
+
resource_name: str,
|
|
188
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
189
|
+
bytes_to_capture_per_packet: Optional[pulumi.Input[float]] = None,
|
|
190
|
+
network_interfaces: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
191
|
+
packet_capture_name: Optional[pulumi.Input[str]] = None,
|
|
192
|
+
packet_core_control_plane_name: Optional[pulumi.Input[str]] = None,
|
|
193
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
194
|
+
time_limit_in_seconds: Optional[pulumi.Input[int]] = None,
|
|
195
|
+
total_bytes_per_session: Optional[pulumi.Input[float]] = None,
|
|
196
|
+
__props__=None):
|
|
197
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
198
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
199
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
200
|
+
if opts.id is None:
|
|
201
|
+
if __props__ is not None:
|
|
202
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
203
|
+
__props__ = PacketCaptureArgs.__new__(PacketCaptureArgs)
|
|
204
|
+
|
|
205
|
+
if bytes_to_capture_per_packet is None:
|
|
206
|
+
bytes_to_capture_per_packet = 0
|
|
207
|
+
__props__.__dict__["bytes_to_capture_per_packet"] = bytes_to_capture_per_packet
|
|
208
|
+
__props__.__dict__["network_interfaces"] = network_interfaces
|
|
209
|
+
__props__.__dict__["packet_capture_name"] = packet_capture_name
|
|
210
|
+
if packet_core_control_plane_name is None and not opts.urn:
|
|
211
|
+
raise TypeError("Missing required property 'packet_core_control_plane_name'")
|
|
212
|
+
__props__.__dict__["packet_core_control_plane_name"] = packet_core_control_plane_name
|
|
213
|
+
if resource_group_name is None and not opts.urn:
|
|
214
|
+
raise TypeError("Missing required property 'resource_group_name'")
|
|
215
|
+
__props__.__dict__["resource_group_name"] = resource_group_name
|
|
216
|
+
if time_limit_in_seconds is None:
|
|
217
|
+
time_limit_in_seconds = 18000
|
|
218
|
+
__props__.__dict__["time_limit_in_seconds"] = time_limit_in_seconds
|
|
219
|
+
if total_bytes_per_session is None:
|
|
220
|
+
total_bytes_per_session = 67108864
|
|
221
|
+
__props__.__dict__["total_bytes_per_session"] = total_bytes_per_session
|
|
222
|
+
__props__.__dict__["capture_start_time"] = None
|
|
223
|
+
__props__.__dict__["name"] = None
|
|
224
|
+
__props__.__dict__["output_files"] = None
|
|
225
|
+
__props__.__dict__["provisioning_state"] = None
|
|
226
|
+
__props__.__dict__["reason"] = None
|
|
227
|
+
__props__.__dict__["status"] = None
|
|
228
|
+
__props__.__dict__["system_data"] = None
|
|
229
|
+
__props__.__dict__["type"] = None
|
|
230
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:mobilenetwork:PacketCapture"), pulumi.Alias(type_="azure-native:mobilenetwork/v20230601:PacketCapture"), pulumi.Alias(type_="azure-native:mobilenetwork/v20230901:PacketCapture"), pulumi.Alias(type_="azure-native:mobilenetwork/v20240201:PacketCapture")])
|
|
231
|
+
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
232
|
+
super(PacketCapture, __self__).__init__(
|
|
233
|
+
'azure-native:mobilenetwork/v20240401:PacketCapture',
|
|
234
|
+
resource_name,
|
|
235
|
+
__props__,
|
|
236
|
+
opts)
|
|
237
|
+
|
|
238
|
+
@staticmethod
|
|
239
|
+
def get(resource_name: str,
|
|
240
|
+
id: pulumi.Input[str],
|
|
241
|
+
opts: Optional[pulumi.ResourceOptions] = None) -> 'PacketCapture':
|
|
242
|
+
"""
|
|
243
|
+
Get an existing PacketCapture resource's state with the given name, id, and optional extra
|
|
244
|
+
properties used to qualify the lookup.
|
|
245
|
+
|
|
246
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
247
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
248
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
249
|
+
"""
|
|
250
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
251
|
+
|
|
252
|
+
__props__ = PacketCaptureArgs.__new__(PacketCaptureArgs)
|
|
253
|
+
|
|
254
|
+
__props__.__dict__["bytes_to_capture_per_packet"] = None
|
|
255
|
+
__props__.__dict__["capture_start_time"] = None
|
|
256
|
+
__props__.__dict__["name"] = None
|
|
257
|
+
__props__.__dict__["network_interfaces"] = None
|
|
258
|
+
__props__.__dict__["output_files"] = None
|
|
259
|
+
__props__.__dict__["provisioning_state"] = None
|
|
260
|
+
__props__.__dict__["reason"] = None
|
|
261
|
+
__props__.__dict__["status"] = None
|
|
262
|
+
__props__.__dict__["system_data"] = None
|
|
263
|
+
__props__.__dict__["time_limit_in_seconds"] = None
|
|
264
|
+
__props__.__dict__["total_bytes_per_session"] = None
|
|
265
|
+
__props__.__dict__["type"] = None
|
|
266
|
+
return PacketCapture(resource_name, opts=opts, __props__=__props__)
|
|
267
|
+
|
|
268
|
+
@property
|
|
269
|
+
@pulumi.getter(name="bytesToCapturePerPacket")
|
|
270
|
+
def bytes_to_capture_per_packet(self) -> pulumi.Output[Optional[float]]:
|
|
271
|
+
"""
|
|
272
|
+
Number of bytes captured per packet, the remaining bytes are truncated. The default "0" means the entire packet is captured.
|
|
273
|
+
"""
|
|
274
|
+
return pulumi.get(self, "bytes_to_capture_per_packet")
|
|
275
|
+
|
|
276
|
+
@property
|
|
277
|
+
@pulumi.getter(name="captureStartTime")
|
|
278
|
+
def capture_start_time(self) -> pulumi.Output[str]:
|
|
279
|
+
"""
|
|
280
|
+
The start time of the packet capture session.
|
|
281
|
+
"""
|
|
282
|
+
return pulumi.get(self, "capture_start_time")
|
|
283
|
+
|
|
284
|
+
@property
|
|
285
|
+
@pulumi.getter
|
|
286
|
+
def name(self) -> pulumi.Output[str]:
|
|
287
|
+
"""
|
|
288
|
+
The name of the resource
|
|
289
|
+
"""
|
|
290
|
+
return pulumi.get(self, "name")
|
|
291
|
+
|
|
292
|
+
@property
|
|
293
|
+
@pulumi.getter(name="networkInterfaces")
|
|
294
|
+
def network_interfaces(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
|
295
|
+
"""
|
|
296
|
+
List of network interfaces to capture on.
|
|
297
|
+
"""
|
|
298
|
+
return pulumi.get(self, "network_interfaces")
|
|
299
|
+
|
|
300
|
+
@property
|
|
301
|
+
@pulumi.getter(name="outputFiles")
|
|
302
|
+
def output_files(self) -> pulumi.Output[Sequence[str]]:
|
|
303
|
+
"""
|
|
304
|
+
The list of output files of a packet capture session.
|
|
305
|
+
"""
|
|
306
|
+
return pulumi.get(self, "output_files")
|
|
307
|
+
|
|
308
|
+
@property
|
|
309
|
+
@pulumi.getter(name="provisioningState")
|
|
310
|
+
def provisioning_state(self) -> pulumi.Output[str]:
|
|
311
|
+
"""
|
|
312
|
+
The provisioning state of the packet capture session resource.
|
|
313
|
+
"""
|
|
314
|
+
return pulumi.get(self, "provisioning_state")
|
|
315
|
+
|
|
316
|
+
@property
|
|
317
|
+
@pulumi.getter
|
|
318
|
+
def reason(self) -> pulumi.Output[str]:
|
|
319
|
+
"""
|
|
320
|
+
The reason the current packet capture session state.
|
|
321
|
+
"""
|
|
322
|
+
return pulumi.get(self, "reason")
|
|
323
|
+
|
|
324
|
+
@property
|
|
325
|
+
@pulumi.getter
|
|
326
|
+
def status(self) -> pulumi.Output[str]:
|
|
327
|
+
"""
|
|
328
|
+
The status of the packet capture session.
|
|
329
|
+
"""
|
|
330
|
+
return pulumi.get(self, "status")
|
|
331
|
+
|
|
332
|
+
@property
|
|
333
|
+
@pulumi.getter(name="systemData")
|
|
334
|
+
def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
|
|
335
|
+
"""
|
|
336
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
337
|
+
"""
|
|
338
|
+
return pulumi.get(self, "system_data")
|
|
339
|
+
|
|
340
|
+
@property
|
|
341
|
+
@pulumi.getter(name="timeLimitInSeconds")
|
|
342
|
+
def time_limit_in_seconds(self) -> pulumi.Output[Optional[int]]:
|
|
343
|
+
"""
|
|
344
|
+
Maximum duration of the capture session in seconds.
|
|
345
|
+
"""
|
|
346
|
+
return pulumi.get(self, "time_limit_in_seconds")
|
|
347
|
+
|
|
348
|
+
@property
|
|
349
|
+
@pulumi.getter(name="totalBytesPerSession")
|
|
350
|
+
def total_bytes_per_session(self) -> pulumi.Output[Optional[float]]:
|
|
351
|
+
"""
|
|
352
|
+
Maximum size of the capture output.
|
|
353
|
+
"""
|
|
354
|
+
return pulumi.get(self, "total_bytes_per_session")
|
|
355
|
+
|
|
356
|
+
@property
|
|
357
|
+
@pulumi.getter
|
|
358
|
+
def type(self) -> pulumi.Output[str]:
|
|
359
|
+
"""
|
|
360
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
361
|
+
"""
|
|
362
|
+
return pulumi.get(self, "type")
|
|
363
|
+
|