pulumi-azure-native 2.41.0a1715077566__py3-none-any.whl → 2.41.0a1715605557__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of pulumi-azure-native might be problematic. Click here for more details.
- pulumi_azure_native/__init__.py +96 -0
- pulumi_azure_native/databricks/__init__.py +3 -0
- pulumi_azure_native/databricks/access_connector.py +3 -3
- pulumi_azure_native/databricks/get_access_connector.py +2 -2
- pulumi_azure_native/databricks/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/databricks/get_workspace.py +2 -2
- pulumi_azure_native/databricks/private_endpoint_connection.py +3 -3
- pulumi_azure_native/databricks/v20220401preview/access_connector.py +1 -1
- pulumi_azure_native/databricks/v20230201/private_endpoint_connection.py +1 -1
- pulumi_azure_native/databricks/v20230201/v_net_peering.py +1 -1
- pulumi_azure_native/databricks/v20230201/workspace.py +1 -1
- pulumi_azure_native/databricks/v20230501/access_connector.py +1 -1
- pulumi_azure_native/databricks/v20230915preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/databricks/v20230915preview/v_net_peering.py +1 -1
- pulumi_azure_native/databricks/v20230915preview/workspace.py +1 -1
- pulumi_azure_native/databricks/v20240501/__init__.py +18 -0
- pulumi_azure_native/databricks/v20240501/_enums.py +121 -0
- pulumi_azure_native/databricks/v20240501/_inputs.py +1228 -0
- pulumi_azure_native/databricks/v20240501/access_connector.py +263 -0
- pulumi_azure_native/databricks/v20240501/get_access_connector.py +170 -0
- pulumi_azure_native/databricks/v20240501/get_private_endpoint_connection.py +123 -0
- pulumi_azure_native/databricks/v20240501/get_v_net_peering.py +240 -0
- pulumi_azure_native/databricks/v20240501/get_workspace.py +443 -0
- pulumi_azure_native/databricks/v20240501/outputs.py +1949 -0
- pulumi_azure_native/databricks/v20240501/private_endpoint_connection.py +207 -0
- pulumi_azure_native/databricks/v20240501/v_net_peering.py +429 -0
- pulumi_azure_native/databricks/v20240501/workspace.py +683 -0
- pulumi_azure_native/databricks/v_net_peering.py +1 -1
- pulumi_azure_native/databricks/workspace.py +3 -3
- pulumi_azure_native/hybridcompute/__init__.py +5 -0
- pulumi_azure_native/hybridcompute/_enums.py +8 -0
- pulumi_azure_native/hybridcompute/gateway.py +313 -0
- pulumi_azure_native/hybridcompute/get_gateway.py +211 -0
- pulumi_azure_native/hybridcompute/get_license.py +2 -2
- pulumi_azure_native/hybridcompute/get_license_profile.py +2 -2
- pulumi_azure_native/hybridcompute/get_machine.py +2 -2
- pulumi_azure_native/hybridcompute/get_machine_extension.py +2 -2
- pulumi_azure_native/hybridcompute/get_machine_run_command.py +4 -0
- pulumi_azure_native/hybridcompute/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/hybridcompute/get_private_link_scope.py +2 -2
- pulumi_azure_native/hybridcompute/license.py +3 -3
- pulumi_azure_native/hybridcompute/license_profile.py +3 -3
- pulumi_azure_native/hybridcompute/machine.py +3 -3
- pulumi_azure_native/hybridcompute/machine_extension.py +3 -3
- pulumi_azure_native/hybridcompute/machine_run_command.py +5 -1
- pulumi_azure_native/hybridcompute/private_endpoint_connection.py +3 -3
- pulumi_azure_native/hybridcompute/private_link_scope.py +3 -3
- pulumi_azure_native/hybridcompute/v20200802/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20200815preview/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20200815preview/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20200815preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hybridcompute/v20200815preview/private_link_scope.py +1 -1
- pulumi_azure_native/hybridcompute/v20220510preview/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20220510preview/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20221227/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20221227/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20221227/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hybridcompute/v20221227/private_link_scope.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/license.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/license_profile.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hybridcompute/v20230620preview/private_link_scope.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/license.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/license_profile.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/machine.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/machine_extension.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/machine_run_command.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/private_endpoint_connection.py +1 -1
- pulumi_azure_native/hybridcompute/v20231003preview/private_link_scope.py +1 -1
- pulumi_azure_native/hybridcompute/v20240331preview/__init__.py +26 -0
- pulumi_azure_native/hybridcompute/v20240331preview/_enums.py +170 -0
- pulumi_azure_native/hybridcompute/v20240331preview/_inputs.py +1376 -0
- pulumi_azure_native/hybridcompute/v20240331preview/gateway.py +311 -0
- pulumi_azure_native/hybridcompute/v20240331preview/get_gateway.py +209 -0
- pulumi_azure_native/hybridcompute/v20240331preview/get_license.py +196 -0
- pulumi_azure_native/hybridcompute/v20240331preview/get_license_profile.py +331 -0
- pulumi_azure_native/hybridcompute/v20240331preview/get_machine.py +591 -0
- pulumi_azure_native/hybridcompute/v20240331preview/get_machine_extension.py +162 -0
- pulumi_azure_native/hybridcompute/v20240331preview/get_machine_run_command.py +318 -0
- pulumi_azure_native/hybridcompute/v20240331preview/get_private_endpoint_connection.py +136 -0
- pulumi_azure_native/hybridcompute/v20240331preview/get_private_link_scope.py +157 -0
- pulumi_azure_native/hybridcompute/v20240331preview/license.py +321 -0
- pulumi_azure_native/hybridcompute/v20240331preview/license_profile.py +480 -0
- pulumi_azure_native/hybridcompute/v20240331preview/machine.py +850 -0
- pulumi_azure_native/hybridcompute/v20240331preview/machine_extension.py +274 -0
- pulumi_azure_native/hybridcompute/v20240331preview/machine_run_command.py +587 -0
- pulumi_azure_native/hybridcompute/v20240331preview/outputs.py +3054 -0
- pulumi_azure_native/hybridcompute/v20240331preview/private_endpoint_connection.py +215 -0
- pulumi_azure_native/hybridcompute/v20240331preview/private_link_scope.py +253 -0
- pulumi_azure_native/mobilenetwork/__init__.py +4 -0
- pulumi_azure_native/mobilenetwork/attached_data_network.py +3 -3
- pulumi_azure_native/mobilenetwork/data_network.py +3 -3
- pulumi_azure_native/mobilenetwork/diagnostics_package.py +3 -3
- pulumi_azure_native/mobilenetwork/get_attached_data_network.py +2 -2
- pulumi_azure_native/mobilenetwork/get_data_network.py +2 -2
- pulumi_azure_native/mobilenetwork/get_diagnostics_package.py +2 -2
- pulumi_azure_native/mobilenetwork/get_mobile_network.py +2 -2
- pulumi_azure_native/mobilenetwork/get_packet_capture.py +2 -2
- pulumi_azure_native/mobilenetwork/get_packet_core_control_plane.py +2 -2
- pulumi_azure_native/mobilenetwork/get_packet_core_data_plane.py +2 -2
- pulumi_azure_native/mobilenetwork/get_service.py +2 -2
- pulumi_azure_native/mobilenetwork/get_sim.py +2 -2
- pulumi_azure_native/mobilenetwork/get_sim_group.py +2 -2
- pulumi_azure_native/mobilenetwork/get_sim_policy.py +2 -2
- pulumi_azure_native/mobilenetwork/get_site.py +2 -2
- pulumi_azure_native/mobilenetwork/get_slice.py +2 -2
- pulumi_azure_native/mobilenetwork/list_mobile_network_sim_groups.py +94 -0
- pulumi_azure_native/mobilenetwork/mobile_network.py +3 -3
- pulumi_azure_native/mobilenetwork/outputs.py +126 -0
- pulumi_azure_native/mobilenetwork/packet_capture.py +3 -3
- pulumi_azure_native/mobilenetwork/packet_core_control_plane.py +3 -3
- pulumi_azure_native/mobilenetwork/packet_core_data_plane.py +3 -3
- pulumi_azure_native/mobilenetwork/service.py +3 -3
- pulumi_azure_native/mobilenetwork/sim.py +3 -3
- pulumi_azure_native/mobilenetwork/sim_group.py +3 -3
- pulumi_azure_native/mobilenetwork/sim_policy.py +3 -3
- pulumi_azure_native/mobilenetwork/site.py +3 -3
- pulumi_azure_native/mobilenetwork/slice.py +3 -3
- pulumi_azure_native/mobilenetwork/v20220301preview/packet_core_control_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/attached_data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/mobile_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/packet_core_control_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/packet_core_data_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/service.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/sim.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/sim_group.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/sim_policy.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/site.py +1 -1
- pulumi_azure_native/mobilenetwork/v20220401preview/slice.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/attached_data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/mobile_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/packet_core_control_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/packet_core_data_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/service.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/sim.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/sim_group.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/sim_policy.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/site.py +1 -1
- pulumi_azure_native/mobilenetwork/v20221101/slice.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/attached_data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/diagnostics_package.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/mobile_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/packet_capture.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/packet_core_control_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/packet_core_data_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/service.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/sim.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/sim_group.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/sim_policy.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/site.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230601/slice.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/attached_data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/diagnostics_package.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/mobile_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/packet_capture.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/packet_core_control_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/packet_core_data_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/service.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/sim.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/sim_group.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/sim_policy.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/site.py +1 -1
- pulumi_azure_native/mobilenetwork/v20230901/slice.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/attached_data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/data_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/diagnostics_package.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/mobile_network.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/packet_capture.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/packet_core_control_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/packet_core_data_plane.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/service.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/sim.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/sim_group.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/sim_policy.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/site.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240201/slice.py +1 -1
- pulumi_azure_native/mobilenetwork/v20240401/__init__.py +37 -0
- pulumi_azure_native/mobilenetwork/v20240401/_enums.py +215 -0
- pulumi_azure_native/mobilenetwork/v20240401/_inputs.py +1998 -0
- pulumi_azure_native/mobilenetwork/v20240401/attached_data_network.py +443 -0
- pulumi_azure_native/mobilenetwork/v20240401/data_network.py +282 -0
- pulumi_azure_native/mobilenetwork/v20240401/diagnostics_package.py +215 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_attached_data_network.py +237 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_data_network.py +175 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_diagnostics_package.py +162 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_mobile_network.py +209 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_packet_capture.py +240 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_packet_core_control_plane.py +404 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_packet_core_data_plane.py +188 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_service.py +201 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_sim.py +253 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_sim_group.py +196 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_sim_policy.py +240 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_site.py +175 -0
- pulumi_azure_native/mobilenetwork/v20240401/get_slice.py +188 -0
- pulumi_azure_native/mobilenetwork/v20240401/list_mobile_network_sim_groups.py +92 -0
- pulumi_azure_native/mobilenetwork/v20240401/mobile_network.py +332 -0
- pulumi_azure_native/mobilenetwork/v20240401/outputs.py +2668 -0
- pulumi_azure_native/mobilenetwork/v20240401/packet_capture.py +363 -0
- pulumi_azure_native/mobilenetwork/v20240401/packet_core_control_plane.py +737 -0
- pulumi_azure_native/mobilenetwork/v20240401/packet_core_data_plane.py +313 -0
- pulumi_azure_native/mobilenetwork/v20240401/service.py +344 -0
- pulumi_azure_native/mobilenetwork/v20240401/sim.py +422 -0
- pulumi_azure_native/mobilenetwork/v20240401/sim_group.py +321 -0
- pulumi_azure_native/mobilenetwork/v20240401/sim_policy.py +417 -0
- pulumi_azure_native/mobilenetwork/v20240401/site.py +263 -0
- pulumi_azure_native/mobilenetwork/v20240401/slice.py +313 -0
- pulumi_azure_native/network/v20231101/flow_log.py +0 -29
- pulumi_azure_native/network/v20231101/get_flow_log.py +1 -14
- pulumi_azure_native/network/v20231101/outputs.py +0 -12
- pulumi_azure_native/recoveryservices/__init__.py +3 -0
- pulumi_azure_native/recoveryservices/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/recoveryservices/get_protected_item.py +2 -2
- pulumi_azure_native/recoveryservices/get_protection_container.py +2 -2
- pulumi_azure_native/recoveryservices/get_protection_intent.py +2 -2
- pulumi_azure_native/recoveryservices/get_protection_policy.py +2 -2
- pulumi_azure_native/recoveryservices/get_resource_guard_proxy.py +2 -2
- pulumi_azure_native/recoveryservices/get_vault.py +2 -2
- pulumi_azure_native/recoveryservices/private_endpoint_connection.py +3 -3
- pulumi_azure_native/recoveryservices/protected_item.py +3 -3
- pulumi_azure_native/recoveryservices/protection_container.py +3 -3
- pulumi_azure_native/recoveryservices/protection_intent.py +3 -3
- pulumi_azure_native/recoveryservices/protection_policy.py +3 -3
- pulumi_azure_native/recoveryservices/resource_guard_proxy.py +3 -3
- pulumi_azure_native/recoveryservices/v20200202/vault.py +1 -1
- pulumi_azure_native/recoveryservices/v20230401/private_endpoint_connection.py +1 -1
- pulumi_azure_native/recoveryservices/v20230401/protected_item.py +1 -1
- pulumi_azure_native/recoveryservices/v20230401/protection_container.py +1 -1
- pulumi_azure_native/recoveryservices/v20230401/protection_intent.py +1 -1
- pulumi_azure_native/recoveryservices/v20230401/protection_policy.py +1 -1
- pulumi_azure_native/recoveryservices/v20230401/resource_guard_proxy.py +1 -1
- pulumi_azure_native/recoveryservices/v20230401/vault.py +1 -1
- pulumi_azure_native/recoveryservices/v20230601/private_endpoint_connection.py +1 -1
- pulumi_azure_native/recoveryservices/v20230601/protected_item.py +1 -1
- pulumi_azure_native/recoveryservices/v20230601/protection_container.py +1 -1
- pulumi_azure_native/recoveryservices/v20230601/protection_intent.py +1 -1
- pulumi_azure_native/recoveryservices/v20230601/protection_policy.py +1 -1
- pulumi_azure_native/recoveryservices/v20230601/resource_guard_proxy.py +1 -1
- pulumi_azure_native/recoveryservices/v20230601/vault.py +1 -1
- pulumi_azure_native/recoveryservices/v20230801/private_endpoint_connection.py +1 -1
- pulumi_azure_native/recoveryservices/v20230801/protected_item.py +1 -1
- pulumi_azure_native/recoveryservices/v20230801/protection_container.py +1 -1
- pulumi_azure_native/recoveryservices/v20230801/protection_intent.py +1 -1
- pulumi_azure_native/recoveryservices/v20230801/protection_policy.py +1 -1
- pulumi_azure_native/recoveryservices/v20230801/resource_guard_proxy.py +1 -1
- pulumi_azure_native/recoveryservices/v20230801/vault.py +1 -1
- pulumi_azure_native/recoveryservices/v20240101/private_endpoint_connection.py +1 -1
- pulumi_azure_native/recoveryservices/v20240101/protected_item.py +1 -1
- pulumi_azure_native/recoveryservices/v20240101/protection_container.py +1 -1
- pulumi_azure_native/recoveryservices/v20240101/protection_intent.py +1 -1
- pulumi_azure_native/recoveryservices/v20240101/protection_policy.py +1 -1
- pulumi_azure_native/recoveryservices/v20240101/resource_guard_proxy.py +1 -1
- pulumi_azure_native/recoveryservices/v20240101/vault.py +1 -1
- pulumi_azure_native/recoveryservices/v20240201/private_endpoint_connection.py +1 -1
- pulumi_azure_native/recoveryservices/v20240201/protected_item.py +1 -1
- pulumi_azure_native/recoveryservices/v20240201/protection_container.py +1 -1
- pulumi_azure_native/recoveryservices/v20240201/protection_intent.py +1 -1
- pulumi_azure_native/recoveryservices/v20240201/protection_policy.py +1 -1
- pulumi_azure_native/recoveryservices/v20240201/resource_guard_proxy.py +1 -1
- pulumi_azure_native/recoveryservices/v20240201/vault.py +1 -1
- pulumi_azure_native/recoveryservices/v20240401/private_endpoint_connection.py +1 -1
- pulumi_azure_native/recoveryservices/v20240401/protected_item.py +1 -1
- pulumi_azure_native/recoveryservices/v20240401/protection_container.py +1 -1
- pulumi_azure_native/recoveryservices/v20240401/protection_intent.py +1 -1
- pulumi_azure_native/recoveryservices/v20240401/protection_policy.py +1 -1
- pulumi_azure_native/recoveryservices/v20240401/resource_guard_proxy.py +1 -1
- pulumi_azure_native/recoveryservices/v20240401/vault.py +1 -1
- pulumi_azure_native/recoveryservices/v20240430preview/__init__.py +24 -0
- pulumi_azure_native/recoveryservices/v20240430preview/_enums.py +470 -0
- pulumi_azure_native/recoveryservices/v20240430preview/_inputs.py +12162 -0
- pulumi_azure_native/recoveryservices/v20240430preview/get_private_endpoint_connection.py +162 -0
- pulumi_azure_native/recoveryservices/v20240430preview/get_protected_item.py +179 -0
- pulumi_azure_native/recoveryservices/v20240430preview/get_protection_container.py +167 -0
- pulumi_azure_native/recoveryservices/v20240430preview/get_protection_intent.py +169 -0
- pulumi_azure_native/recoveryservices/v20240430preview/get_protection_policy.py +164 -0
- pulumi_azure_native/recoveryservices/v20240430preview/get_resource_guard_proxy.py +157 -0
- pulumi_azure_native/recoveryservices/v20240430preview/get_vault.py +196 -0
- pulumi_azure_native/recoveryservices/v20240430preview/outputs.py +14409 -0
- pulumi_azure_native/recoveryservices/v20240430preview/private_endpoint_connection.py +293 -0
- pulumi_azure_native/recoveryservices/v20240430preview/protected_item.py +335 -0
- pulumi_azure_native/recoveryservices/v20240430preview/protection_container.py +314 -0
- pulumi_azure_native/recoveryservices/v20240430preview/protection_intent.py +314 -0
- pulumi_azure_native/recoveryservices/v20240430preview/protection_policy.py +293 -0
- pulumi_azure_native/recoveryservices/v20240430preview/resource_guard_proxy.py +285 -0
- pulumi_azure_native/recoveryservices/v20240430preview/vault.py +321 -0
- pulumi_azure_native/recoveryservices/vault.py +3 -3
- pulumi_azure_native/security/v20231201preview/_inputs.py +1 -1
- pulumi_azure_native/security/v20231201preview/outputs.py +2 -2
- pulumi_azure_native/storage/__init__.py +5 -0
- pulumi_azure_native/storage/_enums.py +17 -0
- pulumi_azure_native/storage/_inputs.py +315 -0
- pulumi_azure_native/storage/blob_container.py +3 -3
- pulumi_azure_native/storage/blob_container_immutability_policy.py +3 -3
- pulumi_azure_native/storage/blob_inventory_policy.py +3 -3
- pulumi_azure_native/storage/blob_service_properties.py +3 -3
- pulumi_azure_native/storage/encryption_scope.py +3 -3
- pulumi_azure_native/storage/file_service_properties.py +3 -3
- pulumi_azure_native/storage/file_share.py +3 -3
- pulumi_azure_native/storage/get_blob_container.py +2 -2
- pulumi_azure_native/storage/get_blob_container_immutability_policy.py +2 -2
- pulumi_azure_native/storage/get_blob_inventory_policy.py +2 -2
- pulumi_azure_native/storage/get_blob_service_properties.py +2 -2
- pulumi_azure_native/storage/get_encryption_scope.py +2 -2
- pulumi_azure_native/storage/get_file_service_properties.py +2 -2
- pulumi_azure_native/storage/get_file_share.py +2 -2
- pulumi_azure_native/storage/get_local_user.py +2 -2
- pulumi_azure_native/storage/get_management_policy.py +2 -2
- pulumi_azure_native/storage/get_object_replication_policy.py +2 -2
- pulumi_azure_native/storage/get_private_endpoint_connection.py +2 -2
- pulumi_azure_native/storage/get_queue.py +2 -2
- pulumi_azure_native/storage/get_queue_service_properties.py +2 -2
- pulumi_azure_native/storage/get_storage_account.py +2 -2
- pulumi_azure_native/storage/get_storage_task_assignment.py +138 -0
- pulumi_azure_native/storage/get_table.py +2 -2
- pulumi_azure_native/storage/get_table_service_properties.py +2 -2
- pulumi_azure_native/storage/list_local_user_keys.py +2 -2
- pulumi_azure_native/storage/list_storage_account_keys.py +2 -2
- pulumi_azure_native/storage/list_storage_account_sas.py +2 -2
- pulumi_azure_native/storage/list_storage_account_service_sas.py +2 -2
- pulumi_azure_native/storage/local_user.py +3 -3
- pulumi_azure_native/storage/management_policy.py +3 -3
- pulumi_azure_native/storage/object_replication_policy.py +3 -3
- pulumi_azure_native/storage/outputs.py +560 -0
- pulumi_azure_native/storage/private_endpoint_connection.py +3 -3
- pulumi_azure_native/storage/queue.py +3 -3
- pulumi_azure_native/storage/queue_service_properties.py +3 -3
- pulumi_azure_native/storage/storage_account.py +3 -3
- pulumi_azure_native/storage/storage_task_assignment.py +218 -0
- pulumi_azure_native/storage/table.py +3 -3
- pulumi_azure_native/storage/table_service_properties.py +3 -3
- pulumi_azure_native/storage/v20220901/blob_container.py +1 -1
- pulumi_azure_native/storage/v20220901/blob_container_immutability_policy.py +1 -1
- pulumi_azure_native/storage/v20220901/blob_inventory_policy.py +1 -1
- pulumi_azure_native/storage/v20220901/blob_service_properties.py +1 -1
- pulumi_azure_native/storage/v20220901/encryption_scope.py +1 -1
- pulumi_azure_native/storage/v20220901/file_service_properties.py +1 -1
- pulumi_azure_native/storage/v20220901/file_share.py +1 -1
- pulumi_azure_native/storage/v20220901/local_user.py +1 -1
- pulumi_azure_native/storage/v20220901/management_policy.py +1 -1
- pulumi_azure_native/storage/v20220901/object_replication_policy.py +1 -1
- pulumi_azure_native/storage/v20220901/private_endpoint_connection.py +1 -1
- pulumi_azure_native/storage/v20220901/queue.py +1 -1
- pulumi_azure_native/storage/v20220901/queue_service_properties.py +1 -1
- pulumi_azure_native/storage/v20220901/storage_account.py +1 -1
- pulumi_azure_native/storage/v20220901/table.py +1 -1
- pulumi_azure_native/storage/v20220901/table_service_properties.py +1 -1
- pulumi_azure_native/storage/v20230101/blob_container.py +1 -1
- pulumi_azure_native/storage/v20230101/blob_container_immutability_policy.py +1 -1
- pulumi_azure_native/storage/v20230101/blob_inventory_policy.py +1 -1
- pulumi_azure_native/storage/v20230101/blob_service_properties.py +1 -1
- pulumi_azure_native/storage/v20230101/encryption_scope.py +1 -1
- pulumi_azure_native/storage/v20230101/file_service_properties.py +1 -1
- pulumi_azure_native/storage/v20230101/file_share.py +1 -1
- pulumi_azure_native/storage/v20230101/local_user.py +1 -1
- pulumi_azure_native/storage/v20230101/management_policy.py +1 -1
- pulumi_azure_native/storage/v20230101/object_replication_policy.py +1 -1
- pulumi_azure_native/storage/v20230101/private_endpoint_connection.py +1 -1
- pulumi_azure_native/storage/v20230101/queue.py +1 -1
- pulumi_azure_native/storage/v20230101/queue_service_properties.py +1 -1
- pulumi_azure_native/storage/v20230101/storage_account.py +1 -1
- pulumi_azure_native/storage/v20230101/table.py +1 -1
- pulumi_azure_native/storage/v20230101/table_service_properties.py +1 -1
- pulumi_azure_native/storage/v20230401/blob_container.py +1 -1
- pulumi_azure_native/storage/v20230401/blob_container_immutability_policy.py +1 -1
- pulumi_azure_native/storage/v20230401/blob_inventory_policy.py +1 -1
- pulumi_azure_native/storage/v20230401/blob_service_properties.py +1 -1
- pulumi_azure_native/storage/v20230401/encryption_scope.py +1 -1
- pulumi_azure_native/storage/v20230401/file_service_properties.py +1 -1
- pulumi_azure_native/storage/v20230401/file_share.py +1 -1
- pulumi_azure_native/storage/v20230401/local_user.py +1 -1
- pulumi_azure_native/storage/v20230401/management_policy.py +1 -1
- pulumi_azure_native/storage/v20230401/object_replication_policy.py +1 -1
- pulumi_azure_native/storage/v20230401/private_endpoint_connection.py +1 -1
- pulumi_azure_native/storage/v20230401/queue.py +1 -1
- pulumi_azure_native/storage/v20230401/queue_service_properties.py +1 -1
- pulumi_azure_native/storage/v20230401/storage_account.py +1 -1
- pulumi_azure_native/storage/v20230401/table.py +1 -1
- pulumi_azure_native/storage/v20230401/table_service_properties.py +1 -1
- pulumi_azure_native/storage/v20230501/__init__.py +48 -0
- pulumi_azure_native/storage/v20230501/_enums.py +434 -0
- pulumi_azure_native/storage/v20230501/_inputs.py +3435 -0
- pulumi_azure_native/storage/v20230501/blob_container.py +510 -0
- pulumi_azure_native/storage/v20230501/blob_container_immutability_policy.py +302 -0
- pulumi_azure_native/storage/v20230501/blob_inventory_policy.py +227 -0
- pulumi_azure_native/storage/v20230501/blob_service_properties.py +448 -0
- pulumi_azure_native/storage/v20230501/encryption_scope.py +313 -0
- pulumi_azure_native/storage/v20230501/file_service_properties.py +274 -0
- pulumi_azure_native/storage/v20230501/file_share.py +501 -0
- pulumi_azure_native/storage/v20230501/get_blob_container.py +370 -0
- pulumi_azure_native/storage/v20230501/get_blob_container_immutability_policy.py +179 -0
- pulumi_azure_native/storage/v20230501/get_blob_inventory_policy.py +149 -0
- pulumi_azure_native/storage/v20230501/get_blob_service_properties.py +240 -0
- pulumi_azure_native/storage/v20230501/get_encryption_scope.py +188 -0
- pulumi_azure_native/storage/v20230501/get_file_service_properties.py +162 -0
- pulumi_azure_native/storage/v20230501/get_file_share.py +362 -0
- pulumi_azure_native/storage/v20230501/get_local_user.py +279 -0
- pulumi_azure_native/storage/v20230501/get_management_policy.py +136 -0
- pulumi_azure_native/storage/v20230501/get_object_replication_policy.py +175 -0
- pulumi_azure_native/storage/v20230501/get_private_endpoint_connection.py +149 -0
- pulumi_azure_native/storage/v20230501/get_queue.py +132 -0
- pulumi_azure_native/storage/v20230501/get_queue_service_properties.py +123 -0
- pulumi_azure_native/storage/v20230501/get_storage_account.py +708 -0
- pulumi_azure_native/storage/v20230501/get_storage_task_assignment.py +136 -0
- pulumi_azure_native/storage/v20230501/get_table.py +136 -0
- pulumi_azure_native/storage/v20230501/get_table_service_properties.py +123 -0
- pulumi_azure_native/storage/v20230501/list_local_user_keys.py +97 -0
- pulumi_azure_native/storage/v20230501/list_storage_account_keys.py +84 -0
- pulumi_azure_native/storage/v20230501/list_storage_account_sas.py +119 -0
- pulumi_azure_native/storage/v20230501/list_storage_account_service_sas.py +169 -0
- pulumi_azure_native/storage/v20230501/local_user.py +496 -0
- pulumi_azure_native/storage/v20230501/management_policy.py +217 -0
- pulumi_azure_native/storage/v20230501/object_replication_policy.py +285 -0
- pulumi_azure_native/storage/v20230501/outputs.py +5640 -0
- pulumi_azure_native/storage/v20230501/private_endpoint_connection.py +227 -0
- pulumi_azure_native/storage/v20230501/queue.py +211 -0
- pulumi_azure_native/storage/v20230501/queue_service_properties.py +206 -0
- pulumi_azure_native/storage/v20230501/storage_account.py +1169 -0
- pulumi_azure_native/storage/v20230501/storage_task_assignment.py +216 -0
- pulumi_azure_native/storage/v20230501/table.py +214 -0
- pulumi_azure_native/storage/v20230501/table_service_properties.py +206 -0
- pulumi_azure_native/storageactions/_inputs.py +2 -2
- pulumi_azure_native/storageactions/get_storage_task.py +1 -1
- pulumi_azure_native/storageactions/outputs.py +2 -2
- pulumi_azure_native/storageactions/storage_task.py +18 -17
- pulumi_azure_native/storageactions/v20230101/_inputs.py +2 -2
- pulumi_azure_native/storageactions/v20230101/get_storage_task.py +1 -1
- pulumi_azure_native/storageactions/v20230101/outputs.py +2 -2
- pulumi_azure_native/storageactions/v20230101/storage_task.py +18 -17
- pulumi_azure_native/workloads/__init__.py +3 -0
- pulumi_azure_native/workloads/_enums.py +15 -0
- pulumi_azure_native/workloads/get_monitor.py +4 -0
- pulumi_azure_native/workloads/get_provider_instance.py +2 -2
- pulumi_azure_native/workloads/get_sap_landscape_monitor.py +2 -2
- pulumi_azure_native/workloads/monitor.py +5 -1
- pulumi_azure_native/workloads/provider_instance.py +3 -3
- pulumi_azure_native/workloads/sap_landscape_monitor.py +3 -3
- pulumi_azure_native/workloads/v20230401/monitor.py +1 -1
- pulumi_azure_native/workloads/v20230401/provider_instance.py +1 -1
- pulumi_azure_native/workloads/v20230401/sap_landscape_monitor.py +1 -1
- pulumi_azure_native/workloads/v20231001preview/monitor.py +1 -1
- pulumi_azure_native/workloads/v20231001preview/provider_instance.py +1 -1
- pulumi_azure_native/workloads/v20231001preview/sap_landscape_monitor.py +1 -1
- pulumi_azure_native/workloads/v20231201preview/__init__.py +16 -0
- pulumi_azure_native/workloads/v20231201preview/_enums.py +68 -0
- pulumi_azure_native/workloads/v20231201preview/_inputs.py +1216 -0
- pulumi_azure_native/workloads/v20231201preview/get_monitor.py +300 -0
- pulumi_azure_native/workloads/v20231201preview/get_provider_instance.py +175 -0
- pulumi_azure_native/workloads/v20231201preview/get_sap_landscape_monitor.py +157 -0
- pulumi_azure_native/workloads/v20231201preview/monitor.py +496 -0
- pulumi_azure_native/workloads/v20231201preview/outputs.py +1583 -0
- pulumi_azure_native/workloads/v20231201preview/provider_instance.py +246 -0
- pulumi_azure_native/workloads/v20231201preview/sap_landscape_monitor.py +234 -0
- {pulumi_azure_native-2.41.0a1715077566.dist-info → pulumi_azure_native-2.41.0a1715605557.dist-info}/METADATA +1 -1
- {pulumi_azure_native-2.41.0a1715077566.dist-info → pulumi_azure_native-2.41.0a1715605557.dist-info}/RECORD +462 -324
- {pulumi_azure_native-2.41.0a1715077566.dist-info → pulumi_azure_native-2.41.0a1715605557.dist-info}/WHEEL +0 -0
- {pulumi_azure_native-2.41.0a1715077566.dist-info → pulumi_azure_native-2.41.0a1715605557.dist-info}/top_level.txt +0 -0
|
@@ -0,0 +1,149 @@
|
|
|
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
|
+
'GetBlobInventoryPolicyResult',
|
|
15
|
+
'AwaitableGetBlobInventoryPolicyResult',
|
|
16
|
+
'get_blob_inventory_policy',
|
|
17
|
+
'get_blob_inventory_policy_output',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
@pulumi.output_type
|
|
21
|
+
class GetBlobInventoryPolicyResult:
|
|
22
|
+
"""
|
|
23
|
+
The storage account blob inventory policy.
|
|
24
|
+
"""
|
|
25
|
+
def __init__(__self__, id=None, last_modified_time=None, name=None, policy=None, system_data=None, type=None):
|
|
26
|
+
if id and not isinstance(id, str):
|
|
27
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
28
|
+
pulumi.set(__self__, "id", id)
|
|
29
|
+
if last_modified_time and not isinstance(last_modified_time, str):
|
|
30
|
+
raise TypeError("Expected argument 'last_modified_time' to be a str")
|
|
31
|
+
pulumi.set(__self__, "last_modified_time", last_modified_time)
|
|
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 policy and not isinstance(policy, dict):
|
|
36
|
+
raise TypeError("Expected argument 'policy' to be a dict")
|
|
37
|
+
pulumi.set(__self__, "policy", policy)
|
|
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 type and not isinstance(type, str):
|
|
42
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
43
|
+
pulumi.set(__self__, "type", type)
|
|
44
|
+
|
|
45
|
+
@property
|
|
46
|
+
@pulumi.getter
|
|
47
|
+
def id(self) -> str:
|
|
48
|
+
"""
|
|
49
|
+
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
|
|
50
|
+
"""
|
|
51
|
+
return pulumi.get(self, "id")
|
|
52
|
+
|
|
53
|
+
@property
|
|
54
|
+
@pulumi.getter(name="lastModifiedTime")
|
|
55
|
+
def last_modified_time(self) -> str:
|
|
56
|
+
"""
|
|
57
|
+
Returns the last modified date and time of the blob inventory policy.
|
|
58
|
+
"""
|
|
59
|
+
return pulumi.get(self, "last_modified_time")
|
|
60
|
+
|
|
61
|
+
@property
|
|
62
|
+
@pulumi.getter
|
|
63
|
+
def name(self) -> str:
|
|
64
|
+
"""
|
|
65
|
+
The name of the resource
|
|
66
|
+
"""
|
|
67
|
+
return pulumi.get(self, "name")
|
|
68
|
+
|
|
69
|
+
@property
|
|
70
|
+
@pulumi.getter
|
|
71
|
+
def policy(self) -> 'outputs.BlobInventoryPolicySchemaResponse':
|
|
72
|
+
"""
|
|
73
|
+
The storage account blob inventory policy object. It is composed of policy rules.
|
|
74
|
+
"""
|
|
75
|
+
return pulumi.get(self, "policy")
|
|
76
|
+
|
|
77
|
+
@property
|
|
78
|
+
@pulumi.getter(name="systemData")
|
|
79
|
+
def system_data(self) -> 'outputs.SystemDataResponse':
|
|
80
|
+
"""
|
|
81
|
+
Metadata pertaining to creation and last modification of the resource.
|
|
82
|
+
"""
|
|
83
|
+
return pulumi.get(self, "system_data")
|
|
84
|
+
|
|
85
|
+
@property
|
|
86
|
+
@pulumi.getter
|
|
87
|
+
def type(self) -> str:
|
|
88
|
+
"""
|
|
89
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
90
|
+
"""
|
|
91
|
+
return pulumi.get(self, "type")
|
|
92
|
+
|
|
93
|
+
|
|
94
|
+
class AwaitableGetBlobInventoryPolicyResult(GetBlobInventoryPolicyResult):
|
|
95
|
+
# pylint: disable=using-constant-test
|
|
96
|
+
def __await__(self):
|
|
97
|
+
if False:
|
|
98
|
+
yield self
|
|
99
|
+
return GetBlobInventoryPolicyResult(
|
|
100
|
+
id=self.id,
|
|
101
|
+
last_modified_time=self.last_modified_time,
|
|
102
|
+
name=self.name,
|
|
103
|
+
policy=self.policy,
|
|
104
|
+
system_data=self.system_data,
|
|
105
|
+
type=self.type)
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
def get_blob_inventory_policy(account_name: Optional[str] = None,
|
|
109
|
+
blob_inventory_policy_name: Optional[str] = None,
|
|
110
|
+
resource_group_name: Optional[str] = None,
|
|
111
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetBlobInventoryPolicyResult:
|
|
112
|
+
"""
|
|
113
|
+
Gets the blob inventory policy associated with the specified storage account.
|
|
114
|
+
|
|
115
|
+
|
|
116
|
+
:param str account_name: The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only.
|
|
117
|
+
:param str blob_inventory_policy_name: The name of the storage account blob inventory policy. It should always be 'default'
|
|
118
|
+
:param str resource_group_name: The name of the resource group within the user's subscription. The name is case insensitive.
|
|
119
|
+
"""
|
|
120
|
+
__args__ = dict()
|
|
121
|
+
__args__['accountName'] = account_name
|
|
122
|
+
__args__['blobInventoryPolicyName'] = blob_inventory_policy_name
|
|
123
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
124
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
125
|
+
__ret__ = pulumi.runtime.invoke('azure-native:storage/v20230501:getBlobInventoryPolicy', __args__, opts=opts, typ=GetBlobInventoryPolicyResult).value
|
|
126
|
+
|
|
127
|
+
return AwaitableGetBlobInventoryPolicyResult(
|
|
128
|
+
id=pulumi.get(__ret__, 'id'),
|
|
129
|
+
last_modified_time=pulumi.get(__ret__, 'last_modified_time'),
|
|
130
|
+
name=pulumi.get(__ret__, 'name'),
|
|
131
|
+
policy=pulumi.get(__ret__, 'policy'),
|
|
132
|
+
system_data=pulumi.get(__ret__, 'system_data'),
|
|
133
|
+
type=pulumi.get(__ret__, 'type'))
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
@_utilities.lift_output_func(get_blob_inventory_policy)
|
|
137
|
+
def get_blob_inventory_policy_output(account_name: Optional[pulumi.Input[str]] = None,
|
|
138
|
+
blob_inventory_policy_name: Optional[pulumi.Input[str]] = None,
|
|
139
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
140
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetBlobInventoryPolicyResult]:
|
|
141
|
+
"""
|
|
142
|
+
Gets the blob inventory policy associated with the specified storage account.
|
|
143
|
+
|
|
144
|
+
|
|
145
|
+
:param str account_name: The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only.
|
|
146
|
+
:param str blob_inventory_policy_name: The name of the storage account blob inventory policy. It should always be 'default'
|
|
147
|
+
:param str resource_group_name: The name of the resource group within the user's subscription. The name is case insensitive.
|
|
148
|
+
"""
|
|
149
|
+
...
|
|
@@ -0,0 +1,240 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import pulumi
|
|
8
|
+
import pulumi.runtime
|
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
10
|
+
from ... import _utilities
|
|
11
|
+
from . import outputs
|
|
12
|
+
|
|
13
|
+
__all__ = [
|
|
14
|
+
'GetBlobServicePropertiesResult',
|
|
15
|
+
'AwaitableGetBlobServicePropertiesResult',
|
|
16
|
+
'get_blob_service_properties',
|
|
17
|
+
'get_blob_service_properties_output',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
@pulumi.output_type
|
|
21
|
+
class GetBlobServicePropertiesResult:
|
|
22
|
+
"""
|
|
23
|
+
The properties of a storage account’s Blob service.
|
|
24
|
+
"""
|
|
25
|
+
def __init__(__self__, automatic_snapshot_policy_enabled=None, change_feed=None, container_delete_retention_policy=None, cors=None, default_service_version=None, delete_retention_policy=None, id=None, is_versioning_enabled=None, last_access_time_tracking_policy=None, name=None, restore_policy=None, sku=None, type=None):
|
|
26
|
+
if automatic_snapshot_policy_enabled and not isinstance(automatic_snapshot_policy_enabled, bool):
|
|
27
|
+
raise TypeError("Expected argument 'automatic_snapshot_policy_enabled' to be a bool")
|
|
28
|
+
pulumi.set(__self__, "automatic_snapshot_policy_enabled", automatic_snapshot_policy_enabled)
|
|
29
|
+
if change_feed and not isinstance(change_feed, dict):
|
|
30
|
+
raise TypeError("Expected argument 'change_feed' to be a dict")
|
|
31
|
+
pulumi.set(__self__, "change_feed", change_feed)
|
|
32
|
+
if container_delete_retention_policy and not isinstance(container_delete_retention_policy, dict):
|
|
33
|
+
raise TypeError("Expected argument 'container_delete_retention_policy' to be a dict")
|
|
34
|
+
pulumi.set(__self__, "container_delete_retention_policy", container_delete_retention_policy)
|
|
35
|
+
if cors and not isinstance(cors, dict):
|
|
36
|
+
raise TypeError("Expected argument 'cors' to be a dict")
|
|
37
|
+
pulumi.set(__self__, "cors", cors)
|
|
38
|
+
if default_service_version and not isinstance(default_service_version, str):
|
|
39
|
+
raise TypeError("Expected argument 'default_service_version' to be a str")
|
|
40
|
+
pulumi.set(__self__, "default_service_version", default_service_version)
|
|
41
|
+
if delete_retention_policy and not isinstance(delete_retention_policy, dict):
|
|
42
|
+
raise TypeError("Expected argument 'delete_retention_policy' to be a dict")
|
|
43
|
+
pulumi.set(__self__, "delete_retention_policy", delete_retention_policy)
|
|
44
|
+
if id and not isinstance(id, str):
|
|
45
|
+
raise TypeError("Expected argument 'id' to be a str")
|
|
46
|
+
pulumi.set(__self__, "id", id)
|
|
47
|
+
if is_versioning_enabled and not isinstance(is_versioning_enabled, bool):
|
|
48
|
+
raise TypeError("Expected argument 'is_versioning_enabled' to be a bool")
|
|
49
|
+
pulumi.set(__self__, "is_versioning_enabled", is_versioning_enabled)
|
|
50
|
+
if last_access_time_tracking_policy and not isinstance(last_access_time_tracking_policy, dict):
|
|
51
|
+
raise TypeError("Expected argument 'last_access_time_tracking_policy' to be a dict")
|
|
52
|
+
pulumi.set(__self__, "last_access_time_tracking_policy", last_access_time_tracking_policy)
|
|
53
|
+
if name and not isinstance(name, str):
|
|
54
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
55
|
+
pulumi.set(__self__, "name", name)
|
|
56
|
+
if restore_policy and not isinstance(restore_policy, dict):
|
|
57
|
+
raise TypeError("Expected argument 'restore_policy' to be a dict")
|
|
58
|
+
pulumi.set(__self__, "restore_policy", restore_policy)
|
|
59
|
+
if sku and not isinstance(sku, dict):
|
|
60
|
+
raise TypeError("Expected argument 'sku' to be a dict")
|
|
61
|
+
pulumi.set(__self__, "sku", sku)
|
|
62
|
+
if type and not isinstance(type, str):
|
|
63
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
64
|
+
pulumi.set(__self__, "type", type)
|
|
65
|
+
|
|
66
|
+
@property
|
|
67
|
+
@pulumi.getter(name="automaticSnapshotPolicyEnabled")
|
|
68
|
+
def automatic_snapshot_policy_enabled(self) -> Optional[bool]:
|
|
69
|
+
"""
|
|
70
|
+
Deprecated in favor of isVersioningEnabled property.
|
|
71
|
+
"""
|
|
72
|
+
return pulumi.get(self, "automatic_snapshot_policy_enabled")
|
|
73
|
+
|
|
74
|
+
@property
|
|
75
|
+
@pulumi.getter(name="changeFeed")
|
|
76
|
+
def change_feed(self) -> Optional['outputs.ChangeFeedResponse']:
|
|
77
|
+
"""
|
|
78
|
+
The blob service properties for change feed events.
|
|
79
|
+
"""
|
|
80
|
+
return pulumi.get(self, "change_feed")
|
|
81
|
+
|
|
82
|
+
@property
|
|
83
|
+
@pulumi.getter(name="containerDeleteRetentionPolicy")
|
|
84
|
+
def container_delete_retention_policy(self) -> Optional['outputs.DeleteRetentionPolicyResponse']:
|
|
85
|
+
"""
|
|
86
|
+
The blob service properties for container soft delete.
|
|
87
|
+
"""
|
|
88
|
+
return pulumi.get(self, "container_delete_retention_policy")
|
|
89
|
+
|
|
90
|
+
@property
|
|
91
|
+
@pulumi.getter
|
|
92
|
+
def cors(self) -> Optional['outputs.CorsRulesResponse']:
|
|
93
|
+
"""
|
|
94
|
+
Specifies CORS rules for the Blob service. You can include up to five CorsRule elements in the request. If no CorsRule elements are included in the request body, all CORS rules will be deleted, and CORS will be disabled for the Blob service.
|
|
95
|
+
"""
|
|
96
|
+
return pulumi.get(self, "cors")
|
|
97
|
+
|
|
98
|
+
@property
|
|
99
|
+
@pulumi.getter(name="defaultServiceVersion")
|
|
100
|
+
def default_service_version(self) -> Optional[str]:
|
|
101
|
+
"""
|
|
102
|
+
DefaultServiceVersion indicates the default version to use for requests to the Blob service if an incoming request’s version is not specified. Possible values include version 2008-10-27 and all more recent versions.
|
|
103
|
+
"""
|
|
104
|
+
return pulumi.get(self, "default_service_version")
|
|
105
|
+
|
|
106
|
+
@property
|
|
107
|
+
@pulumi.getter(name="deleteRetentionPolicy")
|
|
108
|
+
def delete_retention_policy(self) -> Optional['outputs.DeleteRetentionPolicyResponse']:
|
|
109
|
+
"""
|
|
110
|
+
The blob service properties for blob soft delete.
|
|
111
|
+
"""
|
|
112
|
+
return pulumi.get(self, "delete_retention_policy")
|
|
113
|
+
|
|
114
|
+
@property
|
|
115
|
+
@pulumi.getter
|
|
116
|
+
def id(self) -> str:
|
|
117
|
+
"""
|
|
118
|
+
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
|
|
119
|
+
"""
|
|
120
|
+
return pulumi.get(self, "id")
|
|
121
|
+
|
|
122
|
+
@property
|
|
123
|
+
@pulumi.getter(name="isVersioningEnabled")
|
|
124
|
+
def is_versioning_enabled(self) -> Optional[bool]:
|
|
125
|
+
"""
|
|
126
|
+
Versioning is enabled if set to true.
|
|
127
|
+
"""
|
|
128
|
+
return pulumi.get(self, "is_versioning_enabled")
|
|
129
|
+
|
|
130
|
+
@property
|
|
131
|
+
@pulumi.getter(name="lastAccessTimeTrackingPolicy")
|
|
132
|
+
def last_access_time_tracking_policy(self) -> Optional['outputs.LastAccessTimeTrackingPolicyResponse']:
|
|
133
|
+
"""
|
|
134
|
+
The blob service property to configure last access time based tracking policy.
|
|
135
|
+
"""
|
|
136
|
+
return pulumi.get(self, "last_access_time_tracking_policy")
|
|
137
|
+
|
|
138
|
+
@property
|
|
139
|
+
@pulumi.getter
|
|
140
|
+
def name(self) -> str:
|
|
141
|
+
"""
|
|
142
|
+
The name of the resource
|
|
143
|
+
"""
|
|
144
|
+
return pulumi.get(self, "name")
|
|
145
|
+
|
|
146
|
+
@property
|
|
147
|
+
@pulumi.getter(name="restorePolicy")
|
|
148
|
+
def restore_policy(self) -> Optional['outputs.RestorePolicyPropertiesResponse']:
|
|
149
|
+
"""
|
|
150
|
+
The blob service properties for blob restore policy.
|
|
151
|
+
"""
|
|
152
|
+
return pulumi.get(self, "restore_policy")
|
|
153
|
+
|
|
154
|
+
@property
|
|
155
|
+
@pulumi.getter
|
|
156
|
+
def sku(self) -> 'outputs.SkuResponse':
|
|
157
|
+
"""
|
|
158
|
+
Sku name and tier.
|
|
159
|
+
"""
|
|
160
|
+
return pulumi.get(self, "sku")
|
|
161
|
+
|
|
162
|
+
@property
|
|
163
|
+
@pulumi.getter
|
|
164
|
+
def type(self) -> str:
|
|
165
|
+
"""
|
|
166
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
167
|
+
"""
|
|
168
|
+
return pulumi.get(self, "type")
|
|
169
|
+
|
|
170
|
+
|
|
171
|
+
class AwaitableGetBlobServicePropertiesResult(GetBlobServicePropertiesResult):
|
|
172
|
+
# pylint: disable=using-constant-test
|
|
173
|
+
def __await__(self):
|
|
174
|
+
if False:
|
|
175
|
+
yield self
|
|
176
|
+
return GetBlobServicePropertiesResult(
|
|
177
|
+
automatic_snapshot_policy_enabled=self.automatic_snapshot_policy_enabled,
|
|
178
|
+
change_feed=self.change_feed,
|
|
179
|
+
container_delete_retention_policy=self.container_delete_retention_policy,
|
|
180
|
+
cors=self.cors,
|
|
181
|
+
default_service_version=self.default_service_version,
|
|
182
|
+
delete_retention_policy=self.delete_retention_policy,
|
|
183
|
+
id=self.id,
|
|
184
|
+
is_versioning_enabled=self.is_versioning_enabled,
|
|
185
|
+
last_access_time_tracking_policy=self.last_access_time_tracking_policy,
|
|
186
|
+
name=self.name,
|
|
187
|
+
restore_policy=self.restore_policy,
|
|
188
|
+
sku=self.sku,
|
|
189
|
+
type=self.type)
|
|
190
|
+
|
|
191
|
+
|
|
192
|
+
def get_blob_service_properties(account_name: Optional[str] = None,
|
|
193
|
+
blob_services_name: Optional[str] = None,
|
|
194
|
+
resource_group_name: Optional[str] = None,
|
|
195
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetBlobServicePropertiesResult:
|
|
196
|
+
"""
|
|
197
|
+
Gets the properties of a storage account’s Blob service, including properties for Storage Analytics and CORS (Cross-Origin Resource Sharing) rules.
|
|
198
|
+
|
|
199
|
+
|
|
200
|
+
:param str account_name: The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only.
|
|
201
|
+
:param str blob_services_name: The name of the blob Service within the specified storage account. Blob Service Name must be 'default'
|
|
202
|
+
:param str resource_group_name: The name of the resource group within the user's subscription. The name is case insensitive.
|
|
203
|
+
"""
|
|
204
|
+
__args__ = dict()
|
|
205
|
+
__args__['accountName'] = account_name
|
|
206
|
+
__args__['blobServicesName'] = blob_services_name
|
|
207
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
208
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
209
|
+
__ret__ = pulumi.runtime.invoke('azure-native:storage/v20230501:getBlobServiceProperties', __args__, opts=opts, typ=GetBlobServicePropertiesResult).value
|
|
210
|
+
|
|
211
|
+
return AwaitableGetBlobServicePropertiesResult(
|
|
212
|
+
automatic_snapshot_policy_enabled=pulumi.get(__ret__, 'automatic_snapshot_policy_enabled'),
|
|
213
|
+
change_feed=pulumi.get(__ret__, 'change_feed'),
|
|
214
|
+
container_delete_retention_policy=pulumi.get(__ret__, 'container_delete_retention_policy'),
|
|
215
|
+
cors=pulumi.get(__ret__, 'cors'),
|
|
216
|
+
default_service_version=pulumi.get(__ret__, 'default_service_version'),
|
|
217
|
+
delete_retention_policy=pulumi.get(__ret__, 'delete_retention_policy'),
|
|
218
|
+
id=pulumi.get(__ret__, 'id'),
|
|
219
|
+
is_versioning_enabled=pulumi.get(__ret__, 'is_versioning_enabled'),
|
|
220
|
+
last_access_time_tracking_policy=pulumi.get(__ret__, 'last_access_time_tracking_policy'),
|
|
221
|
+
name=pulumi.get(__ret__, 'name'),
|
|
222
|
+
restore_policy=pulumi.get(__ret__, 'restore_policy'),
|
|
223
|
+
sku=pulumi.get(__ret__, 'sku'),
|
|
224
|
+
type=pulumi.get(__ret__, 'type'))
|
|
225
|
+
|
|
226
|
+
|
|
227
|
+
@_utilities.lift_output_func(get_blob_service_properties)
|
|
228
|
+
def get_blob_service_properties_output(account_name: Optional[pulumi.Input[str]] = None,
|
|
229
|
+
blob_services_name: Optional[pulumi.Input[str]] = None,
|
|
230
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
231
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetBlobServicePropertiesResult]:
|
|
232
|
+
"""
|
|
233
|
+
Gets the properties of a storage account’s Blob service, including properties for Storage Analytics and CORS (Cross-Origin Resource Sharing) rules.
|
|
234
|
+
|
|
235
|
+
|
|
236
|
+
:param str account_name: The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only.
|
|
237
|
+
:param str blob_services_name: The name of the blob Service within the specified storage account. Blob Service Name must be 'default'
|
|
238
|
+
:param str resource_group_name: The name of the resource group within the user's subscription. The name is case insensitive.
|
|
239
|
+
"""
|
|
240
|
+
...
|
|
@@ -0,0 +1,188 @@
|
|
|
1
|
+
# coding=utf-8
|
|
2
|
+
# *** WARNING: this file was generated by pulumi-language-python. ***
|
|
3
|
+
# *** Do not edit by hand unless you're certain you know what you are doing! ***
|
|
4
|
+
|
|
5
|
+
import copy
|
|
6
|
+
import warnings
|
|
7
|
+
import pulumi
|
|
8
|
+
import pulumi.runtime
|
|
9
|
+
from typing import Any, Mapping, Optional, Sequence, Union, overload
|
|
10
|
+
from ... import _utilities
|
|
11
|
+
from . import outputs
|
|
12
|
+
|
|
13
|
+
__all__ = [
|
|
14
|
+
'GetEncryptionScopeResult',
|
|
15
|
+
'AwaitableGetEncryptionScopeResult',
|
|
16
|
+
'get_encryption_scope',
|
|
17
|
+
'get_encryption_scope_output',
|
|
18
|
+
]
|
|
19
|
+
|
|
20
|
+
@pulumi.output_type
|
|
21
|
+
class GetEncryptionScopeResult:
|
|
22
|
+
"""
|
|
23
|
+
The Encryption Scope resource.
|
|
24
|
+
"""
|
|
25
|
+
def __init__(__self__, creation_time=None, id=None, key_vault_properties=None, last_modified_time=None, name=None, require_infrastructure_encryption=None, source=None, state=None, type=None):
|
|
26
|
+
if creation_time and not isinstance(creation_time, str):
|
|
27
|
+
raise TypeError("Expected argument 'creation_time' to be a str")
|
|
28
|
+
pulumi.set(__self__, "creation_time", creation_time)
|
|
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 key_vault_properties and not isinstance(key_vault_properties, dict):
|
|
33
|
+
raise TypeError("Expected argument 'key_vault_properties' to be a dict")
|
|
34
|
+
pulumi.set(__self__, "key_vault_properties", key_vault_properties)
|
|
35
|
+
if last_modified_time and not isinstance(last_modified_time, str):
|
|
36
|
+
raise TypeError("Expected argument 'last_modified_time' to be a str")
|
|
37
|
+
pulumi.set(__self__, "last_modified_time", last_modified_time)
|
|
38
|
+
if name and not isinstance(name, str):
|
|
39
|
+
raise TypeError("Expected argument 'name' to be a str")
|
|
40
|
+
pulumi.set(__self__, "name", name)
|
|
41
|
+
if require_infrastructure_encryption and not isinstance(require_infrastructure_encryption, bool):
|
|
42
|
+
raise TypeError("Expected argument 'require_infrastructure_encryption' to be a bool")
|
|
43
|
+
pulumi.set(__self__, "require_infrastructure_encryption", require_infrastructure_encryption)
|
|
44
|
+
if source and not isinstance(source, str):
|
|
45
|
+
raise TypeError("Expected argument 'source' to be a str")
|
|
46
|
+
pulumi.set(__self__, "source", source)
|
|
47
|
+
if state and not isinstance(state, str):
|
|
48
|
+
raise TypeError("Expected argument 'state' to be a str")
|
|
49
|
+
pulumi.set(__self__, "state", state)
|
|
50
|
+
if type and not isinstance(type, str):
|
|
51
|
+
raise TypeError("Expected argument 'type' to be a str")
|
|
52
|
+
pulumi.set(__self__, "type", type)
|
|
53
|
+
|
|
54
|
+
@property
|
|
55
|
+
@pulumi.getter(name="creationTime")
|
|
56
|
+
def creation_time(self) -> str:
|
|
57
|
+
"""
|
|
58
|
+
Gets the creation date and time of the encryption scope in UTC.
|
|
59
|
+
"""
|
|
60
|
+
return pulumi.get(self, "creation_time")
|
|
61
|
+
|
|
62
|
+
@property
|
|
63
|
+
@pulumi.getter
|
|
64
|
+
def id(self) -> str:
|
|
65
|
+
"""
|
|
66
|
+
Fully qualified resource ID for the resource. Ex - /subscriptions/{subscriptionId}/resourceGroups/{resourceGroupName}/providers/{resourceProviderNamespace}/{resourceType}/{resourceName}
|
|
67
|
+
"""
|
|
68
|
+
return pulumi.get(self, "id")
|
|
69
|
+
|
|
70
|
+
@property
|
|
71
|
+
@pulumi.getter(name="keyVaultProperties")
|
|
72
|
+
def key_vault_properties(self) -> Optional['outputs.EncryptionScopeKeyVaultPropertiesResponse']:
|
|
73
|
+
"""
|
|
74
|
+
The key vault properties for the encryption scope. This is a required field if encryption scope 'source' attribute is set to 'Microsoft.KeyVault'.
|
|
75
|
+
"""
|
|
76
|
+
return pulumi.get(self, "key_vault_properties")
|
|
77
|
+
|
|
78
|
+
@property
|
|
79
|
+
@pulumi.getter(name="lastModifiedTime")
|
|
80
|
+
def last_modified_time(self) -> str:
|
|
81
|
+
"""
|
|
82
|
+
Gets the last modification date and time of the encryption scope in UTC.
|
|
83
|
+
"""
|
|
84
|
+
return pulumi.get(self, "last_modified_time")
|
|
85
|
+
|
|
86
|
+
@property
|
|
87
|
+
@pulumi.getter
|
|
88
|
+
def name(self) -> str:
|
|
89
|
+
"""
|
|
90
|
+
The name of the resource
|
|
91
|
+
"""
|
|
92
|
+
return pulumi.get(self, "name")
|
|
93
|
+
|
|
94
|
+
@property
|
|
95
|
+
@pulumi.getter(name="requireInfrastructureEncryption")
|
|
96
|
+
def require_infrastructure_encryption(self) -> Optional[bool]:
|
|
97
|
+
"""
|
|
98
|
+
A boolean indicating whether or not the service applies a secondary layer of encryption with platform managed keys for data at rest.
|
|
99
|
+
"""
|
|
100
|
+
return pulumi.get(self, "require_infrastructure_encryption")
|
|
101
|
+
|
|
102
|
+
@property
|
|
103
|
+
@pulumi.getter
|
|
104
|
+
def source(self) -> Optional[str]:
|
|
105
|
+
"""
|
|
106
|
+
The provider for the encryption scope. Possible values (case-insensitive): Microsoft.Storage, Microsoft.KeyVault.
|
|
107
|
+
"""
|
|
108
|
+
return pulumi.get(self, "source")
|
|
109
|
+
|
|
110
|
+
@property
|
|
111
|
+
@pulumi.getter
|
|
112
|
+
def state(self) -> Optional[str]:
|
|
113
|
+
"""
|
|
114
|
+
The state of the encryption scope. Possible values (case-insensitive): Enabled, Disabled.
|
|
115
|
+
"""
|
|
116
|
+
return pulumi.get(self, "state")
|
|
117
|
+
|
|
118
|
+
@property
|
|
119
|
+
@pulumi.getter
|
|
120
|
+
def type(self) -> str:
|
|
121
|
+
"""
|
|
122
|
+
The type of the resource. E.g. "Microsoft.Compute/virtualMachines" or "Microsoft.Storage/storageAccounts"
|
|
123
|
+
"""
|
|
124
|
+
return pulumi.get(self, "type")
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
class AwaitableGetEncryptionScopeResult(GetEncryptionScopeResult):
|
|
128
|
+
# pylint: disable=using-constant-test
|
|
129
|
+
def __await__(self):
|
|
130
|
+
if False:
|
|
131
|
+
yield self
|
|
132
|
+
return GetEncryptionScopeResult(
|
|
133
|
+
creation_time=self.creation_time,
|
|
134
|
+
id=self.id,
|
|
135
|
+
key_vault_properties=self.key_vault_properties,
|
|
136
|
+
last_modified_time=self.last_modified_time,
|
|
137
|
+
name=self.name,
|
|
138
|
+
require_infrastructure_encryption=self.require_infrastructure_encryption,
|
|
139
|
+
source=self.source,
|
|
140
|
+
state=self.state,
|
|
141
|
+
type=self.type)
|
|
142
|
+
|
|
143
|
+
|
|
144
|
+
def get_encryption_scope(account_name: Optional[str] = None,
|
|
145
|
+
encryption_scope_name: Optional[str] = None,
|
|
146
|
+
resource_group_name: Optional[str] = None,
|
|
147
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> AwaitableGetEncryptionScopeResult:
|
|
148
|
+
"""
|
|
149
|
+
Returns the properties for the specified encryption scope.
|
|
150
|
+
|
|
151
|
+
|
|
152
|
+
:param str account_name: The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only.
|
|
153
|
+
:param str encryption_scope_name: The name of the encryption scope within the specified storage account. Encryption scope names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only. Every dash (-) character must be immediately preceded and followed by a letter or number.
|
|
154
|
+
:param str resource_group_name: The name of the resource group within the user's subscription. The name is case insensitive.
|
|
155
|
+
"""
|
|
156
|
+
__args__ = dict()
|
|
157
|
+
__args__['accountName'] = account_name
|
|
158
|
+
__args__['encryptionScopeName'] = encryption_scope_name
|
|
159
|
+
__args__['resourceGroupName'] = resource_group_name
|
|
160
|
+
opts = pulumi.InvokeOptions.merge(_utilities.get_invoke_opts_defaults(), opts)
|
|
161
|
+
__ret__ = pulumi.runtime.invoke('azure-native:storage/v20230501:getEncryptionScope', __args__, opts=opts, typ=GetEncryptionScopeResult).value
|
|
162
|
+
|
|
163
|
+
return AwaitableGetEncryptionScopeResult(
|
|
164
|
+
creation_time=pulumi.get(__ret__, 'creation_time'),
|
|
165
|
+
id=pulumi.get(__ret__, 'id'),
|
|
166
|
+
key_vault_properties=pulumi.get(__ret__, 'key_vault_properties'),
|
|
167
|
+
last_modified_time=pulumi.get(__ret__, 'last_modified_time'),
|
|
168
|
+
name=pulumi.get(__ret__, 'name'),
|
|
169
|
+
require_infrastructure_encryption=pulumi.get(__ret__, 'require_infrastructure_encryption'),
|
|
170
|
+
source=pulumi.get(__ret__, 'source'),
|
|
171
|
+
state=pulumi.get(__ret__, 'state'),
|
|
172
|
+
type=pulumi.get(__ret__, 'type'))
|
|
173
|
+
|
|
174
|
+
|
|
175
|
+
@_utilities.lift_output_func(get_encryption_scope)
|
|
176
|
+
def get_encryption_scope_output(account_name: Optional[pulumi.Input[str]] = None,
|
|
177
|
+
encryption_scope_name: Optional[pulumi.Input[str]] = None,
|
|
178
|
+
resource_group_name: Optional[pulumi.Input[str]] = None,
|
|
179
|
+
opts: Optional[pulumi.InvokeOptions] = None) -> pulumi.Output[GetEncryptionScopeResult]:
|
|
180
|
+
"""
|
|
181
|
+
Returns the properties for the specified encryption scope.
|
|
182
|
+
|
|
183
|
+
|
|
184
|
+
:param str account_name: The name of the storage account within the specified resource group. Storage account names must be between 3 and 24 characters in length and use numbers and lower-case letters only.
|
|
185
|
+
:param str encryption_scope_name: The name of the encryption scope within the specified storage account. Encryption scope names must be between 3 and 63 characters in length and use numbers, lower-case letters and dash (-) only. Every dash (-) character must be immediately preceded and followed by a letter or number.
|
|
186
|
+
:param str resource_group_name: The name of the resource group within the user's subscription. The name is case insensitive.
|
|
187
|
+
"""
|
|
188
|
+
...
|