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
|
@@ -295,7 +295,7 @@ class VNetPeering(pulumi.CustomResource):
|
|
|
295
295
|
__props__.__dict__["peering_state"] = None
|
|
296
296
|
__props__.__dict__["provisioning_state"] = None
|
|
297
297
|
__props__.__dict__["type"] = None
|
|
298
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:databricks:vNetPeering"), pulumi.Alias(type_="azure-native:databricks/v20180401:VNetPeering"), pulumi.Alias(type_="azure-native:databricks/v20180401:vNetPeering"), pulumi.Alias(type_="azure-native:databricks/v20210401preview:VNetPeering"), pulumi.Alias(type_="azure-native:databricks/v20210401preview:vNetPeering"), pulumi.Alias(type_="azure-native:databricks/v20220401preview:VNetPeering"), pulumi.Alias(type_="azure-native:databricks/v20220401preview:vNetPeering"), pulumi.Alias(type_="azure-native:databricks/v20230201:VNetPeering"), pulumi.Alias(type_="azure-native:databricks/v20230201:vNetPeering"), pulumi.Alias(type_="azure-native:databricks/v20230915preview:VNetPeering"), pulumi.Alias(type_="azure-native:databricks/v20230915preview:vNetPeering")])
|
|
298
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:databricks:vNetPeering"), pulumi.Alias(type_="azure-native:databricks/v20180401:VNetPeering"), pulumi.Alias(type_="azure-native:databricks/v20180401:vNetPeering"), pulumi.Alias(type_="azure-native:databricks/v20210401preview:VNetPeering"), pulumi.Alias(type_="azure-native:databricks/v20210401preview:vNetPeering"), pulumi.Alias(type_="azure-native:databricks/v20220401preview:VNetPeering"), pulumi.Alias(type_="azure-native:databricks/v20220401preview:vNetPeering"), pulumi.Alias(type_="azure-native:databricks/v20230201:VNetPeering"), pulumi.Alias(type_="azure-native:databricks/v20230201:vNetPeering"), pulumi.Alias(type_="azure-native:databricks/v20230915preview:VNetPeering"), pulumi.Alias(type_="azure-native:databricks/v20230915preview:vNetPeering"), pulumi.Alias(type_="azure-native:databricks/v20240501:VNetPeering"), pulumi.Alias(type_="azure-native:databricks/v20240501:vNetPeering")])
|
|
299
299
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
300
300
|
super(VNetPeering, __self__).__init__(
|
|
301
301
|
'azure-native:databricks:VNetPeering',
|
|
@@ -234,7 +234,7 @@ class Workspace(pulumi.CustomResource):
|
|
|
234
234
|
Information about workspace.
|
|
235
235
|
Azure REST API version: 2023-02-01. Prior API version in Azure Native 1.x: 2018-04-01.
|
|
236
236
|
|
|
237
|
-
Other available API versions: 2023-09-15-preview.
|
|
237
|
+
Other available API versions: 2023-09-15-preview, 2024-05-01.
|
|
238
238
|
|
|
239
239
|
:param str resource_name: The name of the resource.
|
|
240
240
|
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
@@ -261,7 +261,7 @@ class Workspace(pulumi.CustomResource):
|
|
|
261
261
|
Information about workspace.
|
|
262
262
|
Azure REST API version: 2023-02-01. Prior API version in Azure Native 1.x: 2018-04-01.
|
|
263
263
|
|
|
264
|
-
Other available API versions: 2023-09-15-preview.
|
|
264
|
+
Other available API versions: 2023-09-15-preview, 2024-05-01.
|
|
265
265
|
|
|
266
266
|
:param str resource_name: The name of the resource.
|
|
267
267
|
:param WorkspaceArgs args: The arguments to use to populate this resource's properties.
|
|
@@ -328,7 +328,7 @@ class Workspace(pulumi.CustomResource):
|
|
|
328
328
|
__props__.__dict__["updated_by"] = None
|
|
329
329
|
__props__.__dict__["workspace_id"] = None
|
|
330
330
|
__props__.__dict__["workspace_url"] = None
|
|
331
|
-
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:databricks/v20180401:Workspace"), pulumi.Alias(type_="azure-native:databricks/v20210401preview:Workspace"), pulumi.Alias(type_="azure-native:databricks/v20220401preview:Workspace"), pulumi.Alias(type_="azure-native:databricks/v20230201:Workspace"), pulumi.Alias(type_="azure-native:databricks/v20230915preview:Workspace")])
|
|
331
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:databricks/v20180401:Workspace"), pulumi.Alias(type_="azure-native:databricks/v20210401preview:Workspace"), pulumi.Alias(type_="azure-native:databricks/v20220401preview:Workspace"), pulumi.Alias(type_="azure-native:databricks/v20230201:Workspace"), pulumi.Alias(type_="azure-native:databricks/v20230915preview:Workspace"), pulumi.Alias(type_="azure-native:databricks/v20240501:Workspace")])
|
|
332
332
|
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
333
333
|
super(Workspace, __self__).__init__(
|
|
334
334
|
'azure-native:databricks:Workspace',
|
|
@@ -6,6 +6,8 @@ from .. import _utilities
|
|
|
6
6
|
import typing
|
|
7
7
|
# Export this package's modules as members:
|
|
8
8
|
from ._enums import *
|
|
9
|
+
from .gateway import *
|
|
10
|
+
from .get_gateway import *
|
|
9
11
|
from .get_license import *
|
|
10
12
|
from .get_license_profile import *
|
|
11
13
|
from .get_machine import *
|
|
@@ -39,6 +41,8 @@ if typing.TYPE_CHECKING:
|
|
|
39
41
|
v20230620preview = __v20230620preview
|
|
40
42
|
import pulumi_azure_native.hybridcompute.v20231003preview as __v20231003preview
|
|
41
43
|
v20231003preview = __v20231003preview
|
|
44
|
+
import pulumi_azure_native.hybridcompute.v20240331preview as __v20240331preview
|
|
45
|
+
v20240331preview = __v20240331preview
|
|
42
46
|
else:
|
|
43
47
|
v20200802 = _utilities.lazy_import('pulumi_azure_native.hybridcompute.v20200802')
|
|
44
48
|
v20200815preview = _utilities.lazy_import('pulumi_azure_native.hybridcompute.v20200815preview')
|
|
@@ -46,4 +50,5 @@ else:
|
|
|
46
50
|
v20221227 = _utilities.lazy_import('pulumi_azure_native.hybridcompute.v20221227')
|
|
47
51
|
v20230620preview = _utilities.lazy_import('pulumi_azure_native.hybridcompute.v20230620preview')
|
|
48
52
|
v20231003preview = _utilities.lazy_import('pulumi_azure_native.hybridcompute.v20231003preview')
|
|
53
|
+
v20240331preview = _utilities.lazy_import('pulumi_azure_native.hybridcompute.v20240331preview')
|
|
49
54
|
|
|
@@ -6,6 +6,7 @@ from enum import Enum
|
|
|
6
6
|
|
|
7
7
|
__all__ = [
|
|
8
8
|
'AssessmentModeTypes',
|
|
9
|
+
'GatewayType',
|
|
9
10
|
'LicenseCoreType',
|
|
10
11
|
'LicenseEdition',
|
|
11
12
|
'LicenseState',
|
|
@@ -26,6 +27,13 @@ class AssessmentModeTypes(str, Enum):
|
|
|
26
27
|
AUTOMATIC_BY_PLATFORM = "AutomaticByPlatform"
|
|
27
28
|
|
|
28
29
|
|
|
30
|
+
class GatewayType(str, Enum):
|
|
31
|
+
"""
|
|
32
|
+
The type of the Gateway resource.
|
|
33
|
+
"""
|
|
34
|
+
PUBLIC = "Public"
|
|
35
|
+
|
|
36
|
+
|
|
29
37
|
class LicenseCoreType(str, Enum):
|
|
30
38
|
"""
|
|
31
39
|
Describes the license core type (pCore or vCore).
|
|
@@ -0,0 +1,313 @@
|
|
|
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
|
+
from ._enums import *
|
|
13
|
+
|
|
14
|
+
__all__ = ['GatewayArgs', 'Gateway']
|
|
15
|
+
|
|
16
|
+
@pulumi.input_type
|
|
17
|
+
class GatewayArgs:
|
|
18
|
+
def __init__(__self__, *,
|
|
19
|
+
resource_group_name: pulumi.Input[str],
|
|
20
|
+
allowed_features: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
21
|
+
gateway_name: Optional[pulumi.Input[str]] = None,
|
|
22
|
+
gateway_type: Optional[pulumi.Input[Union[str, 'GatewayType']]] = None,
|
|
23
|
+
location: Optional[pulumi.Input[str]] = None,
|
|
24
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None):
|
|
25
|
+
"""
|
|
26
|
+
The set of arguments for constructing a Gateway resource.
|
|
27
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
|
|
28
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_features: Specifies the list of features that are enabled for this Gateway.
|
|
29
|
+
:param pulumi.Input[str] gateway_name: The name of the Gateway.
|
|
30
|
+
:param pulumi.Input[Union[str, 'GatewayType']] gateway_type: The type of the Gateway resource.
|
|
31
|
+
:param pulumi.Input[str] location: The geo-location where the resource lives
|
|
32
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Resource tags.
|
|
33
|
+
"""
|
|
34
|
+
pulumi.set(__self__, "resource_group_name", resource_group_name)
|
|
35
|
+
if allowed_features is not None:
|
|
36
|
+
pulumi.set(__self__, "allowed_features", allowed_features)
|
|
37
|
+
if gateway_name is not None:
|
|
38
|
+
pulumi.set(__self__, "gateway_name", gateway_name)
|
|
39
|
+
if gateway_type is not None:
|
|
40
|
+
pulumi.set(__self__, "gateway_type", gateway_type)
|
|
41
|
+
if location is not None:
|
|
42
|
+
pulumi.set(__self__, "location", location)
|
|
43
|
+
if tags is not None:
|
|
44
|
+
pulumi.set(__self__, "tags", tags)
|
|
45
|
+
|
|
46
|
+
@property
|
|
47
|
+
@pulumi.getter(name="resourceGroupName")
|
|
48
|
+
def resource_group_name(self) -> pulumi.Input[str]:
|
|
49
|
+
"""
|
|
50
|
+
The name of the resource group. The name is case insensitive.
|
|
51
|
+
"""
|
|
52
|
+
return pulumi.get(self, "resource_group_name")
|
|
53
|
+
|
|
54
|
+
@resource_group_name.setter
|
|
55
|
+
def resource_group_name(self, value: pulumi.Input[str]):
|
|
56
|
+
pulumi.set(self, "resource_group_name", value)
|
|
57
|
+
|
|
58
|
+
@property
|
|
59
|
+
@pulumi.getter(name="allowedFeatures")
|
|
60
|
+
def allowed_features(self) -> Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]:
|
|
61
|
+
"""
|
|
62
|
+
Specifies the list of features that are enabled for this Gateway.
|
|
63
|
+
"""
|
|
64
|
+
return pulumi.get(self, "allowed_features")
|
|
65
|
+
|
|
66
|
+
@allowed_features.setter
|
|
67
|
+
def allowed_features(self, value: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]]):
|
|
68
|
+
pulumi.set(self, "allowed_features", value)
|
|
69
|
+
|
|
70
|
+
@property
|
|
71
|
+
@pulumi.getter(name="gatewayName")
|
|
72
|
+
def gateway_name(self) -> Optional[pulumi.Input[str]]:
|
|
73
|
+
"""
|
|
74
|
+
The name of the Gateway.
|
|
75
|
+
"""
|
|
76
|
+
return pulumi.get(self, "gateway_name")
|
|
77
|
+
|
|
78
|
+
@gateway_name.setter
|
|
79
|
+
def gateway_name(self, value: Optional[pulumi.Input[str]]):
|
|
80
|
+
pulumi.set(self, "gateway_name", value)
|
|
81
|
+
|
|
82
|
+
@property
|
|
83
|
+
@pulumi.getter(name="gatewayType")
|
|
84
|
+
def gateway_type(self) -> Optional[pulumi.Input[Union[str, 'GatewayType']]]:
|
|
85
|
+
"""
|
|
86
|
+
The type of the Gateway resource.
|
|
87
|
+
"""
|
|
88
|
+
return pulumi.get(self, "gateway_type")
|
|
89
|
+
|
|
90
|
+
@gateway_type.setter
|
|
91
|
+
def gateway_type(self, value: Optional[pulumi.Input[Union[str, 'GatewayType']]]):
|
|
92
|
+
pulumi.set(self, "gateway_type", value)
|
|
93
|
+
|
|
94
|
+
@property
|
|
95
|
+
@pulumi.getter
|
|
96
|
+
def location(self) -> Optional[pulumi.Input[str]]:
|
|
97
|
+
"""
|
|
98
|
+
The geo-location where the resource lives
|
|
99
|
+
"""
|
|
100
|
+
return pulumi.get(self, "location")
|
|
101
|
+
|
|
102
|
+
@location.setter
|
|
103
|
+
def location(self, value: Optional[pulumi.Input[str]]):
|
|
104
|
+
pulumi.set(self, "location", value)
|
|
105
|
+
|
|
106
|
+
@property
|
|
107
|
+
@pulumi.getter
|
|
108
|
+
def tags(self) -> Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]:
|
|
109
|
+
"""
|
|
110
|
+
Resource tags.
|
|
111
|
+
"""
|
|
112
|
+
return pulumi.get(self, "tags")
|
|
113
|
+
|
|
114
|
+
@tags.setter
|
|
115
|
+
def tags(self, value: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]]):
|
|
116
|
+
pulumi.set(self, "tags", value)
|
|
117
|
+
|
|
118
|
+
|
|
119
|
+
class Gateway(pulumi.CustomResource):
|
|
120
|
+
@overload
|
|
121
|
+
def __init__(__self__,
|
|
122
|
+
resource_name: str,
|
|
123
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
124
|
+
allowed_features: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
125
|
+
gateway_name: Optional[pulumi.Input[str]] = None,
|
|
126
|
+
gateway_type: Optional[pulumi.Input[Union[str, 'GatewayType']]] = None,
|
|
127
|
+
location: Optional[pulumi.Input[str]] = None,
|
|
128
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
129
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
130
|
+
__props__=None):
|
|
131
|
+
"""
|
|
132
|
+
Describes an Arc Gateway.
|
|
133
|
+
Azure REST API version: 2024-03-31-preview.
|
|
134
|
+
|
|
135
|
+
:param str resource_name: The name of the resource.
|
|
136
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
137
|
+
:param pulumi.Input[Sequence[pulumi.Input[str]]] allowed_features: Specifies the list of features that are enabled for this Gateway.
|
|
138
|
+
:param pulumi.Input[str] gateway_name: The name of the Gateway.
|
|
139
|
+
:param pulumi.Input[Union[str, 'GatewayType']] gateway_type: The type of the Gateway resource.
|
|
140
|
+
:param pulumi.Input[str] location: The geo-location where the resource lives
|
|
141
|
+
:param pulumi.Input[str] resource_group_name: The name of the resource group. The name is case insensitive.
|
|
142
|
+
:param pulumi.Input[Mapping[str, pulumi.Input[str]]] tags: Resource tags.
|
|
143
|
+
"""
|
|
144
|
+
...
|
|
145
|
+
@overload
|
|
146
|
+
def __init__(__self__,
|
|
147
|
+
resource_name: str,
|
|
148
|
+
args: GatewayArgs,
|
|
149
|
+
opts: Optional[pulumi.ResourceOptions] = None):
|
|
150
|
+
"""
|
|
151
|
+
Describes an Arc Gateway.
|
|
152
|
+
Azure REST API version: 2024-03-31-preview.
|
|
153
|
+
|
|
154
|
+
:param str resource_name: The name of the resource.
|
|
155
|
+
:param GatewayArgs args: The arguments to use to populate this resource's properties.
|
|
156
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
157
|
+
"""
|
|
158
|
+
...
|
|
159
|
+
def __init__(__self__, resource_name: str, *args, **kwargs):
|
|
160
|
+
resource_args, opts = _utilities.get_resource_args_opts(GatewayArgs, pulumi.ResourceOptions, *args, **kwargs)
|
|
161
|
+
if resource_args is not None:
|
|
162
|
+
__self__._internal_init(resource_name, opts, **resource_args.__dict__)
|
|
163
|
+
else:
|
|
164
|
+
__self__._internal_init(resource_name, *args, **kwargs)
|
|
165
|
+
|
|
166
|
+
def _internal_init(__self__,
|
|
167
|
+
resource_name: str,
|
|
168
|
+
opts: Optional[pulumi.ResourceOptions] = None,
|
|
169
|
+
allowed_features: Optional[pulumi.Input[Sequence[pulumi.Input[str]]]] = None,
|
|
170
|
+
gateway_name: Optional[pulumi.Input[str]] = None,
|
|
171
|
+
gateway_type: Optional[pulumi.Input[Union[str, 'GatewayType']]] = None,
|
|
172
|
+
location: Optional[pulumi.Input[str]] = None,
|
|
173
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
174
|
+
tags: Optional[pulumi.Input[Mapping[str, pulumi.Input[str]]]] = None,
|
|
175
|
+
__props__=None):
|
|
176
|
+
opts = pulumi.ResourceOptions.merge(_utilities.get_resource_opts_defaults(), opts)
|
|
177
|
+
if not isinstance(opts, pulumi.ResourceOptions):
|
|
178
|
+
raise TypeError('Expected resource options to be a ResourceOptions instance')
|
|
179
|
+
if opts.id is None:
|
|
180
|
+
if __props__ is not None:
|
|
181
|
+
raise TypeError('__props__ is only valid when passed in combination with a valid opts.id to get an existing resource')
|
|
182
|
+
__props__ = GatewayArgs.__new__(GatewayArgs)
|
|
183
|
+
|
|
184
|
+
__props__.__dict__["allowed_features"] = allowed_features
|
|
185
|
+
__props__.__dict__["gateway_name"] = gateway_name
|
|
186
|
+
__props__.__dict__["gateway_type"] = gateway_type
|
|
187
|
+
__props__.__dict__["location"] = location
|
|
188
|
+
if resource_group_name is None and not opts.urn:
|
|
189
|
+
raise TypeError("Missing required property 'resource_group_name'")
|
|
190
|
+
__props__.__dict__["resource_group_name"] = resource_group_name
|
|
191
|
+
__props__.__dict__["tags"] = tags
|
|
192
|
+
__props__.__dict__["gateway_endpoint"] = None
|
|
193
|
+
__props__.__dict__["gateway_id"] = None
|
|
194
|
+
__props__.__dict__["name"] = None
|
|
195
|
+
__props__.__dict__["provisioning_state"] = None
|
|
196
|
+
__props__.__dict__["system_data"] = None
|
|
197
|
+
__props__.__dict__["type"] = None
|
|
198
|
+
alias_opts = pulumi.ResourceOptions(aliases=[pulumi.Alias(type_="azure-native:hybridcompute/v20240331preview:Gateway")])
|
|
199
|
+
opts = pulumi.ResourceOptions.merge(opts, alias_opts)
|
|
200
|
+
super(Gateway, __self__).__init__(
|
|
201
|
+
'azure-native:hybridcompute:Gateway',
|
|
202
|
+
resource_name,
|
|
203
|
+
__props__,
|
|
204
|
+
opts)
|
|
205
|
+
|
|
206
|
+
@staticmethod
|
|
207
|
+
def get(resource_name: str,
|
|
208
|
+
id: pulumi.Input[str],
|
|
209
|
+
opts: Optional[pulumi.ResourceOptions] = None) -> 'Gateway':
|
|
210
|
+
"""
|
|
211
|
+
Get an existing Gateway resource's state with the given name, id, and optional extra
|
|
212
|
+
properties used to qualify the lookup.
|
|
213
|
+
|
|
214
|
+
:param str resource_name: The unique name of the resulting resource.
|
|
215
|
+
:param pulumi.Input[str] id: The unique provider ID of the resource to lookup.
|
|
216
|
+
:param pulumi.ResourceOptions opts: Options for the resource.
|
|
217
|
+
"""
|
|
218
|
+
opts = pulumi.ResourceOptions.merge(opts, pulumi.ResourceOptions(id=id))
|
|
219
|
+
|
|
220
|
+
__props__ = GatewayArgs.__new__(GatewayArgs)
|
|
221
|
+
|
|
222
|
+
__props__.__dict__["allowed_features"] = None
|
|
223
|
+
__props__.__dict__["gateway_endpoint"] = None
|
|
224
|
+
__props__.__dict__["gateway_id"] = None
|
|
225
|
+
__props__.__dict__["gateway_type"] = None
|
|
226
|
+
__props__.__dict__["location"] = None
|
|
227
|
+
__props__.__dict__["name"] = None
|
|
228
|
+
__props__.__dict__["provisioning_state"] = None
|
|
229
|
+
__props__.__dict__["system_data"] = None
|
|
230
|
+
__props__.__dict__["tags"] = None
|
|
231
|
+
__props__.__dict__["type"] = None
|
|
232
|
+
return Gateway(resource_name, opts=opts, __props__=__props__)
|
|
233
|
+
|
|
234
|
+
@property
|
|
235
|
+
@pulumi.getter(name="allowedFeatures")
|
|
236
|
+
def allowed_features(self) -> pulumi.Output[Optional[Sequence[str]]]:
|
|
237
|
+
"""
|
|
238
|
+
Specifies the list of features that are enabled for this Gateway.
|
|
239
|
+
"""
|
|
240
|
+
return pulumi.get(self, "allowed_features")
|
|
241
|
+
|
|
242
|
+
@property
|
|
243
|
+
@pulumi.getter(name="gatewayEndpoint")
|
|
244
|
+
def gateway_endpoint(self) -> pulumi.Output[str]:
|
|
245
|
+
"""
|
|
246
|
+
The endpoint fqdn for the Gateway.
|
|
247
|
+
"""
|
|
248
|
+
return pulumi.get(self, "gateway_endpoint")
|
|
249
|
+
|
|
250
|
+
@property
|
|
251
|
+
@pulumi.getter(name="gatewayId")
|
|
252
|
+
def gateway_id(self) -> pulumi.Output[str]:
|
|
253
|
+
"""
|
|
254
|
+
A unique, immutable, identifier for the Gateway.
|
|
255
|
+
"""
|
|
256
|
+
return pulumi.get(self, "gateway_id")
|
|
257
|
+
|
|
258
|
+
@property
|
|
259
|
+
@pulumi.getter(name="gatewayType")
|
|
260
|
+
def gateway_type(self) -> pulumi.Output[Optional[str]]:
|
|
261
|
+
"""
|
|
262
|
+
The type of the Gateway resource.
|
|
263
|
+
"""
|
|
264
|
+
return pulumi.get(self, "gateway_type")
|
|
265
|
+
|
|
266
|
+
@property
|
|
267
|
+
@pulumi.getter
|
|
268
|
+
def location(self) -> pulumi.Output[str]:
|
|
269
|
+
"""
|
|
270
|
+
The geo-location where the resource lives
|
|
271
|
+
"""
|
|
272
|
+
return pulumi.get(self, "location")
|
|
273
|
+
|
|
274
|
+
@property
|
|
275
|
+
@pulumi.getter
|
|
276
|
+
def name(self) -> pulumi.Output[str]:
|
|
277
|
+
"""
|
|
278
|
+
The name of the resource
|
|
279
|
+
"""
|
|
280
|
+
return pulumi.get(self, "name")
|
|
281
|
+
|
|
282
|
+
@property
|
|
283
|
+
@pulumi.getter(name="provisioningState")
|
|
284
|
+
def provisioning_state(self) -> pulumi.Output[str]:
|
|
285
|
+
"""
|
|
286
|
+
The provisioning state, which only appears in the response.
|
|
287
|
+
"""
|
|
288
|
+
return pulumi.get(self, "provisioning_state")
|
|
289
|
+
|
|
290
|
+
@property
|
|
291
|
+
@pulumi.getter(name="systemData")
|
|
292
|
+
def system_data(self) -> pulumi.Output['outputs.SystemDataResponse']:
|
|
293
|
+
"""
|
|
294
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
295
|
+
"""
|
|
296
|
+
return pulumi.get(self, "system_data")
|
|
297
|
+
|
|
298
|
+
@property
|
|
299
|
+
@pulumi.getter
|
|
300
|
+
def tags(self) -> pulumi.Output[Optional[Mapping[str, str]]]:
|
|
301
|
+
"""
|
|
302
|
+
Resource tags.
|
|
303
|
+
"""
|
|
304
|
+
return pulumi.get(self, "tags")
|
|
305
|
+
|
|
306
|
+
@property
|
|
307
|
+
@pulumi.getter
|
|
308
|
+
def type(self) -> pulumi.Output[str]:
|
|
309
|
+
"""
|
|
310
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
311
|
+
"""
|
|
312
|
+
return pulumi.get(self, "type")
|
|
313
|
+
|
|
@@ -0,0 +1,211 @@
|
|
|
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
|
+
'GetGatewayResult',
|
|
15
|
+
'AwaitableGetGatewayResult',
|
|
16
|
+
'get_gateway',
|
|
17
|
+
'get_gateway_output',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
@pulumi.output_type
|
|
21
|
+
class GetGatewayResult:
|
|
22
|
+
"""
|
|
23
|
+
Describes an Arc Gateway.
|
|
24
|
+
"""
|
|
25
|
+
def __init__(__self__, allowed_features=None, gateway_endpoint=None, gateway_id=None, gateway_type=None, id=None, location=None, name=None, provisioning_state=None, system_data=None, tags=None, type=None):
|
|
26
|
+
if allowed_features and not isinstance(allowed_features, list):
|
|
27
|
+
raise TypeError("Expected argument 'allowed_features' to be a list")
|
|
28
|
+
pulumi.set(__self__, "allowed_features", allowed_features)
|
|
29
|
+
if gateway_endpoint and not isinstance(gateway_endpoint, str):
|
|
30
|
+
raise TypeError("Expected argument 'gateway_endpoint' to be a str")
|
|
31
|
+
pulumi.set(__self__, "gateway_endpoint", gateway_endpoint)
|
|
32
|
+
if gateway_id and not isinstance(gateway_id, str):
|
|
33
|
+
raise TypeError("Expected argument 'gateway_id' to be a str")
|
|
34
|
+
pulumi.set(__self__, "gateway_id", gateway_id)
|
|
35
|
+
if gateway_type and not isinstance(gateway_type, str):
|
|
36
|
+
raise TypeError("Expected argument 'gateway_type' to be a str")
|
|
37
|
+
pulumi.set(__self__, "gateway_type", gateway_type)
|
|
38
|
+
if id and not isinstance(id, str):
|
|
39
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
40
|
+
pulumi.set(__self__, "id", id)
|
|
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 name and not isinstance(name, str):
|
|
45
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
46
|
+
pulumi.set(__self__, "name", name)
|
|
47
|
+
if provisioning_state and not isinstance(provisioning_state, str):
|
|
48
|
+
raise TypeError("Expected argument 'provisioning_state' to be a str")
|
|
49
|
+
pulumi.set(__self__, "provisioning_state", provisioning_state)
|
|
50
|
+
if system_data and not isinstance(system_data, dict):
|
|
51
|
+
raise TypeError("Expected argument 'system_data' to be a dict")
|
|
52
|
+
pulumi.set(__self__, "system_data", system_data)
|
|
53
|
+
if tags and not isinstance(tags, dict):
|
|
54
|
+
raise TypeError("Expected argument 'tags' to be a dict")
|
|
55
|
+
pulumi.set(__self__, "tags", tags)
|
|
56
|
+
if type and not isinstance(type, str):
|
|
57
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
58
|
+
pulumi.set(__self__, "type", type)
|
|
59
|
+
|
|
60
|
+
@property
|
|
61
|
+
@pulumi.getter(name="allowedFeatures")
|
|
62
|
+
def allowed_features(self) -> Optional[Sequence[str]]:
|
|
63
|
+
"""
|
|
64
|
+
Specifies the list of features that are enabled for this Gateway.
|
|
65
|
+
"""
|
|
66
|
+
return pulumi.get(self, "allowed_features")
|
|
67
|
+
|
|
68
|
+
@property
|
|
69
|
+
@pulumi.getter(name="gatewayEndpoint")
|
|
70
|
+
def gateway_endpoint(self) -> str:
|
|
71
|
+
"""
|
|
72
|
+
The endpoint fqdn for the Gateway.
|
|
73
|
+
"""
|
|
74
|
+
return pulumi.get(self, "gateway_endpoint")
|
|
75
|
+
|
|
76
|
+
@property
|
|
77
|
+
@pulumi.getter(name="gatewayId")
|
|
78
|
+
def gateway_id(self) -> str:
|
|
79
|
+
"""
|
|
80
|
+
A unique, immutable, identifier for the Gateway.
|
|
81
|
+
"""
|
|
82
|
+
return pulumi.get(self, "gateway_id")
|
|
83
|
+
|
|
84
|
+
@property
|
|
85
|
+
@pulumi.getter(name="gatewayType")
|
|
86
|
+
def gateway_type(self) -> Optional[str]:
|
|
87
|
+
"""
|
|
88
|
+
The type of the Gateway resource.
|
|
89
|
+
"""
|
|
90
|
+
return pulumi.get(self, "gateway_type")
|
|
91
|
+
|
|
92
|
+
@property
|
|
93
|
+
@pulumi.getter
|
|
94
|
+
def id(self) -> str:
|
|
95
|
+
"""
|
|
96
|
+
Fully qualified resource ID for the resource. E.g. "/subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}"
|
|
97
|
+
"""
|
|
98
|
+
return pulumi.get(self, "id")
|
|
99
|
+
|
|
100
|
+
@property
|
|
101
|
+
@pulumi.getter
|
|
102
|
+
def location(self) -> str:
|
|
103
|
+
"""
|
|
104
|
+
The geo-location where the resource lives
|
|
105
|
+
"""
|
|
106
|
+
return pulumi.get(self, "location")
|
|
107
|
+
|
|
108
|
+
@property
|
|
109
|
+
@pulumi.getter
|
|
110
|
+
def name(self) -> str:
|
|
111
|
+
"""
|
|
112
|
+
The name of the resource
|
|
113
|
+
"""
|
|
114
|
+
return pulumi.get(self, "name")
|
|
115
|
+
|
|
116
|
+
@property
|
|
117
|
+
@pulumi.getter(name="provisioningState")
|
|
118
|
+
def provisioning_state(self) -> str:
|
|
119
|
+
"""
|
|
120
|
+
The provisioning state, which only appears in the response.
|
|
121
|
+
"""
|
|
122
|
+
return pulumi.get(self, "provisioning_state")
|
|
123
|
+
|
|
124
|
+
@property
|
|
125
|
+
@pulumi.getter(name="systemData")
|
|
126
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
127
|
+
"""
|
|
128
|
+
Azure Resource Manager metadata containing createdBy and modifiedBy information.
|
|
129
|
+
"""
|
|
130
|
+
return pulumi.get(self, "system_data")
|
|
131
|
+
|
|
132
|
+
@property
|
|
133
|
+
@pulumi.getter
|
|
134
|
+
def tags(self) -> Optional[Mapping[str, str]]:
|
|
135
|
+
"""
|
|
136
|
+
Resource tags.
|
|
137
|
+
"""
|
|
138
|
+
return pulumi.get(self, "tags")
|
|
139
|
+
|
|
140
|
+
@property
|
|
141
|
+
@pulumi.getter
|
|
142
|
+
def type(self) -> str:
|
|
143
|
+
"""
|
|
144
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
145
|
+
"""
|
|
146
|
+
return pulumi.get(self, "type")
|
|
147
|
+
|
|
148
|
+
|
|
149
|
+
class AwaitableGetGatewayResult(GetGatewayResult):
|
|
150
|
+
# pylint: disable=using-constant-test
|
|
151
|
+
def __await__(self):
|
|
152
|
+
if False:
|
|
153
|
+
yield self
|
|
154
|
+
return GetGatewayResult(
|
|
155
|
+
allowed_features=self.allowed_features,
|
|
156
|
+
gateway_endpoint=self.gateway_endpoint,
|
|
157
|
+
gateway_id=self.gateway_id,
|
|
158
|
+
gateway_type=self.gateway_type,
|
|
159
|
+
id=self.id,
|
|
160
|
+
location=self.location,
|
|
161
|
+
name=self.name,
|
|
162
|
+
provisioning_state=self.provisioning_state,
|
|
163
|
+
system_data=self.system_data,
|
|
164
|
+
tags=self.tags,
|
|
165
|
+
type=self.type)
|
|
166
|
+
|
|
167
|
+
|
|
168
|
+
def get_gateway(gateway_name: Optional[str] = None,
|
|
169
|
+
resource_group_name: Optional[str] = None,
|
|
170
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetGatewayResult:
|
|
171
|
+
"""
|
|
172
|
+
Retrieves information about the view of a gateway.
|
|
173
|
+
Azure REST API version: 2024-03-31-preview.
|
|
174
|
+
|
|
175
|
+
|
|
176
|
+
:param str gateway_name: The name of the Gateway.
|
|
177
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
178
|
+
"""
|
|
179
|
+
__args__ = dict()
|
|
180
|
+
__args__['gatewayName'] = gateway_name
|
|
181
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
182
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
183
|
+
__ret__ = pulumi.runtime.invoke('azure-native:hybridcompute:getGateway', __args__, opts=opts, typ=GetGatewayResult).value
|
|
184
|
+
|
|
185
|
+
return AwaitableGetGatewayResult(
|
|
186
|
+
allowed_features=pulumi.get(__ret__, 'allowed_features'),
|
|
187
|
+
gateway_endpoint=pulumi.get(__ret__, 'gateway_endpoint'),
|
|
188
|
+
gateway_id=pulumi.get(__ret__, 'gateway_id'),
|
|
189
|
+
gateway_type=pulumi.get(__ret__, 'gateway_type'),
|
|
190
|
+
id=pulumi.get(__ret__, 'id'),
|
|
191
|
+
location=pulumi.get(__ret__, 'location'),
|
|
192
|
+
name=pulumi.get(__ret__, 'name'),
|
|
193
|
+
provisioning_state=pulumi.get(__ret__, 'provisioning_state'),
|
|
194
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
195
|
+
tags=pulumi.get(__ret__, 'tags'),
|
|
196
|
+
type=pulumi.get(__ret__, 'type'))
|
|
197
|
+
|
|
198
|
+
|
|
199
|
+
@_utilities.lift_output_func(get_gateway)
|
|
200
|
+
def get_gateway_output(gateway_name: Optional[pulumi.Input[str]] = None,
|
|
201
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
202
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetGatewayResult]:
|
|
203
|
+
"""
|
|
204
|
+
Retrieves information about the view of a gateway.
|
|
205
|
+
Azure REST API version: 2024-03-31-preview.
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
:param str gateway_name: The name of the Gateway.
|
|
209
|
+
:param str resource_group_name: The name of the resource group. The name is case insensitive.
|
|
210
|
+
"""
|
|
211
|
+
...
|
|
@@ -160,7 +160,7 @@ def get_license(license_name: Optional[str] = None,
|
|
|
160
160
|
Retrieves information about the view of a license.
|
|
161
161
|
Azure REST API version: 2023-06-20-preview.
|
|
162
162
|
|
|
163
|
-
Other available API versions: 2023-10-03-preview.
|
|
163
|
+
Other available API versions: 2023-10-03-preview, 2024-03-31-preview.
|
|
164
164
|
|
|
165
165
|
|
|
166
166
|
:param str license_name: The name of the license.
|
|
@@ -193,7 +193,7 @@ def get_license_output(license_name: Optional[pulumi.Input[str]] = None,
|
|
|
193
193
|
Retrieves information about the view of a license.
|
|
194
194
|
Azure REST API version: 2023-06-20-preview.
|
|
195
195
|
|
|
196
|
-
Other available API versions: 2023-10-03-preview.
|
|
196
|
+
Other available API versions: 2023-10-03-preview, 2024-03-31-preview.
|
|
197
197
|
|
|
198
198
|
|
|
199
199
|
:param str license_name: The name of the license.
|
|
@@ -197,7 +197,7 @@ def get_license_profile(license_profile_name: Optional[str] = None,
|
|
|
197
197
|
Retrieves information about the view of a license profile.
|
|
198
198
|
Azure REST API version: 2023-06-20-preview.
|
|
199
199
|
|
|
200
|
-
Other available API versions: 2023-10-03-preview.
|
|
200
|
+
Other available API versions: 2023-10-03-preview, 2024-03-31-preview.
|
|
201
201
|
|
|
202
202
|
|
|
203
203
|
:param str license_profile_name: The name of the license profile.
|
|
@@ -236,7 +236,7 @@ def get_license_profile_output(license_profile_name: Optional[pulumi.Input[str]]
|
|
|
236
236
|
Retrieves information about the view of a license profile.
|
|
237
237
|
Azure REST API version: 2023-06-20-preview.
|
|
238
238
|
|
|
239
|
-
Other available API versions: 2023-10-03-preview.
|
|
239
|
+
Other available API versions: 2023-10-03-preview, 2024-03-31-preview.
|
|
240
240
|
|
|
241
241
|
|
|
242
242
|
:param str license_profile_name: The name of the license profile.
|
|
@@ -473,7 +473,7 @@ def get_machine(expand: Optional[str] = None,
|
|
|
473
473
|
Retrieves information about the model view or the instance view of a hybrid machine.
|
|
474
474
|
Azure REST API version: 2022-12-27.
|
|
475
475
|
|
|
476
|
-
Other available API versions: 2019-03-18-preview, 2019-08-02-preview, 2020-08-02, 2020-08-15-preview, 2022-05-10-preview, 2023-06-20-preview, 2023-10-03-preview.
|
|
476
|
+
Other available API versions: 2019-03-18-preview, 2019-08-02-preview, 2020-08-02, 2020-08-15-preview, 2022-05-10-preview, 2023-06-20-preview, 2023-10-03-preview, 2024-03-31-preview.
|
|
477
477
|
|
|
478
478
|
|
|
479
479
|
:param str expand: The expand expression to apply on the operation.
|
|
@@ -535,7 +535,7 @@ def get_machine_output(expand: Optional[pulumi.Input[Optional[str]]] = None,
|
|
|
535
535
|
Retrieves information about the model view or the instance view of a hybrid machine.
|
|
536
536
|
Azure REST API version: 2022-12-27.
|
|
537
537
|
|
|
538
|
-
Other available API versions: 2019-03-18-preview, 2019-08-02-preview, 2020-08-02, 2020-08-15-preview, 2022-05-10-preview, 2023-06-20-preview, 2023-10-03-preview.
|
|
538
|
+
Other available API versions: 2019-03-18-preview, 2019-08-02-preview, 2020-08-02, 2020-08-15-preview, 2022-05-10-preview, 2023-06-20-preview, 2023-10-03-preview, 2024-03-31-preview.
|
|
539
539
|
|
|
540
540
|
|
|
541
541
|
:param str expand: The expand expression to apply on the operation.
|