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,240 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import pulumi
|
|
8
|
+
import pulumi.runtime
|
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
10
|
+
from ... import _utilities
|
|
11
|
+
from . import outputs
|
|
12
|
+
|
|
13
|
+
__all__ = [
|
|
14
|
+
'GetSimPolicyResult',
|
|
15
|
+
'AwaitableGetSimPolicyResult',
|
|
16
|
+
'get_sim_policy',
|
|
17
|
+
'get_sim_policy_output',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
@pulumi.output_type
|
|
21
|
+
class GetSimPolicyResult:
|
|
22
|
+
"""
|
|
23
|
+
SIM policy resource.
|
|
24
|
+
"""
|
|
25
|
+
def __init__(__self__, default_slice=None, id=None, location=None, name=None, provisioning_state=None, registration_timer=None, rfsp_index=None, site_provisioning_state=None, slice_configurations=None, system_data=None, tags=None, type=None, ue_ambr=None):
|
|
26
|
+
if default_slice and not isinstance(default_slice, dict):
|
|
27
|
+
raise TypeError("Expected argument 'default_slice' to be a dict")
|
|
28
|
+
pulumi.set(__self__, "default_slice", default_slice)
|
|
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 location and not isinstance(location, str):
|
|
33
|
+
raise TypeError("Expected argument 'location' to be a str")
|
|
34
|
+
pulumi.set(__self__, "location", location)
|
|
35
|
+
if name and not isinstance(name, str):
|
|
36
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
37
|
+
pulumi.set(__self__, "name", name)
|
|
38
|
+
if provisioning_state and not isinstance(provisioning_state, str):
|
|
39
|
+
raise TypeError("Expected argument 'provisioning_state' to be a str")
|
|
40
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
41
|
+
if registration_timer and not isinstance(registration_timer, int):
|
|
42
|
+
raise TypeError("Expected argument 'registration_timer' to be a int")
|
|
43
|
+
pulumi.set(__self__, "registration_timer", registration_timer)
|
|
44
|
+
if rfsp_index and not isinstance(rfsp_index, int):
|
|
45
|
+
raise TypeError("Expected argument 'rfsp_index' to be a int")
|
|
46
|
+
pulumi.set(__self__, "rfsp_index", rfsp_index)
|
|
47
|
+
if site_provisioning_state and not isinstance(site_provisioning_state, dict):
|
|
48
|
+
raise TypeError("Expected argument 'site_provisioning_state' to be a dict")
|
|
49
|
+
pulumi.set(__self__, "site_provisioning_state", site_provisioning_state)
|
|
50
|
+
if slice_configurations and not isinstance(slice_configurations, list):
|
|
51
|
+
raise TypeError("Expected argument 'slice_configurations' to be a list")
|
|
52
|
+
pulumi.set(__self__, "slice_configurations", slice_configurations)
|
|
53
|
+
if system_data and not isinstance(system_data, dict):
|
|
54
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
55
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
56
|
+
if tags and not isinstance(tags, dict):
|
|
57
|
+
raise TypeError("Expected argument 'tags' to be a dict")
|
|
58
|
+
pulumi.set(__self__, "tags", tags)
|
|
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 ue_ambr and not isinstance(ue_ambr, dict):
|
|
63
|
+
raise TypeError("Expected argument 'ue_ambr' to be a dict")
|
|
64
|
+
pulumi.set(__self__, "ue_ambr", ue_ambr)
|
|
65
|
+
|
|
66
|
+
@property
|
|
67
|
+
@pulumi.getter(name="defaultSlice")
|
|
68
|
+
def default_slice(self) -> 'outputs.SliceResourceIdResponse':
|
|
69
|
+
"""
|
|
70
|
+
The default slice to use if the UE does not explicitly specify it. This slice must exist in the `sliceConfigurations` map. The slice must be in the same location as the SIM policy.
|
|
71
|
+
"""
|
|
72
|
+
return pulumi.get(self, "default_slice")
|
|
73
|
+
|
|
74
|
+
@property
|
|
75
|
+
@pulumi.getter
|
|
76
|
+
def id(self) -> str:
|
|
77
|
+
"""
|
|
78
|
+
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
|
|
79
|
+
"""
|
|
80
|
+
return pulumi.get(self, "id")
|
|
81
|
+
|
|
82
|
+
@property
|
|
83
|
+
@pulumi.getter
|
|
84
|
+
def location(self) -> str:
|
|
85
|
+
"""
|
|
86
|
+
The geo-location where the resource lives
|
|
87
|
+
"""
|
|
88
|
+
return pulumi.get(self, "location")
|
|
89
|
+
|
|
90
|
+
@property
|
|
91
|
+
@pulumi.getter
|
|
92
|
+
def name(self) -> str:
|
|
93
|
+
"""
|
|
94
|
+
The name of the resource
|
|
95
|
+
"""
|
|
96
|
+
return pulumi.get(self, "name")
|
|
97
|
+
|
|
98
|
+
@property
|
|
99
|
+
@pulumi.getter(name="provisioningState")
|
|
100
|
+
def provisioning_state(self) -> str:
|
|
101
|
+
"""
|
|
102
|
+
The provisioning state of the SIM policy resource.
|
|
103
|
+
"""
|
|
104
|
+
return pulumi.get(self, "provisioning_state")
|
|
105
|
+
|
|
106
|
+
@property
|
|
107
|
+
@pulumi.getter(name="registrationTimer")
|
|
108
|
+
def registration_timer(self) -> Optional[int]:
|
|
109
|
+
"""
|
|
110
|
+
UE periodic registration update timer (5G) or UE periodic tracking area update timer (4G), in seconds.
|
|
111
|
+
"""
|
|
112
|
+
return pulumi.get(self, "registration_timer")
|
|
113
|
+
|
|
114
|
+
@property
|
|
115
|
+
@pulumi.getter(name="rfspIndex")
|
|
116
|
+
def rfsp_index(self) -> Optional[int]:
|
|
117
|
+
"""
|
|
118
|
+
RAT/Frequency Selection Priority Index, defined in 3GPP TS 36.413. This is an optional setting and by default is unspecified.
|
|
119
|
+
"""
|
|
120
|
+
return pulumi.get(self, "rfsp_index")
|
|
121
|
+
|
|
122
|
+
@property
|
|
123
|
+
@pulumi.getter(name="siteProvisioningState")
|
|
124
|
+
def site_provisioning_state(self) -> Mapping[str, str]:
|
|
125
|
+
"""
|
|
126
|
+
A dictionary of sites to the provisioning state of this SIM policy on that site.
|
|
127
|
+
"""
|
|
128
|
+
return pulumi.get(self, "site_provisioning_state")
|
|
129
|
+
|
|
130
|
+
@property
|
|
131
|
+
@pulumi.getter(name="sliceConfigurations")
|
|
132
|
+
def slice_configurations(self) -> Sequence['outputs.SliceConfigurationResponse']:
|
|
133
|
+
"""
|
|
134
|
+
The allowed slices and the settings to use for them. The list must not contain duplicate items and must contain at least one item.
|
|
135
|
+
"""
|
|
136
|
+
return pulumi.get(self, "slice_configurations")
|
|
137
|
+
|
|
138
|
+
@property
|
|
139
|
+
@pulumi.getter(name="systemData")
|
|
140
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
141
|
+
"""
|
|
142
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
143
|
+
"""
|
|
144
|
+
return pulumi.get(self, "system_data")
|
|
145
|
+
|
|
146
|
+
@property
|
|
147
|
+
@pulumi.getter
|
|
148
|
+
def tags(self) -> Optional[Mapping[str, str]]:
|
|
149
|
+
"""
|
|
150
|
+
Resource tags.
|
|
151
|
+
"""
|
|
152
|
+
return pulumi.get(self, "tags")
|
|
153
|
+
|
|
154
|
+
@property
|
|
155
|
+
@pulumi.getter
|
|
156
|
+
def type(self) -> str:
|
|
157
|
+
"""
|
|
158
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
159
|
+
"""
|
|
160
|
+
return pulumi.get(self, "type")
|
|
161
|
+
|
|
162
|
+
@property
|
|
163
|
+
@pulumi.getter(name="ueAmbr")
|
|
164
|
+
def ue_ambr(self) -> 'outputs.AmbrResponse':
|
|
165
|
+
"""
|
|
166
|
+
Aggregate maximum bit rate across all non-GBR QoS flows of all PDU sessions of a given UE. See 3GPP TS23.501 section 5.7.2.6 for a full description of the UE-AMBR.
|
|
167
|
+
"""
|
|
168
|
+
return pulumi.get(self, "ue_ambr")
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
class AwaitableGetSimPolicyResult(GetSimPolicyResult):
|
|
172
|
+
# pylint: disable=using-constant-test
|
|
173
|
+
def __await__(self):
|
|
174
|
+
if False:
|
|
175
|
+
yield self
|
|
176
|
+
return GetSimPolicyResult(
|
|
177
|
+
default_slice=self.default_slice,
|
|
178
|
+
id=self.id,
|
|
179
|
+
location=self.location,
|
|
180
|
+
name=self.name,
|
|
181
|
+
provisioning_state=self.provisioning_state,
|
|
182
|
+
registration_timer=self.registration_timer,
|
|
183
|
+
rfsp_index=self.rfsp_index,
|
|
184
|
+
site_provisioning_state=self.site_provisioning_state,
|
|
185
|
+
slice_configurations=self.slice_configurations,
|
|
186
|
+
system_data=self.system_data,
|
|
187
|
+
tags=self.tags,
|
|
188
|
+
type=self.type,
|
|
189
|
+
ue_ambr=self.ue_ambr)
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
def get_sim_policy(mobile_network_name: Optional[str] = None,
|
|
193
|
+
resource_group_name: Optional[str] = None,
|
|
194
|
+
sim_policy_name: Optional[str] = None,
|
|
195
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSimPolicyResult:
|
|
196
|
+
"""
|
|
197
|
+
Gets information about the specified SIM policy.
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
:param str mobile_network_name: The name of the mobile network.
|
|
201
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
202
|
+
:param str sim_policy_name: The name of the SIM policy.
|
|
203
|
+
"""
|
|
204
|
+
__args__ = dict()
|
|
205
|
+
__args__['mobileNetworkName'] = mobile_network_name
|
|
206
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
207
|
+
__args__['simPolicyName'] = sim_policy_name
|
|
208
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
209
|
+
__ret__ = pulumi.runtime.invoke('azure-native:mobilenetwork/v20240401:getSimPolicy', __args__, opts=opts, typ=GetSimPolicyResult).value
|
|
210
|
+
|
|
211
|
+
return AwaitableGetSimPolicyResult(
|
|
212
|
+
default_slice=pulumi.get(__ret__, 'default_slice'),
|
|
213
|
+
id=pulumi.get(__ret__, 'id'),
|
|
214
|
+
location=pulumi.get(__ret__, 'location'),
|
|
215
|
+
name=pulumi.get(__ret__, 'name'),
|
|
216
|
+
provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
|
|
217
|
+
registration_timer=pulumi.get(__ret__, 'registration_timer'),
|
|
218
|
+
rfsp_index=pulumi.get(__ret__, 'rfsp_index'),
|
|
219
|
+
site_provisioning_state=pulumi.get(__ret__, 'site_provisioning_state'),
|
|
220
|
+
slice_configurations=pulumi.get(__ret__, 'slice_configurations'),
|
|
221
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
222
|
+
tags=pulumi.get(__ret__, 'tags'),
|
|
223
|
+
type=pulumi.get(__ret__, 'type'),
|
|
224
|
+
ue_ambr=pulumi.get(__ret__, 'ue_ambr'))
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
@_utilities.lift_output_func(get_sim_policy)
|
|
228
|
+
def get_sim_policy_output(mobile_network_name: Optional[pulumi.Input[str]] = None,
|
|
229
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
230
|
+
sim_policy_name: Optional[pulumi.Input[str]] = None,
|
|
231
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetSimPolicyResult]:
|
|
232
|
+
"""
|
|
233
|
+
Gets information about the specified SIM policy.
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
:param str mobile_network_name: The name of the mobile network.
|
|
237
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
238
|
+
:param str sim_policy_name: The name of the SIM policy.
|
|
239
|
+
"""
|
|
240
|
+
...
|
|
@@ -0,0 +1,175 @@
|
|
|
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
|
+
'GetSiteResult',
|
|
15
|
+
'AwaitableGetSiteResult',
|
|
16
|
+
'get_site',
|
|
17
|
+
'get_site_output',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
@pulumi.output_type
|
|
21
|
+
class GetSiteResult:
|
|
22
|
+
"""
|
|
23
|
+
Site resource. Must be created in the same location as its parent mobile network.
|
|
24
|
+
"""
|
|
25
|
+
def __init__(__self__, id=None, location=None, name=None, network_functions=None, provisioning_state=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 network_functions and not isinstance(network_functions, list):
|
|
36
|
+
raise TypeError("Expected argument 'network_functions' to be a list")
|
|
37
|
+
pulumi.set(__self__, "network_functions", network_functions)
|
|
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 system_data and not isinstance(system_data, dict):
|
|
42
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
43
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
44
|
+
if tags and not isinstance(tags, dict):
|
|
45
|
+
raise TypeError("Expected argument 'tags' to be a dict")
|
|
46
|
+
pulumi.set(__self__, "tags", tags)
|
|
47
|
+
if type and not isinstance(type, str):
|
|
48
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
49
|
+
pulumi.set(__self__, "type", type)
|
|
50
|
+
|
|
51
|
+
@property
|
|
52
|
+
@pulumi.getter
|
|
53
|
+
def id(self) -> str:
|
|
54
|
+
"""
|
|
55
|
+
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
|
|
56
|
+
"""
|
|
57
|
+
return pulumi.get(self, "id")
|
|
58
|
+
|
|
59
|
+
@property
|
|
60
|
+
@pulumi.getter
|
|
61
|
+
def location(self) -> str:
|
|
62
|
+
"""
|
|
63
|
+
The geo-location where the resource lives
|
|
64
|
+
"""
|
|
65
|
+
return pulumi.get(self, "location")
|
|
66
|
+
|
|
67
|
+
@property
|
|
68
|
+
@pulumi.getter
|
|
69
|
+
def name(self) -> str:
|
|
70
|
+
"""
|
|
71
|
+
The name of the resource
|
|
72
|
+
"""
|
|
73
|
+
return pulumi.get(self, "name")
|
|
74
|
+
|
|
75
|
+
@property
|
|
76
|
+
@pulumi.getter(name="networkFunctions")
|
|
77
|
+
def network_functions(self) -> Sequence['outputs.SubResourceResponse']:
|
|
78
|
+
"""
|
|
79
|
+
An array of IDs of the network functions deployed in the site. Deleting the site will delete any network functions that are deployed in the site.
|
|
80
|
+
"""
|
|
81
|
+
return pulumi.get(self, "network_functions")
|
|
82
|
+
|
|
83
|
+
@property
|
|
84
|
+
@pulumi.getter(name="provisioningState")
|
|
85
|
+
def provisioning_state(self) -> str:
|
|
86
|
+
"""
|
|
87
|
+
The provisioning state of the site resource.
|
|
88
|
+
"""
|
|
89
|
+
return pulumi.get(self, "provisioning_state")
|
|
90
|
+
|
|
91
|
+
@property
|
|
92
|
+
@pulumi.getter(name="systemData")
|
|
93
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
94
|
+
"""
|
|
95
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
96
|
+
"""
|
|
97
|
+
return pulumi.get(self, "system_data")
|
|
98
|
+
|
|
99
|
+
@property
|
|
100
|
+
@pulumi.getter
|
|
101
|
+
def tags(self) -> Optional[Mapping[str, str]]:
|
|
102
|
+
"""
|
|
103
|
+
Resource tags.
|
|
104
|
+
"""
|
|
105
|
+
return pulumi.get(self, "tags")
|
|
106
|
+
|
|
107
|
+
@property
|
|
108
|
+
@pulumi.getter
|
|
109
|
+
def type(self) -> str:
|
|
110
|
+
"""
|
|
111
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
112
|
+
"""
|
|
113
|
+
return pulumi.get(self, "type")
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
class AwaitableGetSiteResult(GetSiteResult):
|
|
117
|
+
# pylint: disable=using-constant-test
|
|
118
|
+
def __await__(self):
|
|
119
|
+
if False:
|
|
120
|
+
yield self
|
|
121
|
+
return GetSiteResult(
|
|
122
|
+
id=self.id,
|
|
123
|
+
location=self.location,
|
|
124
|
+
name=self.name,
|
|
125
|
+
network_functions=self.network_functions,
|
|
126
|
+
provisioning_state=self.provisioning_state,
|
|
127
|
+
system_data=self.system_data,
|
|
128
|
+
tags=self.tags,
|
|
129
|
+
type=self.type)
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
def get_site(mobile_network_name: Optional[str] = None,
|
|
133
|
+
resource_group_name: Optional[str] = None,
|
|
134
|
+
site_name: Optional[str] = None,
|
|
135
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSiteResult:
|
|
136
|
+
"""
|
|
137
|
+
Gets information about the specified mobile network site.
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
:param str mobile_network_name: The name of the mobile network.
|
|
141
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
142
|
+
:param str site_name: The name of the mobile network site.
|
|
143
|
+
"""
|
|
144
|
+
__args__ = dict()
|
|
145
|
+
__args__['mobileNetworkName'] = mobile_network_name
|
|
146
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
147
|
+
__args__['siteName'] = site_name
|
|
148
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
149
|
+
__ret__ = pulumi.runtime.invoke('azure-native:mobilenetwork/v20240401:getSite', __args__, opts=opts, typ=GetSiteResult).value
|
|
150
|
+
|
|
151
|
+
return AwaitableGetSiteResult(
|
|
152
|
+
id=pulumi.get(__ret__, 'id'),
|
|
153
|
+
location=pulumi.get(__ret__, 'location'),
|
|
154
|
+
name=pulumi.get(__ret__, 'name'),
|
|
155
|
+
network_functions=pulumi.get(__ret__, 'network_functions'),
|
|
156
|
+
provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
|
|
157
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
158
|
+
tags=pulumi.get(__ret__, 'tags'),
|
|
159
|
+
type=pulumi.get(__ret__, 'type'))
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
@_utilities.lift_output_func(get_site)
|
|
163
|
+
def get_site_output(mobile_network_name: Optional[pulumi.Input[str]] = None,
|
|
164
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
165
|
+
site_name: Optional[pulumi.Input[str]] = None,
|
|
166
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetSiteResult]:
|
|
167
|
+
"""
|
|
168
|
+
Gets information about the specified mobile network site.
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
:param str mobile_network_name: The name of the mobile network.
|
|
172
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
173
|
+
:param str site_name: The name of the mobile network site.
|
|
174
|
+
"""
|
|
175
|
+
...
|
|
@@ -0,0 +1,188 @@
|
|
|
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
|
+
'GetSliceResult',
|
|
15
|
+
'AwaitableGetSliceResult',
|
|
16
|
+
'get_slice',
|
|
17
|
+
'get_slice_output',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
@pulumi.output_type
|
|
21
|
+
class GetSliceResult:
|
|
22
|
+
"""
|
|
23
|
+
Network slice resource. Must be created in the same location as its parent mobile network.
|
|
24
|
+
"""
|
|
25
|
+
def __init__(__self__, description=None, id=None, location=None, name=None, provisioning_state=None, snssai=None, system_data=None, tags=None, type=None):
|
|
26
|
+
if description and not isinstance(description, str):
|
|
27
|
+
raise TypeError("Expected argument 'description' to be a str")
|
|
28
|
+
pulumi.set(__self__, "description", description)
|
|
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 location and not isinstance(location, str):
|
|
33
|
+
raise TypeError("Expected argument 'location' to be a str")
|
|
34
|
+
pulumi.set(__self__, "location", location)
|
|
35
|
+
if name and not isinstance(name, str):
|
|
36
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
37
|
+
pulumi.set(__self__, "name", name)
|
|
38
|
+
if provisioning_state and not isinstance(provisioning_state, str):
|
|
39
|
+
raise TypeError("Expected argument 'provisioning_state' to be a str")
|
|
40
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
41
|
+
if snssai and not isinstance(snssai, dict):
|
|
42
|
+
raise TypeError("Expected argument 'snssai' to be a dict")
|
|
43
|
+
pulumi.set(__self__, "snssai", snssai)
|
|
44
|
+
if system_data and not isinstance(system_data, dict):
|
|
45
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
46
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
47
|
+
if tags and not isinstance(tags, dict):
|
|
48
|
+
raise TypeError("Expected argument 'tags' to be a dict")
|
|
49
|
+
pulumi.set(__self__, "tags", tags)
|
|
50
|
+
if type and not isinstance(type, str):
|
|
51
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
52
|
+
pulumi.set(__self__, "type", type)
|
|
53
|
+
|
|
54
|
+
@property
|
|
55
|
+
@pulumi.getter
|
|
56
|
+
def description(self) -> Optional[str]:
|
|
57
|
+
"""
|
|
58
|
+
An optional description for this network slice.
|
|
59
|
+
"""
|
|
60
|
+
return pulumi.get(self, "description")
|
|
61
|
+
|
|
62
|
+
@property
|
|
63
|
+
@pulumi.getter
|
|
64
|
+
def id(self) -> str:
|
|
65
|
+
"""
|
|
66
|
+
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
|
|
67
|
+
"""
|
|
68
|
+
return pulumi.get(self, "id")
|
|
69
|
+
|
|
70
|
+
@property
|
|
71
|
+
@pulumi.getter
|
|
72
|
+
def location(self) -> str:
|
|
73
|
+
"""
|
|
74
|
+
The geo-location where the resource lives
|
|
75
|
+
"""
|
|
76
|
+
return pulumi.get(self, "location")
|
|
77
|
+
|
|
78
|
+
@property
|
|
79
|
+
@pulumi.getter
|
|
80
|
+
def name(self) -> str:
|
|
81
|
+
"""
|
|
82
|
+
The name of the resource
|
|
83
|
+
"""
|
|
84
|
+
return pulumi.get(self, "name")
|
|
85
|
+
|
|
86
|
+
@property
|
|
87
|
+
@pulumi.getter(name="provisioningState")
|
|
88
|
+
def provisioning_state(self) -> str:
|
|
89
|
+
"""
|
|
90
|
+
The provisioning state of the network slice resource.
|
|
91
|
+
"""
|
|
92
|
+
return pulumi.get(self, "provisioning_state")
|
|
93
|
+
|
|
94
|
+
@property
|
|
95
|
+
@pulumi.getter
|
|
96
|
+
def snssai(self) -> 'outputs.SnssaiResponse':
|
|
97
|
+
"""
|
|
98
|
+
Single-network slice selection assistance information (S-NSSAI). Unique at the scope of a mobile network.
|
|
99
|
+
"""
|
|
100
|
+
return pulumi.get(self, "snssai")
|
|
101
|
+
|
|
102
|
+
@property
|
|
103
|
+
@pulumi.getter(name="systemData")
|
|
104
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
105
|
+
"""
|
|
106
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
107
|
+
"""
|
|
108
|
+
return pulumi.get(self, "system_data")
|
|
109
|
+
|
|
110
|
+
@property
|
|
111
|
+
@pulumi.getter
|
|
112
|
+
def tags(self) -> Optional[Mapping[str, str]]:
|
|
113
|
+
"""
|
|
114
|
+
Resource tags.
|
|
115
|
+
"""
|
|
116
|
+
return pulumi.get(self, "tags")
|
|
117
|
+
|
|
118
|
+
@property
|
|
119
|
+
@pulumi.getter
|
|
120
|
+
def type(self) -> str:
|
|
121
|
+
"""
|
|
122
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
123
|
+
"""
|
|
124
|
+
return pulumi.get(self, "type")
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
class AwaitableGetSliceResult(GetSliceResult):
|
|
128
|
+
# pylint: disable=using-constant-test
|
|
129
|
+
def __await__(self):
|
|
130
|
+
if False:
|
|
131
|
+
yield self
|
|
132
|
+
return GetSliceResult(
|
|
133
|
+
description=self.description,
|
|
134
|
+
id=self.id,
|
|
135
|
+
location=self.location,
|
|
136
|
+
name=self.name,
|
|
137
|
+
provisioning_state=self.provisioning_state,
|
|
138
|
+
snssai=self.snssai,
|
|
139
|
+
system_data=self.system_data,
|
|
140
|
+
tags=self.tags,
|
|
141
|
+
type=self.type)
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
def get_slice(mobile_network_name: Optional[str] = None,
|
|
145
|
+
resource_group_name: Optional[str] = None,
|
|
146
|
+
slice_name: Optional[str] = None,
|
|
147
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSliceResult:
|
|
148
|
+
"""
|
|
149
|
+
Gets information about the specified network slice.
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
:param str mobile_network_name: The name of the mobile network.
|
|
153
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
154
|
+
:param str slice_name: The name of the network slice.
|
|
155
|
+
"""
|
|
156
|
+
__args__ = dict()
|
|
157
|
+
__args__['mobileNetworkName'] = mobile_network_name
|
|
158
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
159
|
+
__args__['sliceName'] = slice_name
|
|
160
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
161
|
+
__ret__ = pulumi.runtime.invoke('azure-native:mobilenetwork/v20240401:getSlice', __args__, opts=opts, typ=GetSliceResult).value
|
|
162
|
+
|
|
163
|
+
return AwaitableGetSliceResult(
|
|
164
|
+
description=pulumi.get(__ret__, 'description'),
|
|
165
|
+
id=pulumi.get(__ret__, 'id'),
|
|
166
|
+
location=pulumi.get(__ret__, 'location'),
|
|
167
|
+
name=pulumi.get(__ret__, 'name'),
|
|
168
|
+
provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
|
|
169
|
+
snssai=pulumi.get(__ret__, 'snssai'),
|
|
170
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
171
|
+
tags=pulumi.get(__ret__, 'tags'),
|
|
172
|
+
type=pulumi.get(__ret__, 'type'))
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
@_utilities.lift_output_func(get_slice)
|
|
176
|
+
def get_slice_output(mobile_network_name: Optional[pulumi.Input[str]] = None,
|
|
177
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
178
|
+
slice_name: Optional[pulumi.Input[str]] = None,
|
|
179
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetSliceResult]:
|
|
180
|
+
"""
|
|
181
|
+
Gets information about the specified network slice.
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
:param str mobile_network_name: The name of the mobile network.
|
|
185
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
186
|
+
:param str slice_name: The name of the network slice.
|
|
187
|
+
"""
|
|
188
|
+
...
|