pulumi-azure-native 2.41.0a1715077566__py3-none-any.whl → 2.41.0a1715601087__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-azure-native might be problematic. Click here for more details.
- pulumi_azure_native/__init__.py +96 -0
- pulumi_azure_native/databricks/__init__.py +3 -0
- pulumi_azure_native/databricks/access_connector.py +3 -3
- pulumi_azure_native/databricks/get_access_connector.py +2 -2
- pulumi_azure_native/databricks/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/databricks/get_workspace.py +2 -2
- pulumi_azure_native/databricks/private_endpoint_connection.py +3 -3
- pulumi_azure_native/databricks/v20220401preview/access_connector.py +1 -1
- pulumi_azure_native/databricks/v20230201/private_endpoint_connection.py +1 -1
- pulumi_azure_native/databricks/v20230201/v_net_peering.py +1 -1
- pulumi_azure_native/databricks/v20230201/workspace.py +1 -1
- pulumi_azure_native/databricks/v20230501/access_connector.py +1 -1
- pulumi_azure_native/databricks/v20230915preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/databricks/v20230915preview/v_net_peering.py +1 -1
- pulumi_azure_native/databricks/v20230915preview/workspace.py +1 -1
- pulumi_azure_native/databricks/v20240501/__init__.py +18 -0
- pulumi_azure_native/databricks/v20240501/_enums.py +121 -0
- pulumi_azure_native/databricks/v20240501/_inputs.py +1228 -0
- pulumi_azure_native/databricks/v20240501/access_connector.py +263 -0
- pulumi_azure_native/databricks/v20240501/get_access_connector.py +170 -0
- pulumi_azure_native/databricks/v20240501/get_private_endpoint_connection.py +123 -0
- pulumi_azure_native/databricks/v20240501/get_v_net_peering.py +240 -0
- pulumi_azure_native/databricks/v20240501/get_workspace.py +443 -0
- pulumi_azure_native/databricks/v20240501/outputs.py +1949 -0
- pulumi_azure_native/databricks/v20240501/private_endpoint_connection.py +207 -0
- pulumi_azure_native/databricks/v20240501/v_net_peering.py +429 -0
- pulumi_azure_native/databricks/v20240501/workspace.py +683 -0
- pulumi_azure_native/databricks/v_net_peering.py +1 -1
- pulumi_azure_native/databricks/workspace.py +3 -3
- pulumi_azure_native/hybridcompute/__init__.py +5 -0
- pulumi_azure_native/hybridcompute/_enums.py +8 -0
- pulumi_azure_native/hybridcompute/gateway.py +313 -0
- pulumi_azure_native/hybridcompute/get_gateway.py +211 -0
- pulumi_azure_native/hybridcompute/get_license.py +2 -2
- pulumi_azure_native/hybridcompute/get_license_profile.py +2 -2
- pulumi_azure_native/hybridcompute/get_machine.py +2 -2
- pulumi_azure_native/hybridcompute/get_machine_extension.py +2 -2
- pulumi_azure_native/hybridcompute/get_machine_run_command.py +4 -0
- pulumi_azure_native/hybridcompute/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/hybridcompute/get_private_link_scope.py +2 -2
- pulumi_azure_native/hybridcompute/license.py +3 -3
- pulumi_azure_native/hybridcompute/license_profile.py +3 -3
- pulumi_azure_native/hybridcompute/machine.py +3 -3
- pulumi_azure_native/hybridcompute/machine_extension.py +3 -3
- pulumi_azure_native/hybridcompute/machine_run_command.py +5 -1
- pulumi_azure_native/hybridcompute/private_endpoint_connection.py +3 -3
- pulumi_azure_native/hybridcompute/private_link_scope.py +3 -3
- pulumi_azure_native/hybridcompute/v20200802/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20200815preview/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20200815preview/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20200815preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hybridcompute/v20200815preview/private_link_scope.py +1 -1
- pulumi_azure_native/hybridcompute/v20220510preview/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20220510preview/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20221227/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20221227/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20221227/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hybridcompute/v20221227/private_link_scope.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/license.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/license_profile.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/private_link_scope.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/license.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/license_profile.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/machine_run_command.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/private_link_scope.py +1 -1
- pulumi_azure_native/hybridcompute/v20240331preview/__init__.py +26 -0
- pulumi_azure_native/hybridcompute/v20240331preview/_enums.py +170 -0
- pulumi_azure_native/hybridcompute/v20240331preview/_inputs.py +1376 -0
- pulumi_azure_native/hybridcompute/v20240331preview/gateway.py +311 -0
- pulumi_azure_native/hybridcompute/v20240331preview/get_gateway.py +209 -0
- pulumi_azure_native/hybridcompute/v20240331preview/get_license.py +196 -0
- pulumi_azure_native/hybridcompute/v20240331preview/get_license_profile.py +331 -0
- pulumi_azure_native/hybridcompute/v20240331preview/get_machine.py +591 -0
- pulumi_azure_native/hybridcompute/v20240331preview/get_machine_extension.py +162 -0
- pulumi_azure_native/hybridcompute/v20240331preview/get_machine_run_command.py +318 -0
- pulumi_azure_native/hybridcompute/v20240331preview/get_private_endpoint_connection.py +136 -0
- pulumi_azure_native/hybridcompute/v20240331preview/get_private_link_scope.py +157 -0
- pulumi_azure_native/hybridcompute/v20240331preview/license.py +321 -0
- pulumi_azure_native/hybridcompute/v20240331preview/license_profile.py +480 -0
- pulumi_azure_native/hybridcompute/v20240331preview/machine.py +850 -0
- pulumi_azure_native/hybridcompute/v20240331preview/machine_extension.py +274 -0
- pulumi_azure_native/hybridcompute/v20240331preview/machine_run_command.py +587 -0
- pulumi_azure_native/hybridcompute/v20240331preview/outputs.py +3054 -0
- pulumi_azure_native/hybridcompute/v20240331preview/private_endpoint_connection.py +215 -0
- pulumi_azure_native/hybridcompute/v20240331preview/private_link_scope.py +253 -0
- pulumi_azure_native/mobilenetwork/__init__.py +4 -0
- pulumi_azure_native/mobilenetwork/attached_data_network.py +3 -3
- pulumi_azure_native/mobilenetwork/data_network.py +3 -3
- pulumi_azure_native/mobilenetwork/diagnostics_package.py +3 -3
- pulumi_azure_native/mobilenetwork/get_attached_data_network.py +2 -2
- pulumi_azure_native/mobilenetwork/get_data_network.py +2 -2
- pulumi_azure_native/mobilenetwork/get_diagnostics_package.py +2 -2
- pulumi_azure_native/mobilenetwork/get_mobile_network.py +2 -2
- pulumi_azure_native/mobilenetwork/get_packet_capture.py +2 -2
- pulumi_azure_native/mobilenetwork/get_packet_core_control_plane.py +2 -2
- pulumi_azure_native/mobilenetwork/get_packet_core_data_plane.py +2 -2
- pulumi_azure_native/mobilenetwork/get_service.py +2 -2
- pulumi_azure_native/mobilenetwork/get_sim.py +2 -2
- pulumi_azure_native/mobilenetwork/get_sim_group.py +2 -2
- pulumi_azure_native/mobilenetwork/get_sim_policy.py +2 -2
- pulumi_azure_native/mobilenetwork/get_site.py +2 -2
- pulumi_azure_native/mobilenetwork/get_slice.py +2 -2
- pulumi_azure_native/mobilenetwork/list_mobile_network_sim_groups.py +94 -0
- pulumi_azure_native/mobilenetwork/mobile_network.py +3 -3
- pulumi_azure_native/mobilenetwork/outputs.py +126 -0
- pulumi_azure_native/mobilenetwork/packet_capture.py +3 -3
- pulumi_azure_native/mobilenetwork/packet_core_control_plane.py +3 -3
- pulumi_azure_native/mobilenetwork/packet_core_data_plane.py +3 -3
- pulumi_azure_native/mobilenetwork/service.py +3 -3
- pulumi_azure_native/mobilenetwork/sim.py +3 -3
- pulumi_azure_native/mobilenetwork/sim_group.py +3 -3
- pulumi_azure_native/mobilenetwork/sim_policy.py +3 -3
- pulumi_azure_native/mobilenetwork/site.py +3 -3
- pulumi_azure_native/mobilenetwork/slice.py +3 -3
- pulumi_azure_native/mobilenetwork/v20220301preview/packet_core_control_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/attached_data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/mobile_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/packet_core_control_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/packet_core_data_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/service.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/sim.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/sim_group.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/sim_policy.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/site.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/slice.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/attached_data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/mobile_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/packet_core_control_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/packet_core_data_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/service.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/sim.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/sim_group.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/sim_policy.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/site.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/slice.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/attached_data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/diagnostics_package.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/mobile_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/packet_capture.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/packet_core_control_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/packet_core_data_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/service.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/sim.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/sim_group.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/sim_policy.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/site.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/slice.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/attached_data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/diagnostics_package.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/mobile_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/packet_capture.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/packet_core_control_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/packet_core_data_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/service.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/sim.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/sim_group.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/sim_policy.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/site.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/slice.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/attached_data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/diagnostics_package.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/mobile_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/packet_capture.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/packet_core_control_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/packet_core_data_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/service.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/sim.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/sim_group.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/sim_policy.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/site.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/slice.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240401/__init__.py +37 -0
- pulumi_azure_native/mobilenetwork/v20240401/_enums.py +215 -0
- pulumi_azure_native/mobilenetwork/v20240401/_inputs.py +1998 -0
- pulumi_azure_native/mobilenetwork/v20240401/attached_data_network.py +443 -0
- pulumi_azure_native/mobilenetwork/v20240401/data_network.py +282 -0
- pulumi_azure_native/mobilenetwork/v20240401/diagnostics_package.py +215 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_attached_data_network.py +237 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_data_network.py +175 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_diagnostics_package.py +162 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_mobile_network.py +209 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_packet_capture.py +240 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_packet_core_control_plane.py +404 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_packet_core_data_plane.py +188 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_service.py +201 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_sim.py +253 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_sim_group.py +196 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_sim_policy.py +240 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_site.py +175 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_slice.py +188 -0
- pulumi_azure_native/mobilenetwork/v20240401/list_mobile_network_sim_groups.py +92 -0
- pulumi_azure_native/mobilenetwork/v20240401/mobile_network.py +332 -0
- pulumi_azure_native/mobilenetwork/v20240401/outputs.py +2668 -0
- pulumi_azure_native/mobilenetwork/v20240401/packet_capture.py +363 -0
- pulumi_azure_native/mobilenetwork/v20240401/packet_core_control_plane.py +737 -0
- pulumi_azure_native/mobilenetwork/v20240401/packet_core_data_plane.py +313 -0
- pulumi_azure_native/mobilenetwork/v20240401/service.py +344 -0
- pulumi_azure_native/mobilenetwork/v20240401/sim.py +422 -0
- pulumi_azure_native/mobilenetwork/v20240401/sim_group.py +321 -0
- pulumi_azure_native/mobilenetwork/v20240401/sim_policy.py +417 -0
- pulumi_azure_native/mobilenetwork/v20240401/site.py +263 -0
- pulumi_azure_native/mobilenetwork/v20240401/slice.py +313 -0
- pulumi_azure_native/network/v20231101/flow_log.py +0 -29
- pulumi_azure_native/network/v20231101/get_flow_log.py +1 -14
- pulumi_azure_native/network/v20231101/outputs.py +0 -12
- pulumi_azure_native/recoveryservices/__init__.py +3 -0
- pulumi_azure_native/recoveryservices/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/recoveryservices/get_protected_item.py +2 -2
- pulumi_azure_native/recoveryservices/get_protection_container.py +2 -2
- pulumi_azure_native/recoveryservices/get_protection_intent.py +2 -2
- pulumi_azure_native/recoveryservices/get_protection_policy.py +2 -2
- pulumi_azure_native/recoveryservices/get_resource_guard_proxy.py +2 -2
- pulumi_azure_native/recoveryservices/get_vault.py +2 -2
- pulumi_azure_native/recoveryservices/private_endpoint_connection.py +3 -3
- pulumi_azure_native/recoveryservices/protected_item.py +3 -3
- pulumi_azure_native/recoveryservices/protection_container.py +3 -3
- pulumi_azure_native/recoveryservices/protection_intent.py +3 -3
- pulumi_azure_native/recoveryservices/protection_policy.py +3 -3
- pulumi_azure_native/recoveryservices/resource_guard_proxy.py +3 -3
- pulumi_azure_native/recoveryservices/v20200202/vault.py +1 -1
- pulumi_azure_native/recoveryservices/v20230401/private_endpoint_connection.py +1 -1
- pulumi_azure_native/recoveryservices/v20230401/protected_item.py +1 -1
- pulumi_azure_native/recoveryservices/v20230401/protection_container.py +1 -1
- pulumi_azure_native/recoveryservices/v20230401/protection_intent.py +1 -1
- pulumi_azure_native/recoveryservices/v20230401/protection_policy.py +1 -1
- pulumi_azure_native/recoveryservices/v20230401/resource_guard_proxy.py +1 -1
- pulumi_azure_native/recoveryservices/v20230401/vault.py +1 -1
- pulumi_azure_native/recoveryservices/v20230601/private_endpoint_connection.py +1 -1
- pulumi_azure_native/recoveryservices/v20230601/protected_item.py +1 -1
- pulumi_azure_native/recoveryservices/v20230601/protection_container.py +1 -1
- pulumi_azure_native/recoveryservices/v20230601/protection_intent.py +1 -1
- pulumi_azure_native/recoveryservices/v20230601/protection_policy.py +1 -1
- pulumi_azure_native/recoveryservices/v20230601/resource_guard_proxy.py +1 -1
- pulumi_azure_native/recoveryservices/v20230601/vault.py +1 -1
- pulumi_azure_native/recoveryservices/v20230801/private_endpoint_connection.py +1 -1
- pulumi_azure_native/recoveryservices/v20230801/protected_item.py +1 -1
- pulumi_azure_native/recoveryservices/v20230801/protection_container.py +1 -1
- pulumi_azure_native/recoveryservices/v20230801/protection_intent.py +1 -1
- pulumi_azure_native/recoveryservices/v20230801/protection_policy.py +1 -1
- pulumi_azure_native/recoveryservices/v20230801/resource_guard_proxy.py +1 -1
- pulumi_azure_native/recoveryservices/v20230801/vault.py +1 -1
- pulumi_azure_native/recoveryservices/v20240101/private_endpoint_connection.py +1 -1
- pulumi_azure_native/recoveryservices/v20240101/protected_item.py +1 -1
- pulumi_azure_native/recoveryservices/v20240101/protection_container.py +1 -1
- pulumi_azure_native/recoveryservices/v20240101/protection_intent.py +1 -1
- pulumi_azure_native/recoveryservices/v20240101/protection_policy.py +1 -1
- pulumi_azure_native/recoveryservices/v20240101/resource_guard_proxy.py +1 -1
- pulumi_azure_native/recoveryservices/v20240101/vault.py +1 -1
- pulumi_azure_native/recoveryservices/v20240201/private_endpoint_connection.py +1 -1
- pulumi_azure_native/recoveryservices/v20240201/protected_item.py +1 -1
- pulumi_azure_native/recoveryservices/v20240201/protection_container.py +1 -1
- pulumi_azure_native/recoveryservices/v20240201/protection_intent.py +1 -1
- pulumi_azure_native/recoveryservices/v20240201/protection_policy.py +1 -1
- pulumi_azure_native/recoveryservices/v20240201/resource_guard_proxy.py +1 -1
- pulumi_azure_native/recoveryservices/v20240201/vault.py +1 -1
- pulumi_azure_native/recoveryservices/v20240401/private_endpoint_connection.py +1 -1
- pulumi_azure_native/recoveryservices/v20240401/protected_item.py +1 -1
- pulumi_azure_native/recoveryservices/v20240401/protection_container.py +1 -1
- pulumi_azure_native/recoveryservices/v20240401/protection_intent.py +1 -1
- pulumi_azure_native/recoveryservices/v20240401/protection_policy.py +1 -1
- pulumi_azure_native/recoveryservices/v20240401/resource_guard_proxy.py +1 -1
- pulumi_azure_native/recoveryservices/v20240401/vault.py +1 -1
- pulumi_azure_native/recoveryservices/v20240430preview/__init__.py +24 -0
- pulumi_azure_native/recoveryservices/v20240430preview/_enums.py +470 -0
- pulumi_azure_native/recoveryservices/v20240430preview/_inputs.py +12162 -0
- pulumi_azure_native/recoveryservices/v20240430preview/get_private_endpoint_connection.py +162 -0
- pulumi_azure_native/recoveryservices/v20240430preview/get_protected_item.py +179 -0
- pulumi_azure_native/recoveryservices/v20240430preview/get_protection_container.py +167 -0
- pulumi_azure_native/recoveryservices/v20240430preview/get_protection_intent.py +169 -0
- pulumi_azure_native/recoveryservices/v20240430preview/get_protection_policy.py +164 -0
- pulumi_azure_native/recoveryservices/v20240430preview/get_resource_guard_proxy.py +157 -0
- pulumi_azure_native/recoveryservices/v20240430preview/get_vault.py +196 -0
- pulumi_azure_native/recoveryservices/v20240430preview/outputs.py +14409 -0
- pulumi_azure_native/recoveryservices/v20240430preview/private_endpoint_connection.py +293 -0
- pulumi_azure_native/recoveryservices/v20240430preview/protected_item.py +335 -0
- pulumi_azure_native/recoveryservices/v20240430preview/protection_container.py +314 -0
- pulumi_azure_native/recoveryservices/v20240430preview/protection_intent.py +314 -0
- pulumi_azure_native/recoveryservices/v20240430preview/protection_policy.py +293 -0
- pulumi_azure_native/recoveryservices/v20240430preview/resource_guard_proxy.py +285 -0
- pulumi_azure_native/recoveryservices/v20240430preview/vault.py +321 -0
- pulumi_azure_native/recoveryservices/vault.py +3 -3
- pulumi_azure_native/security/v20231201preview/_inputs.py +1 -1
- pulumi_azure_native/security/v20231201preview/outputs.py +2 -2
- pulumi_azure_native/storage/__init__.py +5 -0
- pulumi_azure_native/storage/_enums.py +17 -0
- pulumi_azure_native/storage/_inputs.py +315 -0
- pulumi_azure_native/storage/blob_container.py +3 -3
- pulumi_azure_native/storage/blob_container_immutability_policy.py +3 -3
- pulumi_azure_native/storage/blob_inventory_policy.py +3 -3
- pulumi_azure_native/storage/blob_service_properties.py +3 -3
- pulumi_azure_native/storage/encryption_scope.py +3 -3
- pulumi_azure_native/storage/file_service_properties.py +3 -3
- pulumi_azure_native/storage/file_share.py +3 -3
- pulumi_azure_native/storage/get_blob_container.py +2 -2
- pulumi_azure_native/storage/get_blob_container_immutability_policy.py +2 -2
- pulumi_azure_native/storage/get_blob_inventory_policy.py +2 -2
- pulumi_azure_native/storage/get_blob_service_properties.py +2 -2
- pulumi_azure_native/storage/get_encryption_scope.py +2 -2
- pulumi_azure_native/storage/get_file_service_properties.py +2 -2
- pulumi_azure_native/storage/get_file_share.py +2 -2
- pulumi_azure_native/storage/get_local_user.py +2 -2
- pulumi_azure_native/storage/get_management_policy.py +2 -2
- pulumi_azure_native/storage/get_object_replication_policy.py +2 -2
- pulumi_azure_native/storage/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/storage/get_queue.py +2 -2
- pulumi_azure_native/storage/get_queue_service_properties.py +2 -2
- pulumi_azure_native/storage/get_storage_account.py +2 -2
- pulumi_azure_native/storage/get_storage_task_assignment.py +138 -0
- pulumi_azure_native/storage/get_table.py +2 -2
- pulumi_azure_native/storage/get_table_service_properties.py +2 -2
- pulumi_azure_native/storage/list_local_user_keys.py +2 -2
- pulumi_azure_native/storage/list_storage_account_keys.py +2 -2
- pulumi_azure_native/storage/list_storage_account_sas.py +2 -2
- pulumi_azure_native/storage/list_storage_account_service_sas.py +2 -2
- pulumi_azure_native/storage/local_user.py +3 -3
- pulumi_azure_native/storage/management_policy.py +3 -3
- pulumi_azure_native/storage/object_replication_policy.py +3 -3
- pulumi_azure_native/storage/outputs.py +560 -0
- pulumi_azure_native/storage/private_endpoint_connection.py +3 -3
- pulumi_azure_native/storage/queue.py +3 -3
- pulumi_azure_native/storage/queue_service_properties.py +3 -3
- pulumi_azure_native/storage/storage_account.py +3 -3
- pulumi_azure_native/storage/storage_task_assignment.py +218 -0
- pulumi_azure_native/storage/table.py +3 -3
- pulumi_azure_native/storage/table_service_properties.py +3 -3
- pulumi_azure_native/storage/v20220901/blob_container.py +1 -1
- pulumi_azure_native/storage/v20220901/blob_container_immutability_policy.py +1 -1
- pulumi_azure_native/storage/v20220901/blob_inventory_policy.py +1 -1
- pulumi_azure_native/storage/v20220901/blob_service_properties.py +1 -1
- pulumi_azure_native/storage/v20220901/encryption_scope.py +1 -1
- pulumi_azure_native/storage/v20220901/file_service_properties.py +1 -1
- pulumi_azure_native/storage/v20220901/file_share.py +1 -1
- pulumi_azure_native/storage/v20220901/local_user.py +1 -1
- pulumi_azure_native/storage/v20220901/management_policy.py +1 -1
- pulumi_azure_native/storage/v20220901/object_replication_policy.py +1 -1
- pulumi_azure_native/storage/v20220901/private_endpoint_connection.py +1 -1
- pulumi_azure_native/storage/v20220901/queue.py +1 -1
- pulumi_azure_native/storage/v20220901/queue_service_properties.py +1 -1
- pulumi_azure_native/storage/v20220901/storage_account.py +1 -1
- pulumi_azure_native/storage/v20220901/table.py +1 -1
- pulumi_azure_native/storage/v20220901/table_service_properties.py +1 -1
- pulumi_azure_native/storage/v20230101/blob_container.py +1 -1
- pulumi_azure_native/storage/v20230101/blob_container_immutability_policy.py +1 -1
- pulumi_azure_native/storage/v20230101/blob_inventory_policy.py +1 -1
- pulumi_azure_native/storage/v20230101/blob_service_properties.py +1 -1
- pulumi_azure_native/storage/v20230101/encryption_scope.py +1 -1
- pulumi_azure_native/storage/v20230101/file_service_properties.py +1 -1
- pulumi_azure_native/storage/v20230101/file_share.py +1 -1
- pulumi_azure_native/storage/v20230101/local_user.py +1 -1
- pulumi_azure_native/storage/v20230101/management_policy.py +1 -1
- pulumi_azure_native/storage/v20230101/object_replication_policy.py +1 -1
- pulumi_azure_native/storage/v20230101/private_endpoint_connection.py +1 -1
- pulumi_azure_native/storage/v20230101/queue.py +1 -1
- pulumi_azure_native/storage/v20230101/queue_service_properties.py +1 -1
- pulumi_azure_native/storage/v20230101/storage_account.py +1 -1
- pulumi_azure_native/storage/v20230101/table.py +1 -1
- pulumi_azure_native/storage/v20230101/table_service_properties.py +1 -1
- pulumi_azure_native/storage/v20230401/blob_container.py +1 -1
- pulumi_azure_native/storage/v20230401/blob_container_immutability_policy.py +1 -1
- pulumi_azure_native/storage/v20230401/blob_inventory_policy.py +1 -1
- pulumi_azure_native/storage/v20230401/blob_service_properties.py +1 -1
- pulumi_azure_native/storage/v20230401/encryption_scope.py +1 -1
- pulumi_azure_native/storage/v20230401/file_service_properties.py +1 -1
- pulumi_azure_native/storage/v20230401/file_share.py +1 -1
- pulumi_azure_native/storage/v20230401/local_user.py +1 -1
- pulumi_azure_native/storage/v20230401/management_policy.py +1 -1
- pulumi_azure_native/storage/v20230401/object_replication_policy.py +1 -1
- pulumi_azure_native/storage/v20230401/private_endpoint_connection.py +1 -1
- pulumi_azure_native/storage/v20230401/queue.py +1 -1
- pulumi_azure_native/storage/v20230401/queue_service_properties.py +1 -1
- pulumi_azure_native/storage/v20230401/storage_account.py +1 -1
- pulumi_azure_native/storage/v20230401/table.py +1 -1
- pulumi_azure_native/storage/v20230401/table_service_properties.py +1 -1
- pulumi_azure_native/storage/v20230501/__init__.py +48 -0
- pulumi_azure_native/storage/v20230501/_enums.py +434 -0
- pulumi_azure_native/storage/v20230501/_inputs.py +3435 -0
- pulumi_azure_native/storage/v20230501/blob_container.py +510 -0
- pulumi_azure_native/storage/v20230501/blob_container_immutability_policy.py +302 -0
- pulumi_azure_native/storage/v20230501/blob_inventory_policy.py +227 -0
- pulumi_azure_native/storage/v20230501/blob_service_properties.py +448 -0
- pulumi_azure_native/storage/v20230501/encryption_scope.py +313 -0
- pulumi_azure_native/storage/v20230501/file_service_properties.py +274 -0
- pulumi_azure_native/storage/v20230501/file_share.py +501 -0
- pulumi_azure_native/storage/v20230501/get_blob_container.py +370 -0
- pulumi_azure_native/storage/v20230501/get_blob_container_immutability_policy.py +179 -0
- pulumi_azure_native/storage/v20230501/get_blob_inventory_policy.py +149 -0
- pulumi_azure_native/storage/v20230501/get_blob_service_properties.py +240 -0
- pulumi_azure_native/storage/v20230501/get_encryption_scope.py +188 -0
- pulumi_azure_native/storage/v20230501/get_file_service_properties.py +162 -0
- pulumi_azure_native/storage/v20230501/get_file_share.py +362 -0
- pulumi_azure_native/storage/v20230501/get_local_user.py +279 -0
- pulumi_azure_native/storage/v20230501/get_management_policy.py +136 -0
- pulumi_azure_native/storage/v20230501/get_object_replication_policy.py +175 -0
- pulumi_azure_native/storage/v20230501/get_private_endpoint_connection.py +149 -0
- pulumi_azure_native/storage/v20230501/get_queue.py +132 -0
- pulumi_azure_native/storage/v20230501/get_queue_service_properties.py +123 -0
- pulumi_azure_native/storage/v20230501/get_storage_account.py +708 -0
- pulumi_azure_native/storage/v20230501/get_storage_task_assignment.py +136 -0
- pulumi_azure_native/storage/v20230501/get_table.py +136 -0
- pulumi_azure_native/storage/v20230501/get_table_service_properties.py +123 -0
- pulumi_azure_native/storage/v20230501/list_local_user_keys.py +97 -0
- pulumi_azure_native/storage/v20230501/list_storage_account_keys.py +84 -0
- pulumi_azure_native/storage/v20230501/list_storage_account_sas.py +119 -0
- pulumi_azure_native/storage/v20230501/list_storage_account_service_sas.py +169 -0
- pulumi_azure_native/storage/v20230501/local_user.py +496 -0
- pulumi_azure_native/storage/v20230501/management_policy.py +217 -0
- pulumi_azure_native/storage/v20230501/object_replication_policy.py +285 -0
- pulumi_azure_native/storage/v20230501/outputs.py +5640 -0
- pulumi_azure_native/storage/v20230501/private_endpoint_connection.py +227 -0
- pulumi_azure_native/storage/v20230501/queue.py +211 -0
- pulumi_azure_native/storage/v20230501/queue_service_properties.py +206 -0
- pulumi_azure_native/storage/v20230501/storage_account.py +1169 -0
- pulumi_azure_native/storage/v20230501/storage_task_assignment.py +216 -0
- pulumi_azure_native/storage/v20230501/table.py +214 -0
- pulumi_azure_native/storage/v20230501/table_service_properties.py +206 -0
- pulumi_azure_native/storageactions/_inputs.py +2 -2
- pulumi_azure_native/storageactions/get_storage_task.py +1 -1
- pulumi_azure_native/storageactions/outputs.py +2 -2
- pulumi_azure_native/storageactions/storage_task.py +18 -17
- pulumi_azure_native/storageactions/v20230101/_inputs.py +2 -2
- pulumi_azure_native/storageactions/v20230101/get_storage_task.py +1 -1
- pulumi_azure_native/storageactions/v20230101/outputs.py +2 -2
- pulumi_azure_native/storageactions/v20230101/storage_task.py +18 -17
- pulumi_azure_native/workloads/__init__.py +3 -0
- pulumi_azure_native/workloads/_enums.py +15 -0
- pulumi_azure_native/workloads/get_monitor.py +4 -0
- pulumi_azure_native/workloads/get_provider_instance.py +2 -2
- pulumi_azure_native/workloads/get_sap_landscape_monitor.py +2 -2
- pulumi_azure_native/workloads/monitor.py +5 -1
- pulumi_azure_native/workloads/provider_instance.py +3 -3
- pulumi_azure_native/workloads/sap_landscape_monitor.py +3 -3
- pulumi_azure_native/workloads/v20230401/monitor.py +1 -1
- pulumi_azure_native/workloads/v20230401/provider_instance.py +1 -1
- pulumi_azure_native/workloads/v20230401/sap_landscape_monitor.py +1 -1
- pulumi_azure_native/workloads/v20231001preview/monitor.py +1 -1
- pulumi_azure_native/workloads/v20231001preview/provider_instance.py +1 -1
- pulumi_azure_native/workloads/v20231001preview/sap_landscape_monitor.py +1 -1
- pulumi_azure_native/workloads/v20231201preview/__init__.py +16 -0
- pulumi_azure_native/workloads/v20231201preview/_enums.py +68 -0
- pulumi_azure_native/workloads/v20231201preview/_inputs.py +1216 -0
- pulumi_azure_native/workloads/v20231201preview/get_monitor.py +300 -0
- pulumi_azure_native/workloads/v20231201preview/get_provider_instance.py +175 -0
- pulumi_azure_native/workloads/v20231201preview/get_sap_landscape_monitor.py +157 -0
- pulumi_azure_native/workloads/v20231201preview/monitor.py +496 -0
- pulumi_azure_native/workloads/v20231201preview/outputs.py +1583 -0
- pulumi_azure_native/workloads/v20231201preview/provider_instance.py +246 -0
- pulumi_azure_native/workloads/v20231201preview/sap_landscape_monitor.py +234 -0
- {pulumi_azure_native-2.41.0a1715077566.dist-info → pulumi_azure_native-2.41.0a1715601087.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.41.0a1715077566.dist-info → pulumi_azure_native-2.41.0a1715601087.dist-info}/RECORD +462 -324
- {pulumi_azure_native-2.41.0a1715077566.dist-info → pulumi_azure_native-2.41.0a1715601087.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-2.41.0a1715077566.dist-info → pulumi_azure_native-2.41.0a1715601087.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,300 @@
|
|
|
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
|
+
'GetMonitorResult',
|
|
15
|
+
'AwaitableGetMonitorResult',
|
|
16
|
+
'get_monitor',
|
|
17
|
+
'get_monitor_output',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
@pulumi.output_type
|
|
21
|
+
class GetMonitorResult:
|
|
22
|
+
"""
|
|
23
|
+
SAP monitor info on Azure (ARM properties and SAP monitor properties)
|
|
24
|
+
"""
|
|
25
|
+
def __init__(__self__, app_location=None, app_service_plan_configuration=None, errors=None, id=None, identity=None, location=None, log_analytics_workspace_arm_id=None, managed_resource_group_configuration=None, monitor_subnet=None, msi_arm_id=None, name=None, provisioning_state=None, routing_preference=None, storage_account_arm_id=None, system_data=None, tags=None, type=None, zone_redundancy_preference=None):
|
|
26
|
+
if app_location and not isinstance(app_location, str):
|
|
27
|
+
raise TypeError("Expected argument 'app_location' to be a str")
|
|
28
|
+
pulumi.set(__self__, "app_location", app_location)
|
|
29
|
+
if app_service_plan_configuration and not isinstance(app_service_plan_configuration, dict):
|
|
30
|
+
raise TypeError("Expected argument 'app_service_plan_configuration' to be a dict")
|
|
31
|
+
pulumi.set(__self__, "app_service_plan_configuration", app_service_plan_configuration)
|
|
32
|
+
if errors and not isinstance(errors, dict):
|
|
33
|
+
raise TypeError("Expected argument 'errors' to be a dict")
|
|
34
|
+
pulumi.set(__self__, "errors", errors)
|
|
35
|
+
if id and not isinstance(id, str):
|
|
36
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
37
|
+
pulumi.set(__self__, "id", id)
|
|
38
|
+
if identity and not isinstance(identity, dict):
|
|
39
|
+
raise TypeError("Expected argument 'identity' to be a dict")
|
|
40
|
+
pulumi.set(__self__, "identity", identity)
|
|
41
|
+
if location and not isinstance(location, str):
|
|
42
|
+
raise TypeError("Expected argument 'location' to be a str")
|
|
43
|
+
pulumi.set(__self__, "location", location)
|
|
44
|
+
if log_analytics_workspace_arm_id and not isinstance(log_analytics_workspace_arm_id, str):
|
|
45
|
+
raise TypeError("Expected argument 'log_analytics_workspace_arm_id' to be a str")
|
|
46
|
+
pulumi.set(__self__, "log_analytics_workspace_arm_id", log_analytics_workspace_arm_id)
|
|
47
|
+
if managed_resource_group_configuration and not isinstance(managed_resource_group_configuration, dict):
|
|
48
|
+
raise TypeError("Expected argument 'managed_resource_group_configuration' to be a dict")
|
|
49
|
+
pulumi.set(__self__, "managed_resource_group_configuration", managed_resource_group_configuration)
|
|
50
|
+
if monitor_subnet and not isinstance(monitor_subnet, str):
|
|
51
|
+
raise TypeError("Expected argument 'monitor_subnet' to be a str")
|
|
52
|
+
pulumi.set(__self__, "monitor_subnet", monitor_subnet)
|
|
53
|
+
if msi_arm_id and not isinstance(msi_arm_id, str):
|
|
54
|
+
raise TypeError("Expected argument 'msi_arm_id' to be a str")
|
|
55
|
+
pulumi.set(__self__, "msi_arm_id", msi_arm_id)
|
|
56
|
+
if name and not isinstance(name, str):
|
|
57
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
58
|
+
pulumi.set(__self__, "name", name)
|
|
59
|
+
if provisioning_state and not isinstance(provisioning_state, str):
|
|
60
|
+
raise TypeError("Expected argument 'provisioning_state' to be a str")
|
|
61
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
62
|
+
if routing_preference and not isinstance(routing_preference, str):
|
|
63
|
+
raise TypeError("Expected argument 'routing_preference' to be a str")
|
|
64
|
+
pulumi.set(__self__, "routing_preference", routing_preference)
|
|
65
|
+
if storage_account_arm_id and not isinstance(storage_account_arm_id, str):
|
|
66
|
+
raise TypeError("Expected argument 'storage_account_arm_id' to be a str")
|
|
67
|
+
pulumi.set(__self__, "storage_account_arm_id", storage_account_arm_id)
|
|
68
|
+
if system_data and not isinstance(system_data, dict):
|
|
69
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
70
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
71
|
+
if tags and not isinstance(tags, dict):
|
|
72
|
+
raise TypeError("Expected argument 'tags' to be a dict")
|
|
73
|
+
pulumi.set(__self__, "tags", tags)
|
|
74
|
+
if type and not isinstance(type, str):
|
|
75
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
76
|
+
pulumi.set(__self__, "type", type)
|
|
77
|
+
if zone_redundancy_preference and not isinstance(zone_redundancy_preference, str):
|
|
78
|
+
raise TypeError("Expected argument 'zone_redundancy_preference' to be a str")
|
|
79
|
+
pulumi.set(__self__, "zone_redundancy_preference", zone_redundancy_preference)
|
|
80
|
+
|
|
81
|
+
@property
|
|
82
|
+
@pulumi.getter(name="appLocation")
|
|
83
|
+
def app_location(self) -> Optional[str]:
|
|
84
|
+
"""
|
|
85
|
+
The SAP monitor resources will be deployed in the SAP monitoring region. The subnet region should be same as the SAP monitoring region.
|
|
86
|
+
"""
|
|
87
|
+
return pulumi.get(self, "app_location")
|
|
88
|
+
|
|
89
|
+
@property
|
|
90
|
+
@pulumi.getter(name="appServicePlanConfiguration")
|
|
91
|
+
def app_service_plan_configuration(self) -> Optional['outputs.AppServicePlanConfigurationResponse']:
|
|
92
|
+
"""
|
|
93
|
+
App service plan configuration
|
|
94
|
+
"""
|
|
95
|
+
return pulumi.get(self, "app_service_plan_configuration")
|
|
96
|
+
|
|
97
|
+
@property
|
|
98
|
+
@pulumi.getter
|
|
99
|
+
def errors(self) -> 'outputs.ErrorDetailResponse':
|
|
100
|
+
"""
|
|
101
|
+
Defines the SAP monitor errors.
|
|
102
|
+
"""
|
|
103
|
+
return pulumi.get(self, "errors")
|
|
104
|
+
|
|
105
|
+
@property
|
|
106
|
+
@pulumi.getter
|
|
107
|
+
def id(self) -> str:
|
|
108
|
+
"""
|
|
109
|
+
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
|
|
110
|
+
"""
|
|
111
|
+
return pulumi.get(self, "id")
|
|
112
|
+
|
|
113
|
+
@property
|
|
114
|
+
@pulumi.getter
|
|
115
|
+
def identity(self) -> Optional['outputs.ManagedServiceIdentityResponse']:
|
|
116
|
+
"""
|
|
117
|
+
The managed service identities assigned to this resource.
|
|
118
|
+
"""
|
|
119
|
+
return pulumi.get(self, "identity")
|
|
120
|
+
|
|
121
|
+
@property
|
|
122
|
+
@pulumi.getter
|
|
123
|
+
def location(self) -> str:
|
|
124
|
+
"""
|
|
125
|
+
The geo-location where the resource lives
|
|
126
|
+
"""
|
|
127
|
+
return pulumi.get(self, "location")
|
|
128
|
+
|
|
129
|
+
@property
|
|
130
|
+
@pulumi.getter(name="logAnalyticsWorkspaceArmId")
|
|
131
|
+
def log_analytics_workspace_arm_id(self) -> Optional[str]:
|
|
132
|
+
"""
|
|
133
|
+
The ARM ID of the Log Analytics Workspace that is used for SAP monitoring.
|
|
134
|
+
"""
|
|
135
|
+
return pulumi.get(self, "log_analytics_workspace_arm_id")
|
|
136
|
+
|
|
137
|
+
@property
|
|
138
|
+
@pulumi.getter(name="managedResourceGroupConfiguration")
|
|
139
|
+
def managed_resource_group_configuration(self) -> Optional['outputs.ManagedResourceGroupConfigurationResponse']:
|
|
140
|
+
"""
|
|
141
|
+
Managed resource group configuration
|
|
142
|
+
"""
|
|
143
|
+
return pulumi.get(self, "managed_resource_group_configuration")
|
|
144
|
+
|
|
145
|
+
@property
|
|
146
|
+
@pulumi.getter(name="monitorSubnet")
|
|
147
|
+
def monitor_subnet(self) -> Optional[str]:
|
|
148
|
+
"""
|
|
149
|
+
The subnet which the SAP monitor will be deployed in
|
|
150
|
+
"""
|
|
151
|
+
return pulumi.get(self, "monitor_subnet")
|
|
152
|
+
|
|
153
|
+
@property
|
|
154
|
+
@pulumi.getter(name="msiArmId")
|
|
155
|
+
def msi_arm_id(self) -> str:
|
|
156
|
+
"""
|
|
157
|
+
The ARM ID of the MSI used for SAP monitoring.
|
|
158
|
+
"""
|
|
159
|
+
return pulumi.get(self, "msi_arm_id")
|
|
160
|
+
|
|
161
|
+
@property
|
|
162
|
+
@pulumi.getter
|
|
163
|
+
def name(self) -> str:
|
|
164
|
+
"""
|
|
165
|
+
The name of the resource
|
|
166
|
+
"""
|
|
167
|
+
return pulumi.get(self, "name")
|
|
168
|
+
|
|
169
|
+
@property
|
|
170
|
+
@pulumi.getter(name="provisioningState")
|
|
171
|
+
def provisioning_state(self) -> str:
|
|
172
|
+
"""
|
|
173
|
+
State of provisioning of the SAP monitor.
|
|
174
|
+
"""
|
|
175
|
+
return pulumi.get(self, "provisioning_state")
|
|
176
|
+
|
|
177
|
+
@property
|
|
178
|
+
@pulumi.getter(name="routingPreference")
|
|
179
|
+
def routing_preference(self) -> Optional[str]:
|
|
180
|
+
"""
|
|
181
|
+
Sets the routing preference of the SAP monitor. By default only RFC1918 traffic is routed to the customer VNET.
|
|
182
|
+
"""
|
|
183
|
+
return pulumi.get(self, "routing_preference")
|
|
184
|
+
|
|
185
|
+
@property
|
|
186
|
+
@pulumi.getter(name="storageAccountArmId")
|
|
187
|
+
def storage_account_arm_id(self) -> str:
|
|
188
|
+
"""
|
|
189
|
+
The ARM ID of the Storage account used for SAP monitoring.
|
|
190
|
+
"""
|
|
191
|
+
return pulumi.get(self, "storage_account_arm_id")
|
|
192
|
+
|
|
193
|
+
@property
|
|
194
|
+
@pulumi.getter(name="systemData")
|
|
195
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
196
|
+
"""
|
|
197
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
198
|
+
"""
|
|
199
|
+
return pulumi.get(self, "system_data")
|
|
200
|
+
|
|
201
|
+
@property
|
|
202
|
+
@pulumi.getter
|
|
203
|
+
def tags(self) -> Optional[Mapping[str, str]]:
|
|
204
|
+
"""
|
|
205
|
+
Resource tags.
|
|
206
|
+
"""
|
|
207
|
+
return pulumi.get(self, "tags")
|
|
208
|
+
|
|
209
|
+
@property
|
|
210
|
+
@pulumi.getter
|
|
211
|
+
def type(self) -> str:
|
|
212
|
+
"""
|
|
213
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
214
|
+
"""
|
|
215
|
+
return pulumi.get(self, "type")
|
|
216
|
+
|
|
217
|
+
@property
|
|
218
|
+
@pulumi.getter(name="zoneRedundancyPreference")
|
|
219
|
+
def zone_redundancy_preference(self) -> Optional[str]:
|
|
220
|
+
"""
|
|
221
|
+
Sets the preference for zone redundancy on resources created for the SAP monitor. By default resources will be created which do not support zone redundancy.
|
|
222
|
+
"""
|
|
223
|
+
return pulumi.get(self, "zone_redundancy_preference")
|
|
224
|
+
|
|
225
|
+
|
|
226
|
+
class AwaitableGetMonitorResult(GetMonitorResult):
|
|
227
|
+
# pylint: disable=using-constant-test
|
|
228
|
+
def __await__(self):
|
|
229
|
+
if False:
|
|
230
|
+
yield self
|
|
231
|
+
return GetMonitorResult(
|
|
232
|
+
app_location=self.app_location,
|
|
233
|
+
app_service_plan_configuration=self.app_service_plan_configuration,
|
|
234
|
+
errors=self.errors,
|
|
235
|
+
id=self.id,
|
|
236
|
+
identity=self.identity,
|
|
237
|
+
location=self.location,
|
|
238
|
+
log_analytics_workspace_arm_id=self.log_analytics_workspace_arm_id,
|
|
239
|
+
managed_resource_group_configuration=self.managed_resource_group_configuration,
|
|
240
|
+
monitor_subnet=self.monitor_subnet,
|
|
241
|
+
msi_arm_id=self.msi_arm_id,
|
|
242
|
+
name=self.name,
|
|
243
|
+
provisioning_state=self.provisioning_state,
|
|
244
|
+
routing_preference=self.routing_preference,
|
|
245
|
+
storage_account_arm_id=self.storage_account_arm_id,
|
|
246
|
+
system_data=self.system_data,
|
|
247
|
+
tags=self.tags,
|
|
248
|
+
type=self.type,
|
|
249
|
+
zone_redundancy_preference=self.zone_redundancy_preference)
|
|
250
|
+
|
|
251
|
+
|
|
252
|
+
def get_monitor(monitor_name: Optional[str] = None,
|
|
253
|
+
resource_group_name: Optional[str] = None,
|
|
254
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetMonitorResult:
|
|
255
|
+
"""
|
|
256
|
+
Gets properties of a SAP monitor for the specified subscription, resource group, and resource name.
|
|
257
|
+
|
|
258
|
+
|
|
259
|
+
:param str monitor_name: Name of the SAP monitor resource.
|
|
260
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
261
|
+
"""
|
|
262
|
+
__args__ = dict()
|
|
263
|
+
__args__['monitorName'] = monitor_name
|
|
264
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
265
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
266
|
+
__ret__ = pulumi.runtime.invoke('azure-native:workloads/v20231201preview:getMonitor', __args__, opts=opts, typ=GetMonitorResult).value
|
|
267
|
+
|
|
268
|
+
return AwaitableGetMonitorResult(
|
|
269
|
+
app_location=pulumi.get(__ret__, 'app_location'),
|
|
270
|
+
app_service_plan_configuration=pulumi.get(__ret__, 'app_service_plan_configuration'),
|
|
271
|
+
errors=pulumi.get(__ret__, 'errors'),
|
|
272
|
+
id=pulumi.get(__ret__, 'id'),
|
|
273
|
+
identity=pulumi.get(__ret__, 'identity'),
|
|
274
|
+
location=pulumi.get(__ret__, 'location'),
|
|
275
|
+
log_analytics_workspace_arm_id=pulumi.get(__ret__, 'log_analytics_workspace_arm_id'),
|
|
276
|
+
managed_resource_group_configuration=pulumi.get(__ret__, 'managed_resource_group_configuration'),
|
|
277
|
+
monitor_subnet=pulumi.get(__ret__, 'monitor_subnet'),
|
|
278
|
+
msi_arm_id=pulumi.get(__ret__, 'msi_arm_id'),
|
|
279
|
+
name=pulumi.get(__ret__, 'name'),
|
|
280
|
+
provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
|
|
281
|
+
routing_preference=pulumi.get(__ret__, 'routing_preference'),
|
|
282
|
+
storage_account_arm_id=pulumi.get(__ret__, 'storage_account_arm_id'),
|
|
283
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
284
|
+
tags=pulumi.get(__ret__, 'tags'),
|
|
285
|
+
type=pulumi.get(__ret__, 'type'),
|
|
286
|
+
zone_redundancy_preference=pulumi.get(__ret__, 'zone_redundancy_preference'))
|
|
287
|
+
|
|
288
|
+
|
|
289
|
+
@_utilities.lift_output_func(get_monitor)
|
|
290
|
+
def get_monitor_output(monitor_name: Optional[pulumi.Input[str]] = None,
|
|
291
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
292
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetMonitorResult]:
|
|
293
|
+
"""
|
|
294
|
+
Gets properties of a SAP monitor for the specified subscription, resource group, and resource name.
|
|
295
|
+
|
|
296
|
+
|
|
297
|
+
:param str monitor_name: Name of the SAP monitor resource.
|
|
298
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
299
|
+
"""
|
|
300
|
+
...
|
|
@@ -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
|
+
'GetProviderInstanceResult',
|
|
15
|
+
'AwaitableGetProviderInstanceResult',
|
|
16
|
+
'get_provider_instance',
|
|
17
|
+
'get_provider_instance_output',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
@pulumi.output_type
|
|
21
|
+
class GetProviderInstanceResult:
|
|
22
|
+
"""
|
|
23
|
+
A provider instance associated with SAP monitor.
|
|
24
|
+
"""
|
|
25
|
+
def __init__(__self__, errors=None, health=None, id=None, name=None, provider_settings=None, provisioning_state=None, system_data=None, type=None):
|
|
26
|
+
if errors and not isinstance(errors, dict):
|
|
27
|
+
raise TypeError("Expected argument 'errors' to be a dict")
|
|
28
|
+
pulumi.set(__self__, "errors", errors)
|
|
29
|
+
if health and not isinstance(health, dict):
|
|
30
|
+
raise TypeError("Expected argument 'health' to be a dict")
|
|
31
|
+
pulumi.set(__self__, "health", health)
|
|
32
|
+
if id and not isinstance(id, str):
|
|
33
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
34
|
+
pulumi.set(__self__, "id", id)
|
|
35
|
+
if name and not isinstance(name, str):
|
|
36
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
37
|
+
pulumi.set(__self__, "name", name)
|
|
38
|
+
if provider_settings and not isinstance(provider_settings, dict):
|
|
39
|
+
raise TypeError("Expected argument 'provider_settings' to be a dict")
|
|
40
|
+
pulumi.set(__self__, "provider_settings", provider_settings)
|
|
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 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 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 errors(self) -> 'outputs.ErrorDetailResponse':
|
|
54
|
+
"""
|
|
55
|
+
Defines the provider instance errors.
|
|
56
|
+
"""
|
|
57
|
+
return pulumi.get(self, "errors")
|
|
58
|
+
|
|
59
|
+
@property
|
|
60
|
+
@pulumi.getter
|
|
61
|
+
def health(self) -> 'outputs.HealthResponse':
|
|
62
|
+
"""
|
|
63
|
+
Resource health details
|
|
64
|
+
"""
|
|
65
|
+
return pulumi.get(self, "health")
|
|
66
|
+
|
|
67
|
+
@property
|
|
68
|
+
@pulumi.getter
|
|
69
|
+
def id(self) -> str:
|
|
70
|
+
"""
|
|
71
|
+
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
|
|
72
|
+
"""
|
|
73
|
+
return pulumi.get(self, "id")
|
|
74
|
+
|
|
75
|
+
@property
|
|
76
|
+
@pulumi.getter
|
|
77
|
+
def name(self) -> str:
|
|
78
|
+
"""
|
|
79
|
+
The name of the resource
|
|
80
|
+
"""
|
|
81
|
+
return pulumi.get(self, "name")
|
|
82
|
+
|
|
83
|
+
@property
|
|
84
|
+
@pulumi.getter(name="providerSettings")
|
|
85
|
+
def provider_settings(self) -> Optional[Any]:
|
|
86
|
+
"""
|
|
87
|
+
Defines the provider specific properties.
|
|
88
|
+
"""
|
|
89
|
+
return pulumi.get(self, "provider_settings")
|
|
90
|
+
|
|
91
|
+
@property
|
|
92
|
+
@pulumi.getter(name="provisioningState")
|
|
93
|
+
def provisioning_state(self) -> str:
|
|
94
|
+
"""
|
|
95
|
+
State of provisioning of the provider instance
|
|
96
|
+
"""
|
|
97
|
+
return pulumi.get(self, "provisioning_state")
|
|
98
|
+
|
|
99
|
+
@property
|
|
100
|
+
@pulumi.getter(name="systemData")
|
|
101
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
102
|
+
"""
|
|
103
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
104
|
+
"""
|
|
105
|
+
return pulumi.get(self, "system_data")
|
|
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 AwaitableGetProviderInstanceResult(GetProviderInstanceResult):
|
|
117
|
+
# pylint: disable=using-constant-test
|
|
118
|
+
def __await__(self):
|
|
119
|
+
if False:
|
|
120
|
+
yield self
|
|
121
|
+
return GetProviderInstanceResult(
|
|
122
|
+
errors=self.errors,
|
|
123
|
+
health=self.health,
|
|
124
|
+
id=self.id,
|
|
125
|
+
name=self.name,
|
|
126
|
+
provider_settings=self.provider_settings,
|
|
127
|
+
provisioning_state=self.provisioning_state,
|
|
128
|
+
system_data=self.system_data,
|
|
129
|
+
type=self.type)
|
|
130
|
+
|
|
131
|
+
|
|
132
|
+
def get_provider_instance(monitor_name: Optional[str] = None,
|
|
133
|
+
provider_instance_name: Optional[str] = None,
|
|
134
|
+
resource_group_name: Optional[str] = None,
|
|
135
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetProviderInstanceResult:
|
|
136
|
+
"""
|
|
137
|
+
Gets properties of a provider instance for the specified subscription, resource group, SAP monitor name, and resource name.
|
|
138
|
+
|
|
139
|
+
|
|
140
|
+
:param str monitor_name: Name of the SAP monitor resource.
|
|
141
|
+
:param str provider_instance_name: Name of the provider instance.
|
|
142
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
143
|
+
"""
|
|
144
|
+
__args__ = dict()
|
|
145
|
+
__args__['monitorName'] = monitor_name
|
|
146
|
+
__args__['providerInstanceName'] = provider_instance_name
|
|
147
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
148
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
149
|
+
__ret__ = pulumi.runtime.invoke('azure-native:workloads/v20231201preview:getProviderInstance', __args__, opts=opts, typ=GetProviderInstanceResult).value
|
|
150
|
+
|
|
151
|
+
return AwaitableGetProviderInstanceResult(
|
|
152
|
+
errors=pulumi.get(__ret__, 'errors'),
|
|
153
|
+
health=pulumi.get(__ret__, 'health'),
|
|
154
|
+
id=pulumi.get(__ret__, 'id'),
|
|
155
|
+
name=pulumi.get(__ret__, 'name'),
|
|
156
|
+
provider_settings=pulumi.get(__ret__, 'provider_settings'),
|
|
157
|
+
provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
|
|
158
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
159
|
+
type=pulumi.get(__ret__, 'type'))
|
|
160
|
+
|
|
161
|
+
|
|
162
|
+
@_utilities.lift_output_func(get_provider_instance)
|
|
163
|
+
def get_provider_instance_output(monitor_name: Optional[pulumi.Input[str]] = None,
|
|
164
|
+
provider_instance_name: Optional[pulumi.Input[str]] = None,
|
|
165
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
166
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetProviderInstanceResult]:
|
|
167
|
+
"""
|
|
168
|
+
Gets properties of a provider instance for the specified subscription, resource group, SAP monitor name, and resource name.
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
:param str monitor_name: Name of the SAP monitor resource.
|
|
172
|
+
:param str provider_instance_name: Name of the provider instance.
|
|
173
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
174
|
+
"""
|
|
175
|
+
...
|
|
@@ -0,0 +1,157 @@
|
|
|
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
|
+
'GetSapLandscapeMonitorResult',
|
|
15
|
+
'AwaitableGetSapLandscapeMonitorResult',
|
|
16
|
+
'get_sap_landscape_monitor',
|
|
17
|
+
'get_sap_landscape_monitor_output',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
@pulumi.output_type
|
|
21
|
+
class GetSapLandscapeMonitorResult:
|
|
22
|
+
"""
|
|
23
|
+
configuration associated with SAP Landscape Monitor Dashboard.
|
|
24
|
+
"""
|
|
25
|
+
def __init__(__self__, grouping=None, id=None, name=None, provisioning_state=None, system_data=None, top_metrics_thresholds=None, type=None):
|
|
26
|
+
if grouping and not isinstance(grouping, dict):
|
|
27
|
+
raise TypeError("Expected argument 'grouping' to be a dict")
|
|
28
|
+
pulumi.set(__self__, "grouping", grouping)
|
|
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 name and not isinstance(name, str):
|
|
33
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
34
|
+
pulumi.set(__self__, "name", name)
|
|
35
|
+
if provisioning_state and not isinstance(provisioning_state, str):
|
|
36
|
+
raise TypeError("Expected argument 'provisioning_state' to be a str")
|
|
37
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
38
|
+
if system_data and not isinstance(system_data, dict):
|
|
39
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
40
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
41
|
+
if top_metrics_thresholds and not isinstance(top_metrics_thresholds, list):
|
|
42
|
+
raise TypeError("Expected argument 'top_metrics_thresholds' to be a list")
|
|
43
|
+
pulumi.set(__self__, "top_metrics_thresholds", top_metrics_thresholds)
|
|
44
|
+
if type and not isinstance(type, str):
|
|
45
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
46
|
+
pulumi.set(__self__, "type", type)
|
|
47
|
+
|
|
48
|
+
@property
|
|
49
|
+
@pulumi.getter
|
|
50
|
+
def grouping(self) -> Optional['outputs.SapLandscapeMonitorPropertiesGroupingResponse']:
|
|
51
|
+
"""
|
|
52
|
+
Gets or sets the SID groupings by landscape and Environment.
|
|
53
|
+
"""
|
|
54
|
+
return pulumi.get(self, "grouping")
|
|
55
|
+
|
|
56
|
+
@property
|
|
57
|
+
@pulumi.getter
|
|
58
|
+
def id(self) -> str:
|
|
59
|
+
"""
|
|
60
|
+
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
|
|
61
|
+
"""
|
|
62
|
+
return pulumi.get(self, "id")
|
|
63
|
+
|
|
64
|
+
@property
|
|
65
|
+
@pulumi.getter
|
|
66
|
+
def name(self) -> str:
|
|
67
|
+
"""
|
|
68
|
+
The name of the resource
|
|
69
|
+
"""
|
|
70
|
+
return pulumi.get(self, "name")
|
|
71
|
+
|
|
72
|
+
@property
|
|
73
|
+
@pulumi.getter(name="provisioningState")
|
|
74
|
+
def provisioning_state(self) -> str:
|
|
75
|
+
"""
|
|
76
|
+
State of provisioning of the SAP monitor.
|
|
77
|
+
"""
|
|
78
|
+
return pulumi.get(self, "provisioning_state")
|
|
79
|
+
|
|
80
|
+
@property
|
|
81
|
+
@pulumi.getter(name="systemData")
|
|
82
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
83
|
+
"""
|
|
84
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
85
|
+
"""
|
|
86
|
+
return pulumi.get(self, "system_data")
|
|
87
|
+
|
|
88
|
+
@property
|
|
89
|
+
@pulumi.getter(name="topMetricsThresholds")
|
|
90
|
+
def top_metrics_thresholds(self) -> Optional[Sequence['outputs.SapLandscapeMonitorMetricThresholdsResponse']]:
|
|
91
|
+
"""
|
|
92
|
+
Gets or sets the list Top Metric Thresholds for SAP Landscape Monitor Dashboard
|
|
93
|
+
"""
|
|
94
|
+
return pulumi.get(self, "top_metrics_thresholds")
|
|
95
|
+
|
|
96
|
+
@property
|
|
97
|
+
@pulumi.getter
|
|
98
|
+
def type(self) -> str:
|
|
99
|
+
"""
|
|
100
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
101
|
+
"""
|
|
102
|
+
return pulumi.get(self, "type")
|
|
103
|
+
|
|
104
|
+
|
|
105
|
+
class AwaitableGetSapLandscapeMonitorResult(GetSapLandscapeMonitorResult):
|
|
106
|
+
# pylint: disable=using-constant-test
|
|
107
|
+
def __await__(self):
|
|
108
|
+
if False:
|
|
109
|
+
yield self
|
|
110
|
+
return GetSapLandscapeMonitorResult(
|
|
111
|
+
grouping=self.grouping,
|
|
112
|
+
id=self.id,
|
|
113
|
+
name=self.name,
|
|
114
|
+
provisioning_state=self.provisioning_state,
|
|
115
|
+
system_data=self.system_data,
|
|
116
|
+
top_metrics_thresholds=self.top_metrics_thresholds,
|
|
117
|
+
type=self.type)
|
|
118
|
+
|
|
119
|
+
|
|
120
|
+
def get_sap_landscape_monitor(monitor_name: Optional[str] = None,
|
|
121
|
+
resource_group_name: Optional[str] = None,
|
|
122
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetSapLandscapeMonitorResult:
|
|
123
|
+
"""
|
|
124
|
+
Gets configuration values for Single Pane Of Glass for SAP monitor for the specified subscription, resource group, and resource name.
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
:param str monitor_name: Name of the SAP monitor resource.
|
|
128
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
129
|
+
"""
|
|
130
|
+
__args__ = dict()
|
|
131
|
+
__args__['monitorName'] = monitor_name
|
|
132
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
133
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
134
|
+
__ret__ = pulumi.runtime.invoke('azure-native:workloads/v20231201preview:getSapLandscapeMonitor', __args__, opts=opts, typ=GetSapLandscapeMonitorResult).value
|
|
135
|
+
|
|
136
|
+
return AwaitableGetSapLandscapeMonitorResult(
|
|
137
|
+
grouping=pulumi.get(__ret__, 'grouping'),
|
|
138
|
+
id=pulumi.get(__ret__, 'id'),
|
|
139
|
+
name=pulumi.get(__ret__, 'name'),
|
|
140
|
+
provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
|
|
141
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
142
|
+
top_metrics_thresholds=pulumi.get(__ret__, 'top_metrics_thresholds'),
|
|
143
|
+
type=pulumi.get(__ret__, 'type'))
|
|
144
|
+
|
|
145
|
+
|
|
146
|
+
@_utilities.lift_output_func(get_sap_landscape_monitor)
|
|
147
|
+
def get_sap_landscape_monitor_output(monitor_name: Optional[pulumi.Input[str]] = None,
|
|
148
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
149
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetSapLandscapeMonitorResult]:
|
|
150
|
+
"""
|
|
151
|
+
Gets configuration values for Single Pane Of Glass for SAP monitor for the specified subscription, resource group, and resource name.
|
|
152
|
+
|
|
153
|
+
|
|
154
|
+
:param str monitor_name: Name of the SAP monitor resource.
|
|
155
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
156
|
+
"""
|
|
157
|
+
...
|