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,201 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import pulumi
|
|
8
|
+
import pulumi.runtime
|
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
10
|
+
from ... import _utilities
|
|
11
|
+
from . import outputs
|
|
12
|
+
|
|
13
|
+
__all__ = [
|
|
14
|
+
'GetServiceResult',
|
|
15
|
+
'AwaitableGetServiceResult',
|
|
16
|
+
'get_service',
|
|
17
|
+
'get_service_output',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
@pulumi.output_type
|
|
21
|
+
class GetServiceResult:
|
|
22
|
+
"""
|
|
23
|
+
Service resource. Must be created in the same location as its parent mobile network.
|
|
24
|
+
"""
|
|
25
|
+
def __init__(__self__, id=None, location=None, name=None, pcc_rules=None, provisioning_state=None, service_precedence=None, service_qos_policy=None, system_data=None, tags=None, type=None):
|
|
26
|
+
if id and not isinstance(id, str):
|
|
27
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
28
|
+
pulumi.set(__self__, "id", id)
|
|
29
|
+
if location and not isinstance(location, str):
|
|
30
|
+
raise TypeError("Expected argument 'location' to be a str")
|
|
31
|
+
pulumi.set(__self__, "location", location)
|
|
32
|
+
if name and not isinstance(name, str):
|
|
33
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
34
|
+
pulumi.set(__self__, "name", name)
|
|
35
|
+
if pcc_rules and not isinstance(pcc_rules, list):
|
|
36
|
+
raise TypeError("Expected argument 'pcc_rules' to be a list")
|
|
37
|
+
pulumi.set(__self__, "pcc_rules", pcc_rules)
|
|
38
|
+
if provisioning_state and not isinstance(provisioning_state, str):
|
|
39
|
+
raise TypeError("Expected argument 'provisioning_state' to be a str")
|
|
40
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
41
|
+
if service_precedence and not isinstance(service_precedence, int):
|
|
42
|
+
raise TypeError("Expected argument 'service_precedence' to be a int")
|
|
43
|
+
pulumi.set(__self__, "service_precedence", service_precedence)
|
|
44
|
+
if service_qos_policy and not isinstance(service_qos_policy, dict):
|
|
45
|
+
raise TypeError("Expected argument 'service_qos_policy' to be a dict")
|
|
46
|
+
pulumi.set(__self__, "service_qos_policy", service_qos_policy)
|
|
47
|
+
if system_data and not isinstance(system_data, dict):
|
|
48
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
49
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
50
|
+
if tags and not isinstance(tags, dict):
|
|
51
|
+
raise TypeError("Expected argument 'tags' to be a dict")
|
|
52
|
+
pulumi.set(__self__, "tags", tags)
|
|
53
|
+
if type and not isinstance(type, str):
|
|
54
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
55
|
+
pulumi.set(__self__, "type", type)
|
|
56
|
+
|
|
57
|
+
@property
|
|
58
|
+
@pulumi.getter
|
|
59
|
+
def id(self) -> str:
|
|
60
|
+
"""
|
|
61
|
+
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
|
|
62
|
+
"""
|
|
63
|
+
return pulumi.get(self, "id")
|
|
64
|
+
|
|
65
|
+
@property
|
|
66
|
+
@pulumi.getter
|
|
67
|
+
def location(self) -> str:
|
|
68
|
+
"""
|
|
69
|
+
The geo-location where the resource lives
|
|
70
|
+
"""
|
|
71
|
+
return pulumi.get(self, "location")
|
|
72
|
+
|
|
73
|
+
@property
|
|
74
|
+
@pulumi.getter
|
|
75
|
+
def name(self) -> str:
|
|
76
|
+
"""
|
|
77
|
+
The name of the resource
|
|
78
|
+
"""
|
|
79
|
+
return pulumi.get(self, "name")
|
|
80
|
+
|
|
81
|
+
@property
|
|
82
|
+
@pulumi.getter(name="pccRules")
|
|
83
|
+
def pcc_rules(self) -> Sequence['outputs.PccRuleConfigurationResponse']:
|
|
84
|
+
"""
|
|
85
|
+
The set of data flow policy rules that make up this service.
|
|
86
|
+
"""
|
|
87
|
+
return pulumi.get(self, "pcc_rules")
|
|
88
|
+
|
|
89
|
+
@property
|
|
90
|
+
@pulumi.getter(name="provisioningState")
|
|
91
|
+
def provisioning_state(self) -> str:
|
|
92
|
+
"""
|
|
93
|
+
The provisioning state of the service resource.
|
|
94
|
+
"""
|
|
95
|
+
return pulumi.get(self, "provisioning_state")
|
|
96
|
+
|
|
97
|
+
@property
|
|
98
|
+
@pulumi.getter(name="servicePrecedence")
|
|
99
|
+
def service_precedence(self) -> int:
|
|
100
|
+
"""
|
|
101
|
+
A precedence value that is used to decide between services when identifying the QoS values to use for a particular SIM. A lower value means a higher priority. This value should be unique among all services configured in the mobile network.
|
|
102
|
+
"""
|
|
103
|
+
return pulumi.get(self, "service_precedence")
|
|
104
|
+
|
|
105
|
+
@property
|
|
106
|
+
@pulumi.getter(name="serviceQosPolicy")
|
|
107
|
+
def service_qos_policy(self) -> Optional['outputs.QosPolicyResponse']:
|
|
108
|
+
"""
|
|
109
|
+
The QoS policy to use for packets matching this service. This can be overridden for particular flows using the ruleQosPolicy field in a PccRuleConfiguration. If this field is null then the UE's SIM policy will define the QoS settings.
|
|
110
|
+
"""
|
|
111
|
+
return pulumi.get(self, "service_qos_policy")
|
|
112
|
+
|
|
113
|
+
@property
|
|
114
|
+
@pulumi.getter(name="systemData")
|
|
115
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
116
|
+
"""
|
|
117
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
118
|
+
"""
|
|
119
|
+
return pulumi.get(self, "system_data")
|
|
120
|
+
|
|
121
|
+
@property
|
|
122
|
+
@pulumi.getter
|
|
123
|
+
def tags(self) -> Optional[Mapping[str, str]]:
|
|
124
|
+
"""
|
|
125
|
+
Resource tags.
|
|
126
|
+
"""
|
|
127
|
+
return pulumi.get(self, "tags")
|
|
128
|
+
|
|
129
|
+
@property
|
|
130
|
+
@pulumi.getter
|
|
131
|
+
def type(self) -> str:
|
|
132
|
+
"""
|
|
133
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
134
|
+
"""
|
|
135
|
+
return pulumi.get(self, "type")
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
class AwaitableGetServiceResult(GetServiceResult):
|
|
139
|
+
# pylint: disable=using-constant-test
|
|
140
|
+
def __await__(self):
|
|
141
|
+
if False:
|
|
142
|
+
yield self
|
|
143
|
+
return GetServiceResult(
|
|
144
|
+
id=self.id,
|
|
145
|
+
location=self.location,
|
|
146
|
+
name=self.name,
|
|
147
|
+
pcc_rules=self.pcc_rules,
|
|
148
|
+
provisioning_state=self.provisioning_state,
|
|
149
|
+
service_precedence=self.service_precedence,
|
|
150
|
+
service_qos_policy=self.service_qos_policy,
|
|
151
|
+
system_data=self.system_data,
|
|
152
|
+
tags=self.tags,
|
|
153
|
+
type=self.type)
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
def get_service(mobile_network_name: Optional[str] = None,
|
|
157
|
+
resource_group_name: Optional[str] = None,
|
|
158
|
+
service_name: Optional[str] = None,
|
|
159
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetServiceResult:
|
|
160
|
+
"""
|
|
161
|
+
Gets information about the specified service.
|
|
162
|
+
|
|
163
|
+
|
|
164
|
+
:param str mobile_network_name: The name of the mobile network.
|
|
165
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
166
|
+
:param str service_name: The name of the service. You must not use any of the following reserved strings - `default`, `requested` or `service`
|
|
167
|
+
"""
|
|
168
|
+
__args__ = dict()
|
|
169
|
+
__args__['mobileNetworkName'] = mobile_network_name
|
|
170
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
171
|
+
__args__['serviceName'] = service_name
|
|
172
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
173
|
+
__ret__ = pulumi.runtime.invoke('azure-native:mobilenetwork/v20240401:getService', __args__, opts=opts, typ=GetServiceResult).value
|
|
174
|
+
|
|
175
|
+
return AwaitableGetServiceResult(
|
|
176
|
+
id=pulumi.get(__ret__, 'id'),
|
|
177
|
+
location=pulumi.get(__ret__, 'location'),
|
|
178
|
+
name=pulumi.get(__ret__, 'name'),
|
|
179
|
+
pcc_rules=pulumi.get(__ret__, 'pcc_rules'),
|
|
180
|
+
provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
|
|
181
|
+
service_precedence=pulumi.get(__ret__, 'service_precedence'),
|
|
182
|
+
service_qos_policy=pulumi.get(__ret__, 'service_qos_policy'),
|
|
183
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
184
|
+
tags=pulumi.get(__ret__, 'tags'),
|
|
185
|
+
type=pulumi.get(__ret__, 'type'))
|
|
186
|
+
|
|
187
|
+
|
|
188
|
+
@_utilities.lift_output_func(get_service)
|
|
189
|
+
def get_service_output(mobile_network_name: Optional[pulumi.Input[str]] = None,
|
|
190
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
191
|
+
service_name: Optional[pulumi.Input[str]] = None,
|
|
192
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetServiceResult]:
|
|
193
|
+
"""
|
|
194
|
+
Gets information about the specified service.
|
|
195
|
+
|
|
196
|
+
|
|
197
|
+
:param str mobile_network_name: The name of the mobile network.
|
|
198
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
199
|
+
:param str service_name: The name of the service. You must not use any of the following reserved strings - `default`, `requested` or `service`
|
|
200
|
+
"""
|
|
201
|
+
...
|
|
@@ -0,0 +1,253 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import pulumi
|
|
8
|
+
import pulumi.runtime
|
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
10
|
+
from ... import _utilities
|
|
11
|
+
from . import outputs
|
|
12
|
+
|
|
13
|
+
__all__ = [
|
|
14
|
+
'GetSimResult',
|
|
15
|
+
'AwaitableGetSimResult',
|
|
16
|
+
'get_sim',
|
|
17
|
+
'get_sim_output',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
@pulumi.output_type
|
|
21
|
+
class GetSimResult:
|
|
22
|
+
"""
|
|
23
|
+
SIM resource.
|
|
24
|
+
"""
|
|
25
|
+
def __init__(__self__, device_type=None, id=None, integrated_circuit_card_identifier=None, international_mobile_subscriber_identity=None, name=None, provisioning_state=None, sim_policy=None, sim_state=None, site_provisioning_state=None, static_ip_configuration=None, system_data=None, type=None, vendor_key_fingerprint=None, vendor_name=None):
|
|
26
|
+
if device_type and not isinstance(device_type, str):
|
|
27
|
+
raise TypeError("Expected argument 'device_type' to be a str")
|
|
28
|
+
pulumi.set(__self__, "device_type", device_type)
|
|
29
|
+
if id and not isinstance(id, str):
|
|
30
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
31
|
+
pulumi.set(__self__, "id", id)
|
|
32
|
+
if integrated_circuit_card_identifier and not isinstance(integrated_circuit_card_identifier, str):
|
|
33
|
+
raise TypeError("Expected argument 'integrated_circuit_card_identifier' to be a str")
|
|
34
|
+
pulumi.set(__self__, "integrated_circuit_card_identifier", integrated_circuit_card_identifier)
|
|
35
|
+
if international_mobile_subscriber_identity and not isinstance(international_mobile_subscriber_identity, str):
|
|
36
|
+
raise TypeError("Expected argument 'international_mobile_subscriber_identity' to be a str")
|
|
37
|
+
pulumi.set(__self__, "international_mobile_subscriber_identity", international_mobile_subscriber_identity)
|
|
38
|
+
if name and not isinstance(name, str):
|
|
39
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
40
|
+
pulumi.set(__self__, "name", name)
|
|
41
|
+
if provisioning_state and not isinstance(provisioning_state, str):
|
|
42
|
+
raise TypeError("Expected argument 'provisioning_state' to be a str")
|
|
43
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
44
|
+
if sim_policy and not isinstance(sim_policy, dict):
|
|
45
|
+
raise TypeError("Expected argument 'sim_policy' to be a dict")
|
|
46
|
+
pulumi.set(__self__, "sim_policy", sim_policy)
|
|
47
|
+
if sim_state and not isinstance(sim_state, str):
|
|
48
|
+
raise TypeError("Expected argument 'sim_state' to be a str")
|
|
49
|
+
pulumi.set(__self__, "sim_state", sim_state)
|
|
50
|
+
if site_provisioning_state and not isinstance(site_provisioning_state, dict):
|
|
51
|
+
raise TypeError("Expected argument 'site_provisioning_state' to be a dict")
|
|
52
|
+
pulumi.set(__self__, "site_provisioning_state", site_provisioning_state)
|
|
53
|
+
if static_ip_configuration and not isinstance(static_ip_configuration, list):
|
|
54
|
+
raise TypeError("Expected argument 'static_ip_configuration' to be a list")
|
|
55
|
+
pulumi.set(__self__, "static_ip_configuration", static_ip_configuration)
|
|
56
|
+
if system_data and not isinstance(system_data, dict):
|
|
57
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
58
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
59
|
+
if type and not isinstance(type, str):
|
|
60
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
61
|
+
pulumi.set(__self__, "type", type)
|
|
62
|
+
if vendor_key_fingerprint and not isinstance(vendor_key_fingerprint, str):
|
|
63
|
+
raise TypeError("Expected argument 'vendor_key_fingerprint' to be a str")
|
|
64
|
+
pulumi.set(__self__, "vendor_key_fingerprint", vendor_key_fingerprint)
|
|
65
|
+
if vendor_name and not isinstance(vendor_name, str):
|
|
66
|
+
raise TypeError("Expected argument 'vendor_name' to be a str")
|
|
67
|
+
pulumi.set(__self__, "vendor_name", vendor_name)
|
|
68
|
+
|
|
69
|
+
@property
|
|
70
|
+
@pulumi.getter(name="deviceType")
|
|
71
|
+
def device_type(self) -> Optional[str]:
|
|
72
|
+
"""
|
|
73
|
+
An optional free-form text field that can be used to record the device type this SIM is associated with, for example 'Video camera'. The Azure portal allows SIMs to be grouped and filtered based on this value.
|
|
74
|
+
"""
|
|
75
|
+
return pulumi.get(self, "device_type")
|
|
76
|
+
|
|
77
|
+
@property
|
|
78
|
+
@pulumi.getter
|
|
79
|
+
def id(self) -> str:
|
|
80
|
+
"""
|
|
81
|
+
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
|
|
82
|
+
"""
|
|
83
|
+
return pulumi.get(self, "id")
|
|
84
|
+
|
|
85
|
+
@property
|
|
86
|
+
@pulumi.getter(name="integratedCircuitCardIdentifier")
|
|
87
|
+
def integrated_circuit_card_identifier(self) -> Optional[str]:
|
|
88
|
+
"""
|
|
89
|
+
The integrated circuit card ID (ICCID) for the SIM.
|
|
90
|
+
"""
|
|
91
|
+
return pulumi.get(self, "integrated_circuit_card_identifier")
|
|
92
|
+
|
|
93
|
+
@property
|
|
94
|
+
@pulumi.getter(name="internationalMobileSubscriberIdentity")
|
|
95
|
+
def international_mobile_subscriber_identity(self) -> str:
|
|
96
|
+
"""
|
|
97
|
+
The international mobile subscriber identity (IMSI) for the SIM.
|
|
98
|
+
"""
|
|
99
|
+
return pulumi.get(self, "international_mobile_subscriber_identity")
|
|
100
|
+
|
|
101
|
+
@property
|
|
102
|
+
@pulumi.getter
|
|
103
|
+
def name(self) -> str:
|
|
104
|
+
"""
|
|
105
|
+
The name of the resource
|
|
106
|
+
"""
|
|
107
|
+
return pulumi.get(self, "name")
|
|
108
|
+
|
|
109
|
+
@property
|
|
110
|
+
@pulumi.getter(name="provisioningState")
|
|
111
|
+
def provisioning_state(self) -> str:
|
|
112
|
+
"""
|
|
113
|
+
The provisioning state of the SIM resource.
|
|
114
|
+
"""
|
|
115
|
+
return pulumi.get(self, "provisioning_state")
|
|
116
|
+
|
|
117
|
+
@property
|
|
118
|
+
@pulumi.getter(name="simPolicy")
|
|
119
|
+
def sim_policy(self) -> Optional['outputs.SimPolicyResourceIdResponse']:
|
|
120
|
+
"""
|
|
121
|
+
The SIM policy used by this SIM. The SIM policy must be in the same location as the SIM.
|
|
122
|
+
"""
|
|
123
|
+
return pulumi.get(self, "sim_policy")
|
|
124
|
+
|
|
125
|
+
@property
|
|
126
|
+
@pulumi.getter(name="simState")
|
|
127
|
+
def sim_state(self) -> str:
|
|
128
|
+
"""
|
|
129
|
+
The state of the SIM resource.
|
|
130
|
+
"""
|
|
131
|
+
return pulumi.get(self, "sim_state")
|
|
132
|
+
|
|
133
|
+
@property
|
|
134
|
+
@pulumi.getter(name="siteProvisioningState")
|
|
135
|
+
def site_provisioning_state(self) -> Mapping[str, str]:
|
|
136
|
+
"""
|
|
137
|
+
A dictionary of sites to the provisioning state of this SIM on that site.
|
|
138
|
+
"""
|
|
139
|
+
return pulumi.get(self, "site_provisioning_state")
|
|
140
|
+
|
|
141
|
+
@property
|
|
142
|
+
@pulumi.getter(name="staticIpConfiguration")
|
|
143
|
+
def static_ip_configuration(self) -> Optional[Sequence['outputs.SimStaticIpPropertiesResponse']]:
|
|
144
|
+
"""
|
|
145
|
+
A list of static IP addresses assigned to this SIM. Each address is assigned at a defined network scope, made up of {attached data network, slice}.
|
|
146
|
+
"""
|
|
147
|
+
return pulumi.get(self, "static_ip_configuration")
|
|
148
|
+
|
|
149
|
+
@property
|
|
150
|
+
@pulumi.getter(name="systemData")
|
|
151
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
152
|
+
"""
|
|
153
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
154
|
+
"""
|
|
155
|
+
return pulumi.get(self, "system_data")
|
|
156
|
+
|
|
157
|
+
@property
|
|
158
|
+
@pulumi.getter
|
|
159
|
+
def type(self) -> str:
|
|
160
|
+
"""
|
|
161
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
162
|
+
"""
|
|
163
|
+
return pulumi.get(self, "type")
|
|
164
|
+
|
|
165
|
+
@property
|
|
166
|
+
@pulumi.getter(name="vendorKeyFingerprint")
|
|
167
|
+
def vendor_key_fingerprint(self) -> str:
|
|
168
|
+
"""
|
|
169
|
+
The public key fingerprint of the SIM vendor who provided this SIM, if any.
|
|
170
|
+
"""
|
|
171
|
+
return pulumi.get(self, "vendor_key_fingerprint")
|
|
172
|
+
|
|
173
|
+
@property
|
|
174
|
+
@pulumi.getter(name="vendorName")
|
|
175
|
+
def vendor_name(self) -> str:
|
|
176
|
+
"""
|
|
177
|
+
The name of the SIM vendor who provided this SIM, if any.
|
|
178
|
+
"""
|
|
179
|
+
return pulumi.get(self, "vendor_name")
|
|
180
|
+
|
|
181
|
+
|
|
182
|
+
class AwaitableGetSimResult(GetSimResult):
|
|
183
|
+
# pylint: disable=using-constant-test
|
|
184
|
+
def __await__(self):
|
|
185
|
+
if False:
|
|
186
|
+
yield self
|
|
187
|
+
return GetSimResult(
|
|
188
|
+
device_type=self.device_type,
|
|
189
|
+
id=self.id,
|
|
190
|
+
integrated_circuit_card_identifier=self.integrated_circuit_card_identifier,
|
|
191
|
+
international_mobile_subscriber_identity=self.international_mobile_subscriber_identity,
|
|
192
|
+
name=self.name,
|
|
193
|
+
provisioning_state=self.provisioning_state,
|
|
194
|
+
sim_policy=self.sim_policy,
|
|
195
|
+
sim_state=self.sim_state,
|
|
196
|
+
site_provisioning_state=self.site_provisioning_state,
|
|
197
|
+
static_ip_configuration=self.static_ip_configuration,
|
|
198
|
+
system_data=self.system_data,
|
|
199
|
+
type=self.type,
|
|
200
|
+
vendor_key_fingerprint=self.vendor_key_fingerprint,
|
|
201
|
+
vendor_name=self.vendor_name)
|
|
202
|
+
|
|
203
|
+
|
|
204
|
+
def get_sim(resource_group_name: Optional[str] = None,
|
|
205
|
+
sim_group_name: Optional[str] = None,
|
|
206
|
+
sim_name: Optional[str] = None,
|
|
207
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSimResult:
|
|
208
|
+
"""
|
|
209
|
+
Gets information about the specified SIM.
|
|
210
|
+
|
|
211
|
+
|
|
212
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
213
|
+
:param str sim_group_name: The name of the SIM Group.
|
|
214
|
+
:param str sim_name: The name of the SIM.
|
|
215
|
+
"""
|
|
216
|
+
__args__ = dict()
|
|
217
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
218
|
+
__args__['simGroupName'] = sim_group_name
|
|
219
|
+
__args__['simName'] = sim_name
|
|
220
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
221
|
+
__ret__ = pulumi.runtime.invoke('azure-native:mobilenetwork/v20240401:getSim', __args__, opts=opts, typ=GetSimResult).value
|
|
222
|
+
|
|
223
|
+
return AwaitableGetSimResult(
|
|
224
|
+
device_type=pulumi.get(__ret__, 'device_type'),
|
|
225
|
+
id=pulumi.get(__ret__, 'id'),
|
|
226
|
+
integrated_circuit_card_identifier=pulumi.get(__ret__, 'integrated_circuit_card_identifier'),
|
|
227
|
+
international_mobile_subscriber_identity=pulumi.get(__ret__, 'international_mobile_subscriber_identity'),
|
|
228
|
+
name=pulumi.get(__ret__, 'name'),
|
|
229
|
+
provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
|
|
230
|
+
sim_policy=pulumi.get(__ret__, 'sim_policy'),
|
|
231
|
+
sim_state=pulumi.get(__ret__, 'sim_state'),
|
|
232
|
+
site_provisioning_state=pulumi.get(__ret__, 'site_provisioning_state'),
|
|
233
|
+
static_ip_configuration=pulumi.get(__ret__, 'static_ip_configuration'),
|
|
234
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
235
|
+
type=pulumi.get(__ret__, 'type'),
|
|
236
|
+
vendor_key_fingerprint=pulumi.get(__ret__, 'vendor_key_fingerprint'),
|
|
237
|
+
vendor_name=pulumi.get(__ret__, 'vendor_name'))
|
|
238
|
+
|
|
239
|
+
|
|
240
|
+
@_utilities.lift_output_func(get_sim)
|
|
241
|
+
def get_sim_output(resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
242
|
+
sim_group_name: Optional[pulumi.Input[str]] = None,
|
|
243
|
+
sim_name: Optional[pulumi.Input[str]] = None,
|
|
244
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetSimResult]:
|
|
245
|
+
"""
|
|
246
|
+
Gets information about the specified SIM.
|
|
247
|
+
|
|
248
|
+
|
|
249
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
250
|
+
:param str sim_group_name: The name of the SIM Group.
|
|
251
|
+
:param str sim_name: The name of the SIM.
|
|
252
|
+
"""
|
|
253
|
+
...
|
|
@@ -0,0 +1,196 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import pulumi
|
|
8
|
+
import pulumi.runtime
|
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
10
|
+
from ... import _utilities
|
|
11
|
+
from . import outputs
|
|
12
|
+
|
|
13
|
+
__all__ = [
|
|
14
|
+
'GetSimGroupResult',
|
|
15
|
+
'AwaitableGetSimGroupResult',
|
|
16
|
+
'get_sim_group',
|
|
17
|
+
'get_sim_group_output',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
@pulumi.output_type
|
|
21
|
+
class GetSimGroupResult:
|
|
22
|
+
"""
|
|
23
|
+
SIM group resource.
|
|
24
|
+
"""
|
|
25
|
+
def __init__(__self__, encryption_key=None, id=None, identity=None, location=None, mobile_network=None, name=None, provisioning_state=None, system_data=None, tags=None, type=None):
|
|
26
|
+
if encryption_key and not isinstance(encryption_key, dict):
|
|
27
|
+
raise TypeError("Expected argument 'encryption_key' to be a dict")
|
|
28
|
+
pulumi.set(__self__, "encryption_key", encryption_key)
|
|
29
|
+
if id and not isinstance(id, str):
|
|
30
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
31
|
+
pulumi.set(__self__, "id", id)
|
|
32
|
+
if identity and not isinstance(identity, dict):
|
|
33
|
+
raise TypeError("Expected argument 'identity' to be a dict")
|
|
34
|
+
pulumi.set(__self__, "identity", identity)
|
|
35
|
+
if location and not isinstance(location, str):
|
|
36
|
+
raise TypeError("Expected argument 'location' to be a str")
|
|
37
|
+
pulumi.set(__self__, "location", location)
|
|
38
|
+
if mobile_network and not isinstance(mobile_network, dict):
|
|
39
|
+
raise TypeError("Expected argument 'mobile_network' to be a dict")
|
|
40
|
+
pulumi.set(__self__, "mobile_network", mobile_network)
|
|
41
|
+
if name and not isinstance(name, str):
|
|
42
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
43
|
+
pulumi.set(__self__, "name", name)
|
|
44
|
+
if provisioning_state and not isinstance(provisioning_state, str):
|
|
45
|
+
raise TypeError("Expected argument 'provisioning_state' to be a str")
|
|
46
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
47
|
+
if system_data and not isinstance(system_data, dict):
|
|
48
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
49
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
50
|
+
if tags and not isinstance(tags, dict):
|
|
51
|
+
raise TypeError("Expected argument 'tags' to be a dict")
|
|
52
|
+
pulumi.set(__self__, "tags", tags)
|
|
53
|
+
if type and not isinstance(type, str):
|
|
54
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
55
|
+
pulumi.set(__self__, "type", type)
|
|
56
|
+
|
|
57
|
+
@property
|
|
58
|
+
@pulumi.getter(name="encryptionKey")
|
|
59
|
+
def encryption_key(self) -> Optional['outputs.KeyVaultKeyResponse']:
|
|
60
|
+
"""
|
|
61
|
+
A key to encrypt the SIM data that belongs to this SIM group.
|
|
62
|
+
"""
|
|
63
|
+
return pulumi.get(self, "encryption_key")
|
|
64
|
+
|
|
65
|
+
@property
|
|
66
|
+
@pulumi.getter
|
|
67
|
+
def id(self) -> str:
|
|
68
|
+
"""
|
|
69
|
+
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
|
|
70
|
+
"""
|
|
71
|
+
return pulumi.get(self, "id")
|
|
72
|
+
|
|
73
|
+
@property
|
|
74
|
+
@pulumi.getter
|
|
75
|
+
def identity(self) -> Optional['outputs.ManagedServiceIdentityResponse']:
|
|
76
|
+
"""
|
|
77
|
+
The identity used to retrieve the encryption key from Azure key vault.
|
|
78
|
+
"""
|
|
79
|
+
return pulumi.get(self, "identity")
|
|
80
|
+
|
|
81
|
+
@property
|
|
82
|
+
@pulumi.getter
|
|
83
|
+
def location(self) -> str:
|
|
84
|
+
"""
|
|
85
|
+
The geo-location where the resource lives
|
|
86
|
+
"""
|
|
87
|
+
return pulumi.get(self, "location")
|
|
88
|
+
|
|
89
|
+
@property
|
|
90
|
+
@pulumi.getter(name="mobileNetwork")
|
|
91
|
+
def mobile_network(self) -> Optional['outputs.MobileNetworkResourceIdResponse']:
|
|
92
|
+
"""
|
|
93
|
+
Mobile network that this SIM group belongs to. The mobile network must be in the same location as the SIM group.
|
|
94
|
+
"""
|
|
95
|
+
return pulumi.get(self, "mobile_network")
|
|
96
|
+
|
|
97
|
+
@property
|
|
98
|
+
@pulumi.getter
|
|
99
|
+
def name(self) -> str:
|
|
100
|
+
"""
|
|
101
|
+
The name of the resource
|
|
102
|
+
"""
|
|
103
|
+
return pulumi.get(self, "name")
|
|
104
|
+
|
|
105
|
+
@property
|
|
106
|
+
@pulumi.getter(name="provisioningState")
|
|
107
|
+
def provisioning_state(self) -> str:
|
|
108
|
+
"""
|
|
109
|
+
The provisioning state of the SIM group resource.
|
|
110
|
+
"""
|
|
111
|
+
return pulumi.get(self, "provisioning_state")
|
|
112
|
+
|
|
113
|
+
@property
|
|
114
|
+
@pulumi.getter(name="systemData")
|
|
115
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
116
|
+
"""
|
|
117
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
118
|
+
"""
|
|
119
|
+
return pulumi.get(self, "system_data")
|
|
120
|
+
|
|
121
|
+
@property
|
|
122
|
+
@pulumi.getter
|
|
123
|
+
def tags(self) -> Optional[Mapping[str, str]]:
|
|
124
|
+
"""
|
|
125
|
+
Resource tags.
|
|
126
|
+
"""
|
|
127
|
+
return pulumi.get(self, "tags")
|
|
128
|
+
|
|
129
|
+
@property
|
|
130
|
+
@pulumi.getter
|
|
131
|
+
def type(self) -> str:
|
|
132
|
+
"""
|
|
133
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
134
|
+
"""
|
|
135
|
+
return pulumi.get(self, "type")
|
|
136
|
+
|
|
137
|
+
|
|
138
|
+
class AwaitableGetSimGroupResult(GetSimGroupResult):
|
|
139
|
+
# pylint: disable=using-constant-test
|
|
140
|
+
def __await__(self):
|
|
141
|
+
if False:
|
|
142
|
+
yield self
|
|
143
|
+
return GetSimGroupResult(
|
|
144
|
+
encryption_key=self.encryption_key,
|
|
145
|
+
id=self.id,
|
|
146
|
+
identity=self.identity,
|
|
147
|
+
location=self.location,
|
|
148
|
+
mobile_network=self.mobile_network,
|
|
149
|
+
name=self.name,
|
|
150
|
+
provisioning_state=self.provisioning_state,
|
|
151
|
+
system_data=self.system_data,
|
|
152
|
+
tags=self.tags,
|
|
153
|
+
type=self.type)
|
|
154
|
+
|
|
155
|
+
|
|
156
|
+
def get_sim_group(resource_group_name: Optional[str] = None,
|
|
157
|
+
sim_group_name: Optional[str] = None,
|
|
158
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSimGroupResult:
|
|
159
|
+
"""
|
|
160
|
+
Gets information about the specified SIM group.
|
|
161
|
+
|
|
162
|
+
|
|
163
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
164
|
+
:param str sim_group_name: The name of the SIM Group.
|
|
165
|
+
"""
|
|
166
|
+
__args__ = dict()
|
|
167
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
168
|
+
__args__['simGroupName'] = sim_group_name
|
|
169
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
170
|
+
__ret__ = pulumi.runtime.invoke('azure-native:mobilenetwork/v20240401:getSimGroup', __args__, opts=opts, typ=GetSimGroupResult).value
|
|
171
|
+
|
|
172
|
+
return AwaitableGetSimGroupResult(
|
|
173
|
+
encryption_key=pulumi.get(__ret__, 'encryption_key'),
|
|
174
|
+
id=pulumi.get(__ret__, 'id'),
|
|
175
|
+
identity=pulumi.get(__ret__, 'identity'),
|
|
176
|
+
location=pulumi.get(__ret__, 'location'),
|
|
177
|
+
mobile_network=pulumi.get(__ret__, 'mobile_network'),
|
|
178
|
+
name=pulumi.get(__ret__, 'name'),
|
|
179
|
+
provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
|
|
180
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
181
|
+
tags=pulumi.get(__ret__, 'tags'),
|
|
182
|
+
type=pulumi.get(__ret__, 'type'))
|
|
183
|
+
|
|
184
|
+
|
|
185
|
+
@_utilities.lift_output_func(get_sim_group)
|
|
186
|
+
def get_sim_group_output(resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
187
|
+
sim_group_name: Optional[pulumi.Input[str]] = None,
|
|
188
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetSimGroupResult]:
|
|
189
|
+
"""
|
|
190
|
+
Gets information about the specified SIM group.
|
|
191
|
+
|
|
192
|
+
|
|
193
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
194
|
+
:param str sim_group_name: The name of the SIM Group.
|
|
195
|
+
"""
|
|
196
|
+
...
|