pulumi-azure-native 2.41.0a1715077566__py3-none-any.whl → 2.41.0a1715605557__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-azure-native might be problematic. Click here for more details.
- pulumi_azure_native/__init__.py +96 -0
- pulumi_azure_native/databricks/__init__.py +3 -0
- pulumi_azure_native/databricks/access_connector.py +3 -3
- pulumi_azure_native/databricks/get_access_connector.py +2 -2
- pulumi_azure_native/databricks/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/databricks/get_workspace.py +2 -2
- pulumi_azure_native/databricks/private_endpoint_connection.py +3 -3
- pulumi_azure_native/databricks/v20220401preview/access_connector.py +1 -1
- pulumi_azure_native/databricks/v20230201/private_endpoint_connection.py +1 -1
- pulumi_azure_native/databricks/v20230201/v_net_peering.py +1 -1
- pulumi_azure_native/databricks/v20230201/workspace.py +1 -1
- pulumi_azure_native/databricks/v20230501/access_connector.py +1 -1
- pulumi_azure_native/databricks/v20230915preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/databricks/v20230915preview/v_net_peering.py +1 -1
- pulumi_azure_native/databricks/v20230915preview/workspace.py +1 -1
- pulumi_azure_native/databricks/v20240501/__init__.py +18 -0
- pulumi_azure_native/databricks/v20240501/_enums.py +121 -0
- pulumi_azure_native/databricks/v20240501/_inputs.py +1228 -0
- pulumi_azure_native/databricks/v20240501/access_connector.py +263 -0
- pulumi_azure_native/databricks/v20240501/get_access_connector.py +170 -0
- pulumi_azure_native/databricks/v20240501/get_private_endpoint_connection.py +123 -0
- pulumi_azure_native/databricks/v20240501/get_v_net_peering.py +240 -0
- pulumi_azure_native/databricks/v20240501/get_workspace.py +443 -0
- pulumi_azure_native/databricks/v20240501/outputs.py +1949 -0
- pulumi_azure_native/databricks/v20240501/private_endpoint_connection.py +207 -0
- pulumi_azure_native/databricks/v20240501/v_net_peering.py +429 -0
- pulumi_azure_native/databricks/v20240501/workspace.py +683 -0
- pulumi_azure_native/databricks/v_net_peering.py +1 -1
- pulumi_azure_native/databricks/workspace.py +3 -3
- pulumi_azure_native/hybridcompute/__init__.py +5 -0
- pulumi_azure_native/hybridcompute/_enums.py +8 -0
- pulumi_azure_native/hybridcompute/gateway.py +313 -0
- pulumi_azure_native/hybridcompute/get_gateway.py +211 -0
- pulumi_azure_native/hybridcompute/get_license.py +2 -2
- pulumi_azure_native/hybridcompute/get_license_profile.py +2 -2
- pulumi_azure_native/hybridcompute/get_machine.py +2 -2
- pulumi_azure_native/hybridcompute/get_machine_extension.py +2 -2
- pulumi_azure_native/hybridcompute/get_machine_run_command.py +4 -0
- pulumi_azure_native/hybridcompute/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/hybridcompute/get_private_link_scope.py +2 -2
- pulumi_azure_native/hybridcompute/license.py +3 -3
- pulumi_azure_native/hybridcompute/license_profile.py +3 -3
- pulumi_azure_native/hybridcompute/machine.py +3 -3
- pulumi_azure_native/hybridcompute/machine_extension.py +3 -3
- pulumi_azure_native/hybridcompute/machine_run_command.py +5 -1
- pulumi_azure_native/hybridcompute/private_endpoint_connection.py +3 -3
- pulumi_azure_native/hybridcompute/private_link_scope.py +3 -3
- pulumi_azure_native/hybridcompute/v20200802/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20200815preview/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20200815preview/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20200815preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hybridcompute/v20200815preview/private_link_scope.py +1 -1
- pulumi_azure_native/hybridcompute/v20220510preview/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20220510preview/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20221227/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20221227/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20221227/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hybridcompute/v20221227/private_link_scope.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/license.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/license_profile.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/private_link_scope.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/license.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/license_profile.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/machine_run_command.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/private_link_scope.py +1 -1
- pulumi_azure_native/hybridcompute/v20240331preview/__init__.py +26 -0
- pulumi_azure_native/hybridcompute/v20240331preview/_enums.py +170 -0
- pulumi_azure_native/hybridcompute/v20240331preview/_inputs.py +1376 -0
- pulumi_azure_native/hybridcompute/v20240331preview/gateway.py +311 -0
- pulumi_azure_native/hybridcompute/v20240331preview/get_gateway.py +209 -0
- pulumi_azure_native/hybridcompute/v20240331preview/get_license.py +196 -0
- pulumi_azure_native/hybridcompute/v20240331preview/get_license_profile.py +331 -0
- pulumi_azure_native/hybridcompute/v20240331preview/get_machine.py +591 -0
- pulumi_azure_native/hybridcompute/v20240331preview/get_machine_extension.py +162 -0
- pulumi_azure_native/hybridcompute/v20240331preview/get_machine_run_command.py +318 -0
- pulumi_azure_native/hybridcompute/v20240331preview/get_private_endpoint_connection.py +136 -0
- pulumi_azure_native/hybridcompute/v20240331preview/get_private_link_scope.py +157 -0
- pulumi_azure_native/hybridcompute/v20240331preview/license.py +321 -0
- pulumi_azure_native/hybridcompute/v20240331preview/license_profile.py +480 -0
- pulumi_azure_native/hybridcompute/v20240331preview/machine.py +850 -0
- pulumi_azure_native/hybridcompute/v20240331preview/machine_extension.py +274 -0
- pulumi_azure_native/hybridcompute/v20240331preview/machine_run_command.py +587 -0
- pulumi_azure_native/hybridcompute/v20240331preview/outputs.py +3054 -0
- pulumi_azure_native/hybridcompute/v20240331preview/private_endpoint_connection.py +215 -0
- pulumi_azure_native/hybridcompute/v20240331preview/private_link_scope.py +253 -0
- pulumi_azure_native/mobilenetwork/__init__.py +4 -0
- pulumi_azure_native/mobilenetwork/attached_data_network.py +3 -3
- pulumi_azure_native/mobilenetwork/data_network.py +3 -3
- pulumi_azure_native/mobilenetwork/diagnostics_package.py +3 -3
- pulumi_azure_native/mobilenetwork/get_attached_data_network.py +2 -2
- pulumi_azure_native/mobilenetwork/get_data_network.py +2 -2
- pulumi_azure_native/mobilenetwork/get_diagnostics_package.py +2 -2
- pulumi_azure_native/mobilenetwork/get_mobile_network.py +2 -2
- pulumi_azure_native/mobilenetwork/get_packet_capture.py +2 -2
- pulumi_azure_native/mobilenetwork/get_packet_core_control_plane.py +2 -2
- pulumi_azure_native/mobilenetwork/get_packet_core_data_plane.py +2 -2
- pulumi_azure_native/mobilenetwork/get_service.py +2 -2
- pulumi_azure_native/mobilenetwork/get_sim.py +2 -2
- pulumi_azure_native/mobilenetwork/get_sim_group.py +2 -2
- pulumi_azure_native/mobilenetwork/get_sim_policy.py +2 -2
- pulumi_azure_native/mobilenetwork/get_site.py +2 -2
- pulumi_azure_native/mobilenetwork/get_slice.py +2 -2
- pulumi_azure_native/mobilenetwork/list_mobile_network_sim_groups.py +94 -0
- pulumi_azure_native/mobilenetwork/mobile_network.py +3 -3
- pulumi_azure_native/mobilenetwork/outputs.py +126 -0
- pulumi_azure_native/mobilenetwork/packet_capture.py +3 -3
- pulumi_azure_native/mobilenetwork/packet_core_control_plane.py +3 -3
- pulumi_azure_native/mobilenetwork/packet_core_data_plane.py +3 -3
- pulumi_azure_native/mobilenetwork/service.py +3 -3
- pulumi_azure_native/mobilenetwork/sim.py +3 -3
- pulumi_azure_native/mobilenetwork/sim_group.py +3 -3
- pulumi_azure_native/mobilenetwork/sim_policy.py +3 -3
- pulumi_azure_native/mobilenetwork/site.py +3 -3
- pulumi_azure_native/mobilenetwork/slice.py +3 -3
- pulumi_azure_native/mobilenetwork/v20220301preview/packet_core_control_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/attached_data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/mobile_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/packet_core_control_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/packet_core_data_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/service.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/sim.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/sim_group.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/sim_policy.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/site.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/slice.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/attached_data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/mobile_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/packet_core_control_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/packet_core_data_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/service.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/sim.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/sim_group.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/sim_policy.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/site.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/slice.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/attached_data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/diagnostics_package.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/mobile_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/packet_capture.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/packet_core_control_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/packet_core_data_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/service.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/sim.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/sim_group.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/sim_policy.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/site.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/slice.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/attached_data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/diagnostics_package.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/mobile_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/packet_capture.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/packet_core_control_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/packet_core_data_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/service.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/sim.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/sim_group.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/sim_policy.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/site.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/slice.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/attached_data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/diagnostics_package.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/mobile_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/packet_capture.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/packet_core_control_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/packet_core_data_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/service.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/sim.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/sim_group.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/sim_policy.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/site.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/slice.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240401/__init__.py +37 -0
- pulumi_azure_native/mobilenetwork/v20240401/_enums.py +215 -0
- pulumi_azure_native/mobilenetwork/v20240401/_inputs.py +1998 -0
- pulumi_azure_native/mobilenetwork/v20240401/attached_data_network.py +443 -0
- pulumi_azure_native/mobilenetwork/v20240401/data_network.py +282 -0
- pulumi_azure_native/mobilenetwork/v20240401/diagnostics_package.py +215 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_attached_data_network.py +237 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_data_network.py +175 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_diagnostics_package.py +162 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_mobile_network.py +209 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_packet_capture.py +240 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_packet_core_control_plane.py +404 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_packet_core_data_plane.py +188 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_service.py +201 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_sim.py +253 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_sim_group.py +196 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_sim_policy.py +240 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_site.py +175 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_slice.py +188 -0
- pulumi_azure_native/mobilenetwork/v20240401/list_mobile_network_sim_groups.py +92 -0
- pulumi_azure_native/mobilenetwork/v20240401/mobile_network.py +332 -0
- pulumi_azure_native/mobilenetwork/v20240401/outputs.py +2668 -0
- pulumi_azure_native/mobilenetwork/v20240401/packet_capture.py +363 -0
- pulumi_azure_native/mobilenetwork/v20240401/packet_core_control_plane.py +737 -0
- pulumi_azure_native/mobilenetwork/v20240401/packet_core_data_plane.py +313 -0
- pulumi_azure_native/mobilenetwork/v20240401/service.py +344 -0
- pulumi_azure_native/mobilenetwork/v20240401/sim.py +422 -0
- pulumi_azure_native/mobilenetwork/v20240401/sim_group.py +321 -0
- pulumi_azure_native/mobilenetwork/v20240401/sim_policy.py +417 -0
- pulumi_azure_native/mobilenetwork/v20240401/site.py +263 -0
- pulumi_azure_native/mobilenetwork/v20240401/slice.py +313 -0
- pulumi_azure_native/network/v20231101/flow_log.py +0 -29
- pulumi_azure_native/network/v20231101/get_flow_log.py +1 -14
- pulumi_azure_native/network/v20231101/outputs.py +0 -12
- pulumi_azure_native/recoveryservices/__init__.py +3 -0
- pulumi_azure_native/recoveryservices/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/recoveryservices/get_protected_item.py +2 -2
- pulumi_azure_native/recoveryservices/get_protection_container.py +2 -2
- pulumi_azure_native/recoveryservices/get_protection_intent.py +2 -2
- pulumi_azure_native/recoveryservices/get_protection_policy.py +2 -2
- pulumi_azure_native/recoveryservices/get_resource_guard_proxy.py +2 -2
- pulumi_azure_native/recoveryservices/get_vault.py +2 -2
- pulumi_azure_native/recoveryservices/private_endpoint_connection.py +3 -3
- pulumi_azure_native/recoveryservices/protected_item.py +3 -3
- pulumi_azure_native/recoveryservices/protection_container.py +3 -3
- pulumi_azure_native/recoveryservices/protection_intent.py +3 -3
- pulumi_azure_native/recoveryservices/protection_policy.py +3 -3
- pulumi_azure_native/recoveryservices/resource_guard_proxy.py +3 -3
- pulumi_azure_native/recoveryservices/v20200202/vault.py +1 -1
- pulumi_azure_native/recoveryservices/v20230401/private_endpoint_connection.py +1 -1
- pulumi_azure_native/recoveryservices/v20230401/protected_item.py +1 -1
- pulumi_azure_native/recoveryservices/v20230401/protection_container.py +1 -1
- pulumi_azure_native/recoveryservices/v20230401/protection_intent.py +1 -1
- pulumi_azure_native/recoveryservices/v20230401/protection_policy.py +1 -1
- pulumi_azure_native/recoveryservices/v20230401/resource_guard_proxy.py +1 -1
- pulumi_azure_native/recoveryservices/v20230401/vault.py +1 -1
- pulumi_azure_native/recoveryservices/v20230601/private_endpoint_connection.py +1 -1
- pulumi_azure_native/recoveryservices/v20230601/protected_item.py +1 -1
- pulumi_azure_native/recoveryservices/v20230601/protection_container.py +1 -1
- pulumi_azure_native/recoveryservices/v20230601/protection_intent.py +1 -1
- pulumi_azure_native/recoveryservices/v20230601/protection_policy.py +1 -1
- pulumi_azure_native/recoveryservices/v20230601/resource_guard_proxy.py +1 -1
- pulumi_azure_native/recoveryservices/v20230601/vault.py +1 -1
- pulumi_azure_native/recoveryservices/v20230801/private_endpoint_connection.py +1 -1
- pulumi_azure_native/recoveryservices/v20230801/protected_item.py +1 -1
- pulumi_azure_native/recoveryservices/v20230801/protection_container.py +1 -1
- pulumi_azure_native/recoveryservices/v20230801/protection_intent.py +1 -1
- pulumi_azure_native/recoveryservices/v20230801/protection_policy.py +1 -1
- pulumi_azure_native/recoveryservices/v20230801/resource_guard_proxy.py +1 -1
- pulumi_azure_native/recoveryservices/v20230801/vault.py +1 -1
- pulumi_azure_native/recoveryservices/v20240101/private_endpoint_connection.py +1 -1
- pulumi_azure_native/recoveryservices/v20240101/protected_item.py +1 -1
- pulumi_azure_native/recoveryservices/v20240101/protection_container.py +1 -1
- pulumi_azure_native/recoveryservices/v20240101/protection_intent.py +1 -1
- pulumi_azure_native/recoveryservices/v20240101/protection_policy.py +1 -1
- pulumi_azure_native/recoveryservices/v20240101/resource_guard_proxy.py +1 -1
- pulumi_azure_native/recoveryservices/v20240101/vault.py +1 -1
- pulumi_azure_native/recoveryservices/v20240201/private_endpoint_connection.py +1 -1
- pulumi_azure_native/recoveryservices/v20240201/protected_item.py +1 -1
- pulumi_azure_native/recoveryservices/v20240201/protection_container.py +1 -1
- pulumi_azure_native/recoveryservices/v20240201/protection_intent.py +1 -1
- pulumi_azure_native/recoveryservices/v20240201/protection_policy.py +1 -1
- pulumi_azure_native/recoveryservices/v20240201/resource_guard_proxy.py +1 -1
- pulumi_azure_native/recoveryservices/v20240201/vault.py +1 -1
- pulumi_azure_native/recoveryservices/v20240401/private_endpoint_connection.py +1 -1
- pulumi_azure_native/recoveryservices/v20240401/protected_item.py +1 -1
- pulumi_azure_native/recoveryservices/v20240401/protection_container.py +1 -1
- pulumi_azure_native/recoveryservices/v20240401/protection_intent.py +1 -1
- pulumi_azure_native/recoveryservices/v20240401/protection_policy.py +1 -1
- pulumi_azure_native/recoveryservices/v20240401/resource_guard_proxy.py +1 -1
- pulumi_azure_native/recoveryservices/v20240401/vault.py +1 -1
- pulumi_azure_native/recoveryservices/v20240430preview/__init__.py +24 -0
- pulumi_azure_native/recoveryservices/v20240430preview/_enums.py +470 -0
- pulumi_azure_native/recoveryservices/v20240430preview/_inputs.py +12162 -0
- pulumi_azure_native/recoveryservices/v20240430preview/get_private_endpoint_connection.py +162 -0
- pulumi_azure_native/recoveryservices/v20240430preview/get_protected_item.py +179 -0
- pulumi_azure_native/recoveryservices/v20240430preview/get_protection_container.py +167 -0
- pulumi_azure_native/recoveryservices/v20240430preview/get_protection_intent.py +169 -0
- pulumi_azure_native/recoveryservices/v20240430preview/get_protection_policy.py +164 -0
- pulumi_azure_native/recoveryservices/v20240430preview/get_resource_guard_proxy.py +157 -0
- pulumi_azure_native/recoveryservices/v20240430preview/get_vault.py +196 -0
- pulumi_azure_native/recoveryservices/v20240430preview/outputs.py +14409 -0
- pulumi_azure_native/recoveryservices/v20240430preview/private_endpoint_connection.py +293 -0
- pulumi_azure_native/recoveryservices/v20240430preview/protected_item.py +335 -0
- pulumi_azure_native/recoveryservices/v20240430preview/protection_container.py +314 -0
- pulumi_azure_native/recoveryservices/v20240430preview/protection_intent.py +314 -0
- pulumi_azure_native/recoveryservices/v20240430preview/protection_policy.py +293 -0
- pulumi_azure_native/recoveryservices/v20240430preview/resource_guard_proxy.py +285 -0
- pulumi_azure_native/recoveryservices/v20240430preview/vault.py +321 -0
- pulumi_azure_native/recoveryservices/vault.py +3 -3
- pulumi_azure_native/security/v20231201preview/_inputs.py +1 -1
- pulumi_azure_native/security/v20231201preview/outputs.py +2 -2
- pulumi_azure_native/storage/__init__.py +5 -0
- pulumi_azure_native/storage/_enums.py +17 -0
- pulumi_azure_native/storage/_inputs.py +315 -0
- pulumi_azure_native/storage/blob_container.py +3 -3
- pulumi_azure_native/storage/blob_container_immutability_policy.py +3 -3
- pulumi_azure_native/storage/blob_inventory_policy.py +3 -3
- pulumi_azure_native/storage/blob_service_properties.py +3 -3
- pulumi_azure_native/storage/encryption_scope.py +3 -3
- pulumi_azure_native/storage/file_service_properties.py +3 -3
- pulumi_azure_native/storage/file_share.py +3 -3
- pulumi_azure_native/storage/get_blob_container.py +2 -2
- pulumi_azure_native/storage/get_blob_container_immutability_policy.py +2 -2
- pulumi_azure_native/storage/get_blob_inventory_policy.py +2 -2
- pulumi_azure_native/storage/get_blob_service_properties.py +2 -2
- pulumi_azure_native/storage/get_encryption_scope.py +2 -2
- pulumi_azure_native/storage/get_file_service_properties.py +2 -2
- pulumi_azure_native/storage/get_file_share.py +2 -2
- pulumi_azure_native/storage/get_local_user.py +2 -2
- pulumi_azure_native/storage/get_management_policy.py +2 -2
- pulumi_azure_native/storage/get_object_replication_policy.py +2 -2
- pulumi_azure_native/storage/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/storage/get_queue.py +2 -2
- pulumi_azure_native/storage/get_queue_service_properties.py +2 -2
- pulumi_azure_native/storage/get_storage_account.py +2 -2
- pulumi_azure_native/storage/get_storage_task_assignment.py +138 -0
- pulumi_azure_native/storage/get_table.py +2 -2
- pulumi_azure_native/storage/get_table_service_properties.py +2 -2
- pulumi_azure_native/storage/list_local_user_keys.py +2 -2
- pulumi_azure_native/storage/list_storage_account_keys.py +2 -2
- pulumi_azure_native/storage/list_storage_account_sas.py +2 -2
- pulumi_azure_native/storage/list_storage_account_service_sas.py +2 -2
- pulumi_azure_native/storage/local_user.py +3 -3
- pulumi_azure_native/storage/management_policy.py +3 -3
- pulumi_azure_native/storage/object_replication_policy.py +3 -3
- pulumi_azure_native/storage/outputs.py +560 -0
- pulumi_azure_native/storage/private_endpoint_connection.py +3 -3
- pulumi_azure_native/storage/queue.py +3 -3
- pulumi_azure_native/storage/queue_service_properties.py +3 -3
- pulumi_azure_native/storage/storage_account.py +3 -3
- pulumi_azure_native/storage/storage_task_assignment.py +218 -0
- pulumi_azure_native/storage/table.py +3 -3
- pulumi_azure_native/storage/table_service_properties.py +3 -3
- pulumi_azure_native/storage/v20220901/blob_container.py +1 -1
- pulumi_azure_native/storage/v20220901/blob_container_immutability_policy.py +1 -1
- pulumi_azure_native/storage/v20220901/blob_inventory_policy.py +1 -1
- pulumi_azure_native/storage/v20220901/blob_service_properties.py +1 -1
- pulumi_azure_native/storage/v20220901/encryption_scope.py +1 -1
- pulumi_azure_native/storage/v20220901/file_service_properties.py +1 -1
- pulumi_azure_native/storage/v20220901/file_share.py +1 -1
- pulumi_azure_native/storage/v20220901/local_user.py +1 -1
- pulumi_azure_native/storage/v20220901/management_policy.py +1 -1
- pulumi_azure_native/storage/v20220901/object_replication_policy.py +1 -1
- pulumi_azure_native/storage/v20220901/private_endpoint_connection.py +1 -1
- pulumi_azure_native/storage/v20220901/queue.py +1 -1
- pulumi_azure_native/storage/v20220901/queue_service_properties.py +1 -1
- pulumi_azure_native/storage/v20220901/storage_account.py +1 -1
- pulumi_azure_native/storage/v20220901/table.py +1 -1
- pulumi_azure_native/storage/v20220901/table_service_properties.py +1 -1
- pulumi_azure_native/storage/v20230101/blob_container.py +1 -1
- pulumi_azure_native/storage/v20230101/blob_container_immutability_policy.py +1 -1
- pulumi_azure_native/storage/v20230101/blob_inventory_policy.py +1 -1
- pulumi_azure_native/storage/v20230101/blob_service_properties.py +1 -1
- pulumi_azure_native/storage/v20230101/encryption_scope.py +1 -1
- pulumi_azure_native/storage/v20230101/file_service_properties.py +1 -1
- pulumi_azure_native/storage/v20230101/file_share.py +1 -1
- pulumi_azure_native/storage/v20230101/local_user.py +1 -1
- pulumi_azure_native/storage/v20230101/management_policy.py +1 -1
- pulumi_azure_native/storage/v20230101/object_replication_policy.py +1 -1
- pulumi_azure_native/storage/v20230101/private_endpoint_connection.py +1 -1
- pulumi_azure_native/storage/v20230101/queue.py +1 -1
- pulumi_azure_native/storage/v20230101/queue_service_properties.py +1 -1
- pulumi_azure_native/storage/v20230101/storage_account.py +1 -1
- pulumi_azure_native/storage/v20230101/table.py +1 -1
- pulumi_azure_native/storage/v20230101/table_service_properties.py +1 -1
- pulumi_azure_native/storage/v20230401/blob_container.py +1 -1
- pulumi_azure_native/storage/v20230401/blob_container_immutability_policy.py +1 -1
- pulumi_azure_native/storage/v20230401/blob_inventory_policy.py +1 -1
- pulumi_azure_native/storage/v20230401/blob_service_properties.py +1 -1
- pulumi_azure_native/storage/v20230401/encryption_scope.py +1 -1
- pulumi_azure_native/storage/v20230401/file_service_properties.py +1 -1
- pulumi_azure_native/storage/v20230401/file_share.py +1 -1
- pulumi_azure_native/storage/v20230401/local_user.py +1 -1
- pulumi_azure_native/storage/v20230401/management_policy.py +1 -1
- pulumi_azure_native/storage/v20230401/object_replication_policy.py +1 -1
- pulumi_azure_native/storage/v20230401/private_endpoint_connection.py +1 -1
- pulumi_azure_native/storage/v20230401/queue.py +1 -1
- pulumi_azure_native/storage/v20230401/queue_service_properties.py +1 -1
- pulumi_azure_native/storage/v20230401/storage_account.py +1 -1
- pulumi_azure_native/storage/v20230401/table.py +1 -1
- pulumi_azure_native/storage/v20230401/table_service_properties.py +1 -1
- pulumi_azure_native/storage/v20230501/__init__.py +48 -0
- pulumi_azure_native/storage/v20230501/_enums.py +434 -0
- pulumi_azure_native/storage/v20230501/_inputs.py +3435 -0
- pulumi_azure_native/storage/v20230501/blob_container.py +510 -0
- pulumi_azure_native/storage/v20230501/blob_container_immutability_policy.py +302 -0
- pulumi_azure_native/storage/v20230501/blob_inventory_policy.py +227 -0
- pulumi_azure_native/storage/v20230501/blob_service_properties.py +448 -0
- pulumi_azure_native/storage/v20230501/encryption_scope.py +313 -0
- pulumi_azure_native/storage/v20230501/file_service_properties.py +274 -0
- pulumi_azure_native/storage/v20230501/file_share.py +501 -0
- pulumi_azure_native/storage/v20230501/get_blob_container.py +370 -0
- pulumi_azure_native/storage/v20230501/get_blob_container_immutability_policy.py +179 -0
- pulumi_azure_native/storage/v20230501/get_blob_inventory_policy.py +149 -0
- pulumi_azure_native/storage/v20230501/get_blob_service_properties.py +240 -0
- pulumi_azure_native/storage/v20230501/get_encryption_scope.py +188 -0
- pulumi_azure_native/storage/v20230501/get_file_service_properties.py +162 -0
- pulumi_azure_native/storage/v20230501/get_file_share.py +362 -0
- pulumi_azure_native/storage/v20230501/get_local_user.py +279 -0
- pulumi_azure_native/storage/v20230501/get_management_policy.py +136 -0
- pulumi_azure_native/storage/v20230501/get_object_replication_policy.py +175 -0
- pulumi_azure_native/storage/v20230501/get_private_endpoint_connection.py +149 -0
- pulumi_azure_native/storage/v20230501/get_queue.py +132 -0
- pulumi_azure_native/storage/v20230501/get_queue_service_properties.py +123 -0
- pulumi_azure_native/storage/v20230501/get_storage_account.py +708 -0
- pulumi_azure_native/storage/v20230501/get_storage_task_assignment.py +136 -0
- pulumi_azure_native/storage/v20230501/get_table.py +136 -0
- pulumi_azure_native/storage/v20230501/get_table_service_properties.py +123 -0
- pulumi_azure_native/storage/v20230501/list_local_user_keys.py +97 -0
- pulumi_azure_native/storage/v20230501/list_storage_account_keys.py +84 -0
- pulumi_azure_native/storage/v20230501/list_storage_account_sas.py +119 -0
- pulumi_azure_native/storage/v20230501/list_storage_account_service_sas.py +169 -0
- pulumi_azure_native/storage/v20230501/local_user.py +496 -0
- pulumi_azure_native/storage/v20230501/management_policy.py +217 -0
- pulumi_azure_native/storage/v20230501/object_replication_policy.py +285 -0
- pulumi_azure_native/storage/v20230501/outputs.py +5640 -0
- pulumi_azure_native/storage/v20230501/private_endpoint_connection.py +227 -0
- pulumi_azure_native/storage/v20230501/queue.py +211 -0
- pulumi_azure_native/storage/v20230501/queue_service_properties.py +206 -0
- pulumi_azure_native/storage/v20230501/storage_account.py +1169 -0
- pulumi_azure_native/storage/v20230501/storage_task_assignment.py +216 -0
- pulumi_azure_native/storage/v20230501/table.py +214 -0
- pulumi_azure_native/storage/v20230501/table_service_properties.py +206 -0
- pulumi_azure_native/storageactions/_inputs.py +2 -2
- pulumi_azure_native/storageactions/get_storage_task.py +1 -1
- pulumi_azure_native/storageactions/outputs.py +2 -2
- pulumi_azure_native/storageactions/storage_task.py +18 -17
- pulumi_azure_native/storageactions/v20230101/_inputs.py +2 -2
- pulumi_azure_native/storageactions/v20230101/get_storage_task.py +1 -1
- pulumi_azure_native/storageactions/v20230101/outputs.py +2 -2
- pulumi_azure_native/storageactions/v20230101/storage_task.py +18 -17
- pulumi_azure_native/workloads/__init__.py +3 -0
- pulumi_azure_native/workloads/_enums.py +15 -0
- pulumi_azure_native/workloads/get_monitor.py +4 -0
- pulumi_azure_native/workloads/get_provider_instance.py +2 -2
- pulumi_azure_native/workloads/get_sap_landscape_monitor.py +2 -2
- pulumi_azure_native/workloads/monitor.py +5 -1
- pulumi_azure_native/workloads/provider_instance.py +3 -3
- pulumi_azure_native/workloads/sap_landscape_monitor.py +3 -3
- pulumi_azure_native/workloads/v20230401/monitor.py +1 -1
- pulumi_azure_native/workloads/v20230401/provider_instance.py +1 -1
- pulumi_azure_native/workloads/v20230401/sap_landscape_monitor.py +1 -1
- pulumi_azure_native/workloads/v20231001preview/monitor.py +1 -1
- pulumi_azure_native/workloads/v20231001preview/provider_instance.py +1 -1
- pulumi_azure_native/workloads/v20231001preview/sap_landscape_monitor.py +1 -1
- pulumi_azure_native/workloads/v20231201preview/__init__.py +16 -0
- pulumi_azure_native/workloads/v20231201preview/_enums.py +68 -0
- pulumi_azure_native/workloads/v20231201preview/_inputs.py +1216 -0
- pulumi_azure_native/workloads/v20231201preview/get_monitor.py +300 -0
- pulumi_azure_native/workloads/v20231201preview/get_provider_instance.py +175 -0
- pulumi_azure_native/workloads/v20231201preview/get_sap_landscape_monitor.py +157 -0
- pulumi_azure_native/workloads/v20231201preview/monitor.py +496 -0
- pulumi_azure_native/workloads/v20231201preview/outputs.py +1583 -0
- pulumi_azure_native/workloads/v20231201preview/provider_instance.py +246 -0
- pulumi_azure_native/workloads/v20231201preview/sap_landscape_monitor.py +234 -0
- {pulumi_azure_native-2.41.0a1715077566.dist-info → pulumi_azure_native-2.41.0a1715605557.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.41.0a1715077566.dist-info → pulumi_azure_native-2.41.0a1715605557.dist-info}/RECORD +462 -324
- {pulumi_azure_native-2.41.0a1715077566.dist-info → pulumi_azure_native-2.41.0a1715605557.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-2.41.0a1715077566.dist-info → pulumi_azure_native-2.41.0a1715605557.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,282 @@
|
|
|
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__ = ['DataNetworkArgs', 'DataNetwork']
|
|
14
|
+
|
|
15
|
+
@pulumi.input_type
|
|
16
|
+
class DataNetworkArgs:
|
|
17
|
+
def __init__(__self__, *,
|
|
18
|
+
mobile_network_name: pulumi.Input[str],
|
|
19
|
+
resource_group_name: pulumi.Input[str],
|
|
20
|
+
data_network_name: Optional[pulumi.Input[str]] = None,
|
|
21
|
+
description: Optional[pulumi.Input[str]] = None,
|
|
22
|
+
location: Optional[pulumi.Input[str]] = None,
|
|
23
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
|
24
|
+
"""
|
|
25
|
+
The set of arguments for constructing a DataNetwork resource.
|
|
26
|
+
:param pulumi.Input[str] mobile_network_name: The name of the mobile network.
|
|
27
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
|
|
28
|
+
:param pulumi.Input[str] data_network_name: The name of the data network.
|
|
29
|
+
:param pulumi.Input[str] description: An optional description for this data network.
|
|
30
|
+
:param pulumi.Input[str] location: The geo-location where the resource lives
|
|
31
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Resource tags.
|
|
32
|
+
"""
|
|
33
|
+
pulumi.set(__self__, "mobile_network_name", mobile_network_name)
|
|
34
|
+
pulumi.set(__self__, "resource_group_name", resource_group_name)
|
|
35
|
+
if data_network_name is not None:
|
|
36
|
+
pulumi.set(__self__, "data_network_name", data_network_name)
|
|
37
|
+
if description is not None:
|
|
38
|
+
pulumi.set(__self__, "description", description)
|
|
39
|
+
if location is not None:
|
|
40
|
+
pulumi.set(__self__, "location", location)
|
|
41
|
+
if tags is not None:
|
|
42
|
+
pulumi.set(__self__, "tags", tags)
|
|
43
|
+
|
|
44
|
+
@property
|
|
45
|
+
@pulumi.getter(name="mobileNetworkName")
|
|
46
|
+
def mobile_network_name(self) -> pulumi.Input[str]:
|
|
47
|
+
"""
|
|
48
|
+
The name of the mobile network.
|
|
49
|
+
"""
|
|
50
|
+
return pulumi.get(self, "mobile_network_name")
|
|
51
|
+
|
|
52
|
+
@mobile_network_name.setter
|
|
53
|
+
def mobile_network_name(self, value: pulumi.Input[str]):
|
|
54
|
+
pulumi.set(self, "mobile_network_name", value)
|
|
55
|
+
|
|
56
|
+
@property
|
|
57
|
+
@pulumi.getter(name="resourceGroupName")
|
|
58
|
+
def resource_group_name(self) -> pulumi.Input[str]:
|
|
59
|
+
"""
|
|
60
|
+
The name of the resource group. The name is case insensitive.
|
|
61
|
+
"""
|
|
62
|
+
return pulumi.get(self, "resource_group_name")
|
|
63
|
+
|
|
64
|
+
@resource_group_name.setter
|
|
65
|
+
def resource_group_name(self, value: pulumi.Input[str]):
|
|
66
|
+
pulumi.set(self, "resource_group_name", value)
|
|
67
|
+
|
|
68
|
+
@property
|
|
69
|
+
@pulumi.getter(name="dataNetworkName")
|
|
70
|
+
def data_network_name(self) -> Optional[pulumi.Input[str]]:
|
|
71
|
+
"""
|
|
72
|
+
The name of the data network.
|
|
73
|
+
"""
|
|
74
|
+
return pulumi.get(self, "data_network_name")
|
|
75
|
+
|
|
76
|
+
@data_network_name.setter
|
|
77
|
+
def data_network_name(self, value: Optional[pulumi.Input[str]]):
|
|
78
|
+
pulumi.set(self, "data_network_name", value)
|
|
79
|
+
|
|
80
|
+
@property
|
|
81
|
+
@pulumi.getter
|
|
82
|
+
def description(self) -> Optional[pulumi.Input[str]]:
|
|
83
|
+
"""
|
|
84
|
+
An optional description for this data network.
|
|
85
|
+
"""
|
|
86
|
+
return pulumi.get(self, "description")
|
|
87
|
+
|
|
88
|
+
@description.setter
|
|
89
|
+
def description(self, value: Optional[pulumi.Input[str]]):
|
|
90
|
+
pulumi.set(self, "description", value)
|
|
91
|
+
|
|
92
|
+
@property
|
|
93
|
+
@pulumi.getter
|
|
94
|
+
def location(self) -> Optional[pulumi.Input[str]]:
|
|
95
|
+
"""
|
|
96
|
+
The geo-location where the resource lives
|
|
97
|
+
"""
|
|
98
|
+
return pulumi.get(self, "location")
|
|
99
|
+
|
|
100
|
+
@location.setter
|
|
101
|
+
def location(self, value: Optional[pulumi.Input[str]]):
|
|
102
|
+
pulumi.set(self, "location", value)
|
|
103
|
+
|
|
104
|
+
@property
|
|
105
|
+
@pulumi.getter
|
|
106
|
+
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
107
|
+
"""
|
|
108
|
+
Resource tags.
|
|
109
|
+
"""
|
|
110
|
+
return pulumi.get(self, "tags")
|
|
111
|
+
|
|
112
|
+
@tags.setter
|
|
113
|
+
def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
|
114
|
+
pulumi.set(self, "tags", value)
|
|
115
|
+
|
|
116
|
+
|
|
117
|
+
class DataNetwork(pulumi.CustomResource):
|
|
118
|
+
@overload
|
|
119
|
+
def __init__(__self__,
|
|
120
|
+
resource_name: str,
|
|
121
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
122
|
+
data_network_name: Optional[pulumi.Input[str]] = None,
|
|
123
|
+
description: Optional[pulumi.Input[str]] = None,
|
|
124
|
+
location: Optional[pulumi.Input[str]] = None,
|
|
125
|
+
mobile_network_name: Optional[pulumi.Input[str]] = None,
|
|
126
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
127
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
128
|
+
__props__=None):
|
|
129
|
+
"""
|
|
130
|
+
Data network resource. Must be created in the same location as its parent mobile network.
|
|
131
|
+
|
|
132
|
+
:param str resource_name: The name of the resource.
|
|
133
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
134
|
+
:param pulumi.Input[str] data_network_name: The name of the data network.
|
|
135
|
+
:param pulumi.Input[str] description: An optional description for this data network.
|
|
136
|
+
:param pulumi.Input[str] location: The geo-location where the resource lives
|
|
137
|
+
:param pulumi.Input[str] mobile_network_name: The name of the mobile network.
|
|
138
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
|
|
139
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Resource tags.
|
|
140
|
+
"""
|
|
141
|
+
...
|
|
142
|
+
@overload
|
|
143
|
+
def __init__(__self__,
|
|
144
|
+
resource_name: str,
|
|
145
|
+
args: DataNetworkArgs,
|
|
146
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
147
|
+
"""
|
|
148
|
+
Data network resource. Must be created in the same location as its parent mobile network.
|
|
149
|
+
|
|
150
|
+
:param str resource_name: The name of the resource.
|
|
151
|
+
:param DataNetworkArgs args: The arguments to use to populate this resource's properties.
|
|
152
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
153
|
+
"""
|
|
154
|
+
...
|
|
155
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
156
|
+
resource_args, opts = _utilities.get_resource_args_opts(DataNetworkArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
157
|
+
if resource_args is not None:
|
|
158
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
159
|
+
else:
|
|
160
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
161
|
+
|
|
162
|
+
def _internal_init(__self__,
|
|
163
|
+
resource_name: str,
|
|
164
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
165
|
+
data_network_name: Optional[pulumi.Input[str]] = None,
|
|
166
|
+
description: Optional[pulumi.Input[str]] = None,
|
|
167
|
+
location: Optional[pulumi.Input[str]] = None,
|
|
168
|
+
mobile_network_name: Optional[pulumi.Input[str]] = None,
|
|
169
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
170
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
171
|
+
__props__=None):
|
|
172
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
173
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
174
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
175
|
+
if opts.id is None:
|
|
176
|
+
if __props__ is not None:
|
|
177
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
178
|
+
__props__ = DataNetworkArgs.__new__(DataNetworkArgs)
|
|
179
|
+
|
|
180
|
+
__props__.__dict__["data_network_name"] = data_network_name
|
|
181
|
+
__props__.__dict__["description"] = description
|
|
182
|
+
__props__.__dict__["location"] = location
|
|
183
|
+
if mobile_network_name is None and not opts.urn:
|
|
184
|
+
raise TypeError("Missing required property 'mobile_network_name'")
|
|
185
|
+
__props__.__dict__["mobile_network_name"] = mobile_network_name
|
|
186
|
+
if resource_group_name is None and not opts.urn:
|
|
187
|
+
raise TypeError("Missing required property 'resource_group_name'")
|
|
188
|
+
__props__.__dict__["resource_group_name"] = resource_group_name
|
|
189
|
+
__props__.__dict__["tags"] = tags
|
|
190
|
+
__props__.__dict__["name"] = None
|
|
191
|
+
__props__.__dict__["provisioning_state"] = None
|
|
192
|
+
__props__.__dict__["system_data"] = None
|
|
193
|
+
__props__.__dict__["type"] = None
|
|
194
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:mobilenetwork:DataNetwork"), pulumi.Alias(type_="azure-native:mobilenetwork/v20220301preview:DataNetwork"), pulumi.Alias(type_="azure-native:mobilenetwork/v20220401preview:DataNetwork"), pulumi.Alias(type_="azure-native:mobilenetwork/v20221101:DataNetwork"), pulumi.Alias(type_="azure-native:mobilenetwork/v20230601:DataNetwork"), pulumi.Alias(type_="azure-native:mobilenetwork/v20230901:DataNetwork"), pulumi.Alias(type_="azure-native:mobilenetwork/v20240201:DataNetwork")])
|
|
195
|
+
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
196
|
+
super(DataNetwork, __self__).__init__(
|
|
197
|
+
'azure-native:mobilenetwork/v20240401:DataNetwork',
|
|
198
|
+
resource_name,
|
|
199
|
+
__props__,
|
|
200
|
+
opts)
|
|
201
|
+
|
|
202
|
+
@staticmethod
|
|
203
|
+
def get(resource_name: str,
|
|
204
|
+
id: pulumi.Input[str],
|
|
205
|
+
opts: Optional[pulumi.ResourceOptions] = None) -> 'DataNetwork':
|
|
206
|
+
"""
|
|
207
|
+
Get an existing DataNetwork resource's state with the given name, id, and optional extra
|
|
208
|
+
properties used to qualify the lookup.
|
|
209
|
+
|
|
210
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
211
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
212
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
213
|
+
"""
|
|
214
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
215
|
+
|
|
216
|
+
__props__ = DataNetworkArgs.__new__(DataNetworkArgs)
|
|
217
|
+
|
|
218
|
+
__props__.__dict__["description"] = None
|
|
219
|
+
__props__.__dict__["location"] = None
|
|
220
|
+
__props__.__dict__["name"] = None
|
|
221
|
+
__props__.__dict__["provisioning_state"] = None
|
|
222
|
+
__props__.__dict__["system_data"] = None
|
|
223
|
+
__props__.__dict__["tags"] = None
|
|
224
|
+
__props__.__dict__["type"] = None
|
|
225
|
+
return DataNetwork(resource_name, opts=opts, __props__=__props__)
|
|
226
|
+
|
|
227
|
+
@property
|
|
228
|
+
@pulumi.getter
|
|
229
|
+
def description(self) -> pulumi.Output[Optional[str]]:
|
|
230
|
+
"""
|
|
231
|
+
An optional description for this data network.
|
|
232
|
+
"""
|
|
233
|
+
return pulumi.get(self, "description")
|
|
234
|
+
|
|
235
|
+
@property
|
|
236
|
+
@pulumi.getter
|
|
237
|
+
def location(self) -> pulumi.Output[str]:
|
|
238
|
+
"""
|
|
239
|
+
The geo-location where the resource lives
|
|
240
|
+
"""
|
|
241
|
+
return pulumi.get(self, "location")
|
|
242
|
+
|
|
243
|
+
@property
|
|
244
|
+
@pulumi.getter
|
|
245
|
+
def name(self) -> pulumi.Output[str]:
|
|
246
|
+
"""
|
|
247
|
+
The name of the resource
|
|
248
|
+
"""
|
|
249
|
+
return pulumi.get(self, "name")
|
|
250
|
+
|
|
251
|
+
@property
|
|
252
|
+
@pulumi.getter(name="provisioningState")
|
|
253
|
+
def provisioning_state(self) -> pulumi.Output[str]:
|
|
254
|
+
"""
|
|
255
|
+
The provisioning state of the data network resource.
|
|
256
|
+
"""
|
|
257
|
+
return pulumi.get(self, "provisioning_state")
|
|
258
|
+
|
|
259
|
+
@property
|
|
260
|
+
@pulumi.getter(name="systemData")
|
|
261
|
+
def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
|
|
262
|
+
"""
|
|
263
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
264
|
+
"""
|
|
265
|
+
return pulumi.get(self, "system_data")
|
|
266
|
+
|
|
267
|
+
@property
|
|
268
|
+
@pulumi.getter
|
|
269
|
+
def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
|
270
|
+
"""
|
|
271
|
+
Resource tags.
|
|
272
|
+
"""
|
|
273
|
+
return pulumi.get(self, "tags")
|
|
274
|
+
|
|
275
|
+
@property
|
|
276
|
+
@pulumi.getter
|
|
277
|
+
def type(self) -> pulumi.Output[str]:
|
|
278
|
+
"""
|
|
279
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
280
|
+
"""
|
|
281
|
+
return pulumi.get(self, "type")
|
|
282
|
+
|
|
@@ -0,0 +1,215 @@
|
|
|
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__ = ['DiagnosticsPackageArgs', 'DiagnosticsPackage']
|
|
14
|
+
|
|
15
|
+
@pulumi.input_type
|
|
16
|
+
class DiagnosticsPackageArgs:
|
|
17
|
+
def __init__(__self__, *,
|
|
18
|
+
packet_core_control_plane_name: pulumi.Input[str],
|
|
19
|
+
resource_group_name: pulumi.Input[str],
|
|
20
|
+
diagnostics_package_name: Optional[pulumi.Input[str]] = None):
|
|
21
|
+
"""
|
|
22
|
+
The set of arguments for constructing a DiagnosticsPackage resource.
|
|
23
|
+
:param pulumi.Input[str] packet_core_control_plane_name: The name of the packet core control plane.
|
|
24
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
|
|
25
|
+
:param pulumi.Input[str] diagnostics_package_name: The name of the diagnostics package.
|
|
26
|
+
"""
|
|
27
|
+
pulumi.set(__self__, "packet_core_control_plane_name", packet_core_control_plane_name)
|
|
28
|
+
pulumi.set(__self__, "resource_group_name", resource_group_name)
|
|
29
|
+
if diagnostics_package_name is not None:
|
|
30
|
+
pulumi.set(__self__, "diagnostics_package_name", diagnostics_package_name)
|
|
31
|
+
|
|
32
|
+
@property
|
|
33
|
+
@pulumi.getter(name="packetCoreControlPlaneName")
|
|
34
|
+
def packet_core_control_plane_name(self) -> pulumi.Input[str]:
|
|
35
|
+
"""
|
|
36
|
+
The name of the packet core control plane.
|
|
37
|
+
"""
|
|
38
|
+
return pulumi.get(self, "packet_core_control_plane_name")
|
|
39
|
+
|
|
40
|
+
@packet_core_control_plane_name.setter
|
|
41
|
+
def packet_core_control_plane_name(self, value: pulumi.Input[str]):
|
|
42
|
+
pulumi.set(self, "packet_core_control_plane_name", value)
|
|
43
|
+
|
|
44
|
+
@property
|
|
45
|
+
@pulumi.getter(name="resourceGroupName")
|
|
46
|
+
def resource_group_name(self) -> pulumi.Input[str]:
|
|
47
|
+
"""
|
|
48
|
+
The name of the resource group. The name is case insensitive.
|
|
49
|
+
"""
|
|
50
|
+
return pulumi.get(self, "resource_group_name")
|
|
51
|
+
|
|
52
|
+
@resource_group_name.setter
|
|
53
|
+
def resource_group_name(self, value: pulumi.Input[str]):
|
|
54
|
+
pulumi.set(self, "resource_group_name", value)
|
|
55
|
+
|
|
56
|
+
@property
|
|
57
|
+
@pulumi.getter(name="diagnosticsPackageName")
|
|
58
|
+
def diagnostics_package_name(self) -> Optional[pulumi.Input[str]]:
|
|
59
|
+
"""
|
|
60
|
+
The name of the diagnostics package.
|
|
61
|
+
"""
|
|
62
|
+
return pulumi.get(self, "diagnostics_package_name")
|
|
63
|
+
|
|
64
|
+
@diagnostics_package_name.setter
|
|
65
|
+
def diagnostics_package_name(self, value: Optional[pulumi.Input[str]]):
|
|
66
|
+
pulumi.set(self, "diagnostics_package_name", value)
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
class DiagnosticsPackage(pulumi.CustomResource):
|
|
70
|
+
@overload
|
|
71
|
+
def __init__(__self__,
|
|
72
|
+
resource_name: str,
|
|
73
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
74
|
+
diagnostics_package_name: Optional[pulumi.Input[str]] = None,
|
|
75
|
+
packet_core_control_plane_name: Optional[pulumi.Input[str]] = None,
|
|
76
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
77
|
+
__props__=None):
|
|
78
|
+
"""
|
|
79
|
+
Diagnostics package resource.
|
|
80
|
+
|
|
81
|
+
:param str resource_name: The name of the resource.
|
|
82
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
83
|
+
:param pulumi.Input[str] diagnostics_package_name: The name of the diagnostics package.
|
|
84
|
+
:param pulumi.Input[str] packet_core_control_plane_name: The name of the packet core control plane.
|
|
85
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
|
|
86
|
+
"""
|
|
87
|
+
...
|
|
88
|
+
@overload
|
|
89
|
+
def __init__(__self__,
|
|
90
|
+
resource_name: str,
|
|
91
|
+
args: DiagnosticsPackageArgs,
|
|
92
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
93
|
+
"""
|
|
94
|
+
Diagnostics package resource.
|
|
95
|
+
|
|
96
|
+
:param str resource_name: The name of the resource.
|
|
97
|
+
:param DiagnosticsPackageArgs args: The arguments to use to populate this resource's properties.
|
|
98
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
99
|
+
"""
|
|
100
|
+
...
|
|
101
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
102
|
+
resource_args, opts = _utilities.get_resource_args_opts(DiagnosticsPackageArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
103
|
+
if resource_args is not None:
|
|
104
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
105
|
+
else:
|
|
106
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
107
|
+
|
|
108
|
+
def _internal_init(__self__,
|
|
109
|
+
resource_name: str,
|
|
110
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
111
|
+
diagnostics_package_name: Optional[pulumi.Input[str]] = None,
|
|
112
|
+
packet_core_control_plane_name: Optional[pulumi.Input[str]] = None,
|
|
113
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
114
|
+
__props__=None):
|
|
115
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
116
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
117
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
118
|
+
if opts.id is None:
|
|
119
|
+
if __props__ is not None:
|
|
120
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
121
|
+
__props__ = DiagnosticsPackageArgs.__new__(DiagnosticsPackageArgs)
|
|
122
|
+
|
|
123
|
+
__props__.__dict__["diagnostics_package_name"] = diagnostics_package_name
|
|
124
|
+
if packet_core_control_plane_name is None and not opts.urn:
|
|
125
|
+
raise TypeError("Missing required property 'packet_core_control_plane_name'")
|
|
126
|
+
__props__.__dict__["packet_core_control_plane_name"] = packet_core_control_plane_name
|
|
127
|
+
if resource_group_name is None and not opts.urn:
|
|
128
|
+
raise TypeError("Missing required property 'resource_group_name'")
|
|
129
|
+
__props__.__dict__["resource_group_name"] = resource_group_name
|
|
130
|
+
__props__.__dict__["name"] = None
|
|
131
|
+
__props__.__dict__["provisioning_state"] = None
|
|
132
|
+
__props__.__dict__["reason"] = None
|
|
133
|
+
__props__.__dict__["status"] = None
|
|
134
|
+
__props__.__dict__["system_data"] = None
|
|
135
|
+
__props__.__dict__["type"] = None
|
|
136
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:mobilenetwork:DiagnosticsPackage"), pulumi.Alias(type_="azure-native:mobilenetwork/v20230601:DiagnosticsPackage"), pulumi.Alias(type_="azure-native:mobilenetwork/v20230901:DiagnosticsPackage"), pulumi.Alias(type_="azure-native:mobilenetwork/v20240201:DiagnosticsPackage")])
|
|
137
|
+
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
138
|
+
super(DiagnosticsPackage, __self__).__init__(
|
|
139
|
+
'azure-native:mobilenetwork/v20240401:DiagnosticsPackage',
|
|
140
|
+
resource_name,
|
|
141
|
+
__props__,
|
|
142
|
+
opts)
|
|
143
|
+
|
|
144
|
+
@staticmethod
|
|
145
|
+
def get(resource_name: str,
|
|
146
|
+
id: pulumi.Input[str],
|
|
147
|
+
opts: Optional[pulumi.ResourceOptions] = None) -> 'DiagnosticsPackage':
|
|
148
|
+
"""
|
|
149
|
+
Get an existing DiagnosticsPackage resource's state with the given name, id, and optional extra
|
|
150
|
+
properties used to qualify the lookup.
|
|
151
|
+
|
|
152
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
153
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
154
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
155
|
+
"""
|
|
156
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
157
|
+
|
|
158
|
+
__props__ = DiagnosticsPackageArgs.__new__(DiagnosticsPackageArgs)
|
|
159
|
+
|
|
160
|
+
__props__.__dict__["name"] = None
|
|
161
|
+
__props__.__dict__["provisioning_state"] = None
|
|
162
|
+
__props__.__dict__["reason"] = None
|
|
163
|
+
__props__.__dict__["status"] = None
|
|
164
|
+
__props__.__dict__["system_data"] = None
|
|
165
|
+
__props__.__dict__["type"] = None
|
|
166
|
+
return DiagnosticsPackage(resource_name, opts=opts, __props__=__props__)
|
|
167
|
+
|
|
168
|
+
@property
|
|
169
|
+
@pulumi.getter
|
|
170
|
+
def name(self) -> pulumi.Output[str]:
|
|
171
|
+
"""
|
|
172
|
+
The name of the resource
|
|
173
|
+
"""
|
|
174
|
+
return pulumi.get(self, "name")
|
|
175
|
+
|
|
176
|
+
@property
|
|
177
|
+
@pulumi.getter(name="provisioningState")
|
|
178
|
+
def provisioning_state(self) -> pulumi.Output[str]:
|
|
179
|
+
"""
|
|
180
|
+
The provisioning state of the diagnostics package resource.
|
|
181
|
+
"""
|
|
182
|
+
return pulumi.get(self, "provisioning_state")
|
|
183
|
+
|
|
184
|
+
@property
|
|
185
|
+
@pulumi.getter
|
|
186
|
+
def reason(self) -> pulumi.Output[str]:
|
|
187
|
+
"""
|
|
188
|
+
The reason for the current state of the diagnostics package collection.
|
|
189
|
+
"""
|
|
190
|
+
return pulumi.get(self, "reason")
|
|
191
|
+
|
|
192
|
+
@property
|
|
193
|
+
@pulumi.getter
|
|
194
|
+
def status(self) -> pulumi.Output[str]:
|
|
195
|
+
"""
|
|
196
|
+
The status of the diagnostics package collection.
|
|
197
|
+
"""
|
|
198
|
+
return pulumi.get(self, "status")
|
|
199
|
+
|
|
200
|
+
@property
|
|
201
|
+
@pulumi.getter(name="systemData")
|
|
202
|
+
def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
|
|
203
|
+
"""
|
|
204
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
205
|
+
"""
|
|
206
|
+
return pulumi.get(self, "system_data")
|
|
207
|
+
|
|
208
|
+
@property
|
|
209
|
+
@pulumi.getter
|
|
210
|
+
def type(self) -> pulumi.Output[str]:
|
|
211
|
+
"""
|
|
212
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
213
|
+
"""
|
|
214
|
+
return pulumi.get(self, "type")
|
|
215
|
+
|